@charset "UTF-8";

:root {
  /* color */
  --color-bg: #ffebf6;
  --color-btn: #bc0f09;
  --color-link: #0c62be;
  --color-main: #fa5796;
  --color-sub: #fdca3f;
  --color-text: #fa5796;

  /* typo */
  --body: 13px;
  --type-s: calc(var(--body)*.9);
  --type-h4: calc(var(--body)*1.2);
  --type-h3: calc(var(--body)*1.4);
  --type-h2: calc(var(--body)*1.9);

  /* space */
  --space-s: 16px;
  --gap: calc(var(--space-s) * .25);
  --space-ss: calc(var(--space-s) * .5);
  --space-m: calc(var(--space-s) * 2);
  --space-l: calc(var(--space-s) * 3);

  /* tri (Clip Path definitions) */
  --up: polygon(50% 0, 100% 100%, 0 100%);
  --right: polygon(0 0, 100% 50%, 0 100%);
  --down: polygon(0 0, 100% 0, 50% 100%);
  --bottom: polygon(0 50%, 100% 0, 100% 100%);
}

/* 基本設定 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  color: var(--color-text);
  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;
  word-break: normal;
  max-width: 425px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

p,
ul {
  margin-bottom: 0;
}

ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: var(--gap);
  list-style: disc;
  padding-left: var(--space-s);
}

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

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

time {
  display: block;
  font-size: calc(var(--body)*.9);
  font-weight: 900;
}

a {
  color: var(--color-link);
  transition: opacity .2s ease;
  text-decoration: underline;
}

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

/* common */
[class^="btn-"] {
  color: #fff;
  cursor: pointer;
  display: grid;
  place-content: center;
  font-size: calc(var(--body) * 1.7);
  font-weight: 900;
  margin-inline: auto;
  position: relative;
  text-decoration: none;
  transition: all .2s ease-in-out;
  max-width: 320px;
}

[class^="btn-"]:hover {
  color: #fff;
  opacity: .5 !important;
  text-decoration: none;
}

.btn-entry,
.btn-entry-done,
.btn-main {
  border-radius: 28px;
  height: 52px;
}

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

.btn-entry::after {
  background-color: #fff;
  clip-path: var(--right);
  content: "";
  margin: auto;
  position: absolute;
  inset-block: 0;
  top: 0;
  right: 12px;
  bottom: 0;
  width: 8px;
  height: 14px;
}

.btn-entry.is-visible {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.btn-sub {
  background-color: var(--color-text);
  border-radius: 8px;
  height: 40px;
}

.btn-sub::before,
.btn-sub::after {
  background-color: #fff;
  border-radius: 1px;
  clip-path: none;
  right: 16px;
  left: inherit;
  width: 12px;
  height: 2px;
}

.btn-sub::after {
  transform: rotate(90deg);
}

.btns-sns {
  display: flex;
  justify-content: center;
  gap: var(--space-s);
  margin-top: var(--space-s);
}

.btn-sns {
  background-color: var(--color-btn);
  border-radius: calc(32px * .5);
  margin: 0;
  width: 60px;
  height: 32px;
}

.btn-sns img {
  height: 20px;
}

.btn-sns--youtube img {
  height: 15px;
}

.btn-sns--x img {
  height: 18px;
}

.sec__inner h2 {
  font-size: var(--type-h2);
  text-align: center;
}

.sec__inner h3 {
  font-size: var(--type-h3);
  margin-top: var(--space-s);
  text-align: center;
}

.sec__inner h4 {
  font-size: var(--type-h4);
}

.sec__inner p,
.sec__inner ul {
  margin-top: var(--space-s);
}

/* detail */
.sec-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: calc(var(--body) * .8);
  gap: var(--type-s);
}

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

.sec-detail h2 {
  color: var(--color-strong);
}

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

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

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

.sec-detail time {
  margin-top: var(--space-ss);
}

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

/* footer */
.footer {
  color: var(--color-footer);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--space-m);
  padding-bottom: var(--space-s);
}

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

.footer>.optout>a {
  color: var(--color-link) !important;
}

.copy {
  text-align: center;
}

/* 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;
}

.fab {
  display: none;
}

/* page */
.wrap {
  contain: paint;
  position: relative;
  margin: 0 auto;
}

.sec-entry {
  background-color: var(--color-bg);
  text-align: center;
}

.sec-entry .sec__inner {
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: 20px;
  box-shadow: 0 0 8px rgba(254, 145, 204, .8);
  padding: var(--space-m) var(--space-m) var(--space-m);
}

.sec-entry small {
  margin-top: var(--space-s);
}

.entry-head p {
  background-color: var(--color-main);
  color: #fff;
  display: inline-block;
  font-weight: bold;
  margin: 0;
  padding: 2px 8px;
  position: relative;
}

.entry-head p::after {
  background-color: var(--color-main);
  clip-path: var(--down);
  content: "";
  margin: auto;
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  width: 14px;
  height: 8px;
}

.entry-head h2 {
  margin-top: var(--space-ss);
  position: relative;
}

.entry-head h2::before {
  content: "";
  background: url(../img/heart.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: -24px;
  right: 0;
  width: 64px;
  height: 80px;
}

.entry-head h2 img {
  position: relative;
}

.entry-head h3 {
  white-space: nowrap;
}

.entry-head h3 b {
  color: #fff;
  display: inline-block;
  font-size: calc(var(--body)*2.5);
  font-weight: 900;
  margin-right: 4px;
  paint-order: stroke;
  -webkit-text-stroke: 5px var(--color-sub);
  text-stroke: 5px var(--color-sub);
}

.entry-head time {
  border: 1px solid var(--color-text);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  display: inline-flex;
  align-items: center;
  margin-top: var(--type-s);
  padding: 0 8px;
  height: 24px;
}

.entry {
  margin: var(--space-m) auto 0;
  padding: 0 var(--space-s);
  position: relative;
  width: 100%;
}

.entry::before,
.entry::after {
  content: "";
  position: absolute;
}

.entry::before {
  animation: obj .6s ease-in-out infinite alternate;
  background: url(../img/obj1.svg) no-repeat;
  background-size: auto 100%;
  top: -24px;
  left: -20px;
  width: 32px;
  height: 56px;
}

.entry::after {
  animation: obj .6s ease-in-out infinite alternate-reverse;
  background: url(../img/obj3.svg) no-repeat;
  background-size: auto 100%;
  bottom: -20px;
  right: -16px;
  width: 24px;
  height: 56px;
}

@keyframes obj {
  0% {
    transform: rotate(-15deg);
  }

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

.sec-movie {
  background-color: var(--color-bg);
}

[class^="movie-"] {
  margin: 0 calc(var(--space-s)*-1);
}

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

.movie-v {
  aspect-ratio: 9 / 17;
}

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

.sec-movie h3 {
  margin-top: var(--space-m);
}


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

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

  .wrap {
    contain: none;
  }
}