@charset "UTF-8";

:root {
  /* color */
  --bg-color: #e8edf1;
  --border-color: #48728d;
  --btn-color: #46718e;
  --text-color: #000;

  /* 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: var(--bg-color);
  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-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: 28px;
  font-size: 1.3rem;
  font-weight: 900;
  height: 52px;
}

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

.btn-entry::after {
  border-color: transparent transparent transparent #fff;
  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(--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;
}

.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%;
  height: auto;
}

.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;
  padding-bottom: var(--space-l);
  text-align: center;
}

/* footer */
.footer {
  /* background-color: #fff; */
  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>.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_gake/img/bg.png) no-repeat center bottom;
  background-size: cover;
  box-shadow: 0 0 16px rgba(0, 0, 0, .2);
  opacity: .3;
  position: fixed;
  margin: auto;
  inset: 0;
  width: 100%;
  max-width: 425px;
  height: 100vh;
}

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

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

.sec-intro {
  /* border: 2px solid #fff; */
  padding: var(--space-l) var(--space-s) 0;
  position: relative;
  text-align: center;
}

/* .sec-intro::before {
  content: "";
  background: url(../img/bg.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  margin: auto;
  inset: 0;
  left: calc((500px - 100%)*-.5);
  width: 500px;
  height: 500px;
} */

.sec-intro__entry {
  position: relative;
}

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

.sec-intro__entry h2::after {
  content: "";
  border-color: var(--border-color) 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-intro__entry h3 {
  font-size: calc(var(--body) * 1.3);
  font-weight: 900;
  line-height: 1.3;
  margin-top: calc(var(--space-s)*.5);
}

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

.sec-intro__entry p span {
  position: relative;
}

.sec-intro__entry p b {
  color: var(--border-color);
  font-size: calc(var(--body) * 2.6);
  text-shadow: none;
}

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

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

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

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

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

.sec-intro__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 {
  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;
}

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

.movie iframe,
.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;
}

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

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

  .wrap {
    contain: none;
  }

  .sec-intro::before {
    left: calc((500px - 378px)*-.5);
  }

  .sec-intro p {
    font-size: 14px;
  }

  .sec-intro p.sec-intro__time {
    font-size: 10px;
  }

  .sec-intro__entry h2 {
    font-size: 21px;
  }

  .sec-intro__entry h3 {
    font-size: 18px;
  }

  .sec-intro__entry p {
    font-size: 20px;
  }

  .sec-intro__entry p b {
    font-size: 36px;
  }
}