@charset "UTF-8";
.p-top {
  display: block;
  position: relative;
}

.p-hero {
  display: block;
  position: relative;
}
.p-hero__container {
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 10rem;
}
@media screen and (max-width: 960px) {
  .p-hero__container {
    padding-bottom: 5.7rem;
  }
}
.p-hero__container::before {
  content: "";
  width: 100%;
  height: 96rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-pink-bg);
}
@media screen and (max-width: 960px) {
  .p-hero__container::before {
    height: 75rem;
  }
}
.p-hero__content {
  width: min(90%, 2000px);
  max-width: calc(100% - 20rem);
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-hero__content {
    width: 95%;
    max-width: calc(100% - 2rem);
  }
}
.p-hero__kv {
  display: block;
  position: relative;
}
.p-hero__bnr {
  display: block;
  position: relative;
  margin-top: 8.6rem;
}
@media screen and (max-width: 960px) {
  .p-hero__bnr {
    margin-top: 6rem;
  }
}

.p-hero_kv {
  display: block;
  position: relative;
}
.p-hero_kv__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-hero_kv__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.p-hero_kv__link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem;
}
@media screen and (max-width: 960px) {
  .p-hero_kv__link {
    border-radius: 0.3rem;
  }
}
.p-hero_kv__link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  opacity: 0;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-hero_kv__link::before {
    transition: opacity 0.8s var(--ease_out);
  }
  .p-hero_kv__link:hover::before {
    opacity: 0.5;
  }
}
.p-hero_kv__link-img {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-hero_kv__link-img {
    filter: grayscale(0);
    transform: scale3d(1.0001, 1.0001, 1.0001);
    transition: transform 0.5s var(--ease_out), filter 0.5s var(--ease_out);
  }
  .p-hero_kv__link:hover .p-hero_kv__link-img {
    filter: grayscale(0.5);
    transform: scale3d(1.03, 1.03, 1.03);
  }
}
.p-hero_kv__link-logo {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-hero_kv__link-logo {
    width: 70%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-hero_kv__link-logo {
    transition: opacity 0.5s var(--ease_out);
  }
  .p-hero_kv__link:hover .p-hero_kv__link-logo {
    opacity: 1;
  }
}

.p-hero_bnr {
  display: block;
  position: relative;
}
.p-hero_bnr__slide {
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-hero_bnr__list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin: 0 auto;
}
.p-hero_bnr__list-item {
  width: 100%;
  flex-shrink: 0;
  display: block;
  position: relative;
}
.p-hero_bnr__link {
  display: block;
  position: relative;
  background-color: var(--color-white);
  box-shadow: 0 0 3rem rgba(51, 51, 51, 0.1);
  overflow: hidden;
}
.p-hero_bnr__link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(60deg, var(--color-pink-text) 0%, var(--color-pink-bg) 100%);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-hero_bnr__link::before {
    transition: opacity 0.6s var(--ease_out);
  }
  .p-hero_bnr__link:hover::before {
    opacity: 0.15;
  }
}
.p-hero_bnr__link::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 5px solid var(--color-gold);
  opacity: 0;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-hero_bnr__link::after {
    transition: opacity 0.6s var(--ease_out);
  }
  .p-hero_bnr__link:hover::after {
    opacity: 1;
  }
}
.p-hero_bnr__link-img {
  display: block;
  position: relative;
}
.p-hero_bnr__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  position: relative;
  margin-top: 4rem;
}
@media screen and (max-width: 960px) {
  .p-hero_bnr__pagination {
    gap: 1rem;
    margin-top: 3rem;
  }
}
.p-hero_bnr__pagination-item {
  width: 1rem;
  height: 1.6rem;
  display: block;
  position: relative;
  background: url("../img/top/drop2.svg") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .p-hero_bnr__pagination-item {
    width: 0.8rem;
    height: 1.4rem;
  }
}
.p-hero_bnr__pagination-item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/top/drop1.svg") no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.4s var(--ease_out);
}
.p-hero_bnr__pagination-item.is-slide-current::before {
  opacity: 1;
}

