@charset "UTF-8";

:root {
  /* color */
  --bg-color: #aa6563;
  --border-color: #be241e;
  --btn-color: #be241e;
  --text-color: #fff;

  /* 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;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  /* background: url(https://prcp.pass.auone.jp/gpl/202503_globeTrotter/img/bg.png) repeat; */
  /* background-size: 500px; */
  background-color: #999;
  color: var(--text-color);
  box-shadow: 0 0 8px rgba(0, 0, 0, .2);
  /* font-family: 'Noto Sans JP',
    'Hiragino Sans',
    'ヒラギノ角ゴシック',
    'Hiragino Kaku Gothic Pro',
    'ヒラギノ角ゴ Pro W3',
    'メイリオ',
    'Meiryo',
    sans-serif; */
  font-family: 'Zen Kaku Gothic New',
    '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-x: hidden; */
  overflow-wrap: anywhere;
  word-break: normal;
  max-width: 425px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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: var(--text-color);
  transition: opacity .2s ease;
  text-decoration: none;
}

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

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

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

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

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

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

.btn-entry {
  /* background-color: var(--btn-color); */
  background-color: rgba(0, 0, 0, 1);
  /* border: 1px solid #fff; */
  /* box-shadow: 0 0 24px rgba(110, 115, 158, 1); */
  position: relative;
}

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

.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 {
  /* border: 1px solid var(--bg-color); */
  background-color: var(--btn-color);
  border-radius: 8px;
  flex: 1;
  font-size: calc(var(--body) * 1.5);
  margin-top: var(--space-s);
  height: 48px;
}

.btn-sns::after {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  right: 16px;
}

.btn-sns:hover {
  color: var(--text-color);
}

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

.btn-sns--youtube {
  background-color: #ea333d;
}

.btn-sns--tiktok {
  background-color: #ea445a;
}

.btn-sns--instagram {
  background-color: #8f22f2;
}

.btn-sns--x {
  background-color: #000;
  /* border: 1px solid #fff; */
}

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

.btns-sns {
  /* background-color: #000; */
  background-color: #a9262c;
  border: 1px solid #fff;
  border-radius: 20px;
  display: grid;
  place-content: center;
  overflow: hidden;
  position: relative;
  width: 72px;
  height: 40px;
}

.btns-sns img {
  width: auto;
  height: 16px;
}

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

.btns-sns--youtube img {
  width: 18px;
}

/* .btns-sns--x img {
  width: 14px;
}

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

.btns-sns--tiktok img {
  width: 14px;
}  */

/* detail */
.sec-detail,
.copy,
.footer,
.sec-detail ul a,
.footer>.optout>a {
  background-color: #000;
  color: #fff;
}

.sec-detail {
  /* color: #000; */
  font-size: calc(var(--body) * .8);
  position: relative;
}

.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 {
  /* color: #000; */
  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: .8rem;
  font-weight: 900;
}

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

.copy {
  /* background-color: #eee; */
  /* color: #000; */
  display: block;
  padding-bottom: var(--space-l);
  text-align: center;
}

/* footer */
.footer {
  /* background-color: #eee; */
  /* color: var(--text-color); */
  margin-top: 0;
  padding-bottom: var(--space-s);
  position: relative;
}

.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>.copyright {
  color: #000;
} */

/* .footer>.optout>a {
  color: var(--text-color) !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 {
  background: url(https://prcp.pass.auone.jp/gpl/202506_replayProjectGlay/img/noise.png) no-repeat center;
  background-size: cover;
  box-shadow: 0 0 16px rgba(0, 0, 0, .2);
  opacity: .5;
  position: fixed;
  margin: auto;
  inset: 0;
  width: 100%;
  max-width: 425px;
  height: 100vh;
} */

.wrap {
  /* background-color: #6e739e; */
  contain: paint;
  position: relative;
}

.wrap h1 {
  /* background-color: #eee;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 240px; */
  position: relative;
  z-index: 1;

  /* &::after {
    content: "画像が入ります";
  } */
}

.wrap h1 img {
  width: 100%;
  height: auto;

  /* display: none; */
}

.sec-entry,
.sec-thx {
  /* background: #aa6563 url(https://prcp.pass.auone.jp/gpl/202506_replayProjectGlay/img/bg-entry2.png) no-repeat center top;
  background-size: auto 105%; */
  background-color: #a9262c;
  /* border: 2px solid #fff; */
  padding: var(--space-l) var(--space-s);
  position: relative;
  text-align: center;
}

