.ua-tops-feature {
  overflow-x: clip;
  background: #fff;
  color: #000000;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.ua-tops-feature__hero {
  position: relative;
}

.ua-tops-feature__hero-media,
.ua-tops-feature__hero-media video {
  display: block;
}

.ua-tops-feature__hero video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ua-tops-feature__scroll {
  position: absolute;
  right: 70px;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  writing-mode: vertical-rl;
}

.ua-tops-feature__scroll-bar {
  position: relative;
  display: block;
  width: 1px;
  height: 40px;
  overflow: hidden;
}

.ua-tops-feature__scroll-bar::after {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 40px;
  background: #fff;
  content: "";
  animation: ua-scroll-bar 2s linear infinite;
}

.ua-tops-feature__page-top {
  position: fixed;
  right: 36px;
  bottom: 36px;
  z-index: 20;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility 0s linear .35s;
}

.ua-tops-feature__page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.ua-tops-feature__page-top img {
  display: block;
  width: 100%;
  height: 100%;
}

.button-page-top[data-js="scroll-return"] {
  display: none !important;
}

@keyframes ua-scroll-bar {
  0% {
    opacity: 0;
    transform: translateY(-101%);
  }

  1% {
    opacity: 1;
    transform: translateY(-101%);
  }

  99% {
    opacity: 1;
    transform: translateY(101%);
  }

  100% {
    opacity: 0;
    transform: translateY(101%);
  }
}

.ua-tops-feature__brand {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 10;
  width: 234px;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .35s ease;
}

.ua-tops-feature__brand.is-fixed {
  position: fixed;
  opacity: 1;
  pointer-events: auto;
}

.ua-tops-feature__brand img {
  width: 100%;
}

.ua-tops-feature__hero-end {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
}

.ua-tops-feature__intro {
  padding: 124px 20px 82px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.ua-tops-feature__intro p {
  line-height: 1.8;
}

.ua-tops-feature__intro-break-sp {
  display: none;
}

.ua-tops-feature__looks {
  margin-top: 60px;
}

.ua-look {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  align-items: stretch;
  padding-bottom: 126px;
}

@media (min-width: 768px) {
  .ua-look ~ .ua-look {
    padding-bottom: 238px;
  }

  .ua-look:last-child {
    padding-bottom: 129px;
  }
}

.ua-look__name {
  position: absolute;
  top: 0;
  left: calc(50% + 0px);
  z-index: 1;
  color: #D0D0D0;
  font-family: "EB Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  writing-mode: vertical-rl;
}

.ua-look__visual {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
}

.ua-look__main {
  display: block;
  position: sticky;
  top: 0;
  width: 100%;
}

.ua-look__main img {
  width: 100%;
}

.ua-look__detail {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  width: 380px;
  margin: 50px auto 0;
  padding-bottom: 1px;
}

@media (min-width: 768px) {
  .ua-look__detail {
    width: min(380px, calc(100% - 70px));
    margin-right: auto;
    margin-left: max(42px, calc((100% - 380px) / 2));
  }
}

.ua-look__number span,
.ua-look__number strong {
  display: block;
}

.ua-look__number span {
  font-size: 10px;
}

.ua-look__number strong {
  margin-top: 4px;
  font-family: "EB Garamond", serif;
  font-size: 28px;
  font-weight: 400;
}

.ua-look__slider {
  position: relative;
  margin-top: 50px;
}

.ua-look__slides img {
  width: 100%;
}

.ua-look__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 44px;
  color: transparent;
  font-size: 0;
  transform: translateY(-50%);
}

.ua-look__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  content: "";
}

.ua-look__arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  content: "";
  transform: translate(-50%, -50%);
}

.ua-look__arrow--prev {
  left: -28px;
}

.ua-look__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.ua-look__arrow--next {
  right: -28px;
}

.ua-look__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.ua-look__slider .slick-dots {
  position: static;
  bottom: auto;
  display: flex;
  gap: 4px;
  width: auto;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

/* .ua-look__slider .slick-dots {
  display: flex;
  gap: 5px;
  margin-top: 18px;
  list-style: none;
} */

.ua-look__slider .slick-dots li {
  width: 20px;
  height: auto;
  margin: 0;
  padding: 0;
  border-top: 1px solid #7f7f7f;
}

/* .ua-look__slider .slick-dots li {
  width: 20px;
  border-top: 1px solid #7E7E7E;
} */

.ua-look__slider .slick-dots .slick-active {
  border-top: 2px solid #707070;
}

/* .ua-look__slider .slick-dots .slick-active {
  border-color: #111;
  border-width: 2px;
} */

.ua-look__slider .slick-dots button {
  display: block;
  width: 100%;
  height: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  cursor: pointer;
}

/* .ua-look__slider .slick-dots button {
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
} */

.ua-look__slider .slick-dots li button::before {
  content: none;
}

.ua-look__slider .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.ua-look__items {
  width: 200px;
  margin: -13px 0 0 auto;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
}

.ua-look__items li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  column-gap: 19px;
}

