@charset "UTF-8";
/* ------------------------------
    reset
------------------------------ */
@media screen and (min-width: 769px) {
  .wrapper {
    overflow-x: unset;
  }
}
.pane-main{
  margin: 0 !important;
  padding: 0 !important;
}
/* ------------------------------
    base
------------------------------ */
:root {
  --font-NotoSerif: "Noto Serif JP", serif;
  --font-ShipporiMincho: "Shippori Mincho", serif;
  --font-CormorantGaramond: "Cormorant Garamond", serif;
  --font-Allura: "Allura", cursive;
  --red: #9d241a;
  --green: #576e5e;
  --yellow: #b68f40;
  --gold: #998b5a;
}

.split {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-quad: cubic-bezier(0.11, 0, 0.5, 0);
}
.split .char {
  --delay: 0.05s;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-in-quad) calc(var(--delay) * var(--index) + 0.23s), transform 1.3s var(--ease-out-quart) calc(var(--delay) * var(--index) + 0.23s);
}

.split.isActive .char {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
    content
------------------------------ */
.page {
  font-family: var(--font-NotoSerif);
  font-weight: 400;
  position: relative;
}
.page a {
  text-decoration: none;
}
.page a:hover {
  opacity: unset;
}

.page-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-bg .page-bg-image {
  position: sticky;
  width: 100%;
  height: calc(100vh - 122px);
  top: 122px;
  background: url(/ec/img/usr/pg/campaign/winter-gift/25aw/bg.jpg) top left/100% 100%;
}

@media screen and (max-width: 768px) {
  .page-bg {
    display: none;
  }
}
.page-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}

