@charset "UTF-8";

/* ============================================================
   SHARED.CSS — じゅじゅ探訪 共通スタイル
   REM SYSTEM: design px ÷ 100 = rem  (100px = 1rem at 393vw)

   ⚠ :root の font-size を viewport スケールに変えているため、
     body で必ず明示的に font-size を指定して継承カスケードを
     遮断すること。さもないと外部オーバーレイ (eventOutOfPeriod 等)
     の <p> や <button> が肥大化する。
   ============================================================ */

:root {
    --design-width-sp: 430;
    --content-width-pc: 430;
    --rem-ratio: calc(var(--design-width-sp) / 100);
    /* PC: 430px 固定幅 (430 / 3.93 ≈ 109.4px = 1rem) */
    font-size: calc(var(--content-width-pc) * 1px / var(--rem-ratio));
}

@media screen and (max-width: 430px) {
    :root {
        font-size: calc(100vw / var(--rem-ratio));
    }
}

/* ============================================================
   タイポグラフィスケール (design px ÷ 100)
   ============================================================ */
:root {
  --fs-sm:   0.12rem; /* ~12px */
  --fs-base: 0.14rem; /* ~14px */
  --fs-md:   0.16rem; /* ~16px */
  --fs-lg:   0.18rem; /* ~18px */
  --fs-xl:   0.21rem; /* ~21px */
  --fs-2xl:  0.26rem; /* ~26px */

  --sp-width: unset;
  --color-mainText: #000;
  --color-bgColor: #193971;
  --color-black: #000;
  --color-white: #fff;
  --color-gray: gray;
  --color-ip01: #9BD7F6;
  --color-ip02: #181D61;
  --color-btn: #FF9C00;
  --color-btn-02: #4BBEC5;
  --color-btn-03: #9761C4;
  --color-btn-04: #83BB01;
  --color-reg: #164DE5;
}

/* iOS Safari のフォントサイズ自動調整機能off */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  /* ⚠ 必須: :root font-size の継承を遮断するため明示的に指定 */
  font-size: var(--fs-md);
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic",
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
    "ＭＳ Ｐゴシック", "Arial", "Verjyujyua", "sans-serif";
  font-weight: normal;
  background-color: var(--color-gray);
  margin: 0;
}

/* ============================================================
   外部オーバーレイ系 (Components クラス由来) の防御スタイル
   :root font-size が 100px-ish になっているため、
   font-size を継承するオーバーレイ要素が巨大化しないよう
   ここで明示的に 16px ベースに戻す。
   ============================================================ */
#eventOutOfPeriodOverlay,
#eventOutOfPeriodOverlay * {
  font-size: 16px;
}
#eventOutOfPeriodOverlay .eventOutOfPeriodOverlay-overlayButton { font-size: 15px; }
#eventOutOfPeriodOverlay .eventOutOfPeriodOverlay-passwordInput  { font-size: 16px; }
#eventOutOfPeriodOverlay .eventOutOfPeriodOverlay-errorMsg       { font-size: 14px; }
#eventOutOfPeriodOverlay .eventOutOfPeriodOverlay-close-button   { font-size: 20px; }
#eventOutOfPeriodOverlay .eventOutOfPeriodOverlay-adminButton    { font-size: 12px; }

/* SMS モーダル等の他オーバーレイ */
#smsModal,
#smsModal *,
.smsModal,
.smsModal * {
  font-size: 14px;
}

main {
  margin-top: 0.66rem;
  color: var(--color-mainText);
  background-color: var(--color-white);
}

#jyujyu *,
#jyujyu *::before,
#jyujyu *::after {
  box-sizing: border-box;
}

#jyujyu table {
  border-collapse: collapse;
  border-spacing: 0;
}

#jyujyu ul {
  list-style: none;
}

.border-line {
  display: flex;
  border: none;
  width: 100%;
  margin: 0 auto;
  border-bottom: 0.02rem solid #FF9C00;
}

.border-line-light-blue {
  display: flex;
  border: none;
  width: 100%;
  margin: 0 auto;
  border-bottom: 0.02rem solid #7CD1D6;
}

.border-indigo {
  display: flex;
  border: none;
  width: 93%;
  margin: 0.11rem auto 0.05rem;
  border-bottom: 0.01rem solid #133167;
}

