/*------------------------------
  共通設定
-------------------------------- */
:root {
  --sp-width: unset;
  --color-mainText: #000;
  --color-bgColor: #e7fcf9;
  --color-black: #000;
  --color-white: #fff;
  --color-gray: gray;
  --color-ip01: #9BD7F6;
  --color-ip02: #181D61;
  --color-btn: #00adba;
  --color-btn-02: #B6922F;
  --color-btn-03: #9761C4;
  --color-btn-04: #743694;
  --color-reg: #B6922F;
  --color-reg2:#00ADBA;
  --color-reg3:#743694;
}

/* --------------------------------
  Layout
-------------------------------- */

/*iOS Safari のフォントサイズ自動調整機能off*/
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family:"Noto Sans JP", "Kaisei Decol", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic",
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
    "ＭＳ Ｐゴシック", "Arial", "Verfrierena", "sans-serif";
  font-weight: normal;
  background-color: var(--color-gray);
  margin:0;
}

main {
  margin-top: 0.66rem;
  color: var(--color-mainText);
  background-color: var(--color-white);
}

#frieren *,
#frieren *::before,
#frieren *::after {
  box-sizing: border-box;
}

#frieren table {
  border-collapse:collapse;
  border-spacing:0;
}

#frieren 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: 100%;
  margin: 0.08rem auto 0.01rem;
  border-bottom: 0.01rem solid #00ADBA;
}

.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;
  /*iOS Safari でアンダーバー表示が適用されない挙動の対応*/
  -webkit-text-decoration: underline solid blue;
}

.underline-white {
  color: #fff;
  text-decoration: underline solid #fff;
  /*iOS Safari でアンダーバー表示が適用されない挙動の対応*/
  -webkit-text-decoration: underline solid #fff;
}
.underline-black {
  color: #000;
  text-decoration: underline solid #000;
  /*iOS Safari でアンダーバー表示が適用されない挙動の対応*/
  -webkit-text-decoration: underline solid #000;
}
.underline-orange {
  color: #e2900e;
  text-decoration: underline solid #e2900e;
  /*iOS Safari でアンダーバー表示が適用されない挙動の対応*/
  -webkit-text-decoration: underline solid #e2900e;
}

/*背景パターン
----------------------------------------------- */
.bg-pattern01 {
  background-image: url(../img/bk-image01.webp);
  background-size: 100% auto;
  background-repeat: repeat;
  background-position: 0;
}

.bg-pattern02 {
  background-image: url(../img/bk-image02.webp);
  background-size: 100% auto;
  background-repeat: repeat;
  background-position: 0;
}

/*ボタン 共通
----------------------------*/
.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.6rem;
  max-width: 100%;
  border-radius: 0;

  text-align: center;
  justify-content: center;
  text-decoration: none;
  
  border: none;  /* クリックした際に枠線をnone消す */
  outline: none;  /* 影を消す */
  box-shadow: none;
  padding: 0;      /* 必要に応じて初期化 */  
  margin: 0 auto;
}
.btn__wrapper {
  display: flex;  
  justify-content: center; /* 中央寄せ */
}
.btn__text {
  display: flex;
  flex: 40; /* 比率b */
  align-items: center;  
  font-size: 0.2rem; /*20px*/
  font-weight: 900;
  letter-spacing: 0.04em;  
  justify-content: center; /* 中央寄せ */
}
.btn__left-icon {
  display: flex;
  flex: 19; /* 比率a */
  justify-content: center;
}
.btn__right-icon {
  display: flex;
  flex: 12; /* 比率c */
  justify-content: center;
}
.btn--shadow {
  box-shadow: 0.04rem 0.04rem 0 0 #000000;
  /* 右下にぼかしのある黒い影 */
  /*box-shadow: 5px 5px 10px rgba(0, 0, 0, 1.0);*/
}

/*  キャンペーンサイト
    一覧はこちら！ ボタン
----------------------------*/
.btn__campaign-site {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 91.61%;
  height: 0.8rem;
  padding: 0.04rem;
  border-radius: 0.1rem;
  background-color: #fff;
  border: 0.02rem solid var(--color-reg2);
  color: var(--color-reg2);
}

