@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;600;700&family=Zen+Dots&display=swap");
.sns-twitter::before {
  content: "\e61b";
}

.sns-instagram::before {
  content: "\f16d";
}

@media only screen and (max-width: 1199px) {
  .pconly {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .sponly {
    display: none;
  }
}

:root {
  --bg-void: #050505;
  --bg-deep: #0e0e0e;
  --bg-panel: rgba(14, 14, 14, 0.9);
  --grid-line: rgba(255, 255, 255, 0.06);
  --acid: #ffffff;
  --glow: #bfbfbf;
  --warning: #b22a2a;
  --text-main: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.68);
  --text-muted: rgba(255, 255, 255, 0.5);
  --edge: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

body {
  font-family: "Shippori Mincho B1", serif;
  color: var(--text-main);
  background: var(--bg-void);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

.langbox {
  position: relative;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.lang {
  display: flex;
  position: absolute;
  z-index: 5;
}
@media only screen and (max-width: 1199px) {
  .lang {
    top: 49px;
    right: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .lang {
    top: 20px;
    left: 20px;
  }
}
.lang__item {
  text-align: center;
  box-sizing: border-box;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 1200px) {
  .lang__item {
    font-size: 1.05rem;
  }
}
.lang__item a {
  color: inherit;
  text-decoration: none;
}
.lang__item a:hover {
  text-decoration: underline;
}
.lang__item:first-child::after {
  content: "/";
  display: inline-block;
  color: #ffffff;
  margin: 0 12px 0 7px;
  font-weight: normal;
}
.lang__item--select {
  color: var(--glow);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.65);
}

.wrap {
  background: radial-gradient(circle at top, rgba(178, 42, 42, 0.18), transparent 45%), radial-gradient(circle at 80% 20%, rgba(178, 42, 42, 0.14), transparent 40%), linear-gradient(120deg, #050505, #0e0e0e 48%, #3b3b3b);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.page {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  padding: 150px 8vw 120px;
}
@media only screen and (max-width: 1199px) {
  .hero {
    padding: 130px 6vw 90px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.08) 28px 29px), linear-gradient(180deg, rgba(5, 5, 5, 0.85), rgba(14, 14, 14, 0.95));
  opacity: 0.65;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__content {
  position: relative;
  max-width: 980px;
  animation: rise-in 1s ease-out both;
}
@media only screen and (min-width: 1200px) {
  .hero .eyebrow img {
    width: 450px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero .eyebrow img {
    width: 200px;
  }
}
.hero__sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__pill {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--text-main);
  background: rgba(14, 14, 14, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

h1 {
  font-family: "Zen Dots", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.price {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  border: 1px solid var(--edge);
  background: rgba(14, 14, 14, 0.82);
  box-shadow: var(--shadow);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.price__label {
  color: var(--text-muted);
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}
.price__value {
  font-family: "Zen Dots", sans-serif;
  font-size: 1.6rem;
  color: var(--glow);
}
.price__value span {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-family: "Shippori Mincho B1", serif;
}

.signal {
  padding: 0 8vw 80px;
}
@media only screen and (max-width: 1199px) {
  .signal {
    padding: 0 6vw 70px;
  }
}
.signal__box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 14, 0.75);
  padding: 28px 32px;
  max-width: 780px;
  box-shadow: var(--shadow);
  position: relative;
}
.signal__box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(178, 42, 42, 0.35);
  filter: blur(0.4px);
  pointer-events: none;
}
.signal__box p {
  margin: 0 0 16px;
  color: var(--text-dim);
}
.signal__end {
  color: var(--text-main);
  letter-spacing: 0.08em;
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.section__kicker {
  font-family: "Zen Dots", sans-serif;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--acid);
  margin: 0;
}

.itembox {
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  .itembox {
    padding: 0 8vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }
}

@media only screen and (min-width: 1200px) {
  .item {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .item {
    padding: 70px 6vw;
  }
}
.item__viewport {
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(14, 14, 14, 0.7);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}
.item__grid {
  display: grid;
  gap: 10px;
  align-content: start;
}
.item__thumb {
  background: rgba(14, 14, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.item__thumb img {
  width: 100%;
  height: 110px;
  object-fit: contain;
}
.item__thumb.is-active {
  border-color: rgba(178, 42, 42, 0.6);
  transform: translateX(2px);
}
.item__stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.item__main {
  width: 600px;
  height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.45));
}
.item__caption {
  color: var(--text-dim);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.item__hint {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
@media only screen and (max-width: 1199px) {
  .item__viewport {
    grid-template-columns: 1fr;
  }
  .item__grid {
    order: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .item__thumb img {
    height: 70px;
  }
  .item__main {
    height: 360px;
  }
}

.info {
  padding: 0 8vw 90px;
}
@media only screen and (max-width: 1199px) {
  .info {
    padding: 0 6vw 70px;
  }
}
.info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.info__panel {
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  animation: rise-in 0.9s ease-out both;
}
.info__panel:nth-child(2) {
  animation-delay: 0.2s;
}
.info__panel h3 {
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: var(--acid);
}
.info__panel dl {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
.info__panel dt {
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 12px;
  padding-bottom: 4px;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--warning);
  display: inline-block;
}
.info__panel dt:first-child {
  margin-top: 0;
}
.info__panel dd {
  margin: 8px 0 0 0;
  padding: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.info__panel dd a {
  text-decoration: none;
  background: linear-gradient(90deg, rgb(131, 58, 180) 0%, rgb(253, 29, 29) 50%, rgb(252, 176, 69) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.info__note {
  margin: 16px 0 0;
  color: var(--text-muted);
}

.cta {
  padding: 0 8vw 120px;
}
@media only screen and (max-width: 1199px) {
  .cta {
    padding: 0 6vw 100px;
  }
}
.cta__inner {
  background: linear-gradient(120deg, rgba(14, 14, 14, 0.92), rgba(59, 59, 59, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 36px 42px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: rise-in 1s ease-out both;
}
.cta__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 18px, rgba(178, 42, 42, 0.06) 18px 19px);
  opacity: 0.6;
  pointer-events: none;
}
.cta__label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.cta__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0 0 18px;
  font-weight: 600;
}
.cta__meta {
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-family: "Zen Dots", sans-serif;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

@media only screen and (min-width: 1200px) {
  .global_foot {
    height: 284px;
  }
}

.global_head {
  margin: 0 !important;
}

header, footer {
  position: relative;
  z-index: 9999999999;
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */