@charset "UTF-8";

/* =========================================================
   RESET / BASE
========================================================= */

*{
  box-sizing: border-box;
}

html{
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body{
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: #17212d;
  background: #dfe3e7;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.85;
}

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

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

button{
  font: inherit;
}

::selection{
  color: #ffffff;
  background: #2d7fd6;
}

/* =========================================================
   COMMON
========================================================= */

.section{
  position: relative;
  min-height: auto;
  padding: 88px 20px;
}

.section__inner{
  width: min(100%, 1660px);
  margin: 0 auto;
}

.section-label{
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 1.5vw, 24px);
  width: fit-content;
  margin: 0 0 clamp(10px, 3vw, 28px);
  color: #165cc7;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .4em;
  text-transform: uppercase;
}

.section-label::before{
  content: "";
  width: clamp(60px, 6vw, 72px);
  height: 2px;
  background: linear-gradient(90deg, #155ed3, #55b7ff);
  transform-origin: left center;
}

.pc-only{
  display: none;
}

@media (min-width: 768px){
  .section{
    min-height: 100svh;
    padding-top: 110px;
    padding-right: 40px;
    padding-bottom: 110px;
    padding-left: 40px;
  }

  .sp-only{
    display: none;
  }

  .pc-only{
    display: block;
  }
}

@media (min-width: 1440px){
  .section{
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   HEADER
========================================================= */

.site-header{
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  color: #1d2940;
  background: transparent;
}

.site-header__inner{
  width: 100%;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo{
  width: 108px;
  flex: 0 0 auto;
}

.site-header__logo img{
  width: 100%;
}

.site-header__nav-list{
  display: flex;
  align-items: center;
  gap: 52px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav a{
  position: relative;
  color: #1d2940;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .04em;
  transition: color .45s ease;
}

.site-header__nav a::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  opacity: 0;
  background: #2b73bd;
  transform: scaleX(.35);
  transition: opacity .45s ease, transform .45s ease;
}

.site-header__nav a:hover{
  color: #2b68a4;
}

.site-header__nav a:hover::after{
  opacity: .55;
  transform: scaleX(1);
}

.site-header__nav{
  display: none;
}

.site-header__menu-toggle{
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border: 0;
  color: #1d2940;
  background: transparent;
  cursor: pointer;
}

.site-header__menu-toggle span{
  width: 20px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform .35s ease, opacity .25s ease;
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(2){
  opacity: 0;
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.is-menu-open .site-header__nav{
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: min(86%, 360px);
  min-height: 100svh;
  display: block;
  padding: 96px 28px 40px;
  background: rgba(239, 244, 248, .96);
  box-shadow: -20px 0 60px rgba(28, 48, 69, .16);
  backdrop-filter: blur(18px);
}

.site-header.is-menu-open .site-header__nav-list{
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.site-header.is-menu-open .site-header__nav a{
  font-size: 14px;
}

@media (min-width: 768px){
  .site-header__menu-toggle{
    display: none;
  }

  .site-header{
    height: 84px;
  }

  .site-header__inner{
    padding: 0 36px;
  }

  .site-header__logo{
    width: 132px;
  }

  .site-header__nav{
    display: block;
  }

  .site-header__nav-list{
    gap: 24px;
  }

  .site-header__nav a{
    font-size: 12px;
  }
}

@media (min-width: 1024px){
  .site-header{
    height: 90px;
  }

  .site-header__inner{
    padding: 0 52px;
  }

  .site-header__nav-list{
    gap: 38px;
  }

  .site-header__nav a{
    font-size: 14px;
  }
}

/* =========================================================
   HERO
========================================================= */

.impulse-hero{
  position: relative;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 100svh;
  margin: 0;
  overflow: clip;
  box-sizing: border-box;
  isolation: isolate;
  color: #172f48;
  background: #eef4f8;
}

.impulse-hero::before,
.impulse-hero::after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: -8%;
  pointer-events: none;
}

.impulse-hero::before{
  opacity: .05;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse at 72% 56%, rgba(255, 255, 255, .82), transparent 38%),
    linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, .42) 50%, transparent 78%);
  filter: blur(34px);
  animation: impulseHeroMist 18s ease-in-out infinite alternate;
}

.impulse-hero::after{
  opacity: .055;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 76% 48%, rgba(255, 255, 255, .9) 0 1px, transparent 2px),
    radial-gradient(circle at 69% 58%, rgba(182, 221, 247, .85) 0 1.5px, transparent 3px),
    radial-gradient(circle at 84% 34%, rgba(255, 255, 255, .8) 0 1px, transparent 2px),
    linear-gradient(116deg, transparent 54%, rgba(255, 255, 255, .34) 61%, transparent 68%);
  background-size: 210px 180px, 270px 230px, 180px 260px, 100% 100%;
  filter: blur(.35px);
  animation: impulseHeroDust 24s linear infinite alternate;
}

@keyframes impulseHeroMist{
  from{
    transform: translate3d(-2%, 0, 0) scale(1);
  }

  to{
    transform: translate3d(2%, -1%, 0) scale(1.025);
  }
}

@keyframes impulseHeroDust{
  from{
    transform: translate3d(0, 0, 0);
  }

  to{
    transform: translate3d(-2.5%, 1%, 0);
  }
}

.impulse-hero__background{
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(96deg, rgba(255, 255, 255, .44) 0%, rgba(255, 255, 255, .2) 48%, rgba(205, 223, 237, .14) 100%),
    url("../images/bg_kv.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: center;
  will-change: transform, opacity;
}

.impulse-hero__background::before{
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, .8), transparent 40%),
    radial-gradient(circle at 79% 55%, rgba(143, 188, 220, .18), transparent 38%);
}

.impulse-hero__background::after{
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 68%;
  height: 55%;
  opacity: .34;
  background: linear-gradient(90deg, transparent, rgba(242, 249, 253, .52), rgba(133, 173, 204, .12));
  transform: skewY(-7deg);
  filter: blur(28px);
}

.impulse-hero__sheen{
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.impulse-hero__sheen--left{
  top: -24%;
  left: -16%;
  width: 62%;
  height: 95%;
  opacity: .4;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .82), transparent 70%);
  transform: rotate(-7deg);
  filter: blur(34px);
}

.impulse-hero__sheen--right{
  top: -8%;
  right: 0;
  width: 52%;
  max-width: 52vw;
  height: 85%;
  opacity: .28;
  background: linear-gradient(137deg, transparent 10%, rgba(250, 253, 255, .52) 48%, rgba(177, 203, 223, .09) 72%, transparent 90%);
  transform: skewY(-8deg) translateX(0);
  filter: blur(24px);
  contain: layout paint;
}


.impulse-hero__inner{
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  min-height: 100svh;
  margin: 0;
  padding: clamp(86px, 12vw, 96px) 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.impulse-hero__content{
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  flex: 0 0 auto;
}

.impulse-hero__lead{
  width: 100%;
  max-width: none;
  margin: 0 0 12px;
  color: #172f48;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(12px, 3.4vw, 15px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .055em;
  white-space: normal;
}

.impulse-hero__brand{
  position: relative;
  isolation: isolate;
  width: min(76vw, 420px);
  max-width: 100%;
}

.impulse-hero__brand-image{
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.impulse-hero__brand-shine{
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, .14) 25%,
    rgba(255, 255, 255, .95) 50%,
    rgba(112, 190, 255, .42) 68%,
    transparent 100%
  );
  background-position: -35% 50%;
  background-repeat: no-repeat;
  background-size: 18% 140%;
  -webkit-mask: url("../images/impulse-logo-834.png") center / contain no-repeat;
  mask: url("../images/impulse-logo-834.png") center / contain no-repeat;
  filter: blur(4px);
  mix-blend-mode: screen;
}

