@charset "UTF-8";

:root {
  /* color */
  --green: #16edab;
  --cream: #fcfbd3;
  --red: #d32d24;
  --purple: #cd13fd;
  --yellow: #f7f04f;

  /* typo */
  /* 13-16px */
  --body: clamp(0.8125rem, 0.5982rem + 0.4464vw, 1rem);

  /* space */
  /* 20-30px */
  --space-s: clamp(1.25rem, 1rem + .98vw, 1.875rem);
  /* 30-45px */
  --space-m: calc(var(--space-s) * 1.3);
  /* 40-60px */
  --space-l: calc(var(--space-s) * 1.8);
}

/* 基本設定 */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'Meiryo', sans-serif;
  font-feature-settings: "palt";
  font-size: var(--body);
  line-break: strict;
  margin: 0 auto;
  padding: 0;
  overflow-wrap: anywhere;
  text-size-adjust: 100%;
  word-break: normal;
  max-width: 425px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  margin-bottom: 0 !important;
}

ul,
p {
  margin-top: var(--space-s);
  margin-bottom: 0;
}

section {
  padding: var(--space-l) var(--space-s);
}

small {
  display: block;
  font-size: calc(var(--body) * .8);
  line-height: 1.5;
}

/* link */
a {
  color: #fff;
  transition: opacity .2s;
}

a:hover {
  color: var(--red);
  opacity: .7;
}

.link {
  display: inline-block;
  margin-top: var(--space-s);
  text-decoration: underline;
}

[class^="btn-"] {
  color: #000;
  display: grid;
  place-content: center;
  font-size: calc(var(--body) * 1.4);
  font-weight: 800;
  margin: 0 auto;
  position: relative;
  max-width: 400px;
}

[class^="btn-"]:hover {
  color: #000;
  text-decoration: none;
}

.btn-entry::after,
.btn-sns::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: rotate(0deg);
  width: 0;
  height: 0;
}

.btn-entry,
.btn-entry-done {
  border-radius: 28px;
  font-size: 1.3rem;
  font-weight: 900;
  height: 52px;
}

.btn-entry {
  background-color: var(--green);
}

.btn-entry::after {
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  right: 10px;
}

.btn-entry-done {
  background-color: #848484;
  display: none;
}

.entry {
  margin: 2rem auto 0;
  padding: 0 var(--space-s);
  width: 100%;
}

.entry__cautionarynote {
  color: #000;
  display: inline-block;
  margin-bottom: var(--space-s);
  text-decoration: underline;
}

.btns {
  margin: var(--space-s) auto 0;
}

.btn-sns {
  background-color: var(--green);
  border-radius: 24px;
  flex: 1;
  font-size: calc(var(--body) * 1.5);
  margin-top: var(--space-s);
  height: 48px;
}

.btn-sns::after {
  animation: arrow 1s ease infinite;
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  right: 16px;
}

@keyframes arrow {
  0% {
    right: 10px;
  }

  100% {
    right: 16px;
  }
}

.btn-sns:hover {
  color: #fff;
}

.btn-sns:first-child {
  margin: 0;
}

.btns--s {
  display: flex;
  justify-content: center;
  margin-top: calc(var(--space-s) * 1.5);
}

.btns-sns {
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 24px;
  display: grid;
  place-content: center;
  overflow: hidden;
  width: 48px;
  height: 48px;
}

.btns-sns img {
  width: 100%;
}

.btns-sns+.btns-sns {
  margin-left: calc(var(--space-s) * 1.5);
}

.btns-sns--x img {
  width: 20px;
}

.btns-sns--instagram img {
  width: 26px;
}

.btns-sns--tiktok img {
  width: 32px;
}

/* detail */
.sec-detail {
  font-size: calc(var(--body) * .8);
}

.sec-detail>div+div {
  margin-top: var(--space-m);
}

.sec-detail h2,
.sec-detail h3,
.sec-detail h4 {
  font-weight: 900;
}

.sec-detail h2,
.sec-detail h3 {
  text-align: center;
}

.sec-detail h2 {
  font-size: calc(var(--body) * 1.9);
}

.sec-detail h3,
.sec-detail h4 {
  margin-top: var(--space-s);
}

.sec-detail h3 {
  font-size: calc(var(--body) * 1.4);
}

.sec-detail h4 {
  font-size: calc(var(--body) * 1.2);
}