.p-hero_bnr__nav {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 960px) {
  .p-hero_bnr__nav {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.p-hero_bnr__nav.--prev {
  left: 0;
  transform: scale(-1, 1);
}
.p-hero_bnr__nav.--next {
  right: 0;
}

.p-info {
  display: block;
  position: relative;
}
.p-info__container {
  width: min(90%, 2000px);
  max-width: calc(100% - 20rem);
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 12rem 0;
}
@media screen and (max-width: 960px) {
  .p-info__container {
    width: 95%;
    max-width: calc(100% - 4rem);
    padding: 6.2rem 0 8rem;
  }
}
.p-info__content {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-info__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5%;
  }
}

.p-info_news {
  display: block;
  position: relative;
}
.p-info_news__header {
  display: block;
  position: relative;
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 960px) {
  .p-info_news__header {
    margin-bottom: 3.9rem;
  }
}
.p-info_news__title {
  display: block;
  position: relative;
}
.p-info_news__title-main {
  display: block;
  position: relative;
  font-size: 6.4rem;
  font-family: meno-banner, "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0;
  color: var(--color-pink-text);
}
@media screen and (max-width: 960px) {
  .p-info_news__title-main {
    font-size: 4.5rem;
  }
}
.p-info_news__title-sub {
  display: block;
  position: relative;
  margin-top: 1rem;
  font-size: 1.3rem;
  color: var(--color-gold);
}
@media screen and (max-width: 960px) {
  .p-info_news__title-sub {
    margin-top: 0.6rem;
    font-size: 1.1rem;
  }
}
.p-info_news__inner {
  display: block;
  position: relative;
}
.p-info_news__list {
  display: block;
  position: relative;
}
.p-info_news__list-item {
  display: block;
  position: relative;
}
.p-info_news__list-item + .p-info_news__list-item {
  margin-top: 1.2rem;
}
@media screen and (max-width: 960px) {
  .p-info_news__list-item + .p-info_news__list-item {
    margin-top: 1rem;
  }
}
.p-info_news__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-top: 1.4rem;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .p-info_news__more {
    margin-top: 1rem;
  }
}
.p-info_news__more-link {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem 3rem 0.8rem 1rem;
  font-family: meno-banner, "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  color: var(--color-pink-text);
}
.p-info_news__more-link::before {
  content: "";
  width: 1.5rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/spark.svg") no-repeat center/contain;
}
.p-info_news__more-link::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  border-bottom: 1px solid var(--color-pink-text);
}
@media (hover: hover) and (pointer: fine) {
  .p-info_news__more-link::after {
    transition: width 0.4s var(--ease_out);
  }
  .p-info_news__more-link:hover::after {
    width: 100%;
    right: 0;
    left: auto;
  }
}

.p-info_news_article {
  display: block;
  position: relative;
  padding: 3rem 2.4rem;
  color: var(--color-text);
  background-color: var(--color-white);
  box-shadow: 0 0 3rem rgba(51, 51, 51, 0.1);
}
@media screen and (max-width: 960px) {
  .p-info_news_article {
    padding: 2rem 2rem;
  }
}
.p-info_news_article::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(60deg, var(--color-pink-text) 0%, var(--color-pink-bg) 100%);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-info_news_article::before {
    transition: opacity 0.6s var(--ease_out);
  }
  .p-info_news_article:hover::before {
    opacity: 0.15;
  }
}
.p-info_news_article::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 3px solid var(--color-gold);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-info_news_article::after {
    transition: opacity 0.6s var(--ease_out);
  }
  .p-info_news_article:hover::after {
    opacity: 1;
  }
}
.p-info_news_article__date {
  display: block;
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  font-family: meno-banner, "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
}
.p-info_news_article__title {
  display: block;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-info_news_article__title {
    font-size: 1.3rem;
    line-height: 1.65;
  }
}
.p-info_news_article__category {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  margin-top: 1.4rem;
}
@media screen and (max-width: 960px) {
  .p-info_news_article__category {
    gap: 0.5rem;
    margin-top: 1.2rem;
  }
}
.p-info_news_article__category-badge {
  display: block;
  position: relative;
  padding: 0.1rem 1rem 0.2rem;
  border-radius: 20rem;
  font-size: 1rem;
  color: var(--color-white);
  background-color: var(--color-gold);
}
@media screen and (max-width: 960px) {
  .p-info_news_article__category-badge {
    padding: 0.15rem 1rem;
    font-size: 0.8rem;
  }
}