.impulse-hero__title{
  margin: 16px 0 18px;
  color: #172f48;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(21px, 6.2vw, 30px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.01rem;
}

.impulse-hero__title-line{
  display: block;
}

@property --impulse-cta-angle{
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --impulse-cta-start{
  syntax: "<color>";
  inherits: false;
  initial-value: rgba(23, 47, 72, .94);
}

@property --impulse-cta-end{
  syntax: "<color>";
  inherits: false;
  initial-value: rgba(59, 88, 116, .9);
}

@keyframes impulse-cta-border-orbit{
  to{
    --impulse-cta-angle: 360deg;
  }
}

.impulse-hero__button{
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  display: inline-flex;
  width: min(100%, 220px);
  min-width: 0;
  height: 50px;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  color: #f7fbff;
  background: linear-gradient(135deg, rgba(23, 47, 72, .94), rgba(59, 88, 116, .9));
  box-shadow:
    0 12px 26px rgba(4, 13, 24, .2),
    0 0 12px rgba(34, 105, 180, .1),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  clip-path: polygon(
    0 0,
    calc(100% - 11px) 0,
    100% 11px,
    100% 100%,
    11px 100%,
    0 calc(100% - 11px)
  );
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
  text-decoration: none;
  transition:
    color .3s ease,
    background .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    transform .3s cubic-bezier(.22, 1, .36, 1);
}

.impulse-hero__button::before{
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: conic-gradient(
    from var(--impulse-cta-angle),
    rgba(125, 220, 255, .28) 0deg,
    rgba(125, 220, 255, .28) 278deg,
    #7ddcff 326deg,
    rgba(90, 169, 255, .64) 350deg,
    rgba(125, 220, 255, .28) 360deg
  );
  animation: impulse-cta-border-orbit 3.6s linear infinite;
}

.impulse-hero__button::after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 2px;
  pointer-events: none;
  --impulse-cta-start: rgba(23, 47, 72, .94);
  --impulse-cta-end: rgba(59, 88, 116, .9);
  background: linear-gradient(135deg, var(--impulse-cta-start), var(--impulse-cta-end));
  clip-path: polygon(
    0 0,
    calc(100% - 9px) 0,
    100% 9px,
    100% 100%,
    9px 100%,
    0 calc(100% - 9px)
  );
  transition:
    --impulse-cta-start .3s ease,
    --impulse-cta-end .3s ease;
}

.impulse-hero__button-text,
.impulse-hero__button-icon{
  position: relative;
  z-index: 3;
}

.impulse-hero__button-text{
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 4px 0 20px;
  white-space: nowrap;
}

.impulse-hero__button-text::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 10px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, #7ddcff, rgba(90, 169, 255, .3));
  box-shadow: 0 0 5px rgba(90, 169, 255, .24);
  transform: translateY(-50%);
}