.sec-detail ul,
.sec-detail p {
  margin-top: calc(var(--space-s) * .5);
}

.sec-detail ul {
  list-style: disc;
  padding-left: var(--space-s);
}

.sec-detail ul a {
  text-decoration: underline;
}

.sec-detail li+li {
  margin-top: .3rem;
}

.sec-detail li ul {
  list-style: circle;
}

.sec-detail a {
  color: #fff;
}

.sec-detail__time {
  font-size: .75rem;
  font-weight: 900;
}

.sec-detail__current {
  text-align: right;
}

.copy {
  display: block;
  margin-bottom: var(--space-l);
  text-align: center;
}

/* footer */
.footer {
  color: #fff;
  margin-top: 0;
  padding-bottom: var(--space-s);
}

.footer p {
  margin-top: 0;
}

.footer p+p {
  margin-top: .5rem;
}

.footer>.optout,
.footer>.copyright {
  font-size: calc(var(--body) * .8) !important;
  margin-bottom: 0 !important;
}

.footer>.optout>a {
  color: #fff !important;
}

/* GAMPLA */
.campaign__container-floating-footer {
  display: none;
}

.campaign__container {
  max-width: 900px;
}

.alert,
.alert-danger,
.alert-triangle {
  border-radius: 0;
  line-height: 1;
  margin: 0;
}

/* page */
.bg {
  filter: blur(8rem);
  position: fixed;
  inset: 0;
  z-index: -1;
}

.bg iframe {
  height: 100vh;
}

.wrap {
  contain: paint;
  position: relative;
}

.wrap h1 img {
  width: 100%;
  background-color: #eee;
  object-fit: cover;
  height: 240px;
}

.sec-movie {
  margin-top: var(--space-l);
  padding-top: 0;
  overflow: hidden;
}

.sec-movie h2,
.sec-movie h3,
.sec-movie p,
.sec-movie .btns,
.sec-movie .btns--s {
  position: relative;
}

.sec-movie h3,
.sec-movie p {
  font-weight: 900;
}

.sec-movie h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--body) * 1.5);
}

.sec-movie h3 img {
  margin-right: calc(var(--space-s) * .5);
  width: 40px;
  height: 40px;
}

.sec-movie p {
  font-size: calc(var(--body) * 1.25);
  line-height: 1.3;
  margin-top: var(--space-m);
  text-align: center;
}

[class^="movie-"] {}

.movie-h {
  aspect-ratio: 16 / 9;
  margin: 0 calc(var(--space-m) * -1);
}

.movie-v {
  aspect-ratio: 9 / 16;
  margin: 0;
}

.movie-v+.movie-v {
  margin-top: calc(var(--space-s)*1);
}

[class^="movie-"] iframe,
[class^="movie-"] video {
  width: 100%;
  height: 100%;
}

.sec-movie__sns {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .1);
  margin: var(--space-l) auto 0;
  padding: var(--space-s);
  position: relative;
}

.sec-about {
  position: relative;
}

.sec-about::before {
  content: "";
  animation: blur 20s linear infinite;
  background: url(https://prcp.pass.auone.jp/gpl/202503_homeDrama/img/blur.png) no-repeat center;
  background-size: 100%;
  opacity: .3;
  position: absolute;
  top: -185px;
  left: calc((500px - 100%) * -.5);
  width: 500px;
  height: 500px;
  z-index: -1;
}

@keyframes blur {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.sec-about h2 {
  background: linear-gradient(to right, rgba(219, 40, 255, 1) 25%, rgba(29, 242, 130, 1) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-align: center;
}

.sec-about h2 img {
  margin: 0 auto;
  width: 140px;
}

.sec-about h2::after {
  content: "";
  background: linear-gradient(to right, rgba(219, 40, 255, 1) 0%, rgba(29, 242, 130, 1) 100%);
  display: block;
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  bottom: -10px;
  height: 1px;
  width: 100%;
}

.sec-about p {
  font-size: calc(var(--body) * .9);
  line-height: 2;
  margin-top: calc(var(--space-s) * 1.5);
}

.sec-movies .movie {
  margin: 0;
}

.sec-movies .movie+* {
  margin-top: var(--space-s);
}

/* sp */
@media (max-width: 425px) {
  .pc {
    display: none;
  }
}

/* pc */
@media (min-width: 426px) {
  .sp {
    display: none;
  }

  .wrap {
    contain: none;
  }
}