@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
@layer component {
  .c-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: var(--button-items, center);
        -ms-flex-align: var(--button-items, center);
            align-items: var(--button-items, center);
    -webkit-box-pack: var(--button-justify, center);
        -ms-flex-pack: var(--button-justify, center);
            justify-content: var(--button-justify, center);
    gap: var(--button-gap, 0.5em);
    width: var(--button-w, -webkit-fit-content);
    width: var(--button-w, -moz-fit-content);
    width: var(--button-w, fit-content);
    min-width: var(--button-miw, 0);
    max-width: var(--button-maw, 100%);
    height: var(--button-h, 3.5rem);
    color: var(--button-clr, currentColor);
    border: 1px solid var(--button-bdc, transparent);
    background-color: var(--button-bgc, transparent);
    font-size: var(--button-fz, clamp(0.8125rem, 0.9722222222vw, 0.875rem));
    font-weight: var(--button-fw, 700);
    -webkit-transition-property: opacity, color, background-color, border-color;
    transition-property: opacity, color, background-color, border-color;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .c-button:has(:is(a, span)) {
    padding: var(--button-p-y, 0.5em) var(--button-p-x, 2.5em);
  }
  .c-button a,
  .c-button span,
  .c-button button,
  .c-button input[type=submit],
  .c-button input[type=button] {
    color: currentColor;
  }
  .c-button a::after,
  .c-button span::after,
  .c-button button::after,
  .c-button input[type=submit]::after,
  .c-button input[type=button]::after {
    content: "";
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .c-button button,
  .c-button input[type=submit],
  .c-button input[type=button] {
    padding: var(--button-p-y, 0.5em) var(--button-p-x, 1.5em);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
  }
  .c-button .c-svg {
    width: 1.5em;
    height: 1.5em;
  }
  .c-button[data-variant*=primary], .c-button:not([data-variant]) {
    --button-clr: #fff;
    --button-bdc: var(--clr--theme-red);
    --button-bgc: var(--clr--theme-red);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=primary]:hover, .c-button:not([data-variant]):hover {
    --button-clr: var(--clr--theme-red);
    --button-bgc: #fff;
    --triangle-bgc: var(--clr--theme-red);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=secondary] {
    --button-bdc: var(--clr--theme-gray);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=secondary]:hover {
    --triangle-bgc: #fff;
    --svg-fill: #fff;
    background-color: var(--clr--theme-red);
    color: #fff;
  }
  .c-button[data-variant*=rounded-sm] {
    border-radius: 4px;
  }
  .c-button[data-variant*=rounded-md] {
    border-radius: 8px;
  }
  .c-button[data-variant*=rounded-full] {
    border-radius: var(--button-h, 3.5rem);
  }
  .c-button[data-variant*=has-triangle] {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-button[data-variant*=has-triangle] a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
  .c-button[data-variant*=has-triangle]::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-width: 6px 4px 0 4px;
    border-style: solid;
    border-color: var(--triangle-bgc, var(--clr--theme-red)) transparent transparent transparent;
    -webkit-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
.page__footer {
  position: relative;
}

.feature-cool-is-cool-plus {
  --content-min-margin: 20;
  --ff--en: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  padding-bottom: clamp(8rem, 11.1111111111vw, 10rem);
}

.pg-ff-roboto {
  font-family: var(--ff--en);
  font-weight: 400;
  font-style: normal;
}

.pg-mv {
  position: relative;
}
.pg-mv__logo {
  width: clamp(15.8125rem, 28.75vw, 25.875rem);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
}

.pg-introduction {
  padding-block: clamp(5rem, 8.8888888889vw, 8rem) clamp(3.5rem, 5.5555555556vw, 5rem);
}
.pg-introduction__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(3rem, 4.1666666667vw, 3.75rem);
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 1160px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
@media (max-width: 48em) {
  .pg-introduction__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pg-introduction__mov {
  -webkit-box-flex: 640;
      -ms-flex: 640;
          flex: 640;
}
.pg-introduction__mov video {
  max-width: 100%;
  display: block;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-introduction__mov video:not(.is-fadein) {
  opacity: 0;
}
.pg-introduction__mov video:hover {
  cursor: pointer;
  opacity: 0.6;
}
.pg-introduction__content {
  -webkit-box-flex: 460;
      -ms-flex: 460;
          flex: 460;
}
.pg-introduction__subheading {
  font-family: var(--ff--en);
  font-size: clamp(0.875rem, 1.0416666667vw, 0.9375rem);
}
.pg-introduction__heading {
  font-size: clamp(1.6875rem, 2.2222222222vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.pg-introduction__text {
  font-size: clamp(0.8125rem, 0.9722222222vw, 0.875rem);
  line-height: 1.8;
  margin-top: clamp(1rem, 1.6666666667vw, 1.5rem);
}
.pg-introduction .c-button {
  margin-top: clamp(1.5rem, 2.2222222222vw, 2rem);
  margin-inline: auto;
  font-weight: normal;
  font-size: clamp(0.8125rem, 0.9722222222vw, 0.875rem);
}
.pg-introduction .c-button:hover {
  background-color: #000;
}

.pg-contents > .c-button {
  --button-maw: 400px;
  --button-w: 90%;
  --button-h: clamp(4.5rem, 6.25vw, 5.625rem);
  --button-fw: 400;
  margin-inline: auto;
}
.pg-contents > .c-button:hover {
  background-color: #000;
}

.pg-section {
  padding-block: clamp(3.5rem, 5.5555555556vw, 5rem);
}
.pg-section__header {
  padding-inline: clamp(1.25rem, 2.2222222222vw, 2rem);
}
.pg-section__heading {
  font-size: clamp(1.125rem, 1.3888888889vw, 1.25rem);
  font-family: var(--ff--en);
  font-weight: 700;
}
.pg-section__content:not(:first-child) {
  margin-top: clamp(1rem, 1.6666666667vw, 1.5rem);
}

.pg-functionality {
  container-type: inline-size;
  container-name: functionality;
}
.pg-functionality__grid {
  counter-reset: function-counter;
  display: grid;
  border-block: 1px solid #e8e8e8;
}
@container functionality (min-width: 576px) and (max-width: 960px) {
  .pg-functionality__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-template-areas: "A B" "C D";
  }
}
@container functionality (min-width: 960px) {
  .pg-functionality__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-areas: "A B C" "A B D";
  }
}
.pg-functionality__cell {
  position: relative;
  counter-increment: function-counter;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.pg-functionality__cell::after {
  content: counter(function-counter, decimal-leading-zero);
  font-family: var(--ff--en);
  font-weight: 700;
  line-height: 1.1;
  color: #ddd;
  position: absolute;
  top: 16px;
  right: 16px;
}
@container functionality (min-width: 576px) {
  .pg-functionality__cell:nth-child(1) {
    grid-area: A;
  }
  .pg-functionality__cell:nth-child(2) {
    grid-area: B;
  }
  .pg-functionality__cell:nth-child(3) {
    grid-area: C;
  }
  .pg-functionality__cell:nth-child(4) {
    grid-area: D;
  }
}
@container functionality (max-width: 576px) {
  .pg-functionality__cell:not(:first-child) {
    border-top: 1px solid #e8e8e8;
  }
}
@container functionality (min-width: 576px) and (max-width: 960px) {
  .pg-functionality__cell:nth-child(1), .pg-functionality__cell:nth-child(3) {
    border-right: 1px solid #e8e8e8;
  }
  .pg-functionality__cell:nth-child(3), .pg-functionality__cell:nth-child(4) {
    border-top: 1px solid #e8e8e8;
  }
}
@container functionality (min-width: 960px) {
  .pg-functionality__cell:nth-child(1), .pg-functionality__cell:nth-child(2) {
    border-right: 1px solid #e8e8e8;
  }
  .pg-functionality__cell:nth-child(3) {
    border-bottom: 1px solid #e8e8e8;
  }
}
.pg-functionality__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: clamp(3.5rem, 5.4166666667vw, 4.875rem) 3rem clamp(1.5rem, 3.3333333333vw, 3rem) clamp(2rem, 3.3333333333vw, 3rem);
}
.pg-functionality__title {
  line-height: 1.1;
  font-size: clamp(1.5rem, 1.9444444444vw, 1.75rem);
  font-weight: 700;
}
.pg-functionality__title span {
  display: inline-block;
}
.pg-functionality__title small {
  font-size: clamp(0.625rem, 0.8333333333vw, 0.75rem);
  font-weight: 400;
  display: inline-block;
}
.pg-functionality__text {
  margin-top: clamp(0.75rem, 1.1111111111vw, 1rem);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: bold;
}

.pg-product {
  background-color: #d9e4ea;
}
@media (min-width: 48.0625em) {
  .pg-product:nth-child(2n+1) .pg-product__inner {
    grid-template-areas: "A B";
    grid-template-columns: minmax(0, 680fr) minmax(0, 760fr);
  }
}
@media (min-width: 48.0625em) {
  .pg-product:nth-child(2n) .pg-product__inner {
    grid-template-columns: minmax(0, 760fr) minmax(0, 680fr);
    grid-template-areas: "B A";
  }
}
.pg-product__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 48.0625em) {
  .pg-product__cell:nth-child(1) {
    grid-area: A;
  }
  .pg-product__cell:nth-child(2) {
    grid-area: B;
  }
}
.pg-product__slider {
  position: sticky;
  top: var(--fixed-header-height);
}
.pg-product__content {
  padding-block: clamp(3rem, 6.6666666667vw, 6rem) clamp(3.5rem, 8.8888888889vw, 8rem);
  padding-inline: 1.25rem;
}
.pg-product__content-inner {
  max-width: 504px;
  margin-inline: auto;
}
.pg-product__subheading {
  font-family: var(--ff--en);
  font-size: clamp(0.875rem, 1.0416666667vw, 0.9375rem);
}
.pg-product__title {
  font-size: clamp(2rem, 2.7777777778vw, 2.5rem);
  font-family: var(--ff--en);
  font-weight: 700;
  line-height: 1.1;
}
.pg-product__title:not(:first-child) {
  margin-top: 1rem;
}
.pg-product__subtitle {
  font-size: clamp(0.9375rem, 1.1111111111vw, 1rem);
  font-weight: bold;
}
.pg-product__subtitle:not(:first-child) {
  margin-top: 0.25rem;
}
.pg-product__text {
  font-size: clamp(0.8125rem, 0.9722222222vw, 0.875rem);
  line-height: 1.8;
}
.pg-product__text:not(:first-child) {
  margin-top: 1.5rem;
}
.pg-product__caution {
  font-size: clamp(0.6875rem, 0.8333333333vw, 0.75rem);
  color: rgba(0, 0, 0, 0.6);
  margin-top: 1rem;
  line-height: 1.8;
}

.pg-product-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.2222222222vw, 2rem) clamp(0.625rem, 1.6666666667vw, 1.5rem);
}
.pg-product-items:not(:first-child) {
  margin-top: clamp(3rem, 4.4444444444vw, 4rem);
}

.pg-product-item {
  position: relative;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-product-item.is-coming-soon a {
  pointer-events: none;
}
.pg-product-item.is-coming-soon .pg-product-item__price::after {
  content: attr(data-label);
  font-size: 0.625rem;
  display: inline-block;
}
.pg-product-item:not(.is-coming-soon):has(a[href]):hover {
  opacity: 0.7;
}
.pg-product-item__img a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.pg-product-item__content {
  margin-top: 1rem;
}
.pg-product-item__title {
  font-size: clamp(0.75rem, 0.9027777778vw, 0.8125rem);
}
.pg-product-item__price {
  font-size: clamp(0.75rem, 0.9027777778vw, 0.8125rem);
  margin-top: 0.25rem;
}
.pg-product-item__price small {
  font-size: 0.625rem;
}
.pg-product-item__note {
  margin-top: 0.5rem;
  font-size: clamp(0.6875rem, 0.8333333333vw, 0.75rem);
  color: #878787;
}

.l-modal {
  background-color: rgba(0, 0, 0, 0.9);
}
.l-modal video {
  max-width: 100%;
}
.l-modal__close {
  top: 32px;
  right: 0;
  cursor: pointer;
}/*# sourceMappingURL=index.css.map */