.impulse-hero__button-icon{
  display: inline-flex;
  width: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.impulse-hero__button-icon svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.impulse-hero__button:hover{
  color: #ffffff;
  background: linear-gradient(135deg, rgba(30, 78, 130, .96), rgba(48, 100, 165, .94));
  box-shadow:
    0 14px 28px rgba(4, 13, 24, .24),
    0 0 14px rgba(55, 126, 210, .18),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

.impulse-hero__button:hover::before{
  background: conic-gradient(
    from var(--impulse-cta-angle),
    rgba(125, 220, 255, .46) 0deg,
    rgba(125, 220, 255, .46) 270deg,
    #a8e8ff 324deg,
    rgba(90, 169, 255, .82) 350deg,
    rgba(125, 220, 255, .46) 360deg
  );
  animation-duration: 1.7s;
}

.impulse-hero__button:hover::after{
  --impulse-cta-start: rgba(30, 78, 130, .96);
  --impulse-cta-end: rgba(48, 100, 165, .94);
}

.impulse-hero__button:hover .impulse-hero__button-icon svg{
  transform: translateX(3px);
}

.impulse-hero__button:focus-visible{
  outline: 2px solid #7ddcff;
  outline-offset: 4px;
  filter: drop-shadow(0 0 4px rgba(90, 169, 255, .3));
  box-shadow:
    0 12px 26px rgba(4, 13, 24, .2),
    0 0 0 4px rgba(39, 184, 235, .18),
    0 0 14px rgba(39, 190, 238, .16);
}

.impulse-hero__button:focus-visible::before{
  background: #7ddcff;
}

.impulse-hero__button:focus-visible::after{
  inset: 2px;
}

.impulse-hero__button:active{
  transform: translateY(0);
  box-shadow:
    0 9px 20px rgba(4, 13, 24, .2),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

.impulse-hero__visual{
  position: relative;
  z-index: 2;
  align-self: auto;
  width: 100%;
  height: auto;
  min-height: 0;
  margin-top: 12px;
  inset: auto;
  transform: none;
  display: flex;
  flex: none;
  align-items: flex-end;
  justify-content: center;
}

.impulse-hero__product{
  position: relative;
  z-index: 3;
  display: block;
  width: min(62vw, 300px, 25.6svh);
  max-width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 565 / 685;
  margin: 0 auto;
  overflow: visible;
  transform: none;
  filter: drop-shadow(0 18px 20px rgba(21, 43, 67, .11));
  backface-visibility: hidden;
  pointer-events: none;
}

.impulse-hero__product-fallback{
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.impulse-hero__product-video{
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -4%;
  display: block;
  width: 238%;
  height: 110%;
  max-width: none;
  max-height: none;
  opacity: 0;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  transition: opacity .2s ease;
}

.impulse-hero__product.is-video-ready .impulse-hero__product-fallback{
  opacity: 0;
}

.impulse-hero__product.is-video-ready .impulse-hero__product-video{
  opacity: 1;
}

.impulse-hero__product-aura{
  position: absolute;
  z-index: 0;
  right: -5%;
  bottom: 14%;
  width: 102%;
  height: 68%;
  opacity: .52;
  background: radial-gradient(ellipse at 58% 53%, rgba(248, 252, 255, .82), rgba(191, 216, 233, .2) 46%, transparent 72%);
  filter: blur(24px);
  will-change: auto;
}

.impulse-hero__product-reflection{
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 0;
  width: 84%;
  height: 12%;
  opacity: .5;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(214, 232, 244, .52), rgba(105, 157, 200, .24), transparent);
  filter: blur(18px);
}

.impulse-hero__product-shadow{
  position: absolute;
  z-index: 2;
  right: 11%;
  bottom: 2.4%;
  width: 64%;
  height: 34px;
  border-radius: 50%;
  background: rgba(36, 54, 74, .26);
  filter: blur(24px);
}

.impulse-scroll{
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 0;
  flex-direction: column;
  align-items: center;
  color: #FFF;
  transform: translateX(-50%);
  display: none;
}

.impulse-scroll__text{
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .34em;
}

.impulse-scroll__line{
  position: relative;
  display: block;
  width: 2px;
  height: 106px;
  overflow: hidden;
  background: rgba(255, 255, 255, .28);
}

.impulse-scroll__light{
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 38%;
  background: linear-gradient(to bottom, transparent 0%, rgba(185, 232, 255, .62) 27%, rgba(58, 153, 236, .98) 58%, rgba(13, 85, 179, .9) 76%, transparent 100%);
  box-shadow: 0 0 10px rgba(45, 143, 226, .46);
}

@media (min-width: 601px){
  .impulse-hero__button-text{
    padding: 0 6px 0 30px;
  }

  .impulse-hero__button-icon{
    width: 36px;
    flex-basis: 36px;
  }
}

@media (min-width: 601px) and (max-width: 767px){
  .impulse-hero__button{
    width: 260px;
    min-width: 0;
    height: 50px;
  }

  .impulse-hero__button-text{
    padding: 0 4px 0 20px;
  }

  .impulse-hero__button-icon{
    width: 34px;
    flex-basis: 34px;
  }
}

@media (min-width: 768px){
  .impulse-hero__sheen{
    z-index: 1;
  }


  .impulse-hero__sheen--right{
    right: -10%;
    width: 58%;
    max-width: none;
    transform: skewY(-8deg);
    contain: none;
  }


  .impulse-hero__product-aura{
    will-change: transform, opacity;
  }


  .impulse-hero{
    height: auto;
    min-height: 100svh;
  }

  .impulse-hero__inner{
    z-index: 5;
    display: grid;
    flex-direction: row;
    height: auto;
    min-height: 100svh;
    margin: 0 auto;
    padding: 100px 48px 36px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
  }

  .impulse-hero__content{
    z-index: 7;
    width: min(100%, 720px);
    max-width: 720px;
    margin: 0 auto;
  }

  .impulse-hero__lead{
    margin-bottom: 10px;
    font-size: 17px;
    white-space: nowrap;
  }

  .impulse-hero__brand{
    width: 540px;
    max-width: none;
    margin-left: -8px;
  }

  .impulse-hero__brand-image{
    max-width: none;
  }

  .impulse-hero__title{
    margin: 30px 0;
    font-size: 28px;
  }

  .impulse-hero__button{
    width: min(100%, 240px);
    height: 58px;
  }

  .impulse-hero__visual{
    z-index: 6;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 0;
    justify-content: center;
  }

  .impulse-hero__product{
    width: min(62vw, 440px);
    max-width: 100%;
    max-height: none;
    margin: 0;
  }

  .impulse-scroll{
    display: none;
  }
}

@media (min-width: 1024px){
  .impulse-hero{
    height: 100vh;
    min-height: 0;
  }

  .impulse-hero__inner{
    position: relative;
    display: grid;
    width: min(100%, 1720px);
    height: 100vh;
    min-height: 0;
    margin-inline: auto;
    padding: 90px clamp(44px, 5vw, 80px) 0;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    align-items: center;
    gap: clamp(20px, 2.5vw, 48px);
  }

  .impulse-hero__content{
    position: relative;
    z-index: 7;
    top: -20px;
    left: auto;
    width: 100%;
    max-width: 760px;
    margin: 0;
    align-self: center;
    transform: none;
  }

  .impulse-hero__lead{
    margin-bottom: 28px;
    font-size: 18px;
    white-space: nowrap;
  }

  .impulse-hero__title{
    margin: 36px 0;
    font-size: clamp(36px, 3.4vw, 44px);
    line-height: 1.4;
  }

  .impulse-hero__visual{
    position: relative;
    z-index: 6;
    right: auto;
    top: -20px;
    left: 0;
    bottom: auto;
    width: 100%;
    height: calc(100vh - 220px);
    min-height: 0;
    margin: 0;
    align-items: flex-end;
    justify-content: center;
  }

  .impulse-hero__brand{
    width: min(100%, 690px);
    margin-left: 0;
  }

  .impulse-hero__product{
    width: min(100%, 620px, 42.9vh);
    height: auto;
    max-width: 100%;
    max-height: none;
    margin: 0;
    transform-origin: right bottom;
  }

  .impulse-hero__product-aura{
    right: 0;
    bottom: 12%;
    width: 76%;
    height: 62%;
    opacity: .48;
  }

  .impulse-hero__product-reflection{
    right: 3%;
    width: 68%;
    height: 10%;
    opacity: .42;
  }

  .impulse-hero__product-shadow{
    right: 8%;
    width: 56%;
    opacity: .72;
  }

  .impulse-scroll{
    display: flex;
  }

  .impulse-hero__button{
    width: fit-content;
    height: auto;
    padding: 18px;
  }


}

@media (min-width: 1280px){
  .impulse-hero__inner{
    width: min(100%, 1600px);
    padding: 40px clamp(52px, 5vw, 88px) 0;
    grid-template-columns: minmax(0, 1.08fr) minmax(460px, .92fr);
    gap: clamp(24px, 2.5vw, 44px);
  }

  .impulse-hero__content{
    max-width: 760px;
  }

  .impulse-hero__brand{
    width: min(100%, 690px);
    margin-left: -18px;
  }

  .impulse-hero__product{
    width: min(100%, 620px, 52.8vh);
    height: auto;
    max-height: none;
    margin-right: 3vw;
  }

  .impulse-hero__visual{
    height: calc(100vh - 90px);
  }
}

@media (min-width: 1440px){
  .impulse-hero__inner{
    width: min(100%, 1660px);
    padding: 40px clamp(68px, 5.5vw, 96px) 0;
    grid-template-columns: minmax(0, 760px) minmax(480px, 700px);
    justify-content: center;
    gap: clamp(32px, 3vw, 54px);
  }

  .impulse-hero__content{
    max-width: 760px;
    top: -24px;
  }

  .impulse-hero__visual{
    justify-content: flex-end;
    top: -24px;
    left: 0;
    height: calc(100vh - 120px);
  }

  .impulse-hero__lead{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
  }

  .impulse-hero__brand{
    width: 690px;
  }

  .impulse-hero__title{
    margin: 38px 0 26px;
    font-size: clamp(40px, 2.8vw, 48px);
  }

  .impulse-hero__product{
    width: min(100%, 650px, 52.8vh);
    margin-right: clamp(64px, calc(2.5vw + 40px), 88px);
    flex-shrink: 0;
  }
}

@media (min-width: 1500px){
  .impulse-hero__visual{
      height: calc(100vh - 200px);
  }
}

@media (min-width: 1900px){
  .impulse-hero__inner{
    width: min(100%, 1760px);
    padding: 40px 80px 0;
    grid-template-columns: minmax(0, 800px) minmax(0, 760px);
    justify-content: center;
    gap: 48px;
  }

  .impulse-hero__product{
    width: min(100%, 720px, 61vh);
    max-height: none;
    transform: none;
  }

  .impulse-hero__visual{
    justify-content: flex-end;
    top: -28px;
    left: 0;
    height: calc(100vh - 130px);
  }

  .impulse-hero__content{
    top: -28px;
  }

  .impulse-hero__lead{
    font-size: 24px;
  }

  .impulse-hero__title{
    margin: 44px 0;
    font-size: clamp(46px, 3.6vw, 62px);
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .impulse-hero__brand{
    width: min(100%, 760px);
  }

  .impulse-hero__button-text{
    padding: 4px 10px 4px 20px;
  }

  .impulse-hero__button{
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .impulse-hero__sheen,
  .impulse-hero__product-aura{
    transform: none !important;
  }

  .impulse-hero::before,
  .impulse-hero::after{
    animation: none !important;
  }

  .impulse-hero__brand-shine{
    animation: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .impulse-scroll__light{
    opacity: .65;
    transform: none !important;
  }

  .impulse-hero__button,
  .impulse-hero__button-icon svg{
    transition: none !important;
  }

  .impulse-hero__button::before{
    animation: none !important;
  }

  .impulse-hero__button:hover,
  .impulse-hero__button:active,
  .impulse-hero__button:hover .impulse-hero__button-icon svg{
    transform: none !important;
  }
}

/* Heroが画面外または非表示タブの間はCSS常時アニメーションも停止 */
.impulse-hero.is-hero-motion-paused::before,
.impulse-hero.is-hero-motion-paused::after{
  animation-play-state: paused;
}


/* =========================================================
   INTRO
========================================================= */

.intro{
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 60px 24px;
  overflow: hidden;
  background: url("../images/bg_intro-opt.jpg") 100% center / cover no-repeat;
}

.intro::before{
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(243, 248, 255, .20));
}

.intro__inner{
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 1520px);
  margin-inline: auto;
}

.intro__heading{
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

.intro__heading .section-label{
  margin-inline: auto;
}

.intro__heading h2{
  max-width: 880px;
  margin: 0 auto;
  color: #102e57;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 6.2vw, 62px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: .025em;
}

.intro__body{
  display: block;
  margin-top: clamp(36px, 4vw, 48px);
}

.intro__copy{
  display: grid;
  gap: 18px;
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.intro__copy p{
  margin: 0;
  color: #243449;
  font-size: clamp(13px, 1.25vw, 18px);
  line-height: 1.65;
}

.intro__values{
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: stretch;
  margin-top: clamp(10px, 3vw, 160px);
  border: 0;
}

.intro__values article{
  position: relative;
  display: flex;
  width: 95%;
  min-height: 100%;
  margin-inline: auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(214, 235, 255, .035)),
    rgba(255, 255, 255, .055);
  box-shadow:
    0 16px 42px rgba(39, 78, 119, .045),
    inset 0 1px 0 rgba(255, 255, 255, .46);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  text-align: left;
  transition:
    transform 500ms cubic-bezier(.22, 1, .36, 1),
    border-color 500ms ease,
    box-shadow 500ms ease;
}

.intro-feature__accent{
  position: relative;
  display: block;
  width: 102px;
  height: 1px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, rgba(210, 224, 236, .18), #91abc4 42%, #247cff 100%);
  transition: width 500ms cubic-bezier(.22, 1, .36, 1), filter 500ms ease;
}

.intro-feature__accent::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #77d4ff;
  box-shadow: 0 0 10px rgba(63, 151, 255, .48), 0 0 20px rgba(63, 151, 255, .2);
  transform: translate(50%, -50%);
}

.intro__values .intro-feature__title{
  margin: 0;
  color: #102f56;
  background: linear-gradient(
    105deg,
    #102f56 0%,
    #06458f 54%,
    #0874d8 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 2.55vw, 2.45rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: .01em;
}

.intro-feature__title::after{
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: 10px 0 10px 1px;
  background: #2f83ff;
  box-shadow: 0 0 12px rgba(47, 131, 255, .35);
  transform: rotate(45deg);
  transition: box-shadow 500ms ease;
}

.intro__values .intro-feature__description{
  width: min(100%, 290px);
  margin: 0;
  color: #294260;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .015em;
}

.intro__promotion-movie{
  position: relative;
  width: min(100%, 1200px);
  margin: 48px auto 0;
  background: #000;
}

.intro__promotion-video{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.intro__promotion-play{
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: rgba(0, 0, 0, .58);
  color: #fff;
  cursor: pointer;
  place-items: center;
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease, background-color 200ms ease;
}

.intro__promotion-play span{
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
}

.intro__promotion-movie.is-playing .intro__promotion-play{
  opacity: 0;
  pointer-events: none;
}

.intro__promotion-controls{
  display: none;
}

@media (hover: hover) and (pointer: fine){
  .intro__promotion-controls{
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 58px;
    padding: 14px 18px 10px;
    align-items: center;
    gap: 14px;
    opacity: 0;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, 0));
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .intro__promotion-movie:hover .intro__promotion-controls,
  .intro__promotion-movie:focus-within .intro__promotion-controls{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .intro__promotion-toggle{
    position: relative;
    width: 34px;
    height: 34px;
    padding: 0;
    flex: 0 0 34px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .42);
    cursor: pointer;
  }

  .intro__promotion-toggle::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid currentColor;
    transform: translate(-42%, -50%);
  }

  .intro__promotion-movie.is-playing .intro__promotion-toggle::before{
    width: 9px;
    height: 12px;
    border: 0;
    background: linear-gradient(90deg, currentColor 0 3px, transparent 3px 6px, currentColor 6px 9px);
    transform: translate(-50%, -50%);
  }

  .intro__promotion-timeline{
    min-width: 0;
    height: 4px;
    margin: 0;
    flex: 1 1 auto;
    cursor: pointer;
    accent-color: #5ca8ff;
  }

  .intro__promotion-time{
    min-width: 84px;
    flex: 0 0 auto;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
    text-align: right;
  }

  .intro__values article:hover{
    border-color: rgba(255, 255, 255, .88);
    box-shadow:
      0 20px 48px rgba(39, 78, 119, .075),
      inset 0 1px 0 rgba(255, 255, 255, .58);
    transform: translateY(-3px);
  }

  .intro__values article:hover .intro-feature__accent{
    width: 116px;
    filter: brightness(1.06);
  }

  .intro__values article:hover .intro-feature__title::after{
    box-shadow: 0 0 14px rgba(47, 131, 255, .48);
  }

}

@media (max-width: 767px){
  .intro__promotion-movie{
    margin-top: 80px;
  }
}

@media (min-width: 768px){
  .intro{
    padding-inline: 40px;
  }

  .intro__promotion-play{
    display: none;
  }

  .intro__promotion-movie{
    margin-top: 64px;
  }

  .intro__copy p{
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 450;
    line-height: 1.95;
  }

  .intro__values .intro-feature__description{
    width: fit-content;
    font-size: 15px;
  }

  .intro__values article{
    padding: 28px 42px;
  }
}

@media (min-width: 1024px){
  .intro{
    padding-block: clamp(80px, 14vw, 120px);
    padding-inline: clamp(48px, 6vw, 96px);
    background-position: center;
  }

  .intro__promotion-movie{
    margin-top: 120px;
  }

  .intro__values{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 40px);
    margin-top: 40px;
  }

  .intro__heading h2{
    font-size: 58px;
  }

  .intro__values article{
    width: 100%;
    padding: clamp(40px, 4vw, 54px) clamp(24px, 3vw, 46px);
  }

  .intro__values .intro-feature__description{
    font-size: 17px;
    margin-top: 10px;
  }
}

@media (min-width: 1900px){
  .intro__heading h2{
    font-size: 68px;
  }

  .intro__promotion-movie{
    margin-top: 136px;
  }

  .intro__inner{
    width: min(100%, 1480px);
  }

  .intro__values{
    margin-top: 68px;
    gap: 50px;
  }

  .intro__values .intro-feature__description{
    font-size: 18px;
    line-height: 1.8;
  }
}

@media (prefers-reduced-motion: reduce){
  .intro__values article,
  .intro-feature__accent{
    transform: none !important;
    transition: none !important;
  }

  .intro__values article:hover .intro-feature__accent{
    width: 102px;
    filter: none;
  }
}

/* =========================================================
   FEATURES INTRO
========================================================= */

.features__intro{
  min-height: 0;
  padding: 40px 24px;
  background: linear-gradient(135deg, #e6eaee, #dfe3e8);
}

.features__intro h2{
  max-width: 980px;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 6.2vw, 62px);
  line-height: 1.28;
  letter-spacing: -.03em;
}

.features__intro > .section__inner > p:last-child{
  max-width: 650px;
  color: #294260;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 20px;
}

.features__intro + .feature{
  padding-top: 40px;
  border-top: 0;
}

@media (min-width: 768px){
  .features__intro{
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 76px;
    padding-left: 40px;
  }

  .features__intro + .feature{
    padding-top: 48px;
  }

  .features__intro > .section__inner > p:last-child{
    font-size: 15px;
  }
}

@media (min-width: 1024px){
  .features__intro > .section__inner > p:last-child{
    font-size: 17px;
  }
}

@media (min-width: 1900px){
  .features__intro > .section__inner > p:last-child{
    font-size: 18px;
    line-height: 1.9;
  }
}

/* =========================================================
   FEATURE
========================================================= */

.feature{
  position: relative;
  min-height: auto;
  padding: 20px 24px 40px;
  background:
    radial-gradient(circle at 80% 20%, rgba(76, 138, 204, .12), transparent 28%),
    linear-gradient(135deg, #eef1f4, #dfe4e9);
}

.feature__inner{
  width: min(100%, 1660px);
  min-height: 0;
  margin: auto;
  display: grid;
  align-items: center;
  gap: 14px;
}

.feature__content{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature__number{
  display: block;
  color: rgba(57, 95, 137, .20);
  font-family: "Cormorant Infant", "Times New Roman", serif;
  font-size: clamp(90px, 10vw, 170px);
  font-weight: 600;
  line-height: .9;
}

.feature__label{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 20px 0 22px;
  color: #2777c7;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
}

.feature__label::before{
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, #7ecbff, #2b72c1);
}


.feature h3{
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 6.2vw, 62px);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.feature__content > p:not(.feature__label){
  max-width: 680px;
  color: #243449;
  font-size: 13px;
}

.feature__media{
  position: relative;
  width: 100%;
  max-width: 720px;
  min-height: 0;
  aspect-ratio: 1000 / 766;
  align-self: center;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(53, 66, 82, .22);
}

.feature__media > img,
.feature__media > video{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

@media (min-width: 768px){
  .feature{
    padding-top: 60px;
    padding-right: 40px;
    padding-bottom: 80px;
    padding-left: 40px;
  }

  .feature__inner{
    min-height: calc(100svh - 240px);
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature__content > p:not(.feature__label){
    font-size: 15px;
  }
}

@media (min-width: 1024px){
  .feature{
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .features__intro + .feature{
    padding-top: 120px;
  }

  .feature__inner{
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: space-between;
  }

  .feature--reverse .feature__content{
    order: 2;
  }

  .feature--reverse .feature__media{
    order: 1;
  }

  .features__intro h2{
    font-size: 58px;
    margin-bottom: 34px;
  }

  .feature h3{
    font-size: 36px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1440px){
  .feature{
    padding-top: 135px;
    padding-bottom: 135px;
  }

  .features__intro + .feature{
    padding-top: 135px;
  }

  .feature__inner{
    grid-template-columns: minmax(0, 1fr) 800px;
    gap: 60px;
  }

  .feature--reverse .feature__inner{
    grid-template-columns: 800px minmax(0, 1fr);
  }

    .feature__content > p:not(.feature__label){
      font-size: 17px;
  }

}

@media (min-width: 1900px){
    .features__intro h2{
        font-size: 68px;
    }

    .feature h3{
      font-size: 52px;
    }

    .feature__content > p:not(.feature__label){
      font-size: 18px;
      font-weight: 450;
      line-height: 1.9;
    }
}

/* =========================================================
   QUALITY
========================================================= */

.quality{
  position: relative;
  isolation: isolate;
  padding: 60px 24px;
  overflow: hidden;
  color: #f1f6fb;
  background: url("../images/quality_visual-opt.jpg") 68% center / cover no-repeat;
}

.quality__inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.quality__copy{
  width: 100%;
  max-width: 620px;
}

.quality .section-label{
  color: #4e9cff;
}

.quality h2{
  margin: 0 0 30px;
  color: #f3f7fb;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 6.2vw, 62px);
  line-height: 1.25;
}

.quality__copy > p:not(.section-label){
  margin: 0;
  color: #c4d4e3;
  font-size: 13px;
}

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

.quality__points div{
  min-width: 0;
  min-height: 150px;
  padding: 24px 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(8, 18, 32, .35);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.quality__points b{
  display: block;
  color: #a9d4f2;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 3.6vw, 55px);
  font-weight: 600;
  line-height: 1;
}

.quality__points span{
  display: block;
  margin-top: 22px;
  color: #f0f5f9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.quality__visual{
  width: min(90%, 520px);
  margin-inline: auto;
}

.quality__visual img{
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px){
  .quality{
    padding: 60px 40px;
    background-position: center;
  }

  .quality__copy > p:not(.section-label){
    font-size: 15px;
  }

  .quality__points{
    gap: 20px;
  }

  .quality__points div{
    padding: 24px;
  }

  .quality__points span{
    font-size: 16px;
  }

  .quality__visual{
    width: min(60%, 460px);
  }
}

@media (min-width: 1024px) and (max-width: 1199px){
  .quality__copy{
    max-width: none;
  }

  .quality__copy > p:not(.section-label){
    max-width: 760px;
    font-size: 17px;
  }

  .quality__points{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
  }

  .quality__points div{
    min-height: 128px;
    padding: 18px 16px;
  }

  .quality__points b{
    font-size: 40px;
  }

  .quality__points span{
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .quality__visual{
    width: min(48%, 420px);
  }
}

@media (min-width: 1200px){
  .quality__inner{
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
    gap: clamp(32px, 4vw, 72px);
  }

  .quality__copy{
    max-width: none;
  }

  .quality__copy > p:not(.section-label){
    max-width: 720px;
    font-size: 17px;
    line-height: 2;
  }

  .quality__points{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.3vw, 20px);
    margin-top: 44px;
  }

  .quality__points div{
    min-height: 164px;
    padding: 22px 14px;
  }

  .quality__points span{
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
  }

  .quality__visual{
    width: 100%;
    max-width: 560px;
    justify-self: end;
  }

  .quality__visual img{
    filter:
      drop-shadow(0 14px 18px rgba(0, 0, 0, .28))
      drop-shadow(0 40px 70px rgba(0, 0, 0, .42));
  }
}

@media (min-width: 1366px){
  .quality{
    padding: 100px 40px 120px;
  }

  .quality h2{
    margin-bottom: 40px;
  }
}

/* =========================================================
   LINEUP
========================================================= */

.lineup{
  background: linear-gradient(135deg, #e9edf1, #d9dfe5);
  padding: 40px 24px;
}

.lineup__inner{
  width: 100%;
  max-width: 1660px;
}

.lineup-intro{
  display: grid;
  align-items: center;
  gap: clamp(42px, 8vw, 80px);
}

.lineup-intro__copy{
  min-width: 0;
}

.lineup-intro__title{
  max-width: 760px;
  margin: 0;
  color: #172a42;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 7.5vw, 58px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .02em;
  word-break: keep-all;
  line-break: strict;
}

.lineup-intro__lead{
  margin: clamp(28px, 5vw, 42px) 0 0;
  color: #445369;
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 2;
  letter-spacing: .035em;
}

.lineup-intro__break{
  display: none;
}

.lineup-intro__visual{
  width: 100%;
  margin: 0;
}

.lineup-intro__visual img{
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(31, 48, 72, .14));
}

.lineup-edition{
  margin-top: clamp(40px, 13vw, 80px);
}

.lineup-edition--white{
  margin-top: clamp(72px, 11vw, 140px);
}

.lineup-edition__title{
  margin: 0 0 26px;
  color: #1b2a3c;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 7vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .04em;
}

.lineup-table-guide{
  margin: 0 0 12px;
  color: #647387;
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

.lineup-table-scroll{
  width: 100%;
  overflow-x: auto;
  border-radius: 3px;
  box-shadow: 0 18px 50px rgba(35, 52, 77, .06);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(53, 79, 109, .35) transparent;
  scrollbar-width: thin;
}

.lineup-table-scroll::-webkit-scrollbar{
  height: 6px;
}

.lineup-table-scroll::-webkit-scrollbar-track{
  background: transparent;
}

.lineup-table-scroll::-webkit-scrollbar-thumb{
  border-radius: 999px;
  background: rgba(53, 79, 109, .35);
}

.lineup-table-scroll:focus-visible{
  outline: 3px solid rgba(39, 127, 255, .28);
  outline-offset: 4px;
}

.lineup-table{
  width: 100%;
  min-width: 960px;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
  color: #263548;
  background: #ffffff;
  font-size: 12px;
}

.lineup-table th,
.lineup-table td{
  padding: 14px 10px;
  border-right: 1px solid rgba(31, 48, 72, .12);
  border-bottom: 1px solid rgba(31, 48, 72, .12);
  line-height: 1.65;
  text-align: center;
  vertical-align: middle;
}

.lineup-table tr > :first-child{
  width: 132px;
  border-left: 1px solid rgba(31, 48, 72, .12);
}

.lineup-table thead tr:first-child th{
  padding-block: 16px;
  border-top: 1px solid rgba(31, 48, 72, .12);
  color: #ffffff;
  background: linear-gradient(180deg, #343b45 0%, #252b33 100%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  word-break: keep-all;
}

.lineup-table thead .lineup-table__uses th{
  padding-block: 14px;
  color: #182230;
  background: #f3f5f7;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  word-break: keep-all;
}

.lineup-table thead .lineup-table__uses th:first-child{
  color: #ffffff;
  background: linear-gradient(180deg, #303741 0%, #242a31 100%);
}

.lineup-table tbody th[scope="row"]{
  position: sticky;
  z-index: 3;
  left: 0;
  color: #ffffff;
  background: linear-gradient(180deg, #303741 0%, #242a31 100%);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  word-break: keep-all;
}

.lineup-table tbody th small{
  font-size: 10px;
  font-weight: 400;
}

.lineup-table tbody td{
  overflow-wrap: anywhere;
  background: #ffffff;
}

.lineup-table__products td{
  height: 210px;
  padding: 22px 18px;
  background: #ffffff;
}

.lineup-table__products img{
  width: min(100%, 112px);
  height: 164px;
  margin: auto;
  object-fit: contain;
}

.lineup-table__gpu td{
  padding-block: 20px;
  color: #152235;
  background: linear-gradient(135deg, rgba(45, 123, 230, .045) 0%, rgba(100, 175, 255, .095) 100%);
  font-weight: 600;
}

.lineup-table__ports td{
  padding: 20px 24px;
  text-align: left;
}

.lineup-table__ports ul{
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  list-style: none;
}

.lineup-table__ports li{
  position: relative;
  padding-left: 13px;
  overflow-wrap: anywhere;
}

.lineup-table__ports li::before{
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4d84bc;
}

.lineup-table__price th,
.lineup-table__price td{
  padding-block: 15px;
  border-top: 1.5px solid rgba(24, 34, 48, .18);
}

.lineup-table__price td{
  color: #111b28;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.lineup-edition__custom{
  margin: 30px 0 22px;
  color: #2f3b4b;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .04em;
  text-align: center;
}

.lineup-purchase{
  position: relative;
  display: flex;
  width: 100%;
  min-height: 56px;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  padding: 14px 52px 14px 24px;
  overflow: hidden;
  border: 1px solid rgba(102, 157, 221, .28);
  border-radius: 4px;
  color: #ffffff;
  background: linear-gradient(100deg, #071a3b 0%, #0c2f68 52%, #1459a6 100%);
  background-size: 130% 100%;
  box-shadow: 0 14px 34px rgba(11, 38, 77, .16);
  font-size: clamp(15px, 4vw, 17px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .06em;
  text-align: center;
  transition: filter .35s ease, background-position .35s ease;
}

.lineup-purchase__arrow{
  position: absolute;
  right: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.lineup-purchase:hover{
  filter: brightness(1.06);
  background-position: 12% 0;
}

.lineup-purchase:hover .lineup-purchase__arrow{
  transform: translateX(5px);
}

.lineup-purchase:focus-visible{
  outline: 3px solid rgba(39, 127, 255, .35);
  outline-offset: 4px;
}

@media (max-width: 767px){
  .lineup-intro{
    grid-template-columns: minmax(0, 1fr);
  }

  .lineup-intro__copy,
  .lineup-intro__title{
    width: 100%;
    max-width: 100%;
  }

  .lineup-intro__title{
    font-size: clamp(18px, 5.8vw, 23px);
    line-height: 1.45;
    letter-spacing: .01em;
  }

  .lineup-intro__break{
    display: block;
  }

  .lineup-table th,
  .lineup-table td{
    padding: 9px 8px;
    line-height: 1.45;
  }

  .lineup-table__products td{
    height: 170px;
    padding: 14px 12px;
  }

  .lineup-table__products img{
    width: min(100%, 96px);
    height: 136px;
  }

  .lineup-table__gpu td{
    padding-block: 14px;
  }

  .lineup-table__ports td{
    padding: 14px 18px;
  }

  .lineup-table__ports ul{
    gap: 5px 16px;
  }

  .lineup-table__price th,
  .lineup-table__price td{
    padding-block: 12px;
  }
}

@media (min-width: 768px){
  .lineup{
    padding: 60px 40px;
  }

  .lineup-intro__title{
    font-size: clamp(38px, 6vw, 58px);
  }

  .lineup-intro__break{
    display: block;
  }

  .lineup-intro__visual{
    width: min(100%, 920px);
    margin-inline: auto;
  }

  .lineup-edition{
    margin-top: clamp(130px, 14vw, 180px);
  }

  .lineup-edition--white{
    margin-top: clamp(88px, 10vw, 120px);
  }

  .lineup-edition__title{
    margin-bottom: 30px;
    font-size: clamp(32px, 4vw, 42px);
  }

  .lineup-table-guide{
    margin-bottom: 14px;
    font-size: 12px;
  }

  .lineup-table__products td{
    height: 236px;
    padding: 26px 18px 22px;
  }

  .lineup-table__products img{
    width: min(100%, 130px);
    height: 186px;
  }

  .lineup-table__price th,
  .lineup-table__price td{
    padding-block: 17px;
  }

  .lineup-edition__custom{
    margin-top: 38px;
    font-size: 15px;
  }

  .lineup-purchase{
    width: min(100%, 420px);
    min-height: 60px;
    padding-inline: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1279px){
  .lineup-intro{
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .lineup-intro__visual{
    min-width: 0;
    max-width: 100%;
  }

  .lineup-intro__visual img{
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px){
  .lineup{
    padding: 80px 40px 120px;
  }

  .lineup .section-label{
    font-size: 17px;
  }

  .lineup-table{
    min-width: 980px;
    font-size: 13px;
  }

  .lineup-table tr > :first-child{
    width: 140px;
  }

  .lineup-table tbody th[scope="row"]{
    font-size: 13px;
  }

  .lineup-table__products td{
    height: 250px;
    padding: 28px 18px 24px;
  }

  .lineup-table__products img{
    width: min(100%, 142px);
    height: 198px;
  }
}

@media (min-width: 1280px){
  .lineup-intro{
    grid-template-columns: minmax(0, 64fr) minmax(0, 36fr);
    gap: clamp(48px, 4vw, 90px);
  }

  .lineup-intro__title{
    max-width: 100%;
    font-size: clamp(42px, 4vw, 58px);
    word-break: normal;
    overflow-wrap: break-word;
    font-weight: 600;
  }

  .lineup-intro__visual{
    width: 100%;
    margin-top: 96px;
    justify-self: end;
    align-self: end;
  }

  .lineup-intro__lead{
    font-size: clamp(13px, 3.6vw, 17px);
  }

  .lineup-table-guide{
    display: none;
  }

  .lineup-table-scroll{
    overflow-x: visible;
  }

  .lineup-table{
    min-width: 0;
    font-size: 13px;
  }

  .lineup-table thead tr:first-child th{
    font-size: 13px;
  }

  .lineup-table thead .lineup-table__uses th{
    font-size: 14px;
  }

  .lineup-table__products img{
    width: min(100%, 150px);
    height: 205px;
  }

  .lineup-table__price th,
  .lineup-table__price td{
    padding-block: 19px;
  }

  .lineup-table__price td{
    font-size: clamp(18px, 1.5vw, 24px);
  }

  .lineup-edition{
    margin-top: clamp(120px, 10vw, 180px);
  }

  .lineup-edition__custom{
    margin-top: 44px;
    font-size: 16px;
  }

  .lineup-purchase{
    width: min(100%, 460px);
    min-height: 64px;
  }
}

@media (min-width: 1600px){
  .lineup-table th,
  .lineup-table td{
    font-size: 16px;
  }

  .lineup-table tbody th small{
    font-size: 16px;
  }

  .lineup-table__price td{
    font-size: 16px;
  }
}

@media (min-width: 1900px){
  .lineup-intro{
    grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
  }

  .lineup-intro__visual{
    width: min(100%, 700px);
    max-width: 700px;
    justify-self: end;
    transform: translateX(-40px);
  }
}

@media (prefers-reduced-motion: reduce){
  .lineup-purchase,
  .lineup-purchase__arrow{
    transition: none;
  }

  .lineup-purchase:hover .lineup-purchase__arrow{
    transform: none;
  }
}

/* =========================================================
   CONTACT
========================================================= */

.contact{
  min-height: 0;
  padding-top: 88px;
  padding-bottom: 88px;
  color: #ffffff;
  background: linear-gradient(135deg, #666d76, #545b64);
}

.contact__inner{
  display: grid;
  align-items: center;
  gap: 38px;
}

.contact__copy{
  max-width: 700px;
}

.contact h2{
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.28;
  letter-spacing: -.03em;
}

.contact__copy p:last-child{
  max-width: 620px;
  color: #d7dde4;
}

.contact__actions{
  display: grid;
  gap: 16px;
}

.contact-card{
  position: relative;
  display: grid;
  min-height: 138px;
  padding: 24px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, background .35s;
}

.contact-card:hover{
  background: rgba(255, 255, 255, .17);
  box-shadow: 0 22px 60px rgba(17, 29, 45, .24);
  transform: translateY(-6px);
}

.contact-card small{
  color: rgba(255, 255, 255, .57);
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}

.contact-card span{
  font-size: 14px;
}

.contact-card strong{
  font-size: clamp(22px, 2vw, 30px);
}

.contact-card i{
  grid-column: 2;
  grid-row: 1 / 4;
  font-size: 25px;
  font-style: normal;
}

.contact-card--gray{
  background: linear-gradient(135deg, #727982, #626972);
}

.contact-card--blue{
  background: linear-gradient(135deg, #2f72ca, #174f9f);
}

@media (min-width: 768px){
  .contact{
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .contact__inner{
    grid-template-columns: 1fr 520px;
    gap: 54px;
  }

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

  .contact-card{
    min-height: 150px;
    padding: 28px 30px;
  }
}

/* =========================================================
   SHOP INFO
========================================================= */

.shop__infowrap{
  padding: clamp(40px, 11vw, 8%) 24px;
  color: #24364b;
  background:
    radial-gradient(circle at 88% 8%, rgba(85, 153, 220, .1), transparent 28%),
    linear-gradient(135deg, #f4f7fa, #e9eef3);
}

.shop__list__title{
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0;
  padding: 0;
  border: 0;
  color: #15375d;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(21px, 4.9vw, 37.8px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .025em;
  text-align: center;
}

.shop__list__title::before{
  content: "SHOP INFO";
  display: block;
  margin-bottom: 18px;
  color: #2369b2;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .35em;
}

.shop__open{
  opacity: 1 !important;
  visibility: visible !important;
  margin: 20px 0 0;
  color: #53657a;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.shop__adress__contents{
  display: grid;
  width: min(100%, 1440px);
  max-width: 1440px;
  margin: clamp(36px, 7vw, 72px) auto 0;
  gap: 18px;
}

.shop__adress_wrap{
  opacity: 1 !important;
  visibility: visible !important;
  min-width: 0;
  margin: 0;
  padding: 24px 18px 12px;
  border: 1px solid rgba(39, 69, 103, .1);
  border-radius: 4px;
  color: #24364b;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 48px rgba(39, 58, 82, .055);
  font-size: inherit;
}

.shop__adress_wrap h3{
  margin: 0 0 12px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(45, 93, 143, .14);
  color: #1b4e83;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .06em;
}

.shop__filter-toggle{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.shop__filter-toggle span{
  display: none;
}

.shop__table,
.shop__table tbody{
  display: block;
  width: 100%;
}

.shop__table tr{
  display: grid;
  grid-template-columns: minmax(68px, auto) minmax(0, 1fr) auto;
  align-items: center;
}

.shop__table th,
.shop__table td{
  min-width: 0;
  padding: 12px 7px;
  border: 0;
  border-bottom: 1px solid rgba(44, 69, 97, .09);
  text-align: left;
}

.shop__table tbody tr:last-child th,
.shop__table tbody tr:last-child td{
  border-bottom: 0;
}

.shop__table th.tenpo{
  width: auto;
  color: #183b60;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.shop__table td.adress{
  width: auto;
  color: #526174;
  font-size: 11px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.shop__table td.detail{
  width: auto;
}

.shop__table td.detail a{
  display: inline-flex;
  min-width: 52px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 105, 178, .24);
  border-radius: 3px;
  color: #1e63a9;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  background: #ffffff;
  transition: color .3s ease, border-color .3s ease, background-color .3s ease;
}

.shop__table td.detail a:hover{
  color: #ffffff;
  border-color: #1e63a9;
  background: #1e63a9;
}

.shop__table td.detail a:focus-visible{
  outline: 3px solid rgba(39, 127, 255, .32);
  outline-offset: 3px;
}

@media (max-width: 767px){
  .shop__adress_wrap{
    padding: 0;
  }

  .shop__adress_wrap h3{
    margin: 0;
    padding: 0;
    border-bottom: 0;
  }

  .shop__filter-toggle{
    padding: 18px;
    cursor: pointer;
  }

  .shop__filter-toggle span{
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .shop__filter-toggle span::before,
  .shop__filter-toggle span::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
  }

  .shop__filter-toggle span::after{
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .shop__filter-toggle[aria-expanded="true"] span::after{
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .has-shop-filter .shop__table{
    display: none;
  }

  .has-shop-filter .shop__adress_wrap.is-open .shop__table{
    display: block;
  }

  .shop__table td.detail a{
    min-width: 44px;
  }
}

@media (min-width: 600px){
  .shop__adress__contents{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px){
  .shop__infowrap{
    padding-inline: 40px;
  }
  .shop__adress__contents{
    gap: 24px;
  }
  .shop__adress_wrap h3{
    font-size: 20px;
  }
  .shop__table th.tenpo{
    font-size: 17px;
  }
  .shop__table td.adress{
    font-size: 12px;
  }
  .shop__table td.detail a{
    font-size: 10px;
  }
}

@media (min-width: 1440px){
  .shop__adress__contents{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* =========================================================
   INQUIRY
========================================================= */

.inquery__contents{
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding: clamp(40px, 12vw, 80px) 24px;
  overflow: hidden;
  color: #eef5fc;
  background:
    radial-gradient(circle at 78% 26%, rgba(74, 145, 216, .16), transparent 34%),
    linear-gradient(135deg, #26384b, #1a2b3e 52%, #112338);
}

.inquery__overlay{
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .18;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .08), transparent);
  backdrop-filter: none;
}

.inquery__wrapper{
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: none;
}

.inquery__ttl{
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0;
  color: #f3f7fb;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(21px, 4.9vw, 37.8px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .025em;
  text-align: center;
  text-shadow: none;
}

.inquery__wrap{
  display: grid;
  margin-top: clamp(36px, 7vw, 72px);
  padding: 0;
  gap: 18px;
}

.inquery__box{
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid rgba(184, 211, 235, .16);
  border-radius: 4px;
  color: #e8f0f8;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  text-align: center;
}

.inquery__sttl{
  margin: 0;
  padding: 0;
  color: #8ebdf0;
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
}

.inquery__tel{
  display: inline-block;
  margin-top: 18px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(23px, 5.5vw, 34px);
  font-weight: 600;
}

.inquery__text{
  margin: 14px 0 0;
  padding: 0;
  color: #c3d1df;
  font-size: 13px;
  line-height: 1.8;
}

.inquery__btn{
  width: min(100%, 300px);
  margin: 24px auto 0;
  padding: 0;
  border-radius: 4px;
  background: transparent;
  line-height: 0;
}

.inquery__btn a{
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid rgba(107, 165, 224, .3);
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(105deg, #173b64, #0d2d52);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .06em;
  transition: background .3s ease;
}

.inquery__btn a:hover{
  background: linear-gradient(105deg, #0d2d52, #173b64);
}

@media (min-width: 600px){
  .inquery__wrap{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 600px) and (max-width: 1023px){
  .inquery__tel{
    font-size: clamp(20px, 3vw, 24px);
    white-space: nowrap;
  }
}

@media (min-width: 1024px){
  .inquery__contents{
    padding-inline: 40px;
  }
}


/* =========================================================
   FOOTER
========================================================= */

.page-top{
  position: fixed;
  z-index: 90;
  right: 14px;
  bottom: 14px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(54, 61, 69, .65);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  backdrop-filter: blur(12px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.page-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.p-footer{
  opacity: 1 !important;
  visibility: visible !important;
  padding: 54px 20px 22px;
  color: #dce7f1;
  background: linear-gradient(135deg, #17283a, #0f2032 58%, #0a1929);
}

.p-footer__inner,
.p-footer__copyLight{
  width: min(100%, 1660px);
  max-width: 1660px;
  margin-inline: auto;
}

.p-footer__nav{
  display: grid;
  align-items: center;
  gap: 38px;
  font-size: .65rem;
}

.p-footer__logo{
  width: 148px;
  max-width: 160px;
  height: auto;
  margin: 0 auto;
}

.p-footer__navList{
  display: grid;
  max-width: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.p-footer__navItem{
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.p-footer__navItem::marker{
  content: "";
}

.p-footer__navItem a{
  color: #c9d6e2;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .055em;
}

.p-footer__copyLight{
  display: block;
  margin-top: 42px;
  padding-top: 18px;
  color: rgba(211, 224, 236, .58);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  text-align: center;
}

@media (max-width: 599px){
  .p-footer__logo{
    margin-inline: auto;
    justify-self: center;
  }
  .p-footer__navList{
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 8px;
    justify-items: center;
    text-align: center;
  }
}

@media (min-width: 600px){
  .p-footer__navList{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px){
  .page-top{
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }
  .p-footer{
    padding: 64px 40px 24px;
  }
  .p-footer__nav{
    width: 100%;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: clamp(32px, 6vw, 80px);
  }
  .p-footer__logo{
    width: 160px;
    margin: 0;
  }

  .p-footer__navList{
    width: 100%;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    text-align: center;
  }
}

@media (min-width: 1024px){
  .p-footer__nav{
    display: flex;
    width: min(100%, 1180px);
    margin-inline: auto;
    justify-content: space-between;
    gap: 64px;
  }

  .p-footer__navList{
    display: flex;
    width: auto;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(20px, 2vw, 32px);
  }

  .p-footer__navItem a{
    font-size: 13px;
    white-space: nowrap;
  }
}
