@charset "UTF-8";
:root {
  --vw: 1vw;
  --color-base: #111111;
  --color-line: #2c2c2c;
  --color-gray: #656565;
  --color-white: #ffffff;
  --color-orange: #e26522;
  --font-family-base: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --font-family-heading: "Meychan_web", sans-serif;
  --font-family-number: "Hind", sans-serif;
  --font-weight-base: 500;
  --font-weight-heading: 400;
  --font-weight-number: 500;
  --letter-spacing-base: 0.08em;
  --letter-spacing-heading: 0.2em;
  --letter-spacing-number: 0.08em;
  --color-rnw-black: #0a0a0a;
  --color-rnw-white: #ffffff;
  --color-rnw-cream: #f9f7f4;
  --color-rnw-section-alt: #e8dece;
  --color-rnw-orange: #ff5500;
  --color-rnw-gray-50: #f2ede6;
  --color-rnw-gray-100: #efefec;
  --color-rnw-gray-200: #ddddd8;
  --color-rnw-gray-400: #999990;
  --color-rnw-gray-600: #555550;
  --color-rnw-gray-800: #2a2a26;
  --font-family-rnw-jp: "Noto Sans JP", var(--font-family-base);
  --font-family-rnw-en: "Antonio", "Bebas Neue", sans-serif;
  --font-family-rnw-script: "Dancing Script", cursive;
  --font-family-rnw-mono: "Space Mono", monospace;
  --ease-rnw-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-rnw-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

.p-home {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  font-family: var(--font-family-rnw-jp);
  color: var(--color-rnw-black);
  background: var(--color-rnw-cream);
  position: relative;
  overflow-x: clip;
  --panel-w: clamp(180px, 14vw, 210px);
}
.p-home__panel {
  display: none;
}
@media (min-width: 1024px) {
  .p-home__panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--panel-w);
    z-index: 20;
    background: rgba(12, 8, 4, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.5s var(--ease-rnw-in-out), background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
  }
  .p-home__panel.--scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-right-color: rgba(0, 0, 0, 0.06);
  }
  .p-home__panel.--scrolled .p-home__panel__logo__img {
    filter: brightness(0);
  }
  .p-home__panel.--scrolled .p-home__panel__nav__item {
    color: rgba(10, 10, 10, 0.45);
  }
  .p-home__panel.--scrolled .p-home__panel__nav__item:hover, .p-home__panel.--scrolled .p-home__panel__nav__item.active {
    color: var(--color-rnw-orange);
    background: rgba(255, 85, 0, 0.04);
  }
  .p-home__panel.--collapsed {
    transform: translateX(-100%);
  }
}
.p-home__panel__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.p-home__panel__logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  padding: 32px 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.p-home__panel__logo__sub {
  font-family: var(--font-family-rnw-mono);
  font-size: 8px;
  letter-spacing: 0.4em;
  color: var(--color-rnw-orange);
  text-transform: uppercase;
}
.p-home__panel__logo__img {
  width: clamp(72px, 9vw, 110px);
  height: auto;
  filter: brightness(0) invert(1);
}
.p-home__panel__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 8px 0;
}
.p-home__panel__nav__item {
  font-family: var(--font-family-rnw-en);
  font-size: 16.8px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 11px 24px;
  position: relative;
  overflow: hidden;
  display: block;
  transition: color 0.2s, background 0.2s;
}
.p-home__panel__nav__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-rnw-orange);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease-rnw-out);
}
.p-home__panel__nav__item:hover, .p-home__panel__nav__item.active {
  color: var(--color-rnw-white);
  background: rgba(255, 255, 255, 0.05);
}
.p-home__panel__nav__item:hover::before, .p-home__panel__nav__item.active::before {
  transform: scaleY(1);
}
.p-home__panelToggle {
  display: none;
}
@media (min-width: 1024px) {
  .p-home__panelToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 64px;
    left: var(--panel-w);
    transform: translateY(-50%);
    z-index: 60;
    width: 18px;
    height: 48px;
    border: none;
    border-radius: 0 6px 6px 0;
    background: var(--color-rnw-black);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.18);
    transition: left 0.4s var(--ease-rnw-out), background 0.22s, color 0.22s;
  }
  .p-home__panelToggle:hover {
    background: var(--color-rnw-orange);
    color: var(--color-rnw-white);
    width: 22px;
  }
}
.p-home__panelToggle.--collapsed {
  left: 0;
}
.p-home__panelToggle__icon {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(135deg);
  transition: transform 0.3s;
}
.p-home__panelToggle.--collapsed .p-home__panelToggle__icon {
  transform: rotate(-45deg);
}
.p-home__hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--color-rnw-black);
}
.p-home__hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-home__hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}
.p-home__contentWrap {
  position: relative;
  transition: margin-left 0.5s var(--ease-rnw-in-out);
}
@media (min-width: 1024px) {
  .p-home__contentWrap {
    margin-left: var(--panel-w);
  }
  .p-home__contentWrap.--panelCollapsed {
    margin-left: 0;
  }
}
.p-home__stackCard {
  position: sticky;
  top: 0;
  min-height: 100vh;
  box-shadow: 0 -16px 60px rgba(0, 0, 0, 0.13), 0 -1px 0 rgba(0, 0, 0, 0.07);
}
.p-home__stackCard::after {
  content: attr(data-index);
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-family-rnw-mono);
  font-size: 8.32px;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 10, 0.18);
  pointer-events: none;
}
@media screen and (max-width: 719px) {
  .p-home__stackCard {
    min-height: 100svh;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.11), 0 -1px 0 rgba(0, 0, 0, 0.06);
  }
  .p-home__stackCard::after {
    display: none;
  }
}
.p-home__news {
  z-index: 11;
  background: var(--color-rnw-cream);
}
.p-home__news__bgClip {
  position: absolute;
  inset: 0;
  overflow: clip;
  pointer-events: none;
  z-index: 0;
}
.p-home__news__bgText {
  position: absolute;
  left: -0.04em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-family-rnw-en);
  font-size: clamp(160px, 22vw, 352px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-rnw-gray-100);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.p-home__news__list {
  display: flex;
  flex-direction: column;
  padding: 0 40px 100px;
}
@media screen and (max-width: 719px) {
  .p-home__news__list {
    padding: 0 20px 56px;
  }
}
.p-home__news__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 26px 0 26px 5px;
  text-decoration: none;
  border-bottom: 1px solid var(--color-rnw-gray-100);
  transition: background 0.2s;
  position: relative;
}
.p-home__news__item:first-child {
  border-top: 1px solid var(--color-rnw-gray-100);
}
.p-home__news__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-rnw-orange);
  transform: scaleY(0);
  transition: transform 0.3s var(--ease-rnw-out);
}
.p-home__news__item:hover::before {
  transform: scaleY(1);
}
.p-home__news__item:hover .p-home__news__item__title {
  color: var(--color-rnw-orange);
}
@media screen and (max-width: 719px) {
  .p-home__news__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.p-home__news__item__date {
  font-family: var(--font-family-rnw-mono);
  font-size: 9.92px;
  letter-spacing: 0.12em;
  color: var(--color-rnw-gray-400);
  padding-top: 4px;
}
.p-home__news__item__cat {
  display: inline-block;
  font-family: var(--font-family-rnw-mono);
  font-size: 8.32px;
  letter-spacing: 0.2em;
  color: var(--color-rnw-white);
  background: var(--color-rnw-orange);
  padding: 2px 8px;
  margin-bottom: 8px;
}
.p-home__news__item__title {
  font-size: 14.4px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-rnw-gray-800);
  transition: color 0.2s;
}
.p-home__marquee {
  background: var(--color-rnw-orange);
  overflow: hidden;
  padding: 9px 0;
}
.p-home__marquee__track {
  display: flex;
  animation: p-home-marquee 18s linear infinite;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
}
.p-home__marquee__item {
  font-family: var(--font-family-rnw-en);
  font-size: 13.6px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.p-home__disco {
  z-index: 12;
  background: var(--color-rnw-section-alt);
  overflow: clip;
}
.p-home__disco__bgText {
  position: absolute;
  right: -0.04em;
  bottom: -0.1em;
  font-family: var(--font-family-rnw-en);
  font-size: clamp(160px, 22vw, 352px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-rnw-gray-100);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media screen and (max-width: 719px) {
  .p-home__disco__bgText {
    top: 0.2em;
    left: 0.3em;
    z-index: -1;
  }
}
.p-home__disco__featured {
  display: grid;
  grid-template-columns: clamp(280px, 36vw, 480px) 1fr;
  gap: 72px;
  align-items: center;
  padding: 0 40px 100px;
}
@media screen and (max-width: 719px) {
  .p-home__disco__featured {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 20px 56px;
  }
}
.p-home__disco__featured__jacketLink {
  display: block;
}
.p-home__disco__featured__jacket {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  box-shadow: 4px 8px 40px rgba(0, 0, 0, 0.15);
}
.p-home__disco__featured__jacket.--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-rnw-gray-800);
  font-family: var(--font-family-rnw-en);
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 16px;
}
.p-home__disco__featured__new {
  display: inline-block;
  font-family: var(--font-family-rnw-mono);
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--color-rnw-white);
  background: var(--color-rnw-orange);
  padding: 3px 10px;
  margin-bottom: 14px;
}
@media screen and (max-width: 719px) {
  .p-home__disco__featured__new {
    margin-right: 10px;
    margin-bottom: 8px;
    vertical-align: middle;
  }
}
.p-home__disco__featured__type {
  font-family: var(--font-family-rnw-mono);
  font-size: 9.28px;
  letter-spacing: 0.22em;
  color: var(--color-rnw-orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media screen and (max-width: 719px) {
  .p-home__disco__featured__type {
    display: inline-block;
    margin-bottom: 8px;
    vertical-align: middle;
  }
}
.p-home__disco__featured__title {
  font-size: 28.8px;
  font-weight: 700;
  color: var(--color-rnw-black);
  line-height: 1.3;
}
.p-home__disco__featured__date {
  font-family: var(--font-family-rnw-mono);
  font-size: 11.2px;
  color: var(--color-rnw-gray-400);
  margin-top: 6px;
}
.p-home__video {
  z-index: 13;
  background: var(--color-rnw-cream);
  overflow: clip;
  padding: 100px 0 80px;
}
@media (max-width: 1023px) {
  .p-home__video {
    padding-top: 72px;
  }
}
@media screen and (max-width: 719px) {
  .p-home__video {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-home__video .p-home__sectionHead {
  padding: 28px 80px 48px;
  margin: 0 80px;
}
@media (max-width: 1023px) {
  .p-home__video .p-home__sectionHead {
    padding: 28px 28px 36px;
    margin: 0 28px;
  }
}
@media screen and (max-width: 719px) {
  .p-home__video .p-home__sectionHead {
    padding: 28px 20px 28px;
    margin: 0 20px;
  }
}
.p-home__video__bgText {
  position: absolute;
  right: -0.04em;
  top: 0;
  font-family: var(--font-family-rnw-en);
  font-size: clamp(160px, 22vw, 352px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-rnw-gray-200);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.p-home__video__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.p-home__video__track {
  display: flex;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  animation: p-home-video-scroll 36s linear infinite;
}
.p-home__video__viewport:hover .p-home__video__track {
  animation-play-state: paused;
}
.p-home__video__card {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: clamp(340px, 38vw, 520px);
  overflow: hidden;
  text-decoration: none;
}
@media screen and (max-width: 719px) {
  .p-home__video__card {
    width: clamp(220px, 75vw, 320px);
  }
}
.p-home__video__card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-rnw-out), filter 0.4s;
}
.p-home__video__card:hover .p-home__video__card__thumb {
  transform: scale(1.06);
  filter: brightness(0.85);
}
.p-home__video__card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s;
}
.p-home__video__card:hover .p-home__video__card__overlay {
  background: rgba(0, 0, 0, 0.18);
}
.p-home__video__card__play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.35s var(--ease-rnw-out);
}
.p-home__video__card__play::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background-color: var(--color-rnw-black);
  -webkit-mask: center/contain url("../img/icon/play-triangle.svg") no-repeat;
  mask: center/contain url("../img/icon/play-triangle.svg") no-repeat;
}
.p-home__video__card:hover .p-home__video__card__play {
  opacity: 1;
  transform: scale(1);
}
.p-home__live {
  z-index: 14;
  background: var(--color-rnw-section-alt);
  overflow: clip;
}
.p-home__live__bgText {
  position: absolute;
  right: -0.04em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-family-rnw-en);
  font-size: clamp(160px, 22vw, 352px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-rnw-gray-100);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.p-home__live__list {
  display: flex;
  flex-direction: column;
  padding: 0 40px 100px;
}
@media screen and (max-width: 719px) {
  .p-home__live__list {
    padding: 0 20px 56px;
  }
}
.p-home__live__item {
  display: block;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-rnw-gray-100);
  text-decoration: none;
  transition: background 0.2s;
}
.p-home__live__item:first-child {
  border-top: 1px solid var(--color-rnw-gray-100);
}
.p-home__live__item:hover .p-home__live__item__name {
  color: var(--color-rnw-orange);
}
.p-home__live__item__date {
  font-family: var(--font-family-rnw-mono);
  font-size: 9.6px;
  letter-spacing: 0.2em;
  color: var(--color-rnw-orange);
  margin-bottom: 6px;
}
.p-home__live__item__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-rnw-gray-800);
  line-height: 1.45;
  transition: color 0.2s;
}
.p-home__profile {
  z-index: 15;
  background: var(--color-rnw-cream);
  overflow: clip;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr clamp(200px, 26vw, 320px);
  gap: 64px;
  align-items: center;
}
@media (max-width: 1023px) {
  .p-home__profile {
    padding: 72px 28px;
    gap: 40px;
  }
}
@media screen and (max-width: 719px) {
  .p-home__profile {
    padding: 56px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.p-home__profile__bgText {
  position: absolute;
  left: -0.04em;
  bottom: -0.15em;
  font-family: var(--font-family-rnw-en);
  font-size: clamp(128px, 18vw, 320px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-rnw-gray-200);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media screen and (max-width: 719px) {
  .p-home__profile__bgText {
    display: none;
  }
}
.p-home__profile__text {
  min-width: 0;
}
.p-home__profile__bio {
  font-size: 14.4px;
  line-height: 2.2;
  color: var(--color-rnw-gray-600);
  margin: 20px 0 32px;
  max-width: 480px;
}
.p-home__profile__photo {
  position: relative;
}
.p-home__profile__photo img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
}
.p-home__profile__photo::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--color-rnw-gray-100);
  border-radius: 2px;
  z-index: -1;
}
@media screen and (max-width: 719px) {
  .p-home__profile__photo {
    order: -1;
  }
}
.p-home__contact {
  z-index: 16;
  background: var(--color-rnw-section-alt);
  overflow: clip;
  padding: 100px 80px;
}
@media (max-width: 1023px) {
  .p-home__contact {
    padding: 72px 28px;
  }
}
@media screen and (max-width: 719px) {
  .p-home__contact {
    padding: 56px 20px;
  }
}
.p-home__contact::before {
  content: "CONTACT";
  position: absolute;
  bottom: -0.15em;
  right: -0.05em;
  font-family: var(--font-family-rnw-en);
  font-size: clamp(96px, 18vw, 288px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media screen and (max-width: 719px) {
  .p-home__contact::before {
    bottom: -0.05em;
  }
}
.p-home__contact__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.p-home__contact__head {
  margin-bottom: 56px;
}
.p-home__contact__heading {
  font-family: var(--font-family-rnw-script);
  font-weight: 700;
  font-size: clamp(44.8px, 8vw, 128px);
  letter-spacing: 0;
  line-height: 0.95;
  color: var(--color-rnw-black);
}
.p-home__contact__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media screen and (max-width: 719px) {
  .p-home__contact__list {
    grid-template-columns: 1fr;
  }
}
.p-home__contact__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 36px 40px 36px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.p-home__contact__item:nth-child(-n+2) {
  border-top: 1px solid rgba(10, 10, 10, 0.1);
}
.p-home__contact__item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid rgba(10, 10, 10, 0.1);
}
.p-home__contact__item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
}
.p-home__contact__item:hover .p-home__contact__item__title {
  color: var(--color-rnw-black);
}
.p-home__contact__item:hover .p-home__contact__item__url {
  color: rgba(255, 85, 0, 0.6);
}
.p-home__contact__item:hover .p-home__contact__item__arrow {
  background: var(--color-rnw-orange);
  border-color: var(--color-rnw-orange);
  color: var(--color-rnw-white);
  transform: translateX(4px);
}
@media screen and (max-width: 719px) {
  .p-home__contact__item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .p-home__contact__item:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .p-home__contact__item:nth-child(even) {
    padding-left: 0;
  }
  .p-home__contact__item:nth-child(2) {
    border-top: none;
  }
  .p-home__contact__item:first-child {
    border-top: 1px solid rgba(10, 10, 10, 0.1);
  }
}
.p-home__contact__item__body {
  min-width: 0;
}
.p-home__contact__item__label {
  font-family: var(--font-family-rnw-mono);
  font-size: 8.8px;
  letter-spacing: 0.26em;
  color: var(--color-rnw-orange);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.p-home__contact__item__title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.85);
  line-height: 1.5;
  transition: color 0.2s;
}
.p-home__contact__item__url {
  font-family: var(--font-family-rnw-mono);
  font-size: 9.6px;
  letter-spacing: 0.08em;
  color: rgba(10, 10, 10, 0.38);
  margin-top: 6px;
  transition: color 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 400px;
}
@media screen and (max-width: 719px) {
  .p-home__contact__item__url {
    max-width: 100%;
  }
}
.p-home__contact__item__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 85, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-rnw-orange);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.3s var(--ease-rnw-out);
}
@media screen and (max-width: 719px) {
  .p-home__contact__item__arrow {
    display: none;
  }
}
.p-home__store {
  position: relative;
  overflow: clip;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 17;
  background: var(--color-rnw-black);
}
@media screen and (max-width: 719px) {
  .p-home__store {
    min-height: 380px;
  }
}
.p-home__store__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-home__store__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center right;
  object-position: center right;
  filter: saturate(0.45) brightness(0.92);
  transition: transform 1s var(--ease-rnw-out), filter 0.6s;
}
.p-home__store:hover .p-home__store__bg img {
  transform: scale(1.03);
  filter: saturate(0.55) brightness(0.95);
}
.p-home__store__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(244, 242, 238, 0.35);
}
.p-home__store__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 100px 40px;
}
@media screen and (max-width: 719px) {
  .p-home__store__content {
    padding: 72px 24px;
    gap: 14px;
  }
}
.p-home__store__heading {
  font-family: var(--font-family-rnw-script);
  font-weight: 700;
  font-size: clamp(96px, 15vw, 192px);
  letter-spacing: 0;
  line-height: 0.9;
  color: var(--color-rnw-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 719px) {
  .p-home__store__heading {
    font-size: clamp(56px, 18vw, 96px);
  }
}
.p-home__store__desc {
  font-family: var(--font-family-rnw-jp);
  font-size: 13.12px;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.p-home__store__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-family-rnw-mono);
  font-size: 9.92px;
  letter-spacing: 0.28em;
  color: var(--color-rnw-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px 40px;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, gap 0.35s var(--ease-rnw-out);
}
.p-home__store__cta::after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
  transition: width 0.35s var(--ease-rnw-out);
}
.p-home__store__cta:hover {
  background: var(--color-rnw-orange);
  border-color: var(--color-rnw-orange);
  gap: 22px;
}
.p-home__store__cta:hover::after {
  width: 32px;
}
.p-home__sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 72px 40px 0;
  margin-bottom: 48px;
}
@media screen and (max-width: 719px) {
  .p-home__sectionHead {
    padding: 56px 20px 0;
  }
}
.p-home__emptyMsg {
  padding: 0 40px;
  font-size: 14px;
  color: var(--color-rnw-gray-400);
}
@media screen and (max-width: 719px) {
  .p-home__emptyMsg {
    padding: 0 20px;
  }
}

@keyframes p-home-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes p-home-video-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}