﻿/* ========== フォント ========== */
@font-face {
  font-family: "notosansjp";
  font-weight: 400;
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 500;
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 600;
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 700;
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}
article {
  font-family: "notosansjp", sans-serif;
}

/* ========== c-btn ========== */
.c-btn { display: block; width: 80%; margin: 0 auto; padding: 10px 40px 10px 16px; text-align: center; border-radius: 60px; font-size: 12px; font-weight: 700; position: relative; text-decoration: none; transition: opacity .2s; }
.c-btn:hover { opacity: 0.5; text-decoration: none; }
.c-btn::after { content: "\f054"; font-family: "Font Awesome 5 Free"; font-weight: 900; font-size: 14px; position: absolute; top: 50%; transform: translateY(-50%); right: 20px; }
@media (min-width: 768px) {
  .c-btn { width: 100%; max-width: 450px; padding: 26px 40px 26px 16px; font-size: 20px; }
}
.c-btn--primary { border: 1px solid #EC7190; color: #EC7190; }
.c-btn--primary::after { color: #EC7190; }
.c-btn--primary:hover { color: #EC7190; }
.c-btn--secondary { border: 1px solid #111111; color: #111111; }
.c-btn--secondary::after { color: #111111; }
.c-btn--secondary:hover { color: #111111; }

/* ============================================================
   共通
============================================================ */
.u-br-sp { display: none; }
@media (max-width: 767px) {
  .u-br-sp { display: block; }
}

/* ============================================================
   FV / KV
============================================================ */
.p-fv {
  position: relative;
  overflow: hidden;
}
.p-fv__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-auto-rows: 110px;
  gap: 4px;
  width: 1920px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.p-fv__grid-item {
  overflow: hidden;
  position: relative;
}
.p-fv__grid-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  animation: colorize 1s ease both;
}
@keyframes colorize {
  from { filter: grayscale(1); transform: scale(1.5); }
  to   { filter: grayscale(0); transform: scale(1); }
}
@keyframes shine {
  0%   { left: 0%;   width: 0%;   }
  40%  { left: 0%;   width: 100%; }
  100% { left: 100%; width: 0%;   }
}
.p-fv__shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 215, 94, 0.5) 0%, rgba(255, 92, 145, 0.5) 100%);
  animation: shine 0.8s cubic-bezier(.16, 1, .3, 1) forwards;
  pointer-events: none;
}
@keyframes fadeInUpperRight {
  from {
    opacity: 0;
    transform: translate(40px, -40px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.p-fv__kv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.10) 100%);
}
.p-fv__kv-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 110px 20px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .p-fv img {
    height: auto;
  }
}
.p-fv__kv-title {
  width: 95%;
  max-width: 1126px;
  opacity: 0;
  animation: fadeInUpperRight 1.2s cubic-bezier(.34, 1.35, .64, 1) forwards;
  animation-delay: 0.3s;
}
.p-fv__kv-20th {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  line-height: 0;
}
.p-fv__kv-20th img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .p-fv__grid { display: none; }
  .p-fv__kv-text { padding-top: 60px; }
  .p-fv__kv-20th {
    bottom: 0;
    left: auto;
    right: 3%;
    transform: none;
    max-width: 70%;
  }
}