.btn__campaign-site > .btn__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 0.18rem; /*20px*/
  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.8rem;
  background-color: #B2B2B2;
  border-radius: 0.05rem;
  box-shadow: 0 0.04rem 0 0 #919191;
  background-image: url(../img/decoration-btn01.webp);
  background-size: 96%;
  background-repeat: no-repeat;
  background-position: center;
}

.btn__normal .btn__text {
  font-family: Noto Serif JP;
  font-weight: 700;
  font-size: 0.2rem; /*20px*/
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  opacity: 0.5;
}

/*活性*/
.btn__normal--on {
  background-color: var(--color-btn);
  box-shadow: 0 0.04rem 0 0 #177B83;
  opacity: 1;
}

.btn__normal--on .btn__text {
  opacity: 1;
}

.btn__normal--long {
  height: 0.8rem;
}

/*活性*/
.btn__normal--purple.btn__normal--on {
  background-color: var(--color-btn-04);
  box-shadow: 0 0.04rem 0 0 #43115D;
  opacity: 1;
}

/*  ノーマル 楕円
----------------------------*/
.btn__ellipse {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.65rem;
  background-color: #B2B2B2;
  border-radius: 0.05rem;
  box-shadow: 0 0.04rem 0 0 #919191;
  border-radius: 1rem;
}

.btn__ellipse .btn__text {
  font-family: Noto Serif JP;
  font-weight: 700;
  font-size: 0.18rem; /*18px*/
  line-height: 1.666;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  opacity: 0.5;
}

/*活性*/
.btn__ellipse--on {
  background-color: var(--color-btn-04);
  box-shadow: 0 0.04rem 0 0 #43115D;
  opacity: 1;
}

.btn__ellipse--on .btn__text {
  opacity: 1;
}

/*  1icon ボタン
----------------------------*/
.btn__1icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.8rem;
  background-color: #B2B2B2;
  position: relative;
  border-radius: 0.1rem;
}

.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; /*18px*/
  line-height: 1.66;
  letter-spacing: 0.05em;
  text-align: center;
  margin-left: 0.4rem;
  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);
  /*opacity: 1.0;*/
}

.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.8rem;
  background-color: #B2B2B2;
  border-radius: 0.05rem;
  position: relative;
  box-shadow: 0 0.04rem 0 0 #919191;
  background-image: url(../img/decoration-btn01.webp);
  background-size: 96%;
  background-repeat: no-repeat;
  background-position: center;
}

.btn__2icon::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 43.0%;
  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 Serif JP;
  font-weight: 700;
  font-size: 0.2rem; /*20px*/
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  opacity: 0.5;
}

/*活性*/
.btn__2icon--on {
  background-color: var(--color-btn);
  box-shadow: 0 0.04rem 0 0 #177B83;
}

.btn__2icon--on::before,
.btn__2icon--on::after {
  opacity: 1;
} 

.btn__2icon--on .btn__text {
  color: #fff;
  opacity: 1;
}

/*Boxボタン*/
.btn__2icon--box::before {
  right: 42.0%;
  height: 0.22rem;
  background-image: url(../svg/box.svg);
}

/*バルーン*/
.btn__2icon--balloon {
  background-color: var(--color-btn-04);
  box-shadow: 0 0.04rem 0 0 #43115D;
}

.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::after {
  background-image: url(../svg/arrow-rightSmall-p.svg);
}

.btn__2icon--balloon.btn__2icon--on .btn__2icon::before {
  opacity: 1;
}

/*応募*/
.btn__2icon--gacya.btn__2icon::before {
  background-image: url(../svg/gacya.svg);
}

.btn__2icon--gacya::after {
  background-image: url(../svg/arrow-rightSmall-p.svg);
}

.btn__2icon--gacya.btn__2icon--on {
  background-color: var(--color-btn-04);
  box-shadow: 0 0.04rem 0 0 #43115D;
  opacity: 1;
}

