@charset "UTF-8";

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

.btn-sns::after {
  border-color: transparent transparent transparent #e7c331;
  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--youtube {
  border-radius: 0;
}

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

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

.btns-sns--tiktok {
  /* background-color: #000; */
}

.btns-sns--tiktok img {
  background-color: #000;
  border-radius: 24px;
  padding: 4px;
  width: 40px;
}

/* 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: #fff;
  contain: paint;
  overflow: hidden;
  position: relative;
}

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

.sec-entry {
  background-color: #f9f7e8;
  /* border: 2px solid #fff; */
  padding: calc(var(--space-s)*1) var(--space-s) var(--space-l);
  position: relative;
  text-align: center;
}

.sec-entry::before {
  content: "";
  background: url(https://prcp.pass.auone.jp/gpl/202507_STUDIOsauce/img/border.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 0;
  right: 10px;
  width: 425px;
  height: 262px;
}

.sec-entry__inner {
  position: relative;
}

.sec-entry__inner h2 {
  font-size: calc(var(--body)*1.8);
  line-height: 1.3;
}

.sec-entry__board {
  background: url(https://prcp.pass.auone.jp/gpl/202507_STUDIOsauce/img/board3.svg) no-repeat center;
  background-size: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: calc(var(--space-s)*1);
  height: 240px;
}

.sec-entry__entry {
  /* margin-top: var(--space-s); */
  position: relative;
}

.sec-entry__entry h3 {
  background-color: #fff;
  /* color: #64b57b; */
  color: #29663a;
  display: inline-block;
  font-size: calc(var(--body) * 1.3);
  font-weight: 900;
  padding: .2rem .5rem;
  position: relative;
}

.sec-entry__entry h3::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 h4 {
  font-size: calc(var(--body) * 1.3);
  font-weight: 900;
  line-height: 1.3;
  margin-top: calc(var(--space-s)*.5);
}

.sec-entry__entry p {
  color: #fff;
  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(231, 195, 49, 1),
    0 0 4px rgba(231, 195, 49, 1),
    0 0 2px rgba(231, 195, 49, 1); */
  text-shadow: 0 0 8px rgba(237, 82, 0, 1),
    0 0 4px rgba(237, 82, 0, 1),
    0 0 2px rgba(237, 82, 0, 1);
}

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

.sec-entry__entry p b {
  /* color: #e7c331; */
  color: #ed5200;
  font-size: calc(var(--body) * 2.6);
  text-shadow: none;
}

/* .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: #000;
  border-radius: 13px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  padding: 0 1rem;
  width: 240px;
  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-color: #e7c331;
  /* margin-top: var(--space-l); */
  padding-top: var(--space-s);
  padding-bottom: 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 h2 {
  color: var(--border-color);
  margin-top: var(--space-m);
  text-align: center;
}

.sec-movie h2+[class^="movie-"] {
  margin-top: calc(var(--space-s) * .5);
}

.sec-movie .btns+h2 {
  margin-top: calc(var(--space-s) * 2);
}

.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.5;
  margin-top: calc(var(--space-s) * .5);
  text-align: center;
}

.sec-movie .sec-movie__lead {
  /* color: #fff; */
  font-size: calc(var(--body) * 1.05);
  font-weight: normal;
}

.sec-movie__lead:nth-of-type(2) {
  text-align: left;
}

/* .logo-side {
  margin-top: var(--space-m);
} */

[class^="movie-"] {}

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

.movie-v {
  aspect-ratio: 9 / 16;
  margin-top: var(--space-s);
}

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

.comingsoon {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--body) * 1.5);
  font-weight: 900;
  margin-top: var(--space-s);
  height: 240px;
}

.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-movie__kotone {
  background-color: #5cb4bb;
  margin: var(--space-m) calc(var(--space-s)*-1) 0;
  padding: var(--space-m) var(--space-s) var(--space-l);
}

.sec-movie__kotone p {
  color: #fff;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-infinity__wrap {
  background-color: #5cb4bb;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  margin-top: 0;
  padding: 0
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 56s infinite linear 0.5s both;
}

.scroll-infinity__item {
  position: relative;
  width: calc(425px * 1.1);
}

.scroll-infinity__item span {
  background-color: #e00013;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  margin: auto;
  /* top: 0;
  right: 0;
  bottom: 0;
  left: 0; */
  inset: 0;
  text-align: center;
  width: 350px;
  height: 22px;
}

.scroll-infinity__item>img {
  width: 100%;
}

.sec-about {
  /* background-color: var(--border-color); */
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ed5200+0,ffffff+20,ffffff+80,ed5200+100 */
  background: linear-gradient(to right, rgba(237, 82, 0, .2) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(237, 82, 0, .2) 100%);
  /* background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(237, 82, 0, .2) 50%, rgba(255, 255, 255, 1) 100%); */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* color: #fff; */
  text-align: center;
}

.sec-about img {
  margin: auto;
  width: 240px;
}

.sec-about p {
  line-height: 2;
}


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

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

  .wrap {
    contain: none;
  }

  .sec-movie .sec-movie__lead {
    font-size: 16px;
  }
}