/* タイトル */
.titlearea {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 122px;
  width: calc((100% - 500px) / 2);
  height: calc(100vh - 122px);
}
.titlearea .title {
  font-family: var(--font-ShipporiMincho);
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  opacity: 0;
}
.titlearea .title.isActive {
  opacity: 1;
}
.titlearea .title span:nth-of-type(1), .titlearea .title span:nth-of-type(7) {
  padding-left: 0.5em;
}
.titlearea .title img {
  width: 399px;
  margin-top: -10px;
  opacity: 0;
  transform: translateY(10px);
  --index: 15;
  --delay: 0.05s;
  transition: opacity 0.5s var(--ease-in-quad) calc(var(--delay) * var(--index) + 0.23s), transform 1.3s var(--ease-out-quart) calc(var(--delay) * var(--index) + 0.23s);
}
.titlearea .title img:where(.isActive *) {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1400px) {
  .titlearea {
    width: calc((100% - 400px) / 2);
  }
  .titlearea .title {
    font-size: 44px;
  }
  .titlearea .title img {
    width: 280px;
  }
}
@media screen and (max-width: 1100px) {
  .titlearea {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .titlearea {
    display: none;
  }
}
/* ナビゲーション */
.linkarea {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 122px;
  width: calc((100% - 500px) / 2);
  height: calc(100vh - 122px);
}
.linkarea nav {
  width: min(480px, 90%);
}
.linkarea nav ul li {
  border-top: 1px solid #fff;
}
.linkarea nav ul li:last-of-type {
  border-bottom: 1px solid #fff;
}
.linkarea nav ul li a {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}
.linkarea nav ul li a::after {
  content: "";
  display: block;
  width: 15px;
  height: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #fff;
  transition: transform 0.3s;
}
.linkarea nav ul li a .link-text-head {
  line-height: 1;
}
.linkarea nav ul li a .link-text-head br {
  display: none;
}
.linkarea nav ul li a .link-text-head span {
  display: inline-block;
}
.linkarea nav ul li a .link-text-head .head-en {
  font-family: var(--font-CormorantGaramond);
  font-size: 32px;
  vertical-align: baseline;
}
.linkarea nav ul li a .link-text-head .head-ja {
  font-family: var(--font-ShipporiMincho);
  font-size: 20px;
  vertical-align: baseline;
}
.linkarea nav ul li a .link-text-body {
  font-size: 16px;
  margin-top: 5px;
}

@media (hover: hover) and (pointer: fine) {
  .linkarea nav ul li a:hover::after {
    transform: translateX(10px);
  }
}
@media screen and (max-width: 1400px) {
  .linkarea {
    width: calc((100% - 400px) / 2);
  }
  .linkarea nav {
    padding-inline: 20px 35px;
  }
  .linkarea nav ul li a {
    padding: 15px 20px;
  }
  .linkarea nav ul li a .link-text-head {
    line-height: 1.2;
  }
  .linkarea nav ul li a .link-text-head br {
    display: inline;
  }
  .linkarea nav ul li a .link-text-head .head-en {
    font-size: 28px;
  }
  .linkarea nav ul li a .link-text-head .head-ja {
    font-size: 16px;
  }
  .linkarea nav ul li a .link-text-body {
    font-size: 13px;
  }
}
@media screen and (max-width: 1100px) {
  .linkarea {
    display: none;
  }
}
/* メインコンテンツ */
.mainarea {
  container-type: inline-size;
  width: 500px;
}
.mainarea .inner {
  width: 89.3333333333cqw;
  margin-inline: auto;
}

@media screen and (max-width: 1400px) {
  .mainarea {
    width: 400px;
  }
}
@media screen and (max-width: 1100px) {
  .mainarea {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .mainarea {
    width: 100%;
  }
}
.sec {
  position: relative;
  padding-top: 9.3333333333cqw;
}
.sec:nth-of-type(even) {
  background-color: #ebece4;
}
.sec:nth-of-type(odd) {
  background-color: var(--green);
}
.sec .sec-content {
  position: relative;
  z-index: 2;
}
.sec .sec-content .sec-title {
  margin-bottom: 5.3333333333cqw;
}
.sec .sec-content .sec-title:where(.sec:nth-of-type(even) *) {
  color: var(--green);
}
.sec .sec-content .sec-title:where(.sec:nth-of-type(odd) *) {
  color: #fff;
}
.sec .sec-content .sec-title span {
  line-height: 1;
  text-align: center;
}
.sec .sec-content .sec-title span.ruby {
  font-size: 3.4666666667cqw;
  display: block;
  margin-bottom: 2.6666666667cqw;
}
.sec .sec-content .sec-title span.en {
  font-family: var(--font-CormorantGaramond);
  font-size: 14.6666666667cqw;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8cqw;
}
.sec .sec-content .sec-title span.en::before, .sec .sec-content .sec-title span.en::after {
  content: "";
  width: 5.3333333333cqw;
  aspect-ratio: 1/1;
  background: url(/ec/img/usr/pg/campaign/winter-gift/25aw/deco_star.png) top left/100% 100%;
}
.sec .sec-content .sec-lead {
  font-size: 3.7333333333cqw;
  text-align: center;
  line-height: 1.8571428571;
}
.sec .sec-content .sec-lead:where(.sec:nth-of-type(odd) *) {
  color: #fff;
}
.sec .sec-content .sec-headline {
  position: relative;
  margin-block: 4cqw 9.3333333333cqw;
}
.sec .sec-content .sec-headline.isActive .headline-image {
  opacity: 1;
  transform: translateY(0);
}
.sec .sec-content .sec-headline .pc-image {
  position: absolute;
  width: 113.3333333333cqw;
  max-width: none;
  top: 0;
  left: -6.6666666667cqw;
}
.sec .sec-content .sec-headline .headline-image {
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}
.sec .sec-content .sec-headline .headline-image.big {
  top: 0;
  width: 100.2666666667cqw;
}
.sec .sec-content .sec-headline .headline-image.small {
  top: 52.4cqw;
  width: 73.6cqw;
  transition-delay: 0.2s;
}
.sec .sec-content .sec-headline .headline-image.left {
  left: -10.6666666667cqw;
}
.sec .sec-content .sec-headline .headline-image.right {
  right: -10.6666666667cqw;
}
.sec .sec-content .sec-headline .headline-bg {
  opacity: 0;
}
.sec .sec-content .lineup {
  margin-top: 4cqw;
}
.sec .sec-content .lineup .lineup-title {
  font-family: var(--font-Allura);
  font-size: 12cqw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 6cqw;
  margin-bottom: 5.3333333333cqw;
}
.sec .sec-content .lineup .lineup-title::before, .sec .sec-content .lineup .lineup-title::after {
  content: "";
  width: 26.6666666667cqw;
  height: 0.8cqw;
}
.sec .sec-content .lineup .lineup-title.gold {
  color: var(--gold);
}
.sec .sec-content .lineup .lineup-title.gold::before, .sec .sec-content .lineup .lineup-title.gold::after {
  border-block: 0.1333333333cqw solid var(--gold);
}
.sec .sec-content .lineup .lineup-title.white {
  color: #fff;
}
.sec .sec-content .lineup .lineup-title.white::before, .sec .sec-content .lineup .lineup-title.white::after {
  border-block: 0.1333333333cqw solid #fff;
}
.sec .sec-content .lineup .lineup-slider .slick-track {
  display: flex;
  column-gap: 8.6666666667cqw;
}
.sec .sec-content .lineup .lineup-slider .slick-track .lineup-slider-item a {
  transition: opacity 0.3s;
}
.sec .sec-content .lineup .lineup-slider .slick-track .lineup-slider-item a .item-image img {
  width: auto;
  height: 66.6666666667cqw;
  margin-inline: auto;
}
.sec .sec-content .lineup .lineup-slider .slick-track .lineup-slider-item a .item-image.smaller {
  padding-block: 3.3333333333cqw;
}
.sec .sec-content .lineup .lineup-slider .slick-track .lineup-slider-item a .item-image.smaller img {
  height: 60cqw;
}
.sec .sec-content .lineup .lineup-slider .slick-track .lineup-slider-item a .item-name {
  font-size: 3.2cqw;
  color: #000;
  text-align: center;
  line-height: 2.0833333333;
  font-weight: 500;
  margin-top: 6.6666666667cqw;
}
.sec .sec-content .lineup .lineup-slider .slick-track .lineup-slider-item a .item-name.white {
  color: #fff;
}
.sec .sec-content .lineup .lineup-slider .slick-track::before, .sec .sec-content .lineup .lineup-slider .slick-track::after {
  display: none;
}
.sec .sec-content .lineup .slider_controll {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5.3333333333cqw;
  margin-top: 6.6666666667cqw;
}
.sec .sec-content .lineup .slider_controll button {
  font-size: 0;
  position: relative;
  width: 10.6666666667cqw;
  height: 10.6666666667cqw;
  border-radius: 50%;
  border-style: solid;
  border-width: 0.2666666667cqw;
  padding: 0;
  transition: opacity 0.3s, background-color 0.3s;
  top: auto;
}
.sec .sec-content .lineup .slider_controll button::before {
  content: "";
  position: absolute;
}
.sec .sec-content .lineup .slider_controll button:where(.gold *) {
  border-color: var(--gold);
}
.sec .sec-content .lineup .slider_controll button:where(.gold *).slick-arrow {
  background-color: var(--gold);
}
.sec .sec-content .lineup .slider_controll button:where(.gold *).slick-arrow::before {
  border-color: #fff;
}
.sec .sec-content .lineup .slider_controll button:where(.gold *).slick_pause {
  background-color: #fff;
}
.sec .sec-content .lineup .slider_controll button:where(.gold *).slick_pause::before {
  border-inline-color: var(--gold);
}
.sec .sec-content .lineup .slider_controll button:where(.gold *).slick_pause.paused {
  background-color: var(--gold);
}
.sec .sec-content .lineup .slider_controll button:where(.gold *).slick_pause.paused::before {
  background-color: #fff;
}
.sec .sec-content .lineup .slider_controll button:where(.green *) {
  border-color: #fff;
}
.sec .sec-content .lineup .slider_controll button:where(.green *).slick-arrow {
  background-color: #fff;
}
.sec .sec-content .lineup .slider_controll button:where(.green *).slick-arrow::before {
  border-color: var(--green);
}
.sec .sec-content .lineup .slider_controll button:where(.green *).slick_pause {
  border-color: #fff;
  background-color: var(--green);
}
.sec .sec-content .lineup .slider_controll button:where(.green *).slick_pause::before {
  border-inline-color: #fff;
}
.sec .sec-content .lineup .slider_controll button:where(.green *).slick_pause.paused {
  background-color: #fff;
}
.sec .sec-content .lineup .slider_controll button:where(.green *).slick_pause.paused::before {
  background-color: var(--green);
}
.sec .sec-content .lineup .slider_controll button.slick-arrow::before {
  width: 2.9333333333cqw;
  height: 2.9333333333cqw;
  top: calc(50% - 1.4666666667cqw);
  transform: rotate(45deg);
}
.sec .sec-content .lineup .slider_controll button.slick-arrow.slick-prev::before {
  left: 4.2666666667cqw;
  border-bottom-style: solid;
  border-bottom-width: 0.2666666667cqw;
  border-left-style: solid;
  border-left-width: 0.2666666667cqw;
}
.sec .sec-content .lineup .slider_controll button.slick-arrow.slick-next::before {
  right: 4.2666666667cqw;
  border-top-style: solid;
  border-top-width: 0.2666666667cqw;
  border-right-style: solid;
  border-right-width: 0.2666666667cqw;
}
.sec .sec-content .lineup .slider_controll button.slick_pause::before {
  width: 1.6cqw;
  height: 3.3333333333cqw;
  top: calc(50% - 1.6666666667cqw);
  left: calc(50% - 0.8cqw);
  border-inline-style: solid;
  border-inline-width: 0.2666666667cqw;
}
.sec .sec-content .lineup .slider_controll button.slick_pause.paused::before {
  width: 2.6666666667cqw;
  left: calc(50% - 1.3333333333cqw);
  border: none;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.sec .sec-content .lineup .lineup-link {
  width: 69.3333333333cqw;
  margin: 8cqw auto 0;
}
.sec .sec-content .lineup .lineup-link a {
  font-size: 3.7333333333cqw;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 16cqw;
  border-style: solid;
  border-width: 0.2666666667cqw;
  transition: color 0.3s, background-color 0.3s;
}
.sec .sec-content .lineup .lineup-link a.gold {
  color: #fff;
  background-color: var(--gold);
  border-color: var(--gold);
}
.sec .sec-content .lineup .lineup-link a.green {
  color: var(--green);
  background-color: #fff;
  border-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .sec .sec-content .lineup .lineup-slider .slick-track .lineup-slider-item a:hover {
    opacity: 0.7;
  }
  .sec .sec-content .lineup .slider_controll button:hover {
    opacity: 0.7;
  }
  .sec .sec-content .lineup .lineup-link a:hover.gold {
    color: var(--gold);
    background-color: #fff;
  }
  .sec .sec-content .lineup .lineup-link a:hover.green {
    color: #fff;
    background-color: var(--green);
  }
}
@media screen and (max-width: 1100px) {
  .sec .sec-content .sec-headline {
    overflow-x: hidden;
  }
}
/* kv */
#kv {
  background-color: var(--green);
  background-image: url(/ec/img/usr/pg/campaign/winter-gift/25aw/kv_bg.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-bottom: 26.6666666667cqw;
}
#kv .kv-title {
  text-align: center;
  margin-block: -13.3333333333cqw 20cqw !important;
}
#kv .kv-title img {
  width: 84.8cqw;
}
#kv .kv-lead {
  font-size: 3.7333333333cqw;
  line-height: 3.2142857143;
  color: #fff;
  text-align: center;
}
#kv .kv-lead .char {
  --delay: 0.01s;
}
#kv .kv-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7.3333333333cqw 4cqw;
  margin-top: 16cqw;
}
#kv .kv-links li .kv-links-btn {
  display: block;
  position: relative;
  width: 42.6666666667cqw;
  padding-block: 2.6666666667cqw 5.3333333333cqw;
}
#kv .kv-links li .kv-links-btn p {
  line-height: 1;
  color: #fff;
  text-align: center;
}
#kv .kv-links li .kv-links-btn p.line01 {
  font-family: var(--font-ShipporiMincho);
  font-size: 2.9333333333cqw;
  font-weight: 500;
}
#kv .kv-links li .kv-links-btn p.line02 {
  font-family: var(--font-CormorantGaramond);
  font-size: 6.6666666667cqw;
  font-weight: 600;
  margin-top: 0.6666666667cqw;
}
#kv .kv-links li .kv-links-btn p.line03 {
  font-size: 2.9333333333cqw;
  margin-top: 2.6666666667cqw;
}
#kv .kv-links li .kv-links-btn .arrow {
  position: absolute;
  bottom: -3.3333333333cqw;
  left: calc(50% - 3.3333333333cqw);
  width: 6.6666666667cqw;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  animation: move-arrow 2s infinite ease-in-out;
}
#kv .kv-links li .kv-links-btn .arrow::before {
  position: absolute;
  content: "";
  width: 2.4cqw;
  height: 2.4cqw;
  top: calc(50% - 1.6cqw);
  left: calc(50% - 1.2cqw);
  border-right: 0.2666666667cqw solid #000;
  border-bottom: 0.2666666667cqw solid #000;
  transform: rotate(45deg);
}
#kv .kv-links li .kv-links-btn.btn-yellow {
  background-color: var(--yellow);
}
#kv .kv-links li .kv-links-btn.btn-yellow .arrow::before {
  border-color: var(--yellow);
}
#kv .kv-links li .kv-links-btn.btn-red {
  background-color: var(--red);
}
#kv .kv-links li .kv-links-btn.btn-red .arrow::before {
  border-color: var(--red);
}

@media screen and (min-width: 769px) {
  #kv .kv-links {
    display: none;
  }
}
@keyframes move-arrow {
  0% {
    bottom: -3.3333333333cqw;
  }
  20% {
    bottom: -5.3333333333cqw;
  }
  40% {
    bottom: -3.3333333333cqw;
  }
}
/* knit */
#knit {
  padding-bottom: 22.6666666667cqw;
}
#knit::before {
  content: "";
  position: absolute;
  top: -6.6666666667cqw;
  left: 0;
  width: 100%;
  aspect-ratio: 750/554;
  background: url(/ec/img/usr/pg/campaign/winter-gift/25aw/knit_bg.png) top left/100% auto no-repeat;
}

/* tops */
#tops {
  padding-bottom: 22.6666666667cqw;
}
#tops::before {
  content: "";
  position: absolute;
  top: -10.6666666667cqw;
  left: 0;
  width: 100%;
  aspect-ratio: 750/486;
  background: url(/ec/img/usr/pg/campaign/winter-gift/25aw/tops_bg.png) top left/100% auto no-repeat;
}

/* glove */
#glove {
  padding-bottom: 22.6666666667cqw;
}
#glove::before {
  content: "";
  position: absolute;
  top: -6.6666666667cqw;
  left: 0;
  width: 100%;
  aspect-ratio: 750/554;
  background: url(/ec/img/usr/pg/campaign/winter-gift/25aw/knit_bg.png) top left/100% auto no-repeat;
}

