/* =======画像の表示非表示切り替え======= */
.event_pc { display: none; }
.event_tab { display: block; }
.event_sp { display: none; }
.event_sptab { display: block; }

.pc_img { display: none }
.sp_img { display: inline-block; }

  @media all and (min-width:769px) {
    .event_pc { display: block; }
    .event_tab { display: none; }
    .event_sp { display: none; }
    .event_sptab { display: none; }

    .pc_img { display: inline-block; }
    .sp_img { display: none; }
  }

  @media all and (max-width:680px) {
    .event_tab { display: none;}
    .event_sp { display: block; }
  }


/* =======文字の指定======= */
/*フォントカラー*/

/*フォントサイズ*/
.f_70 {
  font-size: 70%;
}
.f_80 {
  font-size: 80%;
}
.f_120 {
  font-size: 120%;
}

/* =======アコーディオン======= */
.menu_list label {
  display: block;
  cursor: pointer;
}
.menu_list input[type="checkbox"].on-off {
  display: none;
}
.menu_list .on-off {
  margin: 0;
  padding: 0;
}
.menu_list input[type="checkbox"].on-off + ul.ac {
  padding: 0;
  height: 0;
  overflow: hidden;
}
.menu_list input[type="checkbox"].on-off:checked + ul.ac {
  height: auto;
}


/* =======タブ切り替え======= */
.ChangeElem_Panel{
  display: none;
}
.ChangeElem_Btn {
  border: none;
}

/* Gray out */
.gray_out {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.gray_out::before {
  content: "こちらのキャンペーンは\A終了いたしました";
  white-space: pre;
  color: #fff;
  text-align: center;
  font-size: 5vmin;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 2px 2px black;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translatex(-50%);
  background-color: rgba(95,95,95,0.6);
  background-size: 100%;
  background-position: center;
  z-index: 9;
  width: 100%;
  max-width: 1400px;
  height: 100%;
}
@media all and (min-width: 768px) {
  .gray_out::before {
    content: "こちらのキャンペーンは終了いたしました";
    font-size: 1.8em;
  }
}
@media all and (-ms-high-contrast: none) {
  .gray_out::before {
    content: "こちらのキャンペーンは終了いたしました";
    font-size: 40px!important;
  }
}