body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

a {
  text-decoration: none;
}

.errTxt {
  color: #FF0000;
  margin-top: 15px;
  padding: 5px;
  background: #FFDCE0;
}

.text-xxs{
  font-size:0.5rem ;
}

@media screen and (min-width: 992px) {
  .bg-mainvisual {
    background-color: #dc0325;
  }
  .cover_mainvisual {
    background-size: cover;
  }
}

/*--------------------------------ハンバーガーメニュー-------------------------------*/
#g-nav {
  position: fixed;
  z-index: 999;
  background: hsl(0deg 0% 0% / 50%);
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /* transition: all 0.6s; */
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: calc(330px + 45px);
  height: 100vh;
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  right: 0;
  padding: 20px;
}
/* スクロールバー */
#g-nav.panelactive #g-nav-list::-webkit-scrollbar {
  width: 5px;
  height: 30px;
  background-color: #cccccc;
  border-radius: 10px;
}#g-nav.panelactive #g-nav-list::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 10px;
}
#g-nav .main__navi li {
  list-style: none;
  padding: 15px 10px;
  background: url(/assets/mypage/top/icon_menuarrow-35d3f9e1d59f2021c0834c92115028de5ed7991bdc795f71e564300e1d0c8f2e.svg) no-repeat;
  background-position: right;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}/* バナーエリア */ #g-nav .mb-8 li a {
  padding: 10px 0 10px 0;
}
.openbtn {
  position: absolute;
  z-index: 1;
  top: 25px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.menu-text {
  top: 40px;
  position: absolute;
  left: 12px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #000000;
  width: 45%;
}

.closebtn {
  background: #000;
  right: 30%;
  top: 0px !important;
}

.closebtn span {
  background-color: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (max-width: 959px) {
  #g-nav.panelactive #g-nav-list {
    width: 70%;
  }
  .openbtn{
    top: 10px;
    right: 15px;
  }
  .openbtn span{
    background: #fff;
  }
  .closebtn {
    right: 70%;
  }
  .closebtn .menu-text{
    display: none;
  }
  #openbtn.active{
    top: 0;
    right: 70%;
    background: black;
    z-index: 9999;
  }
}#openbtn_pc.active{
  top: 0;
  right: calc(330px + 45px);
  background: black;
  z-index: 9999;
}#openbtn_pc.active span{
  background-color: white;
}

/*------------------------------メインビジュアル---------------------------------*/
.slider {
  position: relative;
  z-index: 1;
}

.slider-item {
  width: 100%;
}

/*矢印の設定*/
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  height: 25px;
  width: 25px;
}

.slick-prev {
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #ccc;
}

.slick-dots .slick-active button {
  background: #333;
}

/*-------------------------------アコーディオン--------------------------------*/
.accordion-area {
  list-style: none;
  margin: 0 auto;
}

.title {
  position: relative;
  cursor: pointer;
  transition: all .5s ease;
}
.title::before,
.title::after {
  position: absolute;
  content: '';
  width: 9px;
  height: 2px;
  background-color: #333;
}
.title::before {
  top: 50%;
  right: 11px;
  transform: rotate(50deg);

}

.title::after {
  top: 50%;
  right: 5px;
  transform: rotate(130deg);

}

.title.close::before {
  transform: rotate(-50deg);
}

.title.close::after {
  transform: rotate(-130deg);
}

.box {
  display: none;
}
/*--------------------------------モーダル-------------------------------*/
.hide-area{
	display: none;
}

.modaal-container{
  width: auto!important;
  background: #DC0027 !important;
  border-radius: 5px !important;
}
.modaal-close:after,
.modaal-close:before{
	background:#ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

#modaal-title{
	font-size:1.2rem;
	text-align: center;
	margin: 0 0 20px 0;
}
.modaal-close{
  position: absolute!important;
  top: 0!important;
  right: 0!important;
}@media screen and (min-width: 992px) {
  .modaal-close{
    top: 15px!important;
    right: 15px!important;
  }
}
@media screen and (max-width: 959px) {
  .modaal-content-container{
    padding: 30px 15px 15px 15px!important;
  }
}
.border-red {
  border-color: #FF0000;
}

.border-mainred {
  border-color: #E6002D;
}
/*-event_status_for_style イベントのステータスのスタイル-*/
/* NOTE: rbファイルにてtailwindcssが動かないため新規でスタイル追加 */
.border-tag_gray{
  border-color: #a8a8a8;
}
.text-red {
  color: #FF0000;
}

.text-main {
  color: #E6002D;
}


.font-Oswald {
  font-family: "Oswald", sans-serif;
}

/*-rank.stage-*/
.bg-rank__WHITE{
  background: #fff;
}
.bg-rank__LOYALTY{
  background: #000000;
  color: white;
}
.bg-rank__REGULAR{
  background: #C90024;
  color: white;
}
.bg-stage__RED{
  background: #E60012;
  color: white;
}
.bg-stage__RUBY{
  background: #DC0027;
  color: white;
}
.bg-stage__U-18{
  background: #707070;
  color: white;
}
.bg-stage__PLATINUM{
  background: #BEC3C9;
  color: white;
}
.bg-stage__SCHOOL{
  background: #FFC400;
}
.bg-stage__SAPPHIRE{
  background: #707070;
  color: white;
}
.bg-stage__REDSLAND{
  background: #FFC400;
}
.bg-stage__DIAMOND{
  background: #D7B300;
  color: white;
}
.bg-stage__BRONZE{
  background: #A76A1B;
  color: white;
}
.bg-stage__SILVER{
  background: #BEC3C9;
  color: white;
}
.bg-stage__GOLD{
  background: #D7B300;
  color: white;
}
.bg-stage__WHITE{
  background: #ffffff;
  color: #707070;
}

/*-rank.stage-*/

/*-event_status_for_style イベントのステータスのスタイル-*/
/* NOTE: rbファイルにてtailwindcssが動かないため新規でスタイル追加 */
.bg-tag_gray{
  background: #a8a8a8;
}

/* バリデーションエラーメッセージでの表示 */
.field_with_errors{
  display: contents;
}
.bg-main:disabled{
  background: #ffc0cb;
  cursor: default;
}
/* 入会記念品選択 在庫切れ */
.input_wrap__disabled{
  border-color: #c4c4c4;
  color: #757575;
}.input_wrap__disabled input{
  border-color: #757575;
}.input_wrap__disabled img{
  filter: grayscale(100%);
  opacity: .5;
}

/* バーコード余白 */
.padding_sitde{
  padding: 0px 15px
}
.card_radius {
  border-radius: .25rem .25rem 0 0
}

.content_wrapper ul {
  list-style: disc;
}
.content_wrapper ol {
  list-style: decimal;
}
.content_wrapper h1 {
  border-bottom: solid 1px lightgray;
  font-size: 1.2em;
  line-height: 1.2;
  font-weight: 600;
}
.content_wrapper a {
  color: rgb(13 110 253);
}

.google_calendar {
  border-width: 0;
  width: 100%;
  height: 400px;
}
.facebook_border {
  border: none;
  overflow: hidden;
}

.modal-open #confirm-use-modal {
  display: flex !important;
}
.modal-open > #confirm-use-modal-backdrop {
  display: block !important;
}

.alert {
  font-size: 15px;
  color: #c96262;
  background-color: #ffe7e7;
  border-color: #ffe7e7;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.w-333 {
  width: 333px;
}