.border-white {
  border: none;
  width: 88.9%;
  margin: 0 auto;
  border: 0.01rem solid #fff;
  opacity: 0.5;
}

.underline {
  color: blue;
  text-decoration: underline solid blue;
  -webkit-text-decoration: underline solid blue;
}

.underline-white {
  color: #fff;
  text-decoration: underline solid #fff;
  -webkit-text-decoration: underline solid #fff;
}

.underline-black {
  color: #000;
  text-decoration: underline solid #000;
  -webkit-text-decoration: underline solid #000;
}

.underline-orange {
  color: #e2900e;
  text-decoration: underline solid #e2900e;
  -webkit-text-decoration: underline solid #e2900e;
}

/* 背景パターン
----------------------------------------------- */
.bg-pattern01 {
  background-image: url(../img/bk-image01.webp);
  background-size: 26% auto;
  background-repeat: repeat;
  background-position: 0 -0.09rem;
}

.bg-pattern03 {
  background-image: url(../img/bk-image03.webp);
  background-size: 4.8% auto;
  background-repeat: repeat;
  background-position: 0 0.05rem;
}

/* ボタン 共通
----------------------------*/
.btn {
  display: inline-block;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  color: var(--color-white);
  width: 3.60rem;
  max-width: 100%;
  border-radius: 0;

  text-align: center;
  justify-content: center;
  text-decoration: none;

  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0 auto;
}

.btn__wrapper {
  display: flex;
  justify-content: center;
}

.btn__text {
  display: flex;
  flex: 40;
  align-items: center;
  font-size: 0.20rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  justify-content: center;
}

.btn__left-icon {
  display: flex;
  flex: 19;
  justify-content: center;
}

.btn__right-icon {
  display: flex;
  flex: 12;
  justify-content: center;
}

.btn--shadow {
  box-shadow: 0.04rem 0.04rem 0 0 #000000;
}

/* キャンペーンサイト 一覧はこちら ボタン
----------------------------*/
.btn__campaign-site {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 91.61%;
  height: 0.80rem;
  padding: 0.04rem;
  border-radius: 0;
  background-color: #fff;
  border: 0.02rem solid var(--color-reg);
  color: var(--color-reg);
}

.btn__campaign-site > .btn__text {
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 0.20rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ノーマル ボタン
----------------------------*/
.btn__normal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.80rem;
  background-color: #B2B2B2;
  box-shadow: 0 0.04rem 0.04rem 0 #00000040;
}

.btn__normal .btn__text {
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 0.20rem;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  opacity: 0.5;
}

/* 活性 */
.btn__normal--on {
  background-color: var(--color-btn);
  box-shadow: 0.04rem 0.04rem 0 0 #13316780;
  opacity: 1;
}

.btn__normal--on .btn__text {
  opacity: 1;
}

.btn__normal--long {
  height: 0.80rem;
}

/* 活性 (青) */
.btn__normal--blue.btn__normal--on {
  background-color: var(--color-btn-02);
  opacity: 1;
}

/* 1icon ボタン
----------------------------*/
.btn__1icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.80rem;
  background-color: #B2B2B2;
  position: relative;
  /* border-radius: 0.10rem; */
}

.btn__1icon::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 44%;
  width: 100%;
  height: 0.22rem;
  background-image: url(../svg/box.svg);
  transform: translateX(50%);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.btn__1icon .btn__text {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-style: Bold;
  font-size: 0.18rem;
  line-height: 1.66;
  letter-spacing: 0.05em;
  text-align: center;
  margin-left: 2.5em;
  opacity: 0.5;
}

.btn__1icon--box .btn__text {
  line-height: 1.3;
}

.btn__1icon--box::before {
  background-image: url(../svg/box.svg);
  height: 0.22rem;
  right: 42%;
  opacity: 0.5;
}

/* 活性 */
.btn__1icon--on {
  background-color: var(--color-btn);
}

.btn__1icon--on::before {
  opacity: 1;
}

.btn__1icon--on .btn__text {
  color: #fff;
  opacity: 1;
}

/* 2icon ボタン
----------------------------*/
.btn__2icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.80rem;
  background-color: #B2B2B2;
  border-radius: 0;
  position: relative;
  box-shadow: 0 0.04rem 0.04rem 0 #00000040;
}

