@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Poppins:ital,wght@0,500;0,600;0,700;1,600&display=swap");
.top-mv {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #000;
}

.top-mv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-mv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.top-mv__ticker {
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-mv__ticker {
    top: 22%;
  }
}

.top-mv__ticker-track {
  display: inline-block;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-size: 10vw;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #ffffff;
  opacity: 0.14;
  animation: top-mv-ticker 55s linear infinite;
}
@media screen and (max-width: 767px) {
  .top-mv__ticker-track {
    font-size: 22vw;
  }
}

@keyframes top-mv-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes char-reveal {
  to {
    transform: translateY(0);
  }
}
.top-mv__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-mv__content {
    bottom: 290px;
    justify-content: center;
  }
}

.top-mv__title {
  color: #ffffff;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 3.5rem;
    text-align: center;
    line-height: 1.4;
  }
}
.top-mv__title .char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.top-mv__title .char {
  display: inline-block;
  transform: translateY(105%);
  animation: char-reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.top-mv__title .char.char--small {
  font-size: 0.72em;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: inline;
  }
}

.top-products {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

@keyframes product-item-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-products__list {
  display: flex;
  padding: 0 20px 20px 20px;
}
@media screen and (max-width: 767px) {
  .top-products__list {
    padding: 0 10px 10px 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-products__item {
  flex: 1 1 0;
  min-width: 0;
  opacity: 0;
}
.top-products.is-visible .top-products__item:nth-child(1) {
  animation: product-item-in 0.55s 0s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.top-products.is-visible .top-products__item:nth-child(2) {
  animation: product-item-in 0.55s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.top-products.is-visible .top-products__item:nth-child(3) {
  animation: product-item-in 0.55s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.top-products.is-visible .top-products__item:nth-child(4) {
  animation: product-item-in 0.55s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.top-products.is-visible .top-products__item:nth-child(5) {
  animation: product-item-in 0.55s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.top-products__item + .top-products__item {
  border-left: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .top-products__item {
    border-bottom: 1px solid #d9d9d9;
  }
  .top-products__item:nth-child(2n) {
    border-left: 1px solid #d9d9d9;
  }
  .top-products__item:nth-child(2n-1) {
    border-left: none;
  }
  .top-products__item:last-child {
    border-bottom: none;
  }
  .top-products__item:nth-last-child(2):nth-child(even) {
    border-bottom: none;
  }
}

.top-products__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .top-products__link {
    flex-direction: row;
    align-items: stretch;
    min-height: 60px;
  }
}

.top-products__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .top-products__img-wrap {
    flex: 0 0 64px;
    aspect-ratio: auto;
  }
}
.top-products__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  transition: opacity 0.25s ease;
}

.top-products__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.top-products__link:hover .top-products__img-wrap::after {
  opacity: 0;
}
.top-products__link:hover .top-products__img {
  transform: scale(1.06);
}

.top-products__body {
  flex: 1 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px 14px 16px;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .top-products__body {
    gap: 10px;
    padding: 12px 28px 12px 14px;
  }
}
@media screen and (max-width: 767px) {
  .top-products__body {
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 10px 28px 10px 10px;
  }
}
.top-products__body::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #68dfc0;
  border-right: 1.5px solid #68dfc0;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .top-products__body::after {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .top-products__body::after {
    right: 8px;
  }
}

.top-products__link:hover .top-products__body::after {
  transform: translate(4px, -50%) rotate(45deg);
}

.top-products__num {
  flex: 0 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: #40c7a4;
  letter-spacing: 0.08em;
  line-height: 1;
}
.top-products__num::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  margin-top: 7px;
  background: #68dfc0;
}
@media screen and (max-width: 767px) {
  .top-products__num {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.1rem;
  }
  .top-products__num::after {
    display: none;
  }
}

.top-products__label {
  flex: 1 1 auto;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #1f1f1f;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .top-products__label {
    font-size: clamp(1.2rem, 0.968rem + 0.29vw, 1.5rem);
  }
}
@media screen and (max-width: 767px) {
  .top-products__label {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.top-about {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background: #ffffff;
}
.top-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url(../images/bg_img01.png) no-repeat center top/cover;
  pointer-events: none;
}
.top-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding: 60px 0 20px;
  }
  .top-about::before {
    width: 100%;
    opacity: 0.5;
  }
  .top-about::after {
    height: 180px;
  }
}

.top-about__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 80px, 1240px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-about__inner {
    width: min(100% - 40px, 100%);
  }
}

.top-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  grid-template-rows: auto 1fr;
  grid-template-areas: "head visual" "body visual";
  gap: 0 24px;
  align-items: start;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .top-about__layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
    gap: 0 36px;
  }
}
@media screen and (max-width: 767px) {
  .top-about__layout {
    display: flex;
    flex-direction: column;
  }
}

.top-about__head {
  grid-area: head;
}
@media screen and (max-width: 767px) {
  .top-about__head {
    order: 1;
  }
}