.p-info_sns {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-info_sns {
    width: 100%;
    margin: 7rem auto 0;
  }
}
.p-info_sns__header {
  display: block;
  position: relative;
  margin-bottom: 3.4rem;
}
.p-info_sns__title {
  display: block;
  position: relative;
}
.p-info_sns__title-main {
  display: block;
  position: relative;
  font-size: 6.4rem;
  font-family: meno-banner, "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0;
  color: var(--color-pink-text);
}
@media screen and (max-width: 960px) {
  .p-info_sns__title-main {
    font-size: 4.5rem;
  }
}
.p-info_sns__title-sub {
  display: block;
  position: relative;
  margin-top: 1rem;
  font-size: 1.3rem;
  color: var(--color-gold);
}
@media screen and (max-width: 960px) {
  .p-info_sns__title-sub {
    margin-top: 0.6rem;
    font-size: 1.1rem;
  }
}
.p-info_sns__inner {
  display: block;
  position: relative;
}
.p-info_sns__timeline {
  width: 100%;
  height: 46rem;
  display: block;
  position: relative;
  margin: 0 auto;
  background-color: var(--color-white);
  box-shadow: 0 0 3rem rgba(51, 51, 51, 0.1);
}
@media screen and (max-width: 960px) {
  .p-info_sns__timeline {
    height: 55rem;
  }
}
.p-info_sns__timeline-frame {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.p-info_sns__timeline-loader {
  height: 3rem;
  width: 3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-info_sns__timeline-loader {
    height: 4rem;
    width: 4rem;
  }
}
.is-timeline-loaded + .p-info_sns__timeline-loader {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-info_sns__timeline-loader::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 0.2rem solid var(--color-white);
  border-top: 0.2rem solid var(--color-pink-text);
  animation: rotate 0.5s linear infinite;
  z-index: 20;
  pointer-events: none;
}
.is-timeline-loaded .p-info_sns__timeline-loader::before {
  animation-play-state: paused;
}
@media screen and (max-width: 960px) {
  .p-info_sns__timeline-loader::before {
    border-width: 0.1rem;
  }
}
.p-info_sns__link {
  width: 90%;
  max-width: 28rem;
  display: block;
  position: relative;
  margin: 2.6rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-info_sns__link {
    max-width: 23rem;
  }
}
.p-info_sns__link-item {
  display: block;
  position: relative;
}
.p-info_sns__link-item + .p-info_sns__link-item {
  margin-top: 1rem;
}
@media screen and (max-width: 960px) {
  .p-info_sns__link-item + .p-info_sns__link-item {
    margin-top: 1.6rem;
  }
}
.p-info_sns__btn {
  display: block;
  position: relative;
  padding: 1.6rem 2rem 1.8rem 4.5rem;
  color: var(--color-pink-text);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-info_sns__btn {
    padding: 1.4rem 2rem 1.5rem 4.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-info_sns__btn {
    transition: color 0.8s var(--ease_out), background-color 0.8s var(--ease_out);
  }
  .p-info_sns__btn:hover {
    color: var(--color-white);
    background-color: var(--color-pink-text);
  }
}
.p-info_sns__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20rem;
  border: 1px solid var(--color-pink-text);
}
.p-info_sns__btn-icon {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 4.5rem;
  transform: translate(-50%, -50%);
  fill: currentColor;
}
@media screen and (max-width: 960px) {
  .p-info_sns__btn-icon {
    width: 1.7rem;
    height: 1.7rem;
    left: 3.6rem;
  }
}
.p-info_sns__btn-text {
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-info_sns__btn-text {
    font-size: 1.2rem;
  }
}

.p-goods {
  display: block;
  position: relative;
  background: var(--color-pink-bg);
}
.p-goods__container {
  width: min(90%, 2000px);
  max-width: calc(100% - 20rem);
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 12rem 0 15.8rem;
}
@media screen and (max-width: 960px) {
  .p-goods__container {
    width: 95%;
    max-width: calc(100% - 4rem);
    padding: 6.2rem 0 8rem;
  }
}
.p-goods__header {
  display: block;
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (max-width: 960px) {
  .p-goods__header {
    margin-bottom: 4rem;
  }
}
.p-goods__title {
  display: block;
  position: relative;
}
.p-goods__title-main {
  display: block;
  position: relative;
  font-size: 6.4rem;
  font-family: meno-banner, "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0;
  color: var(--color-pink-text);
}
@media screen and (max-width: 960px) {
  .p-goods__title-main {
    font-size: 4.5rem;
  }
}
.p-goods__title-sub {
  display: block;
  position: relative;
  margin-top: 1rem;
  font-size: 1.3rem;
  color: var(--color-gold);
}
@media screen and (max-width: 960px) {
  .p-goods__title-sub {
    margin-top: 0.6rem;
    font-size: 1.1rem;
  }
}
.p-goods__inner {
  display: block;
  position: relative;
}
.p-goods__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.6rem 3.5rem;
  position: relative;
}
@media screen and (min-width: 961px) and (min-width: 2000px) {
  .p-goods__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .p-goods__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6rem 1rem;
  }
}
@media screen and (max-width: 960px) and (min-width: 700px) {
  .p-goods__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-goods__list-item {
  display: block;
  position: relative;
}
.p-goods__more {
  width: 100%;
  max-width: 28rem;
  display: block;
  position: relative;
  margin: 5.5rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-goods__more {
    max-width: 18.5rem;
    margin-top: 3.4rem;
  }
}

.p-goods_article {
  display: block;
  position: relative;
}
.p-goods_article__thumb {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-goods_article__thumb {
    margin-bottom: 0.6rem;
  }
}
.p-goods_article__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(60deg, var(--color-pink-text) 0%, var(--color-pink-bg) 100%);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-goods_article__thumb::before {
    transition: opacity 0.6s var(--ease_out);
  }
  .p-goods_article:hover .p-goods_article__thumb::before {
    opacity: 0.1;
  }
}
.p-goods_article__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 8px solid var(--color-gold);
  opacity: 0;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-goods_article__thumb::after {
    transition: opacity 0.6s var(--ease_out);
  }
  .p-goods_article:hover .p-goods_article__thumb::after {
    opacity: 1;
  }
}
.p-goods_article__thumb-img {
  width: 100%;
  padding-top: 100%;
  display: block;
  position: relative;
}
.p-goods_article__thumb-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-goods_article__title {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-gold);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-goods_article__title {
    font-size: 1.1rem;
  }
}