.btn__2icon::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 42%;
  width: 100%;
  height: 0.29rem;
  background-image: url(../svg/speaker.svg);
  transform: translateX(50%);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.btn__2icon::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 35.2%;
  width: 100%;
  height: 0.26rem;
  background-image: url(../svg/arrow-rightSmall.svg);
  transform: translateX(50%);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.btn__2icon .btn__text {
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 0.20rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  opacity: 0.5;
}

/* 活性 */
.btn__2icon--on {
  background-color: var(--color-btn);
  box-shadow: 0.04rem 0.04rem 0 0 #13316780;
}

.btn__2icon--on::before,
.btn__2icon--on::after {
  opacity: 1;
}

.btn__2icon--on .btn__text {
  color: #fff;
  opacity: 1;
}

/* 緑 */
.btn__2icon--green .btn__text {
  font-weight: 700;
}

.btn__2icon--green.btn__2icon--on {
  background-color: var(--color-btn-02);
  box-shadow: 0.04rem 0.04rem 0 0 #13316780;
}

/* ムービーボタン */
.btn__2icon--movie::before {
  right: 43%;
  background-image: url(../svg/movie.svg);
  height: 0.25rem;
}

/* Boxボタン */
.btn__2icon--box::before {
  right: 42%;
  height: 0.22rem;
  background-image: url(../svg/box.svg);
}

/* バルーン */
.btn__2icon--balloon {
  background-color: var(--color-btn-02);
}

.btn__2icon--balloon .btn__text {
  font-weight: 700;
  line-height: 1.2;
}

.btn__2icon--balloon.btn__2icon::before {
  background-image: url(../svg/balloon.svg);
}

.btn__2icon--balloon.btn__2icon--on .btn__2icon::before {
  opacity: 1;
}

/* スタンプスポットを地図で確認 ボタン */
.btn-spot {
  display: flex;
  align-items: center;
  width: 100%;
  height: 0.55rem;
  border-radius: 0.10rem;
  background-color: #C5C5C5;
  position: relative;
}