/* SP グリッド */
.p-fv__grid-sp {
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
  display: flex;
  gap: 4px;
}
.p-fv__grid-sp-col {
  flex: 16;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  position: relative;
}
.p-fv__grid-sp-col img {
  width: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  animation: colorize 1s ease both;
}
.p-fv__grid-sp-wide {
  flex: 40;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-fv__grid-sp-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.p-fv__grid-sp-panel__full {
  width: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  animation: colorize 1s ease both;
}
.p-fv__grid-sp-panel__cols {
  display: flex;
  gap: 4px;
}
.p-fv__grid-sp-panel__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.p-fv__grid-sp-panel__col:first-child { flex: 1.5; }
.p-fv__grid-sp-panel__col:last-child  { flex: 1; }
.p-fv__grid-sp-panel__col img {
  width: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  animation: colorize 1s ease both;
}
@media (min-width: 768px) {
  .p-fv__grid-sp { display: none; }
}

/* ============================================================
   ティザー：開催告知
============================================================ */
.p-teaser-announce {
  background:
    linear-gradient(to right, rgba(255, 215, 94, 0.5) 0%, rgba(255, 92, 145, 0.5) 100%),
    url('/static/img/wex/20th/bg-saleinfo.webp') center / cover no-repeat;
  padding: 56px 36px;
  text-align: center;
  margin-top: 32px;
}
.p-teaser-announce__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.p-teaser-announce__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 661px;
}
.p-teaser-announce__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.p-teaser-announce__title-img {
  width: 100%;
  max-width: 661px;
}
.p-teaser-announce__title-img img {
  width: 100%;
  height: auto;
}
.p-teaser-announce__text {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.6;
  margin: 0;
  filter: drop-shadow(1px 2px 4px #9C5419);
}
.p-teaser-announce__date-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  width: 55%;
  min-width: 212px;
  max-width: 419px;
}
.p-teaser-announce__period {
  background: #FFFFFF;
  border-radius: 100px;
  padding: 14px 32px;
  width: 100%;
  max-width: 671px;
  filter: drop-shadow(1px 2px 4px #9C5419);
}
.p-teaser-announce__period-text {
  background: linear-gradient(to right, #ffaa17, #ee6295);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}
.p-teaser-announce__num { font-size: 16px; }
.p-teaser-announce__txt { font-size: 16px; }
@media (min-width: 768px) {
  .p-teaser-announce {
    padding: 80px 16px;
    margin-top: 60px;
  }
  .p-teaser-announce__text {
    font-size: 30px;
  }
  .p-teaser-announce__num { font-size: 36px; }
  .p-teaser-announce__txt { font-size: 26px; }
  .p-teaser-announce__top { gap: 45px; }
  .p-teaser-announce__head { gap: 22px; }
}

/* ============================================================
   ティザー：セール3本柱（告知カード）
============================================================ */
.p-teaser-sales {
  background: linear-gradient(117.66deg, #91EDAD 9.8%, #58C75F 99.5%);
  padding-top: 48px;
}
.p-teaser-sales__header {
  text-align: center;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.p-teaser-sales__title-wrap {
  position: relative;
  display: inline-flex;
  margin: 0 auto 0 auto;
  width: 82%;
  max-width: 320px;
}
.p-teaser-sales__title-wrap img {
  width: 85%;
  height: auto;
  margin: 0 auto;
}
.p-teaser-sales__header-text {
  font-size: 18px;
  font-weight: bold;
  color: #222222;
  line-height: 1.7;
  margin: 0 0 24px;
  text-align: center;
}
.p-teaser-sales__header-text .u-br-pc {
  display: none;
}
.p-teaser-sales__body {
  background: #FFFFFF;
  border-radius: 40px 40px 0 0;
  padding: 40px 20px 80px;
  margin-top: -20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.p-teaser-sales__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 700px;
}
.p-teaser-sales__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.p-teaser-sales__label {
  flex-shrink: 0;
}
.p-teaser-sales__label img {
  width: 130px;
  height: auto;
}
.p-teaser-sales__item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-teaser-sales__name {
  font-size: 20px;
  font-weight: 600;
  color: #222222;
  margin: 0;
  line-height: 1.4;
}
.p-teaser-sales__desc {
  font-size: 18px;
  color: #222222;
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-teaser-sales {
    padding-top: 100px;
  }
  .p-teaser-sales__list {
    gap: 64px;
  }
  .p-teaser-sales__title-wrap {
    width: 490px;
    max-width: none;
  }
  .p-teaser-sales__title-wrap img:first-child {
    width: auto;
    margin: 0 auto;
  }
  .p-teaser-sales__header-text .u-br-pc {
    display: inline;
  }
  .p-teaser-sales__body {
    border-radius: 150px 150px 0 0;
    padding: 104px 16px 100px;
    margin-top: -50px;
  }
  .p-teaser-sales__item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  .p-teaser-sales__label img {
    width: 188px;
  }
  .p-teaser-sales__name {
    font-size: 24px;
  }
  .p-teaser-sales__desc {
    font-size: 20px;
  }
  .p-teaser-sales__header-text {
    font-size: 22px;
    margin: 0 0 72px;
  }
}

/* フェードインアップ */
.js-fadein-center {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-fadein-center.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-teaser-sales__header.js-fadein-center.is-visible ~ .p-teaser-sales__body {
  opacity: 1;
  transform: translateY(0);
}

/* スクロールカラーアニメーション */
.js-colorize-section,
.js-colorize-img,
.js-colorize-center {
  filter: grayscale(1);
  transition: filter 1.2s ease;
}
.js-colorize-section.is-visible,
.js-colorize-img.is-visible,
.js-colorize-center.is-visible {
  filter: grayscale(0);
}