.ua-look__items a {
  position: relative;
  z-index: 1;
  color: inherit;
  text-decoration: none;
}

.ua-look__items li:first-child > :first-child {
  font-weight: 600;
}

.ua-look__items .ua-look__coming-soon {
  color: #AAAAAA;
  white-space: nowrap;
}

.ua-look__copy {
  margin-top: 62px;
}

.ua-look__copy h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.ua-look__copy p {
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
}

.ua-look__point {
  position: relative;
  margin-top: 42px;
  padding-bottom: 27px;
  border: 1px solid #777;
  text-align: center;
}

.ua-look__point h3 {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #777;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

.ua-look__point h3 span {
  display: block;
  border-bottom: 1px solid #777;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: .3em;
}

.ua-look__number span,
.ua-look__point h3 span {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.ua-look__point img {
  width: 315px;
  margin: -24px auto 0;
}

.ua-look__point-image-link {
  display: contents;
}

.ua-look__point-image-link img {
  pointer-events: auto;
}

.ua-look__point p,
.ua-look__point ol {
  width: fit-content;
  max-width: 100%;
  margin-top: -18px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.ua-look__point ol li:nth-child(1)::before {
  content: "① ";
}

.ua-look__point ol li:nth-child(2)::before {
  content: "② ";
}

.ua-look__point ol li:nth-child(3)::before {
  content: "③ ";
}

.ua-look__point ol li:nth-child(4)::before {
  content: "④ ";
}

.ua-look__point-product {
  position: absolute;
  bottom: -15px;
  left: 50%;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  width: 188px;
  height: 29px;
  padding: 0 21px;
  border: 1px solid #777;
  border-radius: 15px;
  background: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}

.ua-tops-feature__gallery {
  overflow: hidden;
  margin: -10px 0 190px;
}

.ua-tops-feature__gallery--sp {
  display: none;
}

.ua-tops-feature__gallery-track {
  --ua-gallery-duration: 44;
  display: flex;
  width: max-content;
}

.ua-tops-feature__gallery-set {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding-right: 10px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.ua-tops-feature__gallery-set img {
  width: calc((100vw - 30px) / 4);
  max-width: none;
  flex: 0 0 auto;
}

.ua-tops-feature__footer {
  position: relative;
  height: 322px;
  background: #fff;
  color: #000;
}

.ua-tops-feature__footer-credit {
  position: absolute;
  top: 29px;
  left: 60px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.9;
}

.ua-tops-feature__footer-credit-title {
  position: absolute;
  bottom: calc(100% + 19px);
  left: 0;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.ua-tops-feature__footer-sns {
  position: absolute;
  top: 200px;
  left: 60px;
  display: flex;
  align-items: center;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.ua-tops-feature__footer-sns ul {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 42px;
}

.ua-tops-feature__footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.ua-tops-feature__footer-sns li:last-child {
  /* margin-left: -8px; */
}

.ua-tops-feature__footer-sns img {
  display: block;
}

.ua-tops-feature__footer-copyright {
  position: absolute;
  bottom: 50px;
  left: 60px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.ua-tops-feature__footer-logo {
  position: absolute;
  right: 60px;
  bottom: 50px;
  display: block;
  width: 208px;
  height: 67px;
}

@media (max-width: 767px) {
  .ua-tops-feature {
    width: 100%;
    overflow-x: hidden;
  }

  .ua-tops-feature__hero,
  .ua-tops-feature__hero-media,
  .ua-tops-feature__hero video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
  }

  .ua-tops-feature__scroll {
    right: 24px;
  }

  .ua-tops-feature__page-top {
    right: 10px;
    bottom: 10px;
  }

  .ua-tops-feature__brand {
    top: 12px;
    left: 12px;
    width: 177px;
  }

  .ua-tops-feature__footer {
    height: 402px;
  }

  .ua-tops-feature__footer-credit {
    top: 61px;
    right: 0;
    left: 0;
    text-align: center;
  }

  .ua-tops-feature__footer-credit-title {
    right: 0;
  }

  .ua-tops-feature__footer-logo {
    top: -94px;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .ua-tops-feature__footer-sns {
    top: 270px;
    right: 0;
    left: 0;
    display: block;
    text-align: center;
  }

  .ua-tops-feature__footer-sns ul {
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    margin-left: 0;
  }

  .ua-tops-feature__footer-copyright {
    right: 0;
    bottom: 25px;
    left: 0;
    text-align: center;
  }

  .ua-tops-feature__intro {
    padding: 76px 10px 68px;
  }

  .ua-tops-feature__intro p {
    line-height: 2;
  }

  .ua-tops-feature__looks{
    margin-top: 0;
  }

  .ua-tops-feature__intro-break-sp {
    display: inline;
  }

  .ua-look,
  .ua-look--reverse {
    display: flex;
    width: 100%;
    min-height: auto;
    padding-bottom: 76px;
    /* padding: 0 0 108px; */
    flex-direction: column;
  }

  .ua-look__name {
    position: static;
    order: 0;
    width: 100%;
    height: 54px;
    line-height: 54px;
    letter-spacing: 0;
    text-align: center;
    writing-mode: horizontal-tb;
  }

  .ua-look__visual {
    display: contents;
  }

  .ua-look__main {
    display: block;
    position: static;
    order: 1;
    width: 100%;
  }

  .ua-look__main img {
    width: 100%;
  }

  .ua-look__detail {
    order: 2;
    width: 100%;
    margin: 0;
    padding: 41px 20px 0;
  }

  .ua-look__number {
    margin-right: 10px;
    margin-left: 10px;
  }

  .ua-look__number span {
    font-size: 11px;
  }

  .ua-look__number strong {
    margin-top: 2px;
    line-height: 1.1;
  }

  .ua-look__slider {
    width: 100%;
    margin-top: 26px;
  }

  .ua-look__slider .slick-dots {
    gap: 4px;
    margin-top: 18px;
  }

  .ua-look__slider .slick-dots li {
    width: 20px;
  }

  .ua-look__slides,
  .ua-look__slides .slick-list,
  .ua-look__slides .slick-track,
  .ua-look__slides .slick-slide {
    width: 100%;
  }

  .ua-look__slides .slick-slide img {
    width: 100%;
  }

  .ua-look__arrow--prev {
    left: 20px;
  }

  .ua-look__arrow--next {
    right: 20px;
  }

  .ua-look__arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .78);
  }

  .ua-look__arrow::before {
    width: 7px;
    height: 7px;
    border-width: 1px;
  }

  .ua-look__items {
    width: 200px;
    margin: -10px 0 0 auto;
    line-height: 2;
  }

  .ua-look__copy {
    margin: 47px 10px 0;
  }

  .ua-look__copy h3 {
    line-height: 1.5;
  }

  .ua-look__copy p {
    margin-top: 15px;
    line-height: 2;
  }

  .ua-look__point {
    width: 100%;
    margin-top: 34px;
    padding-bottom: 27px;
  }

  .ua-look__point p,
  .ua-look__point ol {
    padding: 0 20px;
    line-height: 1.7;
  }

  .ua-look__point h3 {
    line-height: 20px;
  }

  .ua-look__point h3 span {
    font-size: 13px;
    line-height: 34px;
  }

  .ua-look__point img {
    width: 300px;
    margin-top: -24px;
  }

  .ua-look__point-product {
    bottom: -15px;
  }

  .ua-tops-feature__gallery {
    margin: 0;
  }

  .ua-tops-feature__gallery--pc {
    display: none;
  }

  .ua-tops-feature__gallery--sp {
    display: block;
    width: calc(100% + 60px);
    margin: 26px 0 39px -30px;
  }

  .ua-tops-feature__gallery-set {
    gap: 8px;
    padding-right: 8px;
  }

  .ua-tops-feature__gallery-set img {
    width: 180px;
  }

  .ua-tops-feature__gallery-track {
    --ua-gallery-duration: 34;
  }

  .ua-look:last-child {
    padding-bottom: 240px;
  }

}

.ua-fade-enabled :is(
  .ua-tops-feature__intro,
  .ua-look__main img,
  .ua-look__name,
  .ua-look__number,
  .ua-look__slider,
  .ua-look__items,
  .ua-look__copy,
  .ua-look__point,
  .ua-tops-feature__gallery
) {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .9s ease, transform .9s ease;
}

.ua-fade-enabled .ua-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .ua-tops-feature__scroll-bar::after {
    animation: none;
    transform: none;
  }

  .ua-tops-feature__brand.is-fixed {
    animation: none;
  }

  .ua-fade-enabled :is(
    .ua-tops-feature__intro,
    .ua-look__main img,
    .ua-look__name,
    .ua-look__number,
    .ua-look__slider,
    .ua-look__items,
    .ua-look__copy,
    .ua-look__point,
    .ua-tops-feature__gallery
  ) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}