/*------------------------------
  共通設定
-------------------------------- */
:root {
  --sp-width: 430px;
/*  --sp-width: 393px; */

  
  --color-btnRegOn: #E585B9;
  --color-btnlogin: #7D81DE;

  --color-btnOn: #FFE200;
  --color-btnText: #b000;
  --color-btnOff: #C5C5C5;
 
  --color-tokai: #ED6D00;
  --color-black: #000;
  --color-white: #fff;
  --color-gray: gray;
}

/* --------------------------------
  Layout
-------------------------------- */

/*iOS Safari のフォントサイズ自動調整機能off*/
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


body {
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
    "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-weight: normal;
  color: var(--color-black);
  background-color: var(--color-gray);
  margin:0;
}
main {
  margin-top: 66px;
  background-color: var(--color-white);
}

#yp *,
#yp *::before,
#yp *::after {
  box-sizing: border-box;
}

#yp ul {
  list-style: none;
  padding-left: 0;
}
#yp table {
    border-collapse:collapse;
    border-spacing:0;
}

.event__border {
    border: none; /* デフォルトの枠線を消す */
    border-top: 2px solid var(--color-white); /* 線を太く */
    width: 25%;
    margin: 20px auto 15px;
}
.underline {
  color: blue;
  text-decoration: underline solid blue;
  /*iOS Safari でアンダーバー表示が適用されない挙動の対応*/
  -webkit-text-decoration: underline solid blue;
}

.border {
    border: none; /* デフォルトの枠線を消す */
    width: 94%;
    margin: 8px auto;
    border-top: 3px solid #E54C93
}
.border-b {
    border: none; /* デフォルトの枠線を消す */
    width: 94%;
    margin: 8px auto;
    border-top: 3px solid #686DDE;
}


/*弱虫ペダル ボタン 共通
----------------------------*/
.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: 360px;
  max-width: 100%;
  border-radius: 10px;

  text-align: center;
  justify-content: center;
  text-decoration: none;
  
  border: none;  /* クリックした際に枠線をnone消す */
  outline: none;  /* 影を消す */
  box-shadow: none;
  margin: 0;       /* ブラウザ標準の余白を消す */
  padding: 0;      /* 必要に応じて初期化 */  
  background-color: var(--color-btnOff);
  margin: 0 auto;
}
.btn__wrapper {
  display: flex;  
  justify-content: center; /* 中央寄せ */
}
.btn__text {
  display: flex;
  flex: 40; /* 比率b */
  align-items: center;  
  font-size: 1.25rem; /*20px*/
  font-weight: 700;
  padding:26px 0;
  letter-spacing: 0.04em;  
  justify-content: center; /* 中央寄せ */
  z-index: 1;
}