/* home */
#home {
  padding-bottom: 36cqw;
}
#home::before {
  content: "";
  position: absolute;
  top: -10.6666666667cqw;
  left: 0;
  width: 100%;
  aspect-ratio: 750/277;
  background: url(/ec/img/usr/pg/campaign/winter-gift/25aw/home_bg.png) top left/100% auto no-repeat;
}
#home::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 750/146;
  background: url(/ec/img/usr/pg/campaign/winter-gift/25aw/deco_ribbon.jpg) top left/100% 100% no-repeat;
}

/* reward */
#reward {
  margin-top: -1px;
  padding-block: 10cqw 20cqw;
  background-color: #fff;
}
#reward .reward-title {
  font-family: var(--font-ShipporiMincho);
  font-size: 8cqw;
  font-weight: 600;
  text-align: center;
  color: var(--red);
  line-height: 1.3333333333;
  margin-bottom: 6.6666666667cqw;
}
#reward .reward-lead {
  font-size: 3.7333333333cqw;
  line-height: 2;
  text-align: center;
}
#reward .reward-links {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5.3333333333cqw 4cqw;
  margin-block: 6.6666666667cqw 20cqw;
}
#reward .reward-links .reward-links-item {
  width: 42.6666666667cqw;
}
#reward .reward-links .reward-links-item a {
  display: block;
  position: relative;
  padding-block: 23.3333333333cqw 6cqw;
}
#reward .reward-links .reward-links-item a figure {
  position: absolute;
  top: -4cqw;
  transition: transform 0.3s;
}
#reward .reward-links .reward-links-item a figure.item-tie {
  width: 11.0666666667cqw;
  left: calc(50% - 5.5333333333cqw);
}
#reward .reward-links .reward-links-item a figure.item-jacket {
  width: 22.8cqw;
  left: calc(50% - 11.4cqw);
}
#reward .reward-links .reward-links-item a figure.item-shirt {
  width: 21.4666666667cqw;
  left: calc(50% - 10.7333333333cqw);
}
#reward .reward-links .reward-links-item a figure.item-shoes {
  width: 25.2cqw;
  left: calc(50% - 12.6cqw);
}
#reward .reward-links .reward-links-item a figure.item-bag {
  width: 9.4666666667cqw;
  left: calc(50% - 4.7333333333cqw);
}
#reward .reward-links .reward-links-item a figure.item-accessory {
  width: 20.5333333333cqw;
  top: -2.6666666667cqw;
  left: calc(50% - 10.2666666667cqw);
}
#reward .reward-links .reward-links-item a figure.item-battery {
  width: 20.5333333333cqw;
  top: -2.6666666667cqw;
  left: calc(50% - 10.2666666667cqw);
}
#reward .reward-links .reward-links-item a p {
  color: #fff;
  text-align: center;
  line-height: 1;
}
#reward .reward-links .reward-links-item a p.line01 {
  font-size: 3.2cqw;
  margin-bottom: 0.6666666667cqw;
}
#reward .reward-links .reward-links-item a p.line02 {
  font-family: var(--font-CormorantGaramond);
  font-size: 9.3333333333cqw;
}
#reward .reward-links .reward-links-item:nth-of-type(4n + 1) a, #reward .reward-links .reward-links-item:nth-of-type(4n + 4) a {
  background-color: var(--red);
}
#reward .reward-links .reward-links-item:nth-of-type(4n + 2) a, #reward .reward-links .reward-links-item:nth-of-type(4n + 3) a {
  background-color: var(--green);
}
#reward .reward-banner {
  width: 85.3333333333cqw;
  margin-inline: auto;
}
#reward .reward-banner a {
  transition: opacity 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  #reward .reward-links .reward-links-item a:hover figure {
    transform: rotate(20deg);
  }
  #reward .reward-banner a:hover {
    opacity: 0.7;
  }
}/*# sourceMappingURL=style.css.map */