.top-about__visual {
  grid-area: visual;
  position: relative;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  .top-about__visual {
    order: 2;
    margin-top: 32px;
    width: 100%;
  }
}

.top-about__body {
  grid-area: body;
  padding-top: 42px;
}
@media screen and (max-width: 767px) {
  .top-about__body {
    order: 3;
    padding-top: 0;
    margin-top: 28px;
  }
}

@media screen and (max-width: 767px) {
  .top-about__body .sec-link {
    text-align: right;
  }
}

.top-about__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #1f1f1f;
  max-width: 560px;
}
.top-about__text p + p {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .top-about__text {
    font-size: 1.4rem;
  }
}

.top-about__deco {
  position: absolute;
  top: -100px;
  right: calc((100vw - min(100vw - 80px, 1240px)) / -2);
  bottom: -120px;
  width: 360px;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .top-about__deco {
    top: -100px;
    right: calc((100vw - min(100vw - 80px, 1240px)) / -2);
    bottom: -120px;
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .top-about__deco {
    display: none;
  }
}

.top-about__deco-rect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 250px;
  background: #68dfc0;
  transform-origin: bottom;
  transform: scaleY(0) translateY(28px);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.top-about.is-inview .top-about__deco-rect {
  transform: scaleY(1) translateY(0);
}

.top-about__deco-para {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: rgba(255, 255, 255, 0.34);
  mix-blend-mode: overlay;
  clip-path: polygon(50% 0, 100% 0, 50% 100%, 0 100%);
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s 0.2s ease, transform 0.85s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.top-about.is-inview .top-about__deco-para {
  opacity: 1;
  transform: translateX(0);
}

.top-about__img-wrap {
  position: absolute;
  top: 34px;
  right: 0;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  padding-right: 28px;
  padding-bottom: 28px;
  clip-path: inset(0 0 0 100%);
  transform: translateX(-10%);
  transition: clip-path 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .top-about__img-wrap {
    top: 54px;
    max-width: 380px;
    padding-right: 20px;
    padding-bottom: 20px;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .top-about__img-wrap {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: none;
    padding-right: 12px;
    padding-bottom: 12px;
    clip-path: none;
    transform: none;
  }
}
.top-about.is-inview .top-about__img-wrap {
  clip-path: inset(0 0 0 0);
}

.top-about__img {
  display: block;
  width: 100%;
  aspect-ratio: 59/34;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.top-about__frame {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-about__frame {
    top: 10px;
    left: 10px;
  }
}
.top-about__frame span {
  position: absolute;
  background: #ffffff;
}
.top-about__frame span:nth-child(1) {
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  transition: width 0.15s 0.18s ease;
}
.top-about__frame span:nth-child(2) {
  top: 0;
  right: 0;
  width: 2px;
  height: 0;
  transition: height 0.15s 0.33s ease;
}
.top-about__frame span:nth-child(3) {
  bottom: 0;
  right: 0;
  height: 2px;
  width: 0;
  transition: width 0.15s 0.48s ease;
}
.top-about__frame span:nth-child(4) {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 0;
  transition: height 0.15s 0.63s ease;
}
.top-about.is-inview .top-about__frame span:nth-child(1) {
  width: 100%;
}
.top-about.is-inview .top-about__frame span:nth-child(2) {
  height: 100%;
}
.top-about.is-inview .top-about__frame span:nth-child(3) {
  width: 100%;
}
.top-about.is-inview .top-about__frame span:nth-child(4) {
  height: 100%;
}

.top-columns {
  padding: 120px 0;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .top-columns {
    padding: 80px 0;
  }
}

.top-columns__inner {
  width: min(100% - 80px, 1240px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-columns__inner {
    width: min(100% - 40px, 100%);
  }
}

.top-columns__layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "head featured" "list featured";
  column-gap: 28px;
  row-gap: 48px;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .top-columns__layout {
    grid-template-areas: "head head" "list featured";
    column-gap: 20px;
    row-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-columns__layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.top-columns__head {
  grid-area: head;
}
@media screen and (max-width: 767px) {
  .top-columns__head {
    order: 1;
  }
}

.top-columns__list {
  grid-area: list;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .top-columns__list {
    order: 3;
    align-self: stretch;
    width: 100%;
    gap: 12px;
  }
}

.top-columns__featured {
  grid-area: featured;
  align-self: start;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .top-columns__featured {
    align-self: start;
  }
}
@media screen and (max-width: 767px) {
  .top-columns__featured {
    order: 2;
    align-self: stretch;
    width: 100%;
  }
}

.top-columns__foot {
  margin-top: 52px;
}
.top-columns__foot .sec-link {
  margin-top: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-columns__foot {
    margin-top: 32px;
  }
}

.top-columns .sec-link__btn {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.12em;
}/*# sourceMappingURL=index.css.map */