.p-movie {
  display: block;
  position: relative;
}
.p-movie__container {
  width: min(90%, 2000px);
  max-width: calc(100% - 20rem);
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 12.4rem 0 15.8rem;
}
@media screen and (max-width: 960px) {
  .p-movie__container {
    width: 95%;
    max-width: calc(100% - 4rem);
    padding: 6.2rem 0 10rem;
  }
}
.p-movie__header {
  display: block;
  position: relative;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 960px) {
  .p-movie__header {
    margin-bottom: 3.8rem;
  }
}
.p-movie__title {
  display: block;
  position: relative;
}
.p-movie__title-main {
  display: block;
  position: relative;
  font-size: 6.4rem;
  font-family: meno-banner, "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0;
  color: var(--color-pink-text);
}
@media screen and (max-width: 960px) {
  .p-movie__title-main {
    font-size: 4.5rem;
  }
}
.p-movie__title-sub {
  display: block;
  position: relative;
  margin-top: 1rem;
  font-size: 1.3rem;
  color: var(--color-gold);
}
@media screen and (max-width: 960px) {
  .p-movie__title-sub {
    margin-top: 0.6rem;
    font-size: 1.1rem;
  }
}
.p-movie__inner {
  display: block;
  position: relative;
}
.p-movie__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 3.5rem;
  position: relative;
}
@media screen and (min-width: 961px) and (min-width: 2000px) {
  .p-movie__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .p-movie__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.8rem 1.5rem;
  }
}
@media screen and (max-width: 960px) and (min-width: 700px) {
  .p-movie__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-movie__list-item {
  min-width: 0;
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-movie__list-item.--L {
    grid-column-end: span 2;
    grid-row-end: span 2;
  }
}
.p-movie__more {
  width: 100%;
  max-width: 28rem;
  display: block;
  position: relative;
  margin: 5.5rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-movie__more {
    max-width: 18.5rem;
    margin-top: 3.8rem;
  }
}

.p-movie_article {
  display: block;
  position: relative;
}
.p-movie_article__thumb {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  background-color: var(--color-white);
  box-shadow: 0 0 3rem rgba(51, 51, 51, 0.1);
}
@media screen and (max-width: 960px) {
  .p-movie_article__thumb {
    margin-bottom: 0.6rem;
  }
}
.p-movie_article__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--color-black);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie_article__thumb::before {
    transition: opacity 0.6s var(--ease_out);
  }
  .p-movie_article:hover .p-movie_article__thumb::before {
    opacity: 0.3;
  }
}
.p-movie_article__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 8px solid var(--color-gold);
  opacity: 0;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie_article__thumb::after {
    transition: opacity 0.6s var(--ease_out);
  }
  .p-movie_article:hover .p-movie_article__thumb::after {
    opacity: 1;
  }
}
.p-movie_article__thumb-img {
  width: 100%;
  padding-top: 56.25%;
  display: block;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 961px) {
  .--L .p-movie_article__thumb-img {
    padding-top: calc(56.25% + 2.4rem);
  }
}
.p-movie_article__thumb-img::before {
  content: "";
  width: 10rem;
  height: 10rem;
  display: block;
  position: absolute;
  top: calc(50% - 5rem);
  left: calc(50% - 5rem);
  z-index: 2;
  background: url("../img/top/btn_play_bg.png") no-repeat center/contain;
  animation: rotate 60s linear infinite;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie_article__thumb-img::before {
    transition: opacity 0.6s var(--ease_out);
  }
  .p-movie_article:hover .p-movie_article__thumb-img::before {
    opacity: 1;
  }
}
.p-movie_article__thumb-img::after {
  content: "";
  width: 10rem;
  height: 10rem;
  display: block;
  position: absolute;
  top: calc(50% - 5rem);
  left: calc(50% - 5rem);
  z-index: 2;
  background: url("../img/top/btn_play_spark.png") no-repeat center/contain;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie_article__thumb-img::after {
    transition: opacity 0.6s var(--ease_out);
  }
  .p-movie_article:hover .p-movie_article__thumb-img::after {
    opacity: 1;
  }
}
.p-movie_article__thumb-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-movie_article__title {
  display: block;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-gold);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-movie_article__title {
    font-size: 1.1rem;
  }
}

.p-hero__bnr_stand {
  margin-top: 7.5%;
  transform: translateY(10px) scale(1.02);
  opacity: 0;
}

.is-load .p-hero__bnr_stand {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform 3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.61, 1, 0.88, 1);
  transition-delay: 0.2s;
}

@media screen and (max-width: 767px) {
  .p-hero__bnr_stand {
    margin-top: 11.5%;
  }
}
.p-hero__bnr_stand-item {
  margin: 0 auto;
  width: 90%;
  max-width: 600px;
}

.p-hero__bnr_stand-item a {
  display: block;
}

@media (hover: hover) {
  .p-hero__bnr_stand-item a:hover img {
    opacity: 0.8;
    transform: scale(0.98);
  }
}
.p-hero__bnr_stand-item a img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
/*# sourceMappingURL=madomagi.top.css.map */