.btn-spot::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 38.5%;
  width: 100%;
  height: 0.22rem;
  background-image: url(../svg/map.svg);
  transform: translateX(50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-spot > .btn__text {
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 0.16rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: center;
  padding-left: 1.8em;
  color: #fff;
}

/* リセットボタン有効化 */
.btn-spot--on {
  background-color: #fff;
  border: 0.02rem solid var(--color-btn-02);
  color: var(--color-btn-02);
}

.btn-spot--on::before {
  background-image: url(../svg/map.svg);
}

.btn-spot--on > .btn__text {
  color: #000;
}

/* スタンプラリー リセットボタン */
.btn-reset {
  display: flex;
  align-items: center;
  width: 100%;
  height: 0.57rem;
  border-radius: 0;
  background-color: #B2B2B2;
  box-shadow: 0.04rem 0.04rem 0 0 #BABABA80;
  position: relative;
}

.btn-reset::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 40%;
  width: 100%;
  height: 0.20rem;
  background-image: url(../svg/circle.svg);
  transform: translateX(50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-reset > .btn__text {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 0.18rem;
  line-height: 1.666;
  letter-spacing: 0.05em;
  text-align: center;
  padding-left: 1.8em;
  opacity: 0.5;
}

.btn-reset--on {
  background-color: #133167;
  box-shadow: 0.04rem 0.04rem 0 0 #13316780;
  opacity: 1;
}

.btn-reset--on .btn__text {
  opacity: 1;
}

/* トップページに戻る ボタン (汎用)
   quiz/stamprally/map など複数ページで使う共通スタイル
----------------------------*/
.btn-link-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 91.61%;
  height: 0.55rem;
  border-radius: 0.10rem;
  background-color: #C5C5C5;
  border: 0.02rem solid #000;
  position: relative;
}

.btn-link-top > .btn__text {
  width: 100%;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 0.20rem;
  line-height: 0.30rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #000;
}

.btn-link-top--on {
  background-color: #fff;
}

.btn-link-top--on > .btn__text {
  color: #000;
}

/* コンテンツページリンク ボタン
----------------------------*/
.link .btn {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.link--img {
  display: block;
  width: 99%;
  background-color: var(--color-bgColor);
}

.link--img02 {
  display: block;
  width: 99%;
  background-color: var(--color-bgColor02);
}

/* デジタルスタンプラリー コンテンツはこちら ボタン
----------------------------*/
.btn__link-content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 0.80rem;
  background-color: #7CD1D6;
  border-radius: 0;
  background-image: url(../img/btn-bk-image01.webp);
  background-size: 5% 100%;
  background-repeat: repeat;
  color: #000;
  position: relative;
}

.btn__link-content > .btn__text {
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 0.19rem;
  line-height: 1.42;
  letter-spacing: 0.05em;
  text-align: center;
}

.btn__link-content--orange {
  background-color: #FF9C00;
  color: #fff;
}

/* main class="page-content"
----------------------------------------------- */
.page-content {
  width: var(--sp-width);
  max-width: 4.30rem;
  padding-top: 0.60rem;
  min-height: calc(100vh - 1.50rem);
  margin: auto;
  display: block;
  overflow: hidden;
  background-color: var(--color-bgColor);
  background-image: 100%;
}

/* 注意事項 共通
-------------------------------*/
.warning {
  width: 100%;
  margin: 0 auto;
}

.warning-list {
  margin: 0;
  padding: 0;
}

.warning-list__item {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 0.12rem;
  line-height: 1.66;
  letter-spacing: 0.05em;
  padding-left: 1.2em;
  padding-right: 0;
  text-align: justify;
  color: #fff;
}

.warning-list__item::before {
  content: "※";
  position: absolute;
  left: 0.2em;
}

.warning-list__item > span {
  color: #FF0004;
}

.warning-list__item:has(> span)::before {
  color: #FF0004;
}

.warning-list__item:first-child {
  padding-top: 0;
}

.warning-list__item:last-child {
  padding-bottom: 0;
}

/* 認証セクション
----------------------------------------------- */
.registration--off {
  display: none;
}

.registration {
  padding-bottom: 0.10rem;
}

.registration__inner {
  margin: 0 auto;
}

.registration__list {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.btn-registration {
  color: #fff;
  border-radius: 0;
  background: var(--color-reg);
  width: 91.61%;
}

.btn-login {
  color: #fff;
  border-radius: 0;
  background: var(--color-reg);
  width: 91.61%;
}

/* アカウント新規登録 */
.btn-registration__icon-left {
  flex: 2.7;
  margin: auto;
  padding-right: 0.10rem;
}

.btn-registration__text {
  flex: 8;
  margin: 0.20rem auto;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 0.20rem;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.btn-registration__icon-right {
  flex: 1;
}

.btn__registration-icon-size {
  height: auto;
}

/* ログイン */
.btn-login__icon-left {
  flex: 7;
  margin: auto;
  padding-right: 0.10rem;
}

.btn-login__text {
  flex: 20;
  margin: 0.20rem auto;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 0.20rem;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.btn-login__icon-right {
  flex: 3;
}

.btn__login-icon-size {
  width: 0.18rem;
  height: auto;
}

/* コンテンツ ご注意事項
----------------------------------------------- */
.warning-content {
  padding: 0.05rem 0 0.31rem;
  margin: 0 auto;
  transition: 0.5s;
}

.toggleWarning {
  cursor: pointer;
  position: relative;
}

.toggleWarning__title {
  font-family: "Noto Sans JP";
  color: var(--color-black);
  text-indent: -3em;
  font-size: 0.16rem;
  font-weight: bold;
  text-align: center;
  padding: 0.09rem 0 0 0;
  margin: 0;
}

/* 画面制御 */
.display-none {
  display: none;
}

.underline--ip {
  color: #000;
  text-decoration: underline solid #000;
  -webkit-text-decoration: underline solid #000;
}

.wrapper-374 {
  width: 94.92%;
  margin: 0 auto;
}

.inner-360 {
  width: 91.61%;
  margin: 0 auto;
}

.inner-350 {
  width: 93.83%;
  margin: 0 auto;
}

.inner-350-330 {
  width: 94.3%;
  margin: 0 auto;
}

.inner-330 {
  width: 88.47%;
  margin: 0 auto;
}

.wrapper-360 {
  width: 93.83%;
  margin: 0 auto;
}