/*スタンプスポットを地図で確認 ボタンデザイン*/
.btn-spot {
  display: flex;
  align-items: center;
  width: 100%;
  height: 0.55rem;
  border-radius: 0.1rem;
  background-color: #C5C5C5;
  position: relative;
}

.btn-spot::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 41%;
  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 Serif JP;
  font-weight: 900;
  font-size: 0.16rem; /*16px*/
  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);
}
.btn-spot--on::before {
  background-image: url(../svg/map.svg);
}

.btn-spot--on > .btn__text {
  color: var(--color-btn-02);
}

/*スタンプラリー リセットボタンデザイン*/
.btn-reset {
  display: flex;
  align-items: center;
  width: 98%;
  height: 0.55rem;
  border-radius: 0.1rem;
  background-color: #B2B2B2;
  position: relative;
}

.btn-reset::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 43%;
  width: 100%;
  height: 0.2rem;
  background-image: url(../svg/circle.svg);
  transform: translateX(50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-reset > .btn__text {
  font-family: Noto Serif JP;
  font-weight: 700;
  font-size: 0.2rem; /*20px*/
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  padding-left: 1.8em;
}

/*リセットボタン有効化*/
.btn-reset--on {
  background-color: var(--color-btn-04);
  opacity: 1;
}

.btn-reset--on .btn__text {
  opacity: 1;
}

/*  
コンテンツページリンク ボタン
----------------------------*/
.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;
  justify-content: center;
  width: 91.61%;
  height: 0.8rem;
  padding: 0.04rem;
  border-radius: 0.1rem;
  background-color: #fff;
  border: 0.02rem solid var(--color-reg2);
  color: var(--color-reg2);
}

.btn__link-content > .btn__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 0.2rem; /*20px*/
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
}

.btn__link-content--purple {
  border: 0.02rem solid var(--color-reg3);
  color: var(--color-reg3);
}

/* main class="page-content"
----------------------------------------------- */
.page-content {
  width: var(--sp-width);
  max-width: 4.3rem;
  padding-top: 0.55rem;
  min-height: calc(100vh - 1.5rem);
  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; /*12px*/
  line-height: 1.66;
  letter-spacing: 0.05em;

  padding-left: 1.2em; /*リスト左スペース調整*/
  padding-right: 0; /*リスト右スペース調整*/
  text-align: justify;
}
.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: 0em;
}
/*リスト下部のスペース調整*/
.warning-list__item:last-child {
  padding-bottom: 0;
}

/*認証セクション
----------------------------------------------- */
.registration--off {
  display: none;
}
.registration {
  padding-bottom: 0.1rem;
}
.registration__inner {
  margin: 0 auto;
}

 /* 認証処理ボタン 
----------------------------------------------- */
.registration__list {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}
.btn-registration {
  color: #fff;
  border-radius: 0.1rem;
  background: var(--color-reg);
  width: 91.61%;
}  
.btn-login {
  color: #fff;
  border-radius: 0.1rem;
  background: var(--color-reg);
  width: 91.61%;
}
/*アカウント新規登録*/
.btn-registration__icon-left {
  flex: 2.7;  
  margin: auto;
  padding-right: 0.1rem;
}
.btn-registration__text {
  flex: 8;
  margin: 0.2rem auto;

  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 0.2rem; /*20px*/
  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.1rem;

}
.btn-login__text {
  flex:20;
  margin: 0.2rem auto;

  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 0.2rem; /*20px*/
  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.20rem;
  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;
  /*iOS Safari でアンダーバー表示が適用されない挙動の対応*/
  -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-330 {
  width: 88.47%;
  margin: 0 auto;
}
*/
/*
.inner-350 {
  width: 93.83%;
  margin: 0 auto;
}
*/

/*フリーレン*/
.wrapper-360 {
  width: 91.61%;
  margin: 0 auto;
}

.wrapper-364 {
  width: 92.63%;
  margin: 0 auto;
}

.inner-340 {
  width: 93.4%;
  margin: 0 auto;
}

.inner-330 {
  width: 91.16%;
  margin: 0 auto;
}