/*浜名湖サイクリング
ARラリーはこちら
-------------------------------*/
.btn-ar-rally {
  width: 100%;
  height: 100px;
  opacity: 1;
  border-radius: 10px;
  border: 3px solid #000000;
  background: url(/view/event/yowapeda002/img/btn-bk.png);
  background-color: #7D81DE;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 4px 0px 0px #00000040;
  position: relative;
}
.btn-ar-rally::before {
  position: absolute;
  content: "";
  top: -10%;
  left: 5%;
  transform: translateY(calc(50% + 20px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 40px;
  background-image: url(/view/event/yowapeda002/svg/bicycle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.btn-ar-rally::after {
  position: absolute;
  content: "";
  top: 15%;
  right: -89%;
  transform: translateY(calc(50% + 10.7px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 21.4px;
  background-image: url(/view/event/yowapeda002/svg/right_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 10;
}
.btn-ar-rally__wrapper {
}
.btn-ar-rally--img {
  width: auto;
  height: 49px;
  padding: 0px 0 0px 4%;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

/*乗車証明と
ARフレームを獲得する
-------------------------------*/
.btn-ar {
  width: 93.41%;
  height: 80px;
  opacity: 1;
  border-radius: 40px;
  border: 3px solid #000000;
  background-color: #FFE200;
  position: relative;
}
.btn-ar::before {
  position: absolute;
  content: "";
  top: -2%;
  left: 15%;
  transform: translateY(calc(100% + 9px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 20px;
  background-image: url(/view/event/yowapeda002/svg/camera.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.btn-ar__wrapper {
}
.btn-ar__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.125rem; /*18px*/
  line-height: 25px;
  text-align: center;
  color: var(--color-black);
  padding-left: 2rem;
}

/*乗車証明で特典を引き換える ボタン*/
.btn-riding {
  width: 93.41%;
  height: 80px;
  opacity: 1;
  border-radius: 40px;
  border: 3px solid #A1A1A1;
  background-color: var(--color-btnOff);
  position: relative;
}
.btn-riding::before {
  position: absolute;
  content: "";
  top: 0%;
  left: 10%;
  transform: translateY(calc(100% + 4px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 22px;
  background-image: url(/view/event/yowapeda002/svg/box_gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.5;
}
.btn-riding__wrapper {
}
.btn-riding__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.125rem; /*18px*/
  line-height: 30px;
  text-align: center;
  letter-spacing: 5%;

  color: var(--color-white);
  padding-left: 2rem;
  opacity: 0.5;
  z-index: 0;
}
/*乗車証明で特典を引き換える ボタン ON*/
.btn-riding--on {
  border: 3px solid black;
  background-color: var(--color-btnOn);
}
.btn-riding--on .btn-riding__text {
  color: var(--color-black);
  opacity: 1;
}
.btn-riding--on::before {
  background-image: url(/view/event/yowapeda002/svg/box_black.svg);
  opacity: 1;
}


/*新幹線車内コンテンツはこちら
ボタン
-------------------------------*/
.btn-shinkansen {
  width: 100%;
  height: 100px;
  opacity: 1;
  border-radius: 10px;
  border: 3px solid #000000;
  background: url(/view/event/yowapeda002/img/btn-bk.png);
  background-color: #E585B9;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 4px 0px 0px #00000040;
  position: relative;
}
.btn-shinkansen::before {
  position: absolute;
  content: "";
  top: -6%;
  left: 4%;
  transform: translateY(calc(50% + 18px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 36px;
  background-image: url(/view/event/yowapeda002/svg/shinkansen_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.btn-shinkansen::after {
  position: absolute;
  content: "";
  top: 15%;
  right: -89%;
  transform: translateY(calc(50% + 10.7px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 21.4px;
  background-image: url(/view/event/yowapeda002/svg/right_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 10;
}
.btn-shinkansen__wrapper {
}
.btn-shinkansen--img {
  width: auto;
  height: 49px;
  padding: 0px 0 0px 11%;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}


/* main class="page-content"
----------------------------------------------- */
.page-content {
  width: var(--sp-width);
  max-width: 430px;
  padding-top: 60px;
  min-height: calc(100vh - 150px);
  margin: auto;
  display: block;
  overflow: hidden;
  background-color: var(--color-white);
  background-image: 100%;
}

.page-content__wrapper {
  width: 91.89%;
  margin-left: auto;
  margin-right: auto;
}

/*------------------------------
  共通設定 ここまで
-------------------------------- */



/* section class="main-visual"
----------------------------------------------- */
.main-Visual {
  margin-bottom: 12px;
}
.visual__inner {
}
.visual__image {
  display: block;
  width: var(--sp-width);
  height: auto;
}
.visual__text-period {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.125rem; /*18px*/
  letter-spacing: -0.001em;
  text-align: center;
  padding: 13.5px 0px;
}
.visual__text {
  color: var(--color-black);
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-align: center;  
  padding: 20px 0 1px;
}


/*認証セクション
----------------------------------------------- */
.registration {
  margin-top: 5px;
}
.registration__inner {
  width: 91.6%;
  margin: 0 auto;
}

 /* 認証処理ボタン 
----------------------------------------------- */
.registration__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.btn-registration {
  background-color: var(--color-btnRegOn); /* 基本色 */
}
.btn-login {
  background-color: var(--color-btnlogin); /* 基本色 */
}


/*アカウント新規登録*/
.btn-registration__icon-left {
  flex: 3;  
  margin: auto;
  padding-right: 10px;
}
.btn-registration__text {
  flex:8;
  text-align: center;
  font-size: 1.25rem; /*20px*/
  font-weight: 700;
  margin: 16.0px auto;
}
.btn-registration__icon-right {
    flex:1;
}
.btn-login__icon-size {
  height: auto;
}

/*ログイン*/
.btn-login__icon-left {
  flex: 7;  
  margin: auto;
  padding-right: 10px;

}
.btn-login__text {
  flex:20;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 16.0px auto;
  padding-right: 1rem;
}
.btn-login__icon-right {
    flex:3;
}

.btn-login__icon-size {
  width: 18px;
  height: auto;
}



/* コンテンツ ご注意事項 
----------------------------------------------- */
/*ご注意事項ボタン*/
.warning-content {
  padding: 5px 0 21px 0;
  margin: 0 auto 0 auto;
  transition: 0.5s;
}
.toggleWarning {
  cursor: pointer;
  position: relative;
}
.toggleWarning__title {
  color: var(--color-black);  
  text-indent: -3em;
  font-size: 1.0rem;
  font-weight: bold;
  margin: 5px;
  text-align: center;
  padding: 8px 0 0px 0;
}

/*icon デザイン*/
.open__icon__block {
  position: absolute;
  right: 35%;
  top: 68%;
  transform: translatey(-50%);
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  z-index: 2;
}
.open__icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.open__icon::before, .open__icon::after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.3s;
  background: #fff;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  transform: translate(-50%, -50%);
}
.open__icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.open__icon.open::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.open__icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/*icon ログオン時非表示*/
.registration-off {
  display: none;
}

/*  東海道新幹線車内限定
    コンテンツ
----------------------------------------------*/
.content-top {
  background: var(--color-white);
  text-align: center;
  margin-top: 25px;
}
.content-top--border {
  border: 3px solid #E585B9;
}
.content-top__wrapper {
  width: 94.147%;
  margin-left:auto;
  margin-right: auto;
  text-align: center;
}
.content-top__title {
  font-family: Noto Sans JP;
  font-weight: 900;
  font-size: 1.6875rem; /*27px*/
  line-height: 34px;
  text-align: center;
  color: #E54C93;
  padding-top: 17px;
  padding-bottom: 5px;
}
.content-top__img {
  width: 98%;
  display: block;       /* ブロック要素にする */
  margin-left: auto;    /* 右寄せ */
  margin-right: 0;
}

/*ARコンテンツ*/
.ar-event {
  padding-top: 32px;
}
.ar-event__title {
font-family: Noto Sans JP;
font-weight: 700;
font-size: 1.375rem; /*22px*/
line-height: 30px;
letter-spacing: 5%;
text-align: center;
}

/*ARフレーム イメージ*/
.ar-frame {
  margin-top: 31px;
  display: flex;
  justify-content: center;      /* 全体を横方向中央に寄せる */
  gap: 15px;
}
.ar-frame__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;          /* 横方向中央揃え */
  text-align: center;
  justify-content: flex-end;
}
.ar-frame__text-period {
  width: 100%;
  padding: 5px 0;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 5%;
  text-align: center;
}
.ar-frame__text {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 5%;
  text-align: center;

  display: flex;           /* flexコンテナにする */
  align-items: center;     /* 縦方向の真ん中に */
  justify-content: center; /* 横方向も中央にしたいなら追加 */
  height: 100%;           /* 親に高さが必要（例） */
  padding: 5px 0;
}
.ar-frame__img {
  width: 159px;
}
.ar-frame-note {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  padding: 12.5px 0;
}

/*乗車ノベルティ*/
.novelty {
  padding: 26px 0 5px;
}
.novelty__title {
  font-size: 1.25rem; /*20px*/
  font-weight: 900;
  color:#E54C93;
}
.novelty__text-wrapper {

}
.novelty__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.125rem; /*18px*/
  line-height: 25px;
  text-align: center;
  padding: 8px 0 0;
}

/*スケジュール*/
.schedule {
  border: 2px solid var(--color-black);
  text-align: center;

  margin: 9px 0 14px;
  background-color: var(--color-white);
  overflow: hidden; /* 子要素の角を丸枠に合わせて切り取る */
}
.schedule__title {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 0.9375rem; /*15px*/
  line-height: 0.875;
  text-align: center;
  letter-spacing: 5%;


  background-color: var(--color-black);
  color: var(--color-white);
  padding: 11.5px 0;
}
.schedule__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.0625; /*17px*/
  line-height: 20px;
  letter-spacing: 0.1em;

  text-align: center;
  padding: 12px 0 0;
}
.schedule__text-name {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.75rem; /*12px*/
  line-height: 20px;
  text-align: center;
  padding: 7px 0 14px;
  letter-spacing: 5%;
}



/*場所*/
.place {
  border: 2px solid var(--color-black);
  text-align: center;

  margin: 10px 0 30px;
  background-color: var(--color-white);
  overflow: hidden; /* 子要素の角を丸枠に合わせて切り取る */
}
.place__title {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.25rem; /*20px*/
  line-height: 30px;
  text-align: center;
  padding: 8px 0 0;
}
.place__title > span {
letter-spacing: 6%;
}
.place__text {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.75rem;/*12px*/
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  padding: 3px 0 7px;
}

/*乗車証明とARフレームを獲得する 注意事項
-------------------------------*/
.event-warning {
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}
.event-warning > ul {
  list-style: none;
}
/*リスト*/
.event-warning-list {
  margin: 0;
  padding-left: 5px;    
}
.event-warning-list__item {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.625rem; /*10px*/  
  line-height: 2.1em;
  letter-spacing: 5%;

  padding-left: 17px; /*リスト左スペース調整*/
  padding-right: 0; /*リスト右スペース調整*/
  color: var(--color-black);
  text-align: left;
  position: relative;
}
.event-warning-list__item::before {
  content: "※";
  position: absolute;
  left: 0.0em; /*ドット位置調整*/
}
/*リスト上部のスペース調整*/
.event-warning-list__item:first-child {
  padding-top: 0.8rem;
}
/*リスト下部のスペース調整*/
.event-warning-list__item:last-child {
  padding-bottom: 0;
}

/*乗車証明で特典を引き換える 注意事項*/
.event-warning-riding {
  margin: 6px auto 47px;
}

.event-warning-riding .event-warning-list__item {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.75rem; /*12px*/
  line-height: 20px;
  letter-spacing: 5%;
}



/*ここからスタンプラリー
 ar_rally.html
----------------------------------------------------*/
/*スタンプラリーテキストのマージン調整*/
.visual__text--bottom {
 padding-bottom: 21px;
}

/*Aコース Bコースボタン*/
.course-selection {
  margin-top: 48px;
}
.course-selection__wrapper {
  display: flex;
  flex-direction:row;
  width: 94.147%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.btn-selection {
  width: 48%;
  height: 50px;
  opacity: 1;
  border-radius: 40px;
  border: 3px solid #000000;
  position: relative;
}
.btn-selection::after {
  position: absolute;
  content: "";
  top: 0%;
  left: 80%;
  transform: translateY(calc(100% + 0px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 15px;
  background-image: url(/view/event/yowapeda002/svg/below.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}


.btn-selection--a {
  background-color: #AEE958;
}
.btn-selection--b {
  background-color: #FF9700;
}
.btn-selection__wrapper {
  display: flex;
  align-items: center;   /* 縦中央 */
  justify-content: center; /* 横中央 */
  height: 100%;          /* 親要素（ボタン）の高さに合わせる */
  padding-bottom: 2px;
}
.btn-ar::before {
  position: absolute;
  content: "";
  top: -2%;
  left: 15%;
  transform: translateY(calc(100% + 9px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 20px;
  background-image: url(/view/event/yowapeda002/svg/camera.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.btn-selection__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.375rem; /*22px*/
  line-height: 30px;
  letter-spacing: 5%;
  text-align: center;
  color: var(--color-black);
  justify-content: center;
}

/*  浜名湖サイクリングARラリー
----------------------------------------------*/
.content-ar {
  background: var(--color-white);
  text-align: center;
  margin-top: 25px;
}
.content-ar--border {
  border: 3px solid #686DDE;
}
.content-ar__wrapper {
  width: 94.3%;
  margin-left:auto;
  margin-right: auto;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}
.ar-rally__title {
  font-family: Noto Sans JP;
  font-weight: 900;
  font-size: 27px;
  line-height: 34px;
  letter-spacing: 2%;
  text-align: center;

  color: #686DDE;
  padding-top: 17px;
  padding-bottom: 5px;
}
.ar-rally__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 0.9375rem; /*15px*/
  line-height: 20px;
  letter-spacing: 5%;
  text-align: center;
}

/*スタンプカード
----------------------*/
.stamp-card {
  position: relative;
  margin-top: 54px;
}
.stamp-card--b {
  margin-top: 26px;
}
.btn-stamp-card {
  width: 48%;
  opacity: 1;
  border-radius: 40px;
  border: 3px solid #000000;
  position: relative;

  height: 36.72px;
  position: absolute;
  top: -20px;   /* ulより上にかぶせたい高さを調整 */
  left: 50%;    /* 中央に配置 */
  transform: translateX(-50%); /* ボタンの幅分を中央揃え */
}
.btn-stamp-card::after {

}
.btn-stamp-card__text {
  font-family: Noto Sans JP;
  font-weight: 900;
  font-size: 18.36px;
  line-height: 27.54px;
  letter-spacing: 5%;
  text-align: center;
  color: #000;
}
.stamp-card-list {
  width: 94.3%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  border: 1px solid #7D81DE;
  border-radius: 10px;
  padding: 28px 0 7px;
  margin: 0 auto;
}
.stamp-card-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 9%;
  padding-bottom: 5%;
}
.stamp-card-item:nth-child(even) {
  padding-left: 0;
}

.stamp-card-item__img {
  width: 55px;
  height: auto;
}
.stamp-card-item__text {
  font-family: Noto Sans JP;
  font-weight: 900;
  font-size: 0.6875rem; /*11px*/
  line-height: 14px;
  letter-spacing: 0.1em;
  text-align: left;
  padding-left: 0.6em;
  width: 100%;
}

/*----------------------------------------------------
  スタンプスポットを地図で確認 ボタン
-----------------------------------------------------*/
.btn-margin {
  margin-top: 20px;
}
.btn-map {
  border-radius: 10px;
  display: flex;              /* ボタン内の文字を中央揃え */
  justify-content: center;
  align-items: center;
  width: 94.25%;
  height: 55px;
  border: 2px solid #FFFFFF;
  background-color: #E585B9;
  position: relative;
}
.btn-map::before {
  position: absolute;
  content: "";
  top: -15%;
  left: 10%;
  transform: translateY(calc(50% + 11px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 22px;
  background-image: url(/view/event/yowapeda002/svg/map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.btn-map__text {
  font-family: Noto Sans JP;
  font-weight: 900;
  font-size: 1rem; /*16px*/
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-white);
  padding-left: 2em;
}

/*  コンプリート特典*/
.complete {
  margin-bottom: 21px;
}
.complete .novelty {
  padding-top: 45px;
  padding-bottom: 16px;
}
.complete .novelty__title {
  font-weight: 900;
  font-size: 1.4375rem; /*23px*/
  line-height: 30px;
  letter-spacing: 0.06em;
  color: #686DDE;
}
.complete .novelty__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.125rem; /*18px*/
  line-height: 25px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 8px 0 7px;
}
.novelty__course {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.75rem; /*12px*/
  line-height: 20px;
  letter-spacing: 5%;
  text-align: center;
}

/*Aコースコンプリート特典を引き換える ボタン*/
.btn-exchange {
  width: 93.41%;
  height: 80px;
  opacity: 1;
  border-radius: 40px;
  border: 3px solid #A1A1A1;
  background-color: var(--color-btnOff);
  position: relative;
}
.btn-exchange::before {
  position: absolute;
  content: "";
  top: -5%;
  left: 14%;
  transform: translateY(calc(100% + 10px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 22px;
  background-image: url(/view/event/yowapeda002/svg/box_gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.5;
}
.btn-exchange__wrapper {
}
.btn-exchange__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: center;

  color: var(--color-white);
  padding-left: 2.5em;
  opacity: 0.5;
  z-index: 0;
}
/*Aコースコンプリート特典を引き換える ボタン ON*/
.btn-exchangeA--on {
  border: 3px solid black;
  background-color: #AEE958;
}
.btn-exchangeA--on .btn-exchange__text {
  color: var(--color-black);
  opacity: 1;
}
.btn-exchangeA--on::before {
  background-image: url(/view/event/yowapeda002/svg/box_black.svg);
  opacity: 1;
}
/*Bコースコンプリート特典を引き換える ボタン ON*/
.btn-exchangeB--on {
  border: 3px solid black;
  background-color: #FF9700;
}
.btn-exchangeB--on .btn-exchange__text {
  color: var(--color-black);
  opacity: 1;
}
.btn-exchangeB--on::before {
  background-image: url(/view/event/yowapeda002/svg/box_black.svg);
  opacity: 1;
}

.btn-list {
  margin-top: 15px;
}


/*コンプリート特典*/
.event-warning-exchange {
  width: 89%;
  padding-bottom: 9px;
}
.event-warning-exchange .event-warning-list__item {
  font-family: Noto Sans JP;
  font-weight: 350;
  font-size: 0.6875rem; /*11px*/
  line-height: 20px;
  letter-spacing: 5%;
}
.event-warning-exchange .event-warning-list__item > span {
  font-weight: 700;
}


/*サイクリングコースA
-------------------------*/
.cycling-course {
  padding-top: 10px;
  margin-bottom: 18px;
}

.course-title {
  display: block;
  position: relative; /* ボタンを絶対配置するための基準 */
}
.btn-cycling-course--upper {
  position: absolute;
  top: 0%;       /* hrの高さの中央 */
  left: 50%;      /* 横中央 */
  transform: translate(-50%, -50%); /* 自身のサイズを考慮して真ん中に */
  z-index: 1;     /* hr の上に表示 */
}
.border-black {
  border: none; /* デフォルトの枠線を消す */
  width: 94%;
  margin: 8px auto;
  border-top: 3px solid #000;
}
.btn-cycling-course {
  display: inline-block;
  width: 51.1%;
  height: 36.72px;
  opacity: 1;
  border-radius: 40px;
  border: 3px solid #000000;
}
.btn-cycling-course--a {
  background-color: #AEE958;
}
.btn-cycling-course__wrapper {
  display: flex;
  align-items: center;   /* 縦中央 */
  justify-content: center; /* 横中央 */
  height: 100%;          /* 親要素（ボタン）の高さに合わせる */
  padding-bottom: 3px;
}
.btn-cycling-course__text {
  font-family: Noto Sans JP;
  font-weight: 900;
  font-size: 1.1475rem; /*18.36px*/
  line-height: 27.54px;
  letter-spacing: 5%;
  text-align: center;
}

/*ARフレーム 場所*/
.ar-place-item {
  padding: 10px 0 0;
}
.ar-place-item:first-child {
  padding: 0;
}

.ar-place__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.25rem; /*20px*/
  line-height: 30px;
  letter-spacing: 5%;
  text-align: center;
  color: #69A019;
  padding: 12px 0 12px;
}

/*ARフレーム 場所 ボタン*/
.btn-ar-place {
  display: flex;
  align-items: center;
  width: 93.41%;
  height: 80px;
  opacity: 1;
  border-radius: 10px;
  background-color: var(--color-black);
  position: relative;
}
.btn-ar-place .btn-ar-place__text--on {
  display: none;
}
.btn-ar-place::before {
  position: absolute;
  content: "";
  top: 0;
  left: 6%;
  transform: translateY(calc(100% + 10px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 20px;
  background-image: url(/view/event/yowapeda002/svg/camera_w.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.btn-ar-place__wrapper {
  flex: 7.4;
}
.btn-ar-place__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.125rem; /*18px*/
  line-height: 26px;
  letter-spacing: 0.04em;
  color: #F8F8FF;
  padding-left: 1.8em;
  text-align: left;
}
.btn-ar-place__icon {
  flex: 2.6;
}
.btn-ar-place__icon--img {
  display: block;
  width: 62px;
  height: auto;
  margin: 0 auto;
}


/*スタンプラリー リセットボタンデザイン*/
.stamp-reset {
  margin-top: 50px;
}
.btn-reset {
  display: flex;
  align-items: center;
  width: 87.0%;
  height: 49px;
  border-radius: 10px;
  background-color: #C5C5C5;
  position: relative;
}
.btn-reset::before {
  position: absolute;
  content: "";
  top: 0;
  left: 5%;
  transform: translateY(calc(100% + -6px)); /* 垂直中央にアイコン配置 */  
  width: 22px;
  height: 22px;
  background-image: url(/view/event/yowapeda002/svg/reset.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.5;
}
.btn-reset__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.25rem; /*20px*/
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  padding-left: 1.5em;
  opacity: 0.5;
}

.stamp-reset__text {
  color: #FF0000;
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.625rem; /*10px*/
  line-height: 20px;
  letter-spacing: 5%;
  text-align: center;
  margin: 0;
  padding-top: 10px;
}

/*サイクリングコース B
-----------------------*/
.cycling-course--b {
  margin-bottom: 39px;
}
.btn-cycling-course--b {
  background-color: #FF9700;
}
.ar-place__text--b {
  color: #F97C00;
}
.cycling-course--b .ar-place-item:first-child {
  padding-top: 10px;
}

/*位置情報取得済
ボタン
--------------------------------*/
.btn-ar-place--on {
  background-color: #AEE958;
  color: #000;
  border: 3px solid #000000
}
.btn-ar-place--on::before {
  position: absolute;
  content: "";
  top: 0;
  left: 4.6%;
  transform: translateY(calc(100% + 7px)); /* 垂直中央にアイコン配置 */  
  width: 100%;
  height: 20px;
  background-image: url(/view/event/yowapeda002/svg/camera.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.btn-ar-place--on .btn-ar-place__text {
  display: none;
}
.btn-ar-place--on .btn-ar-place__wrapper{
  justify-content: right;
}
.btn-ar-place--on .btn-ar-place__text--on {
  display: block;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
}
.ar-place-list--b .btn-ar-place--on {
  background-color: #FF9700;
}

/*リセットボタン有効化*/
.btn-reset--on {
  background-color: #000;
}
.btn-reset--on::before {
  opacity: 1;
}
.btn-reset--on .btn-reset__text {
  opacity: 1;
}