.sec-entry::before,
.sec-thx::before {
  content: "";
  background: url(https://prcp.pass.auone.jp/gpl/202506_replayProjectGlay/img/noise.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 425px;
  height: 934px;
}

.sec-entry__entry {
  position: relative;
}

.sec-entry__entry h2 {
  background-color: #fff;
  color: #a9262c;
  display: inline-block;
  font-size: calc(var(--body) * 1.5);
  font-weight: 900;
  padding: .2rem .5rem;
  position: relative;
}

.sec-entry__entry h2::after {
  content: "";
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  transform: rotate(0deg);
  width: 0;
  height: 0;
  margin: auto;
  position: absolute;
  inset-inline: 0;
  bottom: -7px;
}

.sec-entry__entry h3,
.sec-thx h2 {
  /* color: #B00408; */
  font-size: calc(var(--body) * 2);
  font-weight: 900;
  line-height: 1.4;
  /* margin-top: calc(var(--space-s)*.5); */
  /* position: relative; */
}

.sec-entry__entry h3 {
  margin-top: calc(var(--space-s)*.5);
}

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

/* .sec-entry__entry h3::before, */
/* .sec-thx h2::before {
  border: 1px solid #fff;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: -280px;
  left: calc((500px - 100%)/2*-1);
  width: 500px;
  height: 500px;
} */

/* .sec-thx h2::before {
  top: -280px;
} */

.sec-entry__entry figure,
.sec-thx figure {
  display: block;
  margin-top: var(--space-s);
  text-align: center;
}

.sec-thx figure {
  margin-bottom: var(--space-s);
}

.sec-entry__entry figure img,
.sec-thx figure img {
  margin: auto;
  width: 40px;
}

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

.sec-entry__entry p {
  /* color: #000; */
  /* display: inline-block; */
  font-size: calc(var(--body) * 1.1);
  /* font-weight: 900; */
  line-height: 1.6;
  margin-top: calc(var(--body)*.5);
  position: relative;
  /* text-shadow: 0 0 8px rgba(72, 114, 141, 1); */
}

.sec-entry__entry p b {
  /* color: #B00408; */
  font-size: calc(var(--body) * 2);
  font-weight: 900;
  /* text-shadow: none; */
}

.sec-entry__entry p strong {
  /* background-color: #fff; */
  /* color: var(--bg-color); */
  display: inline-block;
  font-size: calc(var(--body) * 1.1);
  margin-top: calc(var(--body) * 1.5);
  padding: 0 calc(var(--body) * .5);
}

.sec-entry__entry p strong+br+strong {
  margin-top: calc(var(--body) * .1);
}

.sec-entry__entry p strong span {
  background-color: #fff;
  color: var(--bg-color);
  display: inline-block;
  line-height: 1;
  margin: 0 1px;
  padding: 1px;
}

/* .sec-entry__entry p strong span:nth-child(2n) {
  background-color: #fff;
  color: var(--bg-color);
} */

/* .sec-entry__entry p::before {
  content: "";
  background-color: var(--yellow);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
} */

/* .sec-entry__entry strong {
  font-size: calc(var(--body) * 2.3);
} */

/* .sec-entry__entry img {
  margin: auto;
  width: 90%;
} */

.sec-entry__time {
  background-color: #fff;
  border-radius: 13px;
  color: var(--bg-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  padding: 0 1rem;
  height: 26px;
}

.sec-entry__img {
  margin: var(--space-m) var(--space-s) 0;
  position: relative;
  background-color: #848484;
  height: 240px;
}

.sec-entry__img span {
  animation: star .3s ease alternate infinite;
  background-size: 100%;
  display: block;
  position: absolute;
  top: -.5rem;
  left: -.8rem;
  width: 64px;
  height: 77px;
}

@keyframes star {

  0%,
  49% {
    background: url(https://prcp.pass.auone.jp/gpl/202503_globeTrotter/img/star1.svg) no-repeat center;
  }

  50%,
  100% {
    background: url(https://prcp.pass.auone.jp/gpl/202503_globeTrotter/img/star2.svg) no-repeat center;
  }
}

.sec-movie {
  /* background: rgba(196, 36, 30, .9) url(https://prcp.pass.auone.jp/gpl/202506_replayProjectGlay/img/noise.png) no-repeat center; */
  background-color: #000;
  /* background-blend-mode: lighten; */
  /* background-size: 100%; */
  /* margin-top: var(--space-l); */
  /* padding-top: 0; */
  /* overflow: hidden; */
  position: relative;
  padding: var(--space-s) var(--space-s) 0;
}

.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-"] {
  /* margin: 0 calc(var(--space-m)*-1); */
}

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

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

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

.sec-movie__sns {
  background-color: var(--text-color);
  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-thx .movie-h {
  position: relative;
  margin-top: var(--space-l);
}

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

.sec-thx .btn-sns {
  background-color: #000;
  border-radius: 24px;
}

.sec-thx .btns--s {
  margin-top: calc(var(--space-s)*1);
  position: relative;
}

.sec-thx .btns-sns {
  background-color: #a9262c;
}

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

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