:root {
  --bg: #5f0f19;
  --gold: #ebc99c;
}

html {
  scrollbar-gutter: stable;
}

html,
body {
  overflow-x: clip;
}

.fv_hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg_wrap {
  background-image: url("./img/ASILIS_bg.png");
  background-repeat: repeat;
  background-position: top center;
  background-size: 1600px 900px;
}

.fv_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.fv_bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fv_inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  place-items: center;
  margin-top: 64px;
  margin-bottom: 15vw;
  z-index: 1;
}
.fv_pic {
  position: absolute;
  top: 70%;
  width: 70%;
  z-index: 2;
}

.fv_frontImg {
  height: auto;
  display: block;
  width: 60%;
  height: 50%;
  margin: auto;
  position: relative;
  z-index: 20;
}

.fv_front {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 2.5s ease,
    transform 2.5s ease;
  display: block;
  z-index: 30;
}
.fv_front.is_show {
  opacity: 1;
  transform: translateY(0);
}

/* ビデオ */
.fv_videoWrap {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.fv_videoWrap.is_hide {
  opacity: 0;
  pointer-events: none;
}

.fv_video {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

.fv_videoOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.fv_textLogo {
  text-align: center;
}

.fv_logoMain {
  margin: 0;
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: 0.1em;
  color: #fff;
  font-family: serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.fv_logoMain::before {
  content: "";
  display: inline-block;
  width: 70px;
  height: 70px;
  background: url("./img/ASILIS_ファビコン.png") no-repeat center / contain;
  flex-shrink: 0;
  opacity: 1;
  transform: translateX(-20px);
}

.fv_logoSub {
  margin: 14px 0 0;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.2em;
  color: #fff;
  font-family: serif;
  font-weight: 600;
}

.fv_copyMain {
  margin: 28px 0 6px;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: 0.12em;
  color: #fff;
  font-family: serif;
  font-weight: 600;
}

.fv_copySub {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: 0.12em;
  color: #fff;
  font-family: serif;
  font-weight: 600;
}

.js-type {
  opacity: 0;
}

.js-type.is_ready {
  opacity: 1;
}

.js-type .ch {
  display: inline-block;
  opacity: 0;
  transform: translateX(-40px);
  animation: charIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes charIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fv_front {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 2.5s ease,
    transform 1.6s ease;
}

.fv_front.is_show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 五か条カードセクション */
.bg_wrap {
  position: relative;
  isolation: isolate;
}

.bg_wrap::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url(./img/ASILIS_bg.png);
  background-repeat: repeat;
  background-position: top center;
  background-size: 1600px 900px;
  transition: opacity 0.35s ease;
}

/* stack5表示中だけON */
.bg_wrap.is-bg-fixed::before {
  opacity: 1;
}

.stackDemo {
  padding: 120px 0;
}

/* 2カラム */
.stackDemo__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* 左：固定 */
.stackDemo__left {
  position: sticky;
  top: 30%;
  color: var(--bg);
  background: #fff;
  font-family: serif;
  padding: 64px 32px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.stackDemo__left::before,
.stackDemo__left::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.stackDemo__left::before {
  inset: 10px;
  border: 1px solid var(--bg);
}

.stackDemo__left::after {
  inset: 16px;
  border: 1px solid var(--bg);
}

.stackDemo__title {
  font-size: 32px;
  margin: 0 0 16px;
}

.stackDemo__lead {
  margin: 0;
  line-height: 1.6;
}

/* 右 */
.stackDemo__stack {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* カード */
.stackDemo__card {
  position: sticky;
  top: var(--cardTop);
  width: 30vw;
  min-width: 400px;
  border-radius: 28px;
  color: var(--bg);
  background: #fff;
  font-family: serif;
  padding: 56px 26px;
  text-align: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  padding: 28px 28px 26px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: scale(1);
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 0.12s linear,
    opacity 0.12s linear;
  margin: 0 auto 32px;
}

.stackDemo__card::before,
.stackDemo__card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.stackDemo__card::before {
  inset: 10px;
  border: 1px solid var(--bg);
}

.stackDemo__card::after {
  inset: 16px;
  border: 1px solid var(--bg);
}

.stackDemo__card.is-visible {
  opacity: 1;
}

/* ラインナップセクション */
.lineup_ {
  padding: 140px 0;
  background-image: url("./img/ASILIS_商品背景.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

.lineup__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.lineup__head {
  position: relative;
  padding-left: 18px;
  margin-bottom: 26px;
  max-width: 710px;
  margin: 24px auto 42px;
}

.lineup__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 90px;
  background: #6b0f0f;
}

.lineup__catch {
  display: inline-block;
  padding: 4px 10px;
  font-size: 18px;
  color: #6b0f0f;
}

.lineup__titleRow {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.lineup__title {
  font-size: clamp(42px, 4vw, 54px);
  letter-spacing: 0.06em;
  margin: 0;
  color: #4a0d0d;
  font-family: "Times New Roman", serif;
}

.lineup__sub {
  margin: 0;
  font-size: 20px;
  color: #4a0d0d;
  font-weight: 700;
}

.lineup__price {
  margin-left: 10px;
  font-size: 20px;
  font-weight: 400;
  color: #333;
}

.lineup__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px 16px;
}

.lineup__item {
  text-align: center;
}

.lineup__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.lineup__en {
  margin: 0;
  font-size: 18px;
  color: #6b0f0f;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.lineup__jp {
  margin: 4px 0 10px;
  font-size: 14px;
  color: #6b0f0f;
  font-weight: 700;
}

.lineup__desc {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  padding: 5px 0;
  color: #222;
  text-align: left;
  border-bottom: 1px solid #999;
}

.lineup__meta {
  font-size: 11px;
  font-weight: 500;
  color: #222;
  text-align: left;
  margin: 5px 0 0;
}

.lineup__img {
  position: absolute;
}
.lineup__img1 {
  top: 0;
  right: 0;
  max-width: 24vw;
}
.lineup__img2 {
  position: absolute;
  top: -1%;
  left: 6%;
  width: 18vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  -webkit-mask: radial-gradient(circle at center, #000 50%, transparent 72%);
  mask: radial-gradient(circle at center, #000 50%, transparent 72%);
}

.lineup__img2 > img {
  object-fit: cover;
  display: block;
  -webkit-mask: radial-gradient(circle at center, #000 50%, transparent 72%);
  mask: radial-gradient(circle at center, #000 50%, transparent 72%);
}

.lineup__img2 img {
  object-fit: cover;
  display: block;
  width: 18vw;
  height: 100%;
}

.lineup__img3 {
  position: absolute;
  width: 18vw;
  top: 7%;
  left: -3%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  -webkit-mask: radial-gradient(circle at center, #000 50%, transparent 72%);
  mask: radial-gradient(circle at center, #000 50%, transparent 72%);
}

.lineup__img3 > img {
  object-fit: cover;
  display: block;
  height: 100%;
  width: 18vw;
}

.lineup__img4 {
  position: absolute;
  width: 15.5vw;
  bottom: -2%;
  left: -3%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: block;
  -webkit-mask: radial-gradient(circle at center, #000 50%, transparent 72%);
  mask: radial-gradient(circle at center, #000 50%, transparent 72%);
}

.lineup__img4 > img {
  object-fit: cover;
  display: block;
  height: 100%;
  width: 15.5vw;
}

.lineup__img5 {
  position: absolute;
  width: 13vw;
  bottom: -2%;
  left: 10%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  overflow: hidden;
  -webkit-mask: radial-gradient(circle at center, #000 50%, transparent 72%);
  mask: radial-gradient(circle at center, #000 50%, transparent 72%);
}

.lineup__img5 > img {
  object-fit: cover;
  display: block;
  height: 100%;
  width: 13vw;
}

.lineup__img6 {
  position: absolute;
  width: 17.5vw;
  bottom: -2%;
  right: -2%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  overflow: hidden;
  -webkit-mask: radial-gradient(circle at center, #000 50%, transparent 72%);
  mask: radial-gradient(circle at center, #000 50%, transparent 72%);
}

.lineup__img6 > img {
  object-fit: cover;
  display: block;
  height: 100%;
  width: 17.5vw;
}

/* CTAボタン */
.lineup__ctaWrap {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 72px auto 56px;
  justify-content: center;
}
.cta_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lineup__ctaImg {
  flex: 0 0 auto;
  position: relative;
}

.lineup__ctaImg::before {
  content: "";
  position: absolute;
  inset: -18% -23%;
  background: radial-gradient(
    ellipse 65% 95% at 50% 42%,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.28) 30%,
    rgba(255, 255, 255, 0.12) 55%,
    rgba(255, 255, 255, 0) 78%
  );
  filter: blur(26px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.lineup__ctaImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.lineup__ctaBtn {
  display: inline-flex;
  align-items: center;
  text-align: center;
  max-width: 360px;
  gap: 16px;
  padding: 20px 32px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--bg);
  color: #fff;
  border: 1px solid rgba(235, 201, 156, 0.45);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.lineup__ctaText {
  display: grid;
  gap: 2px;
  line-height: 1.2;
}

.lineup__ctaLabel {
  font-size: 28px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.lineup__ctaSub {
  font-size: 24px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

.lineup__ctaArrow {
  font-size: 32px;
  opacity: 0.9;
}

@media (hover: hover) and (pointer: fine) {
  .lineup__ctaBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    opacity: 0.9;
  }
}
.lineup__about img {
  margin-bottom: 24px;
  aspect-ratio: 1/1;
}
/* .lineup__about {
  padding: 40px 20px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.lineup__about::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(215, 178, 106, 0.5);
  pointer-events: none;
} */

.lineup__aboutInner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.lineup__aboutLeft {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lineup__aboutLogo {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}

.lineup__aboutLine {
  width: 4px;
  height: 120px;
  background: var(--gold);
}

.lineup__aboutRight {
  display: flex;
  align-items: center;
}

.lineup__aboutText {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-family: serif;
}

.js-lineupItem {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.js-lineupItem.is_show {
  opacity: 1;
  transform: translateY(0);
}

/* 転がる動き */
.js-lineupItem {
  opacity: 1;
  transform: none;
}

.js-lineupItem .lineup__photo {
  opacity: 0;
  transform: translateX(140px) rotate(28deg);
  transition:
    opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.js-lineupItem.is_show .lineup__photo {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

.js-riseItem {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
}

.js-riseItem.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ５か条セクション */
.as5 {
  --bg: #5f0f19;
  --gold: #ebc99c;
  --paper: rgba(255, 255, 255, 0.06);
  --bg-main: rgba(255, 236, 198, 0.35);
  position: relative;
  padding: clamp(56px, 6vw, 96px) 16px;
  overflow: hidden;
  background-repeat: repeat;
  background-size: auto;
  color: #fff;
}

.as5__bgPattern {
  position: absolute;
  inset: -40px;
  opacity: 0.22;
  pointer-events: none;

  background-size: 64px 64px;
}

.as5__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  font-family: serif;
  color: var(--gold);
}

.as5__head {
  margin: 0 auto clamp(28px, 3vw, 40px);
  text-align: center;
}

.as5__frame {
  display: inline-block;
  padding: clamp(22px, 3vw, 34px) clamp(18px, 3vw, 56px);
  border: 1px solid var(--gold);
  background: var(--bg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.as5__frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(215, 178, 106, 0.5);
  pointer-events: none;
}

.as5__eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(215, 178, 106, 0.85);
}
.as5__eyebrow--mt {
  margin-top: 14px;
}

.as5__h1 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: 0.06em;
  line-height: 1.15;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.as5__h2 {
  margin: 10px 0 0;
  padding-bottom: 10px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 178, 106, 0.5);
}
.as5__logo {
  max-width: 44px;
  margin-right: 16px;
}

.as5__lead {
  text-align: center;
  padding: 18px 14px;
}

.as5__leadText {
  margin: 0;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
}

/* カード */
.as5__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
}
.as5__grid > .as5__card:last-child {
  grid-column: 4 / span 6;
}

.as5__card {
  grid-column: span 6;
  padding: 18px 18px 16px;
  border: 1px solid rgba(215, 178, 106, 0.22);
  background: var(--bg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.as5__card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(215, 178, 106, 0.5);
  pointer-events: none;
}

.as5__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 220px at 20% 0%,
      rgba(215, 178, 106, 0.14),
      transparent 55%
    ),
    radial-gradient(
      600px 220px at 80% 100%,
      rgba(215, 178, 106, 0.14),
      transparent 55%
    );
  pointer-events: none;
}

.as5__num {
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 600;
}

.as5__title {
  margin: 10px 0 0;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 600;
}

.as5__rule {
  height: 1px;
  margin: 12px 0 12px;
  background: linear-gradient(
    90deg,
    rgba(215, 178, 106, 0),
    var(--bg),
    rgba(215, 178, 106, 0)
  );
}

.as5__text {
  margin: 0;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--bg);
  font-size: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .as5__card {
    transition:
      transform 220ms ease,
      border-color 220ms ease,
      box-shadow 220ms ease;
  }
  .as5__card:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 178, 106, 0.35);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  }
}

.js-as5Item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}
.js-as5Item.is_show {
  opacity: 1;
  transform: translateY(0);
}

.lineup__ctaWrap .js-ctaItem {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}

.lineup__ctaWrap .js-ctaItem.is_show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lineup_ctaPulse2 {
  0% {
    transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(-2px) scale(1.06);
  }
  40% {
    transform: translateY(0) scale(1);
  }
  60% {
    transform: translateY(-2px) scale(1.04);
  }
  80% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.lineup__ctaBtn.is_shake {
  transform-origin: center;
  animation: lineup_ctaPulse2 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) 0s 1;
}

@media (prefers-reduced-motion: reduce) {
  .lineup__ctaWrap .js-ctaItem {
    transition: none;
    transform: none;
  }
  .lineup__ctaBtn.is_shake {
    animation: none;
  }
}

.lineup__ctaBtn {
  position: relative;
  overflow: hidden;
}

.lineup__ctaBtn::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 45%;
  height: 180%;
  transform: rotate(25deg);

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(235, 201, 156, 0.18) 45%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(235, 201, 156, 0.18) 55%,
    rgba(255, 255, 255, 0) 100%
  );

  opacity: 0;
  pointer-events: none;
}

.lineup__ctaBtn:hover::after {
  opacity: 1;
  animation: lineup_ctaShineIn 0.8s ease-out 0s 1;
}

.lineup__ctaBtn:not(:hover)::after {
  animation: lineup_ctaShineOut 0.8s ease-out 0s 1;
}

@keyframes lineup_ctaShineIn {
  0% {
    left: -60%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes lineup_ctaShineOut {
  0% {
    left: 120%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    left: -60%;
    opacity: 0;
  }
}

.sp {
  display: none;
}

/* インスタ */
.igcta__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.igcta__text {
  position: relative;
  display: inline-block;
  margin: 0 0 22px;
  padding: 0 54px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.8;
  font-size: 28px;
}

.igcta__text::before,
.igcta__text::after {
  content: "";
  position: absolute;
  top: 2em;
  width: 100px;
  height: 3px;
  background: #fff;
}

.igcta__text::before {
  left: 15%;
  transform: rotate(22deg);
  transform-origin: left center;
}
.igcta__text::after {
  right: 15%;
  transform: rotate(-22deg);
  transform-origin: right center;
}

.igcta__accent {
  font-weight: 800;
}

.igcta__iconLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 200px;
  height: 200px;
  margin: 0px auto;
}
.igcta__icon rect {
  fill: var(--bg);
}

.igcta__icon {
  width: 200px;
  height: 200px;
  display: block;
  position: relative;
  z-index: 1;
}

.igcta__text {
  opacity: 0;
  transform: translateY(-18px);
  color: #fff;
  -webkit-text-stroke: 4px var(--bg);
  paint-order: stroke fill;
}

.igcta__text.is_show {
  opacity: 1;
  animation: igcta_drop 1.25s cubic-bezier(0.25, 0.9, 0.25, 1) forwards;
}

.ctawrap {
  background-image: url("./img/ASILIS_bg.png");
  background-repeat: repeat;
  background-position: top center;
  background-size: 1600px 900px;
  padding: 16px 16px 64px;
  position: relative;
  z-index: 0;
}

@keyframes igcta_drop {
  0% {
    opacity: 0;
    transform: translateY(-26px);
  }
  70% {
    opacity: 1;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes igcta_iconShake {
  0% {
    transform: translateX(0) rotate(0);
  }
  15% {
    transform: translateX(-6px) rotate(-3deg);
  }
  30% {
    transform: translateX(6px) rotate(3deg);
  }
  45% {
    transform: translateX(-4px) rotate(-2deg);
  }
  60% {
    transform: translateX(4px) rotate(2deg);
  }
  75% {
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    transform: translateX(2px) rotate(1deg);
  }
  100% {
    transform: translateX(0) rotate(0);
  }
}

.igcta__iconLink.is_shake .igcta__icon {
  transform-origin: center;
  animation: igcta_iconShake 0.7s ease-in-out 0s 1;
}
.igcta__icon:hover {
  transform: scale(1.08);
  transition: transform 0.25s ease;
}

/* フッター */
.lineup__footer {
  background: var(--bg);
  color: var(--gold);
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gold);
}

.lineup__footerInner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.lineup__footerLeft {
  display: grid;
  gap: 16px;
  align-content: start;
}

.lineup__footerLogo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: serif;
  letter-spacing: 0.1em;
  font-size: 20px;
  gap: 20px;
}

.lineup__footerLogoImg {
  width: 90px;
  max-width: 100%;
  height: auto;
  display: block;
}
.lineup__footerLogoImg2 {
  width: 200px;
}

.lineup__footerCompany {
  display: grid;
  gap: 6px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: rgba(235, 201, 156, 0.92);
}

.lineup__footerCompanyName {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.lineup__footerCompanyAddr {
  margin: 0;
  font-size: 16px;
  opacity: 0.95;
}

.lineup__footerMenu {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 10px;
  text-align: left;
}

.lineup__footerMenu a {
  color: rgba(235, 201, 156, 0.92);
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.08em;
  font-weight: 600;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.lineup__footerLogo:hover {
  opacity: 0.75;
}
.lineup__footerMenu a:hover {
  opacity: 0.75;
  transform: translateX(-2px);
}

.lineup__copyright {
  padding: 18px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--bg);
  border-top: 1px solid var(--gold);
  position: relative;
  z-index: 99;
}

/* TOPボタン */
.toTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 9999;
}
/* 既存ブロックをスライダー化 */
.js-ctaSlider {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
}

.ctaSlider__viewport {
  overflow: hidden;
  line-height: 0;
}

.ctaSlider__track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.cta_right_img {
  flex: 0 0 100%;
  display: block;
}

.ctaSlider__nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding-bottom: 20%;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.js-ctaSlider {
  max-width: 400px;
  margin-inline: auto;
}

.ctaSlideWithText {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.ctaSlideWithText .cta_right_img {
  width: 100%;
  display: block;
}

.ctaSlideText {
  position: absolute;
  inset: auto 0 24px 0;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  line-height: 1.6;
  padding: 0 16px 45%;
  text-shadow:
    0 2px 6px var(--bg),
    0 4px 12px var(--bg);
  -webkit-text-stroke: 1px var(--bg);
  font-family: serif;
  font-weight: 600;
  paint-order: stroke fill;
  margin: auto;
  z-index: 2;
}
.ctaSlideWithText::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  aspect-ratio: 1 / 1;
}

.toTop.is-show {
  opacity: 1;
  visibility: visible;
}

.ctaSlider__nav {
  display: none;
}

.js-ctaSlider {
  grid-template-columns: 1fr;
}

/* レスポンシブ */
@media (max-width: 1200px) {
  .lineup__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 16px;
  }
  .lineup_ {
    padding-bottom: 50px;
  }
  .lineup__img3 {
    top: 4%;
  }

  .lineup__img4 {
    width: 15.5vw;
    bottom: -2%;
    left: -3%;
  }

  .lineup__img4 > img {
    width: 15.5vw;
  }

  .lineup__img5 {
    width: 13vw;
    bottom: -2%;
    left: 10%;
  }

  .lineup__img5 > img {
    width: 13vw;
  }

  .lineup__img6 {
    width: 25vw;
    bottom: -2%;
    right: -2%;
  }

  .lineup__img6 > img {
    height: 100%;
    width: 25vw;
  }
}
@media (max-width: 1000px) {
  .pc {
    display: none;
  }
  .stack5 {
    padding: 120px 32px;
  }

  .stack5__inner {
    display: block !important;
    max-width: 900px;
  }

  .lineup__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 16px;
  }
  .lineup__en {
    font-size: 14px;
    white-space: nowrap;
  }
  .lineup__jp {
    white-space: nowrap;
  }
  .lineup__img2 {
    left: 12%;
    top: 0;
  }
  .lineup__img3 {
    top: 1%;
  }
  /* CTA */
  .lineup__ctaWrap {
    gap: 24px;
  }
  .lineup__aboutInner {
    gap: 24px;
  }
  .lineup__aboutText {
    font-size: 18px;
  }
  .lineup__aboutLogo {
    max-width: 200px;
  }
  .lineup__ctaLabel {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .bg_wrap {
    background-image: url("./img/ASILIS_bg.png");
    background-repeat: repeat;
    background-position: top center;
    background-size: 900px 550px;
  }
  .fv_inner {
    margin-bottom: 22vw;
  }
  .fv_frontImg {
    width: 75%;
  }
  .fv_pic {
    width: 95%;
    height: auto;
    top: 80%;
  }
  .stackDemo {
    padding: 60px 0;
  }
  .stackDemo__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .stackDemo__left {
    top: -60%;
    padding: 32px;
  }
  .stackDemo__card {
    min-width: 350px;
  }
  .lineup__inner {
    padding: 0 16px;
  }
  .lineup_ {
    padding: 30px 0 60px !important;
  }
  .lineup__head::before {
    height: 140px;
  }
  .lineup__head {
    max-width: 220px;
    margin: 24px auto 0;
  }
  .lineup__en {
    font-size: 24px;
    white-space: nowrap;
  }
  .lineup__jp {
    white-space: nowrap;
    font-size: 20px;
  }
  .lineup__img1 {
    max-width: 28vw;
  }
  .lineup__img2 {
    width: 26vw;
    left: 0;
    top: 0;
  }
  .lineup__img2 img {
    width: 26vw;
  }
  .lineup__img3 {
    top: 1.5%;
    width: 26vw;
  }
  .lineup__img3 img {
    width: 26vw;
  }
  .lineup__img4 {
    width: 35vw;
    bottom: 0%;
    left: -3%;
  }

  .lineup__img4 > img {
    width: 35vw;
  }

  .lineup__img5 {
    width: 35vw;
    bottom: 0%;
    left: 31%;
  }

  .lineup__img5 > img {
    width: 35vw;
  }

  .lineup__img6 {
    width: 35vw;
    bottom: 0%;
    right: -2%;
  }

  .lineup__img6 > img {
    height: 100%;
    width: 35vw;
  }
  .lineup__catch {
    font-size: 14px;
    padding: 0;
    font-weight: 600;
  }
  .lineup__price {
    margin: 0;
    white-space: nowrap;
  }
  .lineup__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 26px 12px;
  }
  .lineup__item {
    max-width: 320px;
    margin: 0 auto;
  }
  .lineup__photo {
    max-width: 320px;
  }
  .lineup__jp {
    font-size: 16px;
  }
  .lineup__desc {
    font-size: 14px;
  }
  .lineup__desc-top {
    white-space: nowrap;
  }
  .lineup__meta {
    font-size: 14px;
  }
  .lineup__titleRow {
    gap: 0;
    flex-direction: column;
  }
  .lineup__sub {
    font-size: 20px;
  }
  .lineup__price {
    font-size: 15px;
  }
  /* ５か条セクション */
  .as5__card {
    grid-column: span 12;
  }
  .as5__leadText {
    font-size: 14px;
  }
  .as5__grid > .as5__card:last-child {
    grid-column: span 12;
  }
  .as5__title {
    font-size: 20px;
  }

  .as5__text {
    font-size: 14px;
  }

  /* CTAセクション */
  .lineup__ctaWrap {
    flex-direction: column;
    gap: 28px;
    margin: 56px auto;
  }
  .lineup__ctaImg img {
    width: 90%;
    margin: 0 auto;
  }
  .lineup__ctaLabel {
    font-size: 24px;
  }
  .lineup__ctaBtn {
    padding: 14px 24px;
    margin-top: 24px;
  }
  .lineup__ctaArrow {
    font-size: 24px;
  }
  .lineup__about {
    padding: 20px 0;
  }
  .lineup__aboutInner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .ctaSlider__nav {
    display: none;
  }

  .js-ctaSlider {
    grid-template-columns: 1fr;
  }

  .lineup__aboutLine {
    width: 200px;
    height: 4px;
    margin: 0 auto;
  }

  .lineup__aboutText {
    font-size: 20px;
    line-height: 1.8;
  }
  .lineup__about img {
    margin: 0px auto;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  }
  .ctaSlideText {
    font-size: 26px;
    padding: 0 16px 40%;
    text-shadow:
      0 1px 5px rgba(95, 15, 25, 0.75),
      0 2px 8px rgba(95, 15, 25, 0.8);
    -webkit-text-stroke: 1px var(--bg);
  }
  /* Instaセクション */
  .igcta__text {
    font-size: 20px;
    padding: 0 28px;
    margin-bottom: 16px;
  }
  .igcta__icon {
    width: 150px;
  }
  .igcta__text::after {
    right: 3%;
  }
  .igcta__text::before {
    left: 3%;
  }
  .igcta__text::before,
  .igcta__text::after {
    content: "";
    position: absolute;
    top: 3.3em;
    width: 45px;
    height: 2px;
  }
  .ctawrap {
    background-size: 900px 550px;
  }

  /* フッター */
  .lineup__footerLogoImg {
    width: 90px;
  }
  .lineup__footerLogoImg2 {
    width: 190px;
  }
  .lineup__footerInner {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
  }
  .lineup__footerLeft {
    gap: 24px;
  }
  .lineup__footerMenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 46px;
    white-space: nowrap;
  }
  .lineup__footerCompanyName {
    font-size: 16px;
  }
  .lineup__footerMenu a {
    font-size: 16px;
  }
  /* TOPボタン */
  .toTop {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 390px) {
  .lineup__photo {
    max-width: 300px;
  }
}

.stack5 {
  position: relative;
  padding: 120px 0;
  overflow: visible;
}

.stack5__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.stack5__intro {
  position: sticky;
  color: var(--gold);
  background: var(--bg);
  font-family: serif;
  padding: 64px 32px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.stack5__intro::before,
.stack5__intro::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.stack5__intro::before {
  inset: 10px;
  border: 1px solid rgba(215, 178, 106, 0.6);
}

.stack5__intro::after {
  inset: 16px;
  border: 2px solid rgba(215, 178, 106, 0.35);
}
.stack5__badge {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.1em;
  gap: 10px;
  margin-bottom: 14px;
}

.stack5__mark {
  width: 60px;
}

.stack5__title {
  font-size: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--bg);
  padding-bottom: 24px;
  color: var(--bg);
}
.stack5_img {
  max-width: 10vw;
  margin: 0 auto;
}
.stack5__lead {
  color: var(--bg);
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
}

.stack5__stage {
  position: relative;
}

.stack5__stack {
  position: sticky;
  top: 50vh;
  height: 34vw;
  min-height: 455px;
}

.stack5__card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30vw;
  min-width: 450px;
  border-radius: 28px;
  color: var(--gold);
  background: var(--bg);
  font-family: serif;
  padding: 56px 26px;
  text-align: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  padding: 28px 28px 26px;
  opacity: 0;
  transform: translateY(120px) rotate(6deg) scale(0.98);
  will-change: transform, opacity;
}

.stack5__card::before,
.stack5__card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.stack5__card::before {
  inset: 10px;
  border: 1px solid rgba(215, 178, 106, 0.6);
}

.stack5__card::after {
  inset: 16px;
  border: 2px solid rgba(215, 178, 106, 0.35);
}
.stack5__num {
  font-size: 36px;
}
.stack5__cardTitle {
  font-size: 24px;
  margin-top: 10px;
}
.stack5__text {
  font-size: 18px;
  color: var(--bg);
  line-height: 1.8;
  font-weight: 600;
}
.flow-line {
  display: block;
  overflow: hidden;
}

.flow-line > span {
  display: inline-block;
  transform: translateX(-32px);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.7s ease;
}

.flow-line.is-show > span {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .stack5 {
    padding: 80px 16px;
  }
  .stack5__inner {
    display: block;
    gap: 26px;
  }
  .stack5__intro {
    position: relative;
    top: auto;
    margin-bottom: 90px;
    padding: 32px;
  }
  .stack5__card {
    min-height: 450px;
    min-width: 350px;
  }
  .stack5_img {
    max-width: 35vw;
  }
  .stack5__text {
    font-size: 16px;
    line-height: 1.7;
    white-space: nowrap;
  }
  .stack5__badgeText {
    font-size: 28px;
  }
  .stack5__mark {
    width: 50px;
  }
  .stack5__title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .stack5__lead {
    font-size: 16px;
  }
}
