@charset "UTF-8";
/* -----------------------------
TOP
-------------------------------*/

section:not(#instagram) h2 {
  width: 460px;
  margin-inline: auto;
}

#topics {
  margin-top: 120px;
}
#topics ol {
  counter-reset: item;
  list-style-type: none;
}
#topics ol > li {
  margin-top: 60px;
}
#topics hgroup {
  display: grid;
  grid-template-columns: 110px 1fr;
  row-gap: 30px;
}
#topics hgroup::before {
  content: "0" counter(item);
  counter-increment: item;
  font-family: var(--font-oxanium);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
}
#topics hgroup h3 {
  font-feature-settings: "palt";
  font-size: 40px;
  line-height: 1.5;
}
#topics hgroup p {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.7;
}
#topics .brands-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 50px 30px;
}
#topics .brands-list li {
  border: 1px solid #e6e6e2;
  background-color: #fff;
  padding: 0 35px 30px;
}
#topics .brands-list li:nth-of-type(2n - 1) {
  margin-left: -1px;
}
#topics .brands-list li:nth-of-type(n + 3) {
  margin-top: -1px;
}
#topics .brands-list figure {
  margin-bottom: 30px;
}
#topics .content {
  background-color: #000;
  margin-top: 30px;
  padding: 35px 35px 40px;
}
#topics .content figure {
  margin-bottom: 40px;
}
#topics .content .common-link {
  border-color: #fff;
  color: #fff;
}

#news {
  margin-top: 100px;
}
#news ul {
  margin-top: 40px;
}
#news ul li a {
  display: grid;
  grid-template-columns: 324px 1fr;
  column-gap: 20px;
  border-top: 1px solid #e6e6e2;
}
#news ul li:last-of-type a {
  border-bottom: 1px solid #e6e6e2;
}
#news ul li .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 12px;
}
#news ul li .body time {
  font-family: var(--font-oxanium);
  color: #686868;
  font-size: 24px;
}
#news ul li .body p {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.69;
}

#brands {
  margin-top: 140px;
}
#brands ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 70px;
}
#brands ol li a {
  display: block;
  width: 210px;
  height: 80px;
}

#instagram {
  margin-top: 140px;
}
#instagram h2 {
  width: 680px;
  translate: -15px 0;
}
#instagram ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-block: 50px;
}
#instagram ul li {
  aspect-ratio: 1;
}
#instagram ul a {
  display: block;
  height: 100%;
}
#instagram ul a img {
  height: 100%;
  object-fit: cover;
}

.caution {
  margin-top: 90px;
}
.caution p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.63;
}

/*------------------------------------------------
cmn-modal
------------------------------------------------*/
#modal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: -webkit-fixed;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#modal.open {
  opacity: 1;
  visibility: visible;
}
#modal .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.5s ease;
}
#modal .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transform: scale(0.95);
  transition: transform 0.5s ease;
  background-color: white;
  width: 750px;
}
#modal.open .inner {
  transform: scale(1);
  transition: transform 0.5s ease;
}
#modal .scroll {
  position: absolute;
  left: 50%;
  bottom: 50px;
  z-index: 3;
  transform: translateY(50%);
  height: 50px;
  transition: opacity 0.5s ease;
}
#modal .scroll.hide {
  opacity: 0;
}
#modal .scroll span {
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  top: -30px;
  opacity: 0;
  color: #000;
  font-size: 22px;
  letter-spacing: 0.05em;
  animation: txtmove 1.4s ease-in-out infinite;
  opacity: 0;
}
#modal .scroll::before {
  content: "";
  position: absolute;
  top: 0;
  width: 7px;
  aspect-ratio: 7 / 44;
  background: url(https://www.jr-takashimaya.co.jp/cn/en/cp/cs_casestudy/img/common/modal-slider-scroll.svg) no-repeat center / contain;
  animation: pathmove01 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove01 {
  0% {
    top: 0;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}
@keyframes txtmove {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#modal button {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 66px;
  aspect-ratio: 1;
  padding: 23px;
  transition: opacity 0.3s ease;
}
#modal .brands-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 130px;
}
#modal article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  width: 750px;
  height: 80svh;
  margin: 0 25px;
  padding-inline: 75px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  opacity: 0;
  transition: opacity 0.5s 0.1s ease;
}
#modal article::-webkit-scrollbar {
  display: none;
}
#modal article.slick-active,
#modal article.is-active-next {
  opacity: 1;
}
#modal article .text {
  padding-block: 20px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.53;
}
#modal .arrow {
  position: absolute;
  bottom: 60px;
  display: flex;
  align-items: baseline;
  column-gap: 13px;
  cursor: pointer;
  font-family: var(--font-oxanium);
  font-size: 23px;
  transition: opacity 0.3s ease, visibility 0.5s ease;
}
#modal .arrow:hover {
  opacity: 0.6;
}
#modal .arrow.slick-disabled {
  visibility: hidden;
  opacity: 0;
}
#modal .arrow-prev::before,
#modal .arrow-next::after {
  content: "";
  display: inline-block;
  width: 9px;
  aspect-ratio: 9 / 16;
  background: url(https://www.jr-takashimaya.co.jp/cn/en/cp/cs_casestudy/img/common/modal-slider-arrow.svg) no-repeat center / contain;
  translate: 0 -1px;
}
#modal .arrow-prev {
  margin-right: auto;
  left: 67px;
}
#modal .arrow-prev::before {
  transform: scaleX(-1);
}
#modal .arrow-next {
  margin-left: auto;
  right: 67px;
}
