@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@500;600;900&display=swap');

/* --------------------------------------------------
　デフォルト
-------------------------------------------------- */
/* --------------------------------------------------
　設定
-------------------------------------------------- */
:root {

  --header-bg-color: #222; /* ヘッダー背景色 */
  --header-hover-color: #333; /* ヘッダーhover背景色 */
  --header-text-color: #fff; /* ヘッダー文字色 */
  --header-menu-bg-color: #222; /* ヘッダーメニュー背景色 */
  --header-menu-text-color: #fff; /* ヘッダーメニュー文字色 */
  --header-menu-hover-text-color: #e3ff7c; /* ヘッダーメニュー文字色 */
  --header-menu-border-color: #333; /* ヘッダーメニューボーダー色 */
  --header-menu-hover-color: #333; /* ヘッダーメニューhover背景色 */
  --header-size:40px; /* PCのヘッダー高さ */
  --header-active-bg-color: #ff6600; /* active時の線の色 */

  --footer-bg-color: #222; /* フッター背景色 */
  --footer-hover-color: #333; /*フッターhover背景色 */
  --footer-text-color: #fff; /*フッター文字色 */
  --footer-border-color: #333; /*フッター文字色 */

  --submenu-bg-color: #fff; /* submenuの背景色 */

  --contents-header-border-color:#ccc; /* contentsヘッダーのborder色 */

  --information-title-text-hover-color : #666; /*インフォメーションテキストのhover文字色 */

  --primary-color: #ff6600; /* プライオリティ文字色 */

  --h4-text-color: #ccc; /* h4四角の色 */
  --subtitle-text-color : #ddd; /* subtitleのテキスト色 */



  --main-bg-color: #bdee7f;
  --more-bg-color: #e64d45;
  --more-hover-bg-color: #ffa600;
  --paging--active-bg-color: #e64d45;
  --paging--active-hover-bg-color: #ffa600;
  --link-color: #e64d45;
  --link-hover-color: #ffa600;
  --title-color: #00ab2d;
  --title-border-color: #00ab2d;
  --border-color: #96ed7f;
  --information-day-text-color: #fff;
  --radius-size: 20px;

  --color-mezame: #ff366d;
  --color-nemurin: #ff7900;
  --color-okita: #0e8bff;
  --color-base: #00ab2d;
}

/* --------------------------------------------------
　全体
-------------------------------------------------- */
*{
  font-family: 'M PLUS 1', sans-serif;
  font-weight: normal;
}
strong{
  font-weight: 600;
}
html,body{
  font-size: 16px;
  font-family: 'M PLUS 1', sans-serif;
  width: 100%;
}
html{
  overflow: unset !important;
  overflow-x: unset !important;
  overflow-y: unset !important;
}
body{
  position: relative;
  overflow-x: hidden !important;
  overflow-y: auto !important
}
.v-application{
  width: 100%;
  overflow-x: hidden !important;
}
@media screen and (min-width: 601px){
  .title-layout{
    width: 30% !important;
  }
  .form-layout {
    width: 70% !important;
  }
}
/* PC */
@media screen and (min-width: 640px){
  h2{
    font-size: 35px;
  }
}

dt,dd,p{
  font-weight: normal;
}
dl {
  position: relative;
  padding-left: 1.3rem;
  padding-bottom: 2rem;
}
dl:before {
  content: "";
  display: block;
  position: absolute;
  left: 0.4rem;
  width: 2px;
  background: var(--subtitle-text-color);
  height: 100%;
  top: 0.4rem;
}
dt {
  padding: 0 0 1rem 0;
  font-weight: bold;
}
dt:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--subtitle-text-color);
  top: 0.3rem;
}
dl:nth-last-of-type(1){
  padding-bottom: 0;
}
dd{
  font-size: 0.9rem;
}

/* 背景色 */
.v-application.event__wrap,
#__layout .v-application.event__wrap,
.wrap,
.home__wrap,
.event__wrap{
  overflow: auto !important;
  background-color:transparent;
  background: none;
}
#__layout .layout-wrap > .v-application.event__wrap{
  overflow-x: hidden!important;
}
.home__wrap{
  margin-bottom: 0 !important;
}

.v-application{
  height: 100%;
}


/* リセット */
.row{
  margin-right: 0 !important;
  margin-left: 0 !important;
  width: 100%;
}
.col{
  flex-basis: auto !important;
  flex-grow: initial !important;;
}

/* ページング */
.information__pagenation{
  width: 100%;
}
.v-pagination__item{
}
.v-pagination__item--active{
  background: var(--paging--active-bg-color) !important;
}
.v-pagination__item--active:hover{
  background: var(--paging--active-hover-bg-color) !important;
}



/* プライオリティ系 */
.v-application .primary--text{
  color: var(--primary-color) !important;
  caret-color: var(--primary-color) !important;
}
.page-selector__border{
  border: 4px solid var(--primary-color)  !important;
}

/* PC */
@media screen and (min-width: 640px){
  .sp-only{
    display: none !important;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .pc-only{
    display: none !important;
  }
}

/* --------------------------------------------------
　ヘッダーナビ
-------------------------------------------------- */
.v-tabs-bar{
  height: var(--header-size) !important;
}

/* 帯背景色 */
.header__wrap,
.v-slide-group__wrapper{
  background-color: var(--header-bg-color) !important;
}
.header__wrap{
  position: relative;
}
/* メニュー */
.v-tab,.header-tab__menu{
  transition: background-color .3s ease;
}
.v-tab, .menu__name{
  padding: 0 16px !important;
}
.menu__name{
  display: flex;
  height: 100%;
}
.menu__name__area{
  padding-right: 6px !important;
}
.v-tabs-slider-wrapper{
  display: none !important;
}
.v-tab--active{
  position: relative;
  border-bottom: 2px solid var(--header-active-bg-color) !important;
}
.v-tab--active:after{
  content:"";
  position: absolute;
  width: 7px;
  height: 7px;
  bottom: 0;
  left: 0;
  border: 7px solid transparent;
  border-top: 7px solid #ff6600;
  transform: rotate(180deg);
  right: 0;
  margin: auto;
}
/* メニューhover色 */
.v-tab:hover,.header-tab__menu:hover{
  background-color: var(--header-hover-color) !important;
}
.v-tab span,
.v-tabs-bar,
.header-tab__no-active,
.menu__name{
  color: var(--header-text-color) !important;
}

/* 変な値指定解除 */
.header__wrap{
  height: auto !important;
  padding: 0 !important;
}
.v-tab:before{
  opacity: 0;
}
.theme--light.v-tabs .v-tab:hover:before{
  opacity: 0;
}
[role="menu"].v-menu__content .v-list{
  background:none !important;
}
[role="menu"].v-menu__content .v-list-item{
  min-height: auto!important;
}
[role="menu"].v-menu__content .v-list-item + .v-list-item{
  margin-top: 1px !important;
}
[role="menu"].v-menu__content .v-list-item .tab-icon{
  color: var(--header-menu-text-color) !important;
  font-weight: normal !important;
}
.header-tab__menu{
  padding: 0!important;
}
/* PC */
@media screen and (min-width: 640px){
  .menu__name{
    float: none !important;
    max-width: 9999px !important;
    margin: 0 !important;
  }
  .header__wrap{
    z-index: 3 !important;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .menu__name{
    float: none !important;
    max-width: 9999px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .header__wrap{
    z-index: 3 !important;
  }
}

/* --------------------------------------------------
　メニュー一覧
-------------------------------------------------- */
/* メニュー全体 */
.v-menu__content{
  background-color:var(--header-menu-border-color) !important;
}

[role="menu"].v-menu__content{
  display: block !important;
  opacity: 1 !important;
  right: 0 !important;
  left: auto !important;
  z-index: 2 !important;
  border-radius: 0!important;
  max-width: 100% !important;
  background-color:var(--header-menu-border-color) !important;
}



/* PC */
@media screen and (min-width: 640px){
  .header__wrap .header-tab__pc{
    display: block !important;
  }
  .header__wrap .header-tab__sp{
    display: none !important;
  }
  .portal__wrap [role="menu"].v-menu__content,
  .home__wrap [role="menu"].v-menu__content,
  .event__wrap [role="menu"].v-menu__content {
    top:var(--header-size) !important;
    animation: slideUp .2s ease 0s 1 forwards;
  }
  .portal__wrap [role="menu"].menuable__content__active,
  .home__wrap [role="menu"].menuable__content__active,
  .event__wrap [role="menu"].menuable__content__active{
    animation: slideDown .3s ease 0s 1 forwards;
  }
  /* 24.09.03 メニューがマイチケットとチケット一覧で違ってしまうが適用 */
  .v-application:not(.event__wrap):not(.home__wrap):not(.portal__wrap) [role="menu"].v-menu__content {
    top:var(--header-size) !important;
    animation: slideUp .2s ease 0s 1 forwards;
  }
  .v-application:not(.event__wrap):not(.home__wrap):not(.portal__wrap) [role="menu"].menuable__content__active{
    animation: slideDown .3s ease 0s 1 forwards;
  }

  .menu__name{
    max-width: 9999px !important;
  }
  .header__menu{
    max-width: 100% !important;
  }
  .menu__icon{
    display: none !important;
  }
  .menu__icon__detail{
    display: block !important;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .header__wrap .header-tab__pc{
    display: none !important;
  }
  .header__wrap .header-tab__sp{
    display: block !important;
  }
  [role="menu"].v-menu__content {
    top:0 !important;
    animation: slideRight .2s ease 0s 1 forwards;
  }
  [role="menu"].menuable__content__active{
    animation: slideLeft .3s ease 0s 1 forwards;
  }
}

.v-menu__content .v-list{
  padding: 0 !important;
}

/* メニューリスト */
.v-menu__content .v-list > .v-list-item > div{
  border-radius: 0 !important;
}
.v-menu__content .v-list-item,
.v-menu__content .v-list-item + .v-list-item{
  padding: 0 !important;
  margin-top: 1px !important;
  max-width: 9999px !important;
  min-height: 0 !important;
}
.v-menu__content .v-list-item .v-list-item__title{
  padding: 0.8rem 1rem;
  transition: background-color .3s ease, padding .3s ease;
  background-color:var(--header-menu-bg-color) !important;
  color: var(--header-menu-text-color) !important;
  font-weight: normal !important;
}
.v-menu__content .v-list-item--active .v-list-item__title{
  color: var(--header-menu-hover-text-color) !important;
  background-color: var(--header-menu-hover-color) !important;;
}
[role="menu"].v-menu__content .v-list-item .v-list-item__title:hover{
  padding: 0.8rem 0.5rem 0.8rem 1.5rem;
  background-color: var(--header-menu-hover-color) !important;;
}
/* メニューリスト内 */
.tab-icon{
  font-size: 0.9rem !important;
  font-weight: normal !important;
  padding: 0.6rem !important;
}
/* アイコン */
.tab-icon div{
  width: 25px;
  padding-right: 6px;
}
.tab-icon__img{
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100%;
}


/* スマホのメニューアイコン */
.header-tab__sp{
  padding:8px !important;
}
.header-tab__sp .menu__name {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #666;
  background-color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.header-tab__sp .menu__icon img{
  display:none;
}
.header-tab__sp .menu__icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background-color: #666;
  -webkit-transition: inherit;
  transition: inherit;
}
.header-tab__sp .menu__icon::before,
.header-tab__sp .menu__icon::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: '';
  -webkit-transition: inherit;
  transition: inherit;
}
.header-tab__sp .menu__icon::before {
  top: -5px;
}
.header-tab__sp .menu__icon::after {
  top: 5px;
}

/* --------------------------------------------------
　コンテンツ　ヘッダー
-------------------------------------------------- */
/* リセット */
.widget-header,
.widget-header__row,
.widget-contents__wrap{
  width: 100% !important;
  padding: 0 !important;
}
.widget-header__full-width{
  width: 100% !important;
}
.html__wrap{
  margin-top: 0 !important;
}
.html__wrap .container{
  width: 100% !important;
}
.base-background-color{
  display: none;
}
.widget-header__border{
  display: none;
}
.widget-header,
.widget-header__row {
  position: relative;

}
.widget-header__border{
  display: none !important;
}

/* header */
h4 {
  padding: 8px 0 8px 0;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--title-color) !important;
}
h4:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  left: 0;
  top: 8px;
  background: var(--h4-text-color);
  margin-right: 8px;
}

h5{
  font-size: 1rem;
  font-weight: bold;
}
h5:before{
  content: '・';
}

.booth-list-title__wrap.booth-list-title__wrap__list,
.widget-header,
.detail-title__wrap.detail__title,
.list-title__wrap.list__title,
.list-title__wrap.list__title,
.html__wrap .container.widget-header,
.container.widget-header{
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  padding-bottom: 0 !important;
  color: var(--title-color);
  border-bottom: 3px solid var(--title-border-color) !important;
  height: auto !important;
}
.booth-list-title__wrap.booth-list-title__wrap__list:before,
.booth-list-title__wrap.booth-list-title__wrap__list:after,
.detail-title__wrap.detail__title:before,
.detail-title__wrap.detail__title:after,
.list-title__wrap.list__title:before,
.list-title__wrap.list__title:after,
.widget-header:before,
.html__wrap .container.widget-header:before,
.container.widget-header:before,
.widget-header:after,
.html__wrap .container.widget-header:after,
.container.widget-header:after{
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 20px);
  border-width: 20px;
  border-style: solid;

}
.booth-list-title__wrap.booth-list-title__wrap__list:before,
.detail-title__wrap.detail__title:before,
.list-title__wrap.list__title:before,
.widget-header:before,
.html__wrap .container.widget-header:before,
.container.widget-header:before{
  bottom: -40px;
  border-color: var(--title-border-color) transparent transparent transparent;
}
.booth-list-title__wrap.booth-list-title__wrap__list:after,
.detail-title__wrap.detail__title:after,
.list-title__wrap.list__title:after,
.widget-header:after,
.html__wrap .container.widget-header:after,
.container.widget-header:after{
  bottom: -36px;
  border-color: var(--main-bg-color) transparent transparent transparent;
}
.widget-title__wrap{
  margin-top: 0 !important;
  padding: 0 !important;
}

/* PC */
@media screen and (min-width: 640px){
  .booth-list-title__wrap.booth-list-title__wrap__list,
  .widget-header,
  .detail-title__wrap.detail__title,
  .list-title__wrap.list__title,
  .list-title__wrap.list__title,
  .html__wrap .container.widget-header,
  .container.widget-header{
    margin-bottom: 4rem !important;
    margin-top: 2rem !important;
  }

}

/* SP */
@media screen and (max-width: 639px){
  .booth-list-title__wrap.booth-list-title__wrap__list,
  .widget-header,
  .detail-title__wrap.detail__title,
  .list-title__wrap.list__title,
  .list-title__wrap.list__title,
  .html__wrap .container.widget-header,
  .container.widget-header{
    margin-bottom: 3rem !important;
    margin-top: 0 !important;
  }
  .widget-header{
    margin-bottom: 0;
  }
}
/* h2の上階層 */
.widget-title__text{
  margin-top: 0;
  text-align: center;
  width: 100%;
  padding: 0.6rem 0 !important;
}

.widget-title__text span{
  font-size: 1rem;
  display: block;
  font-weight: normal;
  margin-bottom: 0.5rem;
}
/* PC */
@media screen and (min-width: 640px){
  .widget-title__text h2{
    font-size: 2.4rem;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .widget-title__text h2{
    font-size: 2rem;
  }
}





/* 戻る */
.portal-event-top,
.event-top{
  position: relative;
  margin: 8px !important;
  padding: 8px 1rem 8px 1.5rem !important;
  color: #fff !important;
  height: auto !important;
  background-color: var(--more-bg-color);
  border-radius: 5rem;
  transition: background-color .3s ease;
  white-space: nowrap;
}
.portal-event-top:hover,
.event-top:hover{
  background-color: var(--more-hover-bg-color);
}
.portal-event-top:before,
.event-top:before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.8rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(225deg);
}
/*.portal-event-top,*/
/*.event-top {*/
/*  font-size: 0!important; !*元の文章消去*!*/
/*}*/
/*.portal-event-top:after {*/
/*  font-size: 0.8rem !important;*/
/*  content: 'おは朝イベントTOPに戻る';*/
/*}*/
/*.event-top:after {*/
/*  font-size: 0.8rem !important;*/
/*  content: 'おは朝パークTOPに戻る';*/
/*}*/

/* サブタイトル */
.sub-title{
  width: 90% !important;
  max-width: 900px !important;
  margin: 0 auto;
  padding: 5px 0.8rem;
  border-radius: var(--radius-size);
  background: var(--subtitle-text-color);
  margin-bottom: 1rem;
}
.widget__contents.widget-contents__wrap .sub-title,
.container:not(.widget-contents__wrap--full-width) .sub-title{
  width: 100% !important;
  max-width: 9999px !important;
}
.sub-title h3{
  font-size: 1.1rem;
  font-weight: normal;
}
.top-margin{
  margin-top: 8rem;
}
/* --------------------------------------------------
　コンテンツ
-------------------------------------------------- */
.web-page__wrap{
  padding: 0 !important;
}
.widget__wrap.event__layout{
  padding-bottom: 0 !important;
}
.widget__wrap.home__layout{
  padding-bottom: 0 !important;
}


.html__wrap .widget-header + .container.widget__contents.widget-contents__wrap,
.html__wrap .container.widget__contents.widget-contents__wrap{
  padding-bottom: 8rem !important;
}
.original_contents_wrap,
.container,
.sub-title + .container.widget__contents.widget-contents__wrap,
.html__wrap .container{
  width: 94% !important;
  max-width: 1000px !important;
}

.original_contents_wrap {
  margin: 0 auto;
  padding-bottom: 8rem;
}
.v-list-item .container,
.widget__wrap .container.widget__contents.widget-contents__wrap,
.container .container{
  width: 100% !important;
  max-width: 100% !important;
}

.container.widget__contents.widget-contents__wrap{
  padding: 0 0 8rem 0 !important;
}

/* リセット */
.v-list-item--link:before{
  display: none;
}
.v-list{
  background: none !important;
  transition: none !important;
  padding-top: 0;
}
.questionnaire-list-card{
  border-radius: 0 !important;
}
.widget-contents__wrap--full-width {
  width: 100% !important;
  max-width: 100% !important;
}

/* 汎用カード系 */
.card,
.card__wrap,
.v-card{
  overflow: hidden;
  box-shadow:
          0px 0px 0.5px rgba(0, 0, 0, 0.024),
          0px 0px 1.4px rgba(0, 0, 0, 0.035),
          0px 0px 3.3px rgba(0, 0, 0, 0.046),
          0px 0px 11px rgba(0, 0, 0, 0.07) !important;
  border: none !important;
  transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
  will-change: box-shadow;
  margin: 0 !important;
}
.v-card {
  display: flex;
  flex-wrap: wrap;
  height: auto !important;
}
.card__click{
  width: 100%;
}
.v-card.card__wrap{
  border-radius: var(--radius-size) !important;
}
.v-card:focus, .v-card:hover,
.card__wrap:focus, .card__wrap:hover,
.card:focus, .card:hover {
  box-shadow:
          0px 0.9px 1.7px rgba(0, 0, 0, 0.024),
          0px 2.4px 4.6px rgba(0, 0, 0, 0.035),
          0px 5.7px 11.2px rgba(0, 0, 0, 0.046),
          0px 19px 37px rgba(0, 0, 0, 0.07) !important;

}
.v-list-item + .v-list-item{
  margin-top: 20px !important
}
.v-card:not(.v-sheet--tile):not(.v-card--shaped){
  overflow: hidden;
  border-radius: var(--radius-size) !important;
}
.ticket-card__image{
  width: 100%;
  overflow: hidden;
}
.ticket-card__image,
.card-image__content,
.card-image__default{
  border-radius: 0 !important;
  min-height: 0 !important;
  height: auto !important;
}

.v-card.card__wrap{
  margin: 0 !important;
}
@media screen and (min-width: 601px){
  .v-card.card__wrap{
    margin: 0 !important;
  }
}

.v-list > .v-list-item > div{
  overflow: hidden;
  border-radius: var(--radius-size) !important;
  padding: 0 !important;
}

/* ロールオーバー時の画像 */
.v-card .card-image{
  overflow: hidden;

}
.v-card .v-image__image.v-image__image--cover,
.v-card .card-image .card-image__default,
.v-card .ticket-card__image .v-image__image,
.card .cards_image__wrap{
  animation: backgroundOut .3s ease 0s 1 forwards;
}
.v-card:hover .v-image__image.v-image__image--cover,
.v-card:hover .card-image .card-image__default,
.v-card:hover .ticket-card__image .v-image__image,
.card:hover .cards_image__wrap{
  animation: backgroundOver .3s ease 0s 1 forwards;
}


/* もっとみる */
.ticket-button__wrap button,
.widget__button button{
  height: auto!important;
  background-color: var(--more-bg-color) !important;
  border: none !important;
  transition: background-color .3s ease;
  box-shadow: none !important;
  border-radius: 5rem !important;
  padding: 0.5rem 1rem !important;
  color: #ffffff !important;
  min-width: 164px!important;
  margin: 0 auto;
  text-align: center;
}
.ticket-button__wrap button:hover,
.widget__button button:hover{
  background-color: var(--more-hover-bg-color) !important;
}
.ticket-button__wrap button:after,
.widget__button button:after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.8rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-shadow: none !important;
}
.widget__button button span i{
  display: none !important;
}
.widget-header__col + .widget-header__col {
  position: absolute;
  right: 1rem;
  bottom: 1.4rem;
  width: auto !important;
}
.widget-header__col {
  width: 100% !important;
  text-align: center;
}

.widget__button.widget__button__event{
  display: block !important;
}
.widget-header__button{
  display: none !important;
}
.widget__button,
.ticket__contents .ticket-button__wrap{
  margin-bottom: 8rem !important;
}


/* ※のリスト */
.txt-kome{
  list-style: none;
  margin: 0 !important;
  padding-left: 1.2em !important;
  font-weight: normal;
  position: relative;
  font-size: 0.9rem;
}
.txt-kome li{
  font-weight: normal;
}
.txt-kome li:before{
  content: "※";
  position: absolute;
  left: 0;
}
.txt-kome li+li{
  margin-top: 0.4rem;
}

/* form */
.v-form button{
  border-radius: 5rem !important;
  overflow: hidden;
}

.v-form button[type="submit"]{
  caret-color: var(--more-bg-color) !important;
}

/* --------------------------------------------------
　詳細
-------------------------------------------------- */
.detail__wrap{
  background: var(--main-bg-color) !important;
  height: auto !important;
}
.web-page__title:empty{
  display: none;
}
.title__section{
  display: flex;
  margin-bottom: 8px !important;
  flex-direction: column-reverse;
}
.title__section h1{
  font-family: 'M PLUS 1', sans-serif !important;
  padding: 8px 0 !important;
  line-height: 1.2;
  font-weight: 900;
}
/* 日付 */
.public_period{
  color: #999;
  font-weight: normal;
  margin-left: auto;
  padding: 8px 0 !important;
}


/* --------------------------------------------------
　基本アプリケーション
-------------------------------------------------- */
.v-application a {
  text-decoration: none;
  color: var(--link-color) !important;
  transition: all .3s ease;
}
.v-application a:hover{
  color: var(--link-hover-color) !important;
}

/* --------------------------------------------------
　aspectbox
-------------------------------------------------- */
.widget__aspect{
  font-weight: bold;
  font-size: 1rem;
}
.widget__aspect p{
  background: linear-gradient(transparent 70%, #ffd88e 0%);
  display: inline;
}
.widget__aspect + .txt-kome{
  margin-top: 1rem !important;
}
/* --------------------------------------------------
　memo
-------------------------------------------------- */
.container.widget__memo,
.container.widget__contents.widget-contents__wrap.container.widget__memo,
.widget__memo{
  overflow: hidden;
  margin-bottom: 2rem;
  border: 3px solid var(--subtitle-text-color);
  padding: 1rem !important;
  border-radius: var(--radius-size);
  font-size: 0.9rem;
  width: 90% !important;
  max-width: 900px !important;
}

/* --------------------------------------------------
　カルーセル
-------------------------------------------------- */
.banner__wrap{
  margin-top: 0 !important;
}
.v-carousel{
  width: 90% !important;
  max-width: 900px !important;
  padding: 0 0 3rem 0 !important;
  margin: 0 auto !important;
}
.v-carousel__controls{
}
.v-btn--icon{
  color: #000000 !important;
}

/* --------------------------------------------------
　アコーディオン
-------------------------------------------------- */
.sub-menu {
  overflow: hidden;
  position: relative;
  background-color: var(--submenu-bg-color);
  border-radius: var(--radius-size);
  width: 100%;
  padding: 0.8rem;
}
.sub-menu + .sub-menu{
  margin-top: 1rem;
}
.ac-content-box{
  padding-right: 1rem;
  padding-left: 1rem;
  font-weight: normal;
  position: relative;
  display: block;
  clear: both;
  max-height: 400px;
  overflow: auto;
}

input[type="checkbox"].on-off {
  display: none;
}
input[type="checkbox"].on-off ~ .label_bg_arrow{
  display: block;
  cursor: pointer;
  background-position: left center;
}
input[type="checkbox"].on-off ~ .label_bg_arrow:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22%20%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22width%3A%20256px%3B%20height%3A%20256px%3B%20opacity%3A%201%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%234B4B4B%3B%7D%0A%3C%2Fstyle%3E%0A%3Cg%3E%0A%09%3Cpolygon%20class%3D%22st0%22%20points%3D%22440.189%2C92.085%20256.019%2C276.255%2071.83%2C92.085%200%2C163.915%20256.019%2C419.915%20512%2C163.915%20%09%22%20style%3D%22fill%3A%20rgb(180%2C%20180%2C%20180)%3B%22%3E%3C%2Fpolygon%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A%0A");
  background-size: 100% auto;
  background-position: left top;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
  position: relative;
  top: 0.2rem;
  transition: transform .3s ease;
}

input[type="checkbox"].on-off ~ .ac-content-box {
  animation: acOff .3s ease 0s 1 forwards;
}

input[type="checkbox"].on-off:checked ~ .label_bg_arrow:before {
  transform: rotateZ(180deg);
}

input[type="checkbox"].on-off:checked ~ .ac-content-box {
  animation: acOn .3s ease 0s 1 forwards;
}

/* --------------------------------------------------
　サブメニュー
-------------------------------------------------- */
.sub-menu{
  width: 100% !important;
}

/* --------------------------------------------------
　お知らせ
-------------------------------------------------- */
.information__wrap{
  display: flex !important;
  flex-wrap: wrap;
  width: 94% !important;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px !important;
}
.container .information__wrap{
  width: 100% !important;
}
.information__wrap > div{
  width: 100%;
}
.information__wrap .container{
  width: 100% !important;
}
.text--main{
  word-break: break-all;
}
.information__content{
  width: 100% !important;
  padding: 0 !important;
  min-width: 0 !important;
  max-width: 999px !important;
  border-bottom: 1px solid var(--border-color) !important;
  border-top: none !important;
}
.v-list > .v-list-item > .information__content__sp,
.information__content__sp{
  border-radius: 0 !important;
}
.information__content__sp > .flex:nth-of-type(1){
  order: 2;
}
.information-image__wrap{
  padding: 10px 0 10px 10px !important;
}
/* sp */
@media screen and (max-width: 639px){
  .information__content__sp{
    flex-wrap: wrap;
  }
  .information__content__sp > .flex{
    width: 100%;
  }
  .information-image__content{
    max-width: 9999px !important;
    min-width: 0 !important;
    max-height: 9999px !important;
  }
  .information-image__wrap{
    padding: 0 !important;
  }
}
/* ページング */
.information__pagenation{
  width: 100%;
}


/* テキストwrap */
.information__content__text{
  position: relative;
  padding: 0.5rem 0 !important;
  transition: padding-left .3s ease;
}


.information__content__text:hover:before{
}

/* 日付 */
.information-date__text{
  position: relative;
  font-size: 1rem !important;
  font-weight: normal !important;
  color: var(--information-day-text-color) !important;
}


/* タイトル */
.information__content__text .information-title__wrap p{
  transition: color .3s ease;
  font-weight: normal !important;
}
.information__content__text:hover .information-title__wrap p{
  color: var(--information-title-text-hover-color) !important;
}
/* PC */
@media screen and (min-width: 640px){
  .information__content__text{
    display: flex;
    align-items: center;

  }
  .information__content__text:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(30%, -50%);
    border: 5px solid transparent;
    border-left: 8px solid #555;
    transition: transform .3s ease;
  }
  .information__content__text:hover{
    padding-left: 8px !important;
  }
  .information-date__text{
    padding-right: 1rem;
    padding-left: 1.5rem;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .information__content__text{
    width: 100% !important;
  }
  .information-title__text{
    font-size: 1rem !important;
  }
}


/* --------------------------------------------------
　クーポン
-------------------------------------------------- */
.coupon-card__content{
  padding: 0 !important;
}
.coupon-date span{
  font-size: 0.9rem !important;
  font-weight: normal !important;
}
/* PC */
@media screen and (min-width: 640px){
  .coupon-card__content{
    margin-top: 20px !important;
    width: calc((100% - 20px) / 2) !important;
    min-width: 0 !important;
    max-width: 999px !important;
  }
  .coupon-card__content:nth-of-type(1),
  .coupon-card__content:nth-of-type(2){
    margin-top: 0 !important;
  }

  .coupon-card__content + .coupon-card__content{
    margin-left: 20px !important;
  }
  .coupon-card__content:nth-of-type(2n+1){
    margin-left: 0 !important;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .coupon-card__content+.coupon-card__content{
    padding-top: 20px !important;
  }
}

/* 詳細 */
/* リセット */
.coupon-list__content__right,
.coupon-list__content__left,
.coupon-list__item,
.coupon-image__content{
  min-width: 0 !important;
  max-width: 999px !important;
}
.v-list-item.coupon-list__content{
  width: 100%;
  margin-bottom: 0 !important;
}
.coupon-list__content__right,
.coupon-list__content__left{
  width: 100% !important;
}
.coupon-list__content__left{
}
.coupon-list__content__right{
  padding: 8px !important;
}
.coupon-image__content{
  width: 100% !important;
  height: auto !important;
  border-radius: 0 !important;
}

/* 全体 */
.contents__wrap > .coupon__wrap,
.widget-header + .container.widget__contents.widget-contents__wrap,
.container.widget__contents.widget-contents__wrap{
  width: 90% !important;
  max-width: 900px !important;
  padding: 0 !important;
}

.coupon-list__item{
  box-shadow:
          0px 0px 0.5px rgba(0, 0, 0, 0.024),
          0px 0px 1.4px rgba(0, 0, 0, 0.035),
          0px 0px 3.3px rgba(0, 0, 0, 0.046),
          0px 0px 11px rgba(0, 0, 0, 0.07) !important;
  border: none !important;
  transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
  will-change: box-shadow;
}
.coupon-list__item:focus,
.coupon-list__item:hover{
  box-shadow:
          0px 0.9px 1.7px rgba(0, 0, 0, 0.024),
          0px 2.4px 4.6px rgba(0, 0, 0, 0.035),
          0px 5.7px 11.2px rgba(0, 0, 0, 0.046),
          0px 19px 37px rgba(0, 0, 0, 0.07) !important;

}
.coupon-list__item + .coupon-list__item{
  margin-top: 10px !important
}
.coupon-list__item .v-image__image{
  animation: backgroundOut .3s ease 0s 1 forwards;
}
.coupon-list__item:hover .v-image__image{
  animation: backgroundOver .3s ease 0s 1 forwards;
}
.coupon-list__content.v-list-item{

}
.coupon-list__wrap .v-list{
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
}
.coupon-list__wrap .container--fluid,
.coupon-list__wrap .container--fluid .coupon-list__content{
  height: 100% !important;
}
.coupon-list__content{
  flex-wrap: wrap !important;
  display: flex !important;
  flex: inherit !important;
}
.coupon-list__item{
  width: 100% !important;
}
.coupon__wrap__content{
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative !important;
  top: 0 !important;
  padding-top: 0 !important;
}
.coupon__wrap__point{
  background: none !important;
  border-top: 1px dashed #ccc;
  margin: 0 !important;
}
.coupon__wrap__image{
  box-shadow: none !important;
  padding: 0 !important;
}
.coupon__wrap__image .card-image{
  box-shadow: none !important;
  padding: 0 !important;
}
.coupon__wrap__image .card-image__content{
  box-shadow: none !important;

}
/* PC */
@media screen and (min-width: 640px){

  .v-list-item.coupon-list__content{
    padding: 0 !important;
    width: calc((100% - 20px) / 2) !important;
    min-width: 0 !important;
    max-width: 999px !important;
  }
  .coupon-list__content+.coupon-list__content{
    margin-left: 20px !important;
    margin-top: 20px !important;
  }
  .coupon-list__content:nth-of-type(2n+1){
    margin-left:0 !important;
  }
  .coupon-list__content:nth-of-type(1),
  .coupon-list__content:nth-of-type(2){
    margin-top:0 !important;
  }
}

/* --------------------------------------------------
　アンケート
-------------------------------------------------- */
.v-card.questionnaire-list-card{
  overflow: hidden;
  border-radius: var(--radius-size) !important;
}
.questionnaire-image__content{
  border-radius: 0 !important;
}
.questionnaire-list-card .questionnaire-content{
  padding: 0 !important;
}

/* PC */
@media screen and (min-width: 640px){
  .questionnaire-content__title{
    padding-top: 1rem;
    padding-right: 1rem;
  }
  .questionnaire-content__date{
    padding-right: 1rem;
  }
  .questionnaire-content__date + .d-flex{
    padding-right: 1rem;
  }
}
.questionnaire__wrap{
  padding-bottom: 8rem;
}

/* PC時の画像横幅 */
.questionnaire-list-card .questionnaire-content__image{
  max-width: 420px !important;
}
.v-card.questionnaire-card{
  border-radius: var(--radius-size) !important;
}

/* --------------------------------------------------
　イベント参加方法
-------------------------------------------------- */
.eventInfo__wrap{
  margin: 20px auto;
}

/* --------------------------------------------------
　チケット情報
-------------------------------------------------- */

.ticket-button__wrap{
  margin: 40px 0 !important;
}
.ticket-button__wrap .widget__bottom{
  display: block !important;
  margin: 0 auto;
}

.container.ticket__contents{
  width: 90% !important;
  max-width: 900px !important;
  padding: 0 !important;
}
.v-select>.v-input__control>.v-input__slot{
  padding: 4px 16px;
}
.my-ticket__layout .my-ticket__content,
.my-ticket-layout__wrap .my-ticket-layout__card{
  min-width: 0 !important;
  max-width: 100000px !important;
  margin-top: 20px;
}
.info-top__card.v-sheet{
  max-width: 1000px;
}
/* PC */
.my-ticket__layout{
  width: 94%;
  margin: 0 auto;
  max-width: 1000px;
}

.my-ticket__layout .ticket-card.my-ticket-card.v-card{
  width: 100% !important;
}
@media screen and (min-width: 640px){
  .my-ticket__layout .my-ticket__content{
    flex:initial;
    padding: 0 !important;
  }
  .ticket__contents .v-card{
    display: flex;
    flex-wrap: wrap;
  }
  .ticket__contents .card__click{
    width: 100%;
  }
  .my-ticket__layout .my-ticket__content + .my-ticket__content,
  .ticket__contents .v-card + .v-card,
  .ticket__contents .v-card.card__wrap + .card__wrap{
    margin-top: 20px !important;
    margin-left: 20px !important;
    margin-right: 0 !important;
  }
  .my-ticket__layout .my-ticket__content,
  .my-ticket-layout__wrap .my-ticket-layout__card,
  .ticket__contents .card__wrap{
    width: calc((100% - 20px) / 2) !important;
  }
  .mypage-layout__wrap .my-ticket-layout__wrap .my-ticket-layout__card.v-sheet{
    width: 100% !important;
    max-width: 1000px !important;
    margin: 50px auto !important;
  }
  .ticket__contents .v-card:nth-of-type(1),
  .ticket__contents .v-card.card__wrap:nth-of-type(1),
  .ticket__contents .v-card:nth-of-type(2),
  .ticket__contents .v-card.card__wrap:nth-of-type(2){
    margin-top: 0 !important;
  }

  .my-ticket__layout .my-ticket__content:nth-of-type(2n+1),
  .ticket__contents .v-card:nth-of-type(2n+1),
  .ticket__contents .v-card.card__wrap:nth-of-type(2n+1){
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* 変なスタイルで直書きでpaddingが上書きされるため、１つカラムに変更する */
@media screen and (min-width: 640px){
  .ticket__contents__container{
    justify-content: center;
    display: flex;
  }
  .ticket__contents__container__row{
    min-width: 600px;
  }
}


/* SP */
@media screen and (max-width: 639px){
  .v-card + .v-card,
  .v-card.card__wrap + .card__wrap{
    margin-top: 20px !important;
  }
  .my-ticket__layout .my-ticket__content,
  .my-ticket-layout__wrap .my-ticket-layout__card,
  .ticket__contents .card__wrap{
    width: 100% !important;
  }
}

/* 詳細 */
.ticket__wrap,
.my-ticket__wrap{
  cursor: auto !important;
  background-color: var(--main-bg-color) !important;
}
.container.ticket__contents__container{
  max-width: 9999px !important;
  padding: 0 !important;
}
.page-selector__ticket__text,
.page-selector__my-ticket__text{
  font-family: 'M PLUS 1', sans-serif !important;
  margin-bottom: 3px !important;
  font-weight: 900;
}
.card__lottery-date span,
.card-date-message__text{
  font-size: 0.9rem !important;
  font-weight: normal !important;
}
.card-date-message__text{
  white-space: nowrap;
}
.card__lottery-date{
  font-family: Arial;
}
.ticket--disabled{
  box-shadow: none !important;
  background: #ccc !important;

}

/* SP */
@media screen and (max-width: 639px){
  .page-selector{
    margin-bottom: 2rem;
  }

  .page-selector .page-selector__ticket__text,
  .page-selector .page-selector__my-ticket__text{
    padding: 4px !important;
    margin: 0 !important;
    font-size: 1rem !important;

  }
  .page-selector .page-selector__ticket__text.active,
  .page-selector .page-selector__my-ticket__text.active{
    color: #000 !important;
    background: none !important;
    border-radius: 0 !important;
    padding: 4px !important;
    margin-bottom: 4px !important;
  }
  .page-selector__border{
    border: 2px solid var(--primary-color)  !important;
    border-radius: 2rem !important;
    background-color: var(--primary-color)  !important;
    height: 0 !important;
  }
  .container.my-ticket-layout__wrap{
    padding: 0 !important;
  }
  .my-ticket-layout__wrap .col{
    padding: 0 !important;
  }
  .v-text-field{
    margin: 0 !important;
    padding: 0 !important;
  }
  .ticket__contents__col__row .ticket__card{
    width: 100%;
  }
}



/* --------------------------------------------------
　WEBリンク集
-------------------------------------------------- */
.web-link-banner__wrap{
  display: flex;
  flex-wrap: wrap;
}

.web-link-banner__wrap > .card{
  border-radius: var(--radius-size) !important;
}
.weblink-card-layout__content{
  min-width: 0 !important;
  max-width: 999px !important;
  padding: 0 !important;
}
/* PC */
@media screen and (min-width: 640px){
  .web-link-banner__wrap .card{
    width: calc((100% - 40px) / 3) !important;
    margin: 0 !important;
  }
  .web-link-banner__wrap .card + .card{
    margin-top: 20px !important;
    margin-left: 20px !important;
  }
  .web-link-banner__wrap .card:nth-of-type(1),
  .web-link-banner__wrap .card:nth-of-type(2),
  .web-link-banner__wrap .card:nth-of-type(3){
    margin-top: 0 !important;
  }
  .web-link-banner__wrap .card:nth-of-type(3n+1){
    margin-left: 0 !important;
  }

  .weblink-card-layout__content{
    width: calc((100% - 20px) / 2) !important;
    margin-left: 20px !important;
    margin-top: 20px !important;
  }
  .weblink-card-layout__content:nth-of-type(1),
  .weblink-card-layout__content:nth-of-type(2){
    margin-top: 0 !important;
  }

  .weblink-card-layout__content:nth-of-type(2n+1){
    margin-left: 0 !important;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .web-link-banner__wrap .card{
    width: 100% !important;
    margin: 0 !important;
  }
  .web-link-banner__wrap .card + .card{
    margin-top: 20px !important;
    margin-left: 0 !important;
  }
  .weblink-card-layout__content{
    width: 100% !important;
  }
  .weblink-card-layout__content + .weblink-card-layout__content{
    margin-top: 20px !important;
  }
}


/* --------------------------------------------------
　ブース
-------------------------------------------------- */
.booth-card-layout__content{
  padding: 0 !important;
}


/* PC */
@media screen and (min-width: 640px){
  .booth-card-layout__content{
    padding: 0 !important;
    width: calc((100% - 20px) / 2) !important;
    min-width: 0 !important;
    max-width: 999px !important;
  }
  .booth-card-layout__content+.booth-card-layout__content{
    margin-left: 20px !important;
    margin-top: 20px !important;
  }
  .booth-card-layout__content:nth-of-type(2n+1){
    margin-left:0 !important;
  }
  .booth-card-layout__content:nth-of-type(1),
  .booth-card-layout__content:nth-of-type(2){
    margin-top:0 !important;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .booth-card-layout__content+.booth-card-layout__content{
    padding-top: 20px !important;
  }
}

/* 詳細 */
/* リセット */
.booth-list__col__right,
.booth-list__col__left,
.booth-image__content{
  min-width: 0 !important;
  max-width: 999px !important;
}

/* 全体 */
.booth__wrap{
  width: 90% !important;
  max-width: 900px !important;
  padding: 0 !important;
}
.booth__wrap .container{
  width: 100% !important;
}
.booth-list__item{
  box-shadow:
          0px 0px 0.5px rgba(0, 0, 0, 0.024),
          0px 0px 1.4px rgba(0, 0, 0, 0.035),
          0px 0px 3.3px rgba(0, 0, 0, 0.046),
          0px 0px 11px rgba(0, 0, 0, 0.07) !important;
  border: none !important;
  transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
  will-change: box-shadow;
}
.booth-list__item:focus,
.booth-list__item:hover{
  box-shadow:
          0px 0.9px 1.7px rgba(0, 0, 0, 0.024),
          0px 2.4px 4.6px rgba(0, 0, 0, 0.035),
          0px 5.7px 11.2px rgba(0, 0, 0, 0.046),
          0px 19px 37px rgba(0, 0, 0, 0.07) !important;

}
/* 検索 */
.v-input__slot{
  background: #ffffff !important;
}
.v-expansion-panel-content__wrap .v-btn {
  width: auto!important;
}
.v-expansion-panel-content{
  margin:-1rem 0 0;
  z-index:1;
  padding-top:1.5rem;
  border-radius: 0 0 var(--radius-size) var(--radius-size);
  background: var(--border-color);
}
.booth-search__layout .v-expansion-panel-header{
  z-index:2;
  position:relative;
}

.booth-search__item{
  align-items: center !important;
}

.booth-search__button{
  transition: background-color .3s ease;
  background-color: var(--more-bg-color) !important;
  border-radius: 5rem !important;
}
.booth-search__button:hover{
  background-color: var(--more-hover-bg-color) !important;
}
.booth-search__button__icon span{
  line-height: 26px;
}


/* 画像 */
.booth-image__content{
  border-radius: 0 !important;
}

.booth-list__col__left > div,
.booth-list__col__left > div .v-image{
  height: 100%;
}
.booth__wrap .container .v-image__image{
  animation: backgroundOut .3s ease 0s 1 forwards;
}
.booth__wrap .container:hover .v-image__image{
  animation: backgroundOver .3s ease 0s 1 forwards;
}
/* テキスト */
.booth-list__col__right{
  padding: 1rem !important;
  margin: 0 !important;
}
.booth-description__text{
  -webkit-line-clamp: 5 !important;
}
/* PC */
@media screen and (min-width: 640px){
  .booth-list__col__left{
    width: 30%;
  }
  .booth-list__col__right{
    width: 70%;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .booth-list__col__left{
    width: 100%;
  }
  .booth-list__col__right{
    width: 100%;
  }
}

/* --------------------------------------------------
　その他詳細
-------------------------------------------------- */
.web-page__title {
  border: none !important;
  text-align: center;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  margin: 0 auto !important;
}

/* --------------------------------------------------
　先読み
-------------------------------------------------- */
.lookahead{
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

/* --------------------------------------------------
　スライダー
-------------------------------------------------- */
.slider_wrap{
  position: relative;
  width: 90%;
  max-width: 900px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: var(--radius-size);
}
.slider_wrap input[type="radio"]{
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.slider_wrap img{
  max-width: 100%;
  display: block;
}
.slide_set .inner{
  display: flex;
  transition: all .3s ease;
}

.slide_set .slide{
  display:inline-block;
  width: 100%;
  float:left;
}
.slide-controls{
  display: flex;
}
.slide-controls label{
  padding: 0.6rem 0;
  text-align: center;
  background: #dddddd;
  transition: all .3s ease;
  cursor: pointer;
}
.slide-controls label:hover{
  color:#fff;
  background: var(--paging--active-hover-bg-color);
}
.slide-nav-left{
  position: absolute;
  left: 0;
  top: 50%;
}
.slide-nav-right{
  position: absolute;
  right: 0;
  top: 50%;
}
.slide-nav-left label,
.slide-nav-right label{
  width: 2rem;
  height: 3rem;
  background: rgba(0,0,0,0.4);
  display: none;
  cursor: pointer;
  transition: all .3s ease;
}
.slide-nav-left label:hover,
.slide-nav-right label:hover{
  background: rgba(0,0,0,1);
}
.slide-nav-left label:before{
  content: '';
  display: block;
  position: absolute;
  right: 0.4rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(225deg);
}
.slide-nav-right label:before{
  content: '';
  display: block;
  position: absolute;
  left: 0.4rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}


/* --------------------------------------------------
　フッター
-------------------------------------------------- */
.footer{
  padding: 0 !important;
  background: var(--footer-bg-color);
}
.footer .footer-nav{
  width: 100%;
}
.footer .footer-nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

.footer .footer-nav li,
.footer .footer-nav a {
  color: var(--footer-text-color) !important;
}
.footer .nav{
  font-size: 0.9rem;
}
.footer .copyright a{
  color: var(--footer-text-color) !important;;
  font-weight: normal !important;
  font-size: 0.7rem;
}

.footer .copyright{
  font-size: 0.7rem;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  color: var(--footer-text-color) !important;;
}

.footer .logo{
  width: 100% !important;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .logo span + span,
.footer .logo a + a {
  margin-left: 2rem;
}
.footer .logo + .logo{
  margin-top: 1rem;
}
.footer .logo img{
  width: 150px !important;
}
.portallink a{
  /* border: 2px solid #fff; */
  display: block;
  width: 80%;
  max-width: 500px;
  margin: 0 auto 0;
  border-radius: 5rem;
  text-align: center;
  background: #eb5e01;
  color: #fff !important;
  font-weight: 900;
  display: block;
  padding: 10px;
  position:
          relative;
}
.portallink a:hover,.portallink a:active{
  background:var(--more-bg-color);
  color:#fff!important;
  transform:translateX(-3px);
}
.portallink p{
  margin:0;
  padding:0;
}
.portallink span{
  display:block;
  font-size:0.7rem;
}

.portallink {
  padding: 2rem 0 0;
}
.portallink a:before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.8rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(225deg);
}
/* PC */
@media screen and (min-width: 640px){
  .footer{
  }
  .footer-nav{
    padding: 3rem 0 !important;
  }
  .footer-nav ul{
    justify-content: center;
  }
  .footer-nav li + li{
    margin-left: 2rem;
  }
  .footer-nav a{
    text-decoration: underline;
  }
  .footer-nav a:hover{
    text-decoration: none;
  }

}
/* SP */
@media screen and (max-width: 639px){
  .footer .footer-nav{
    margin-top:30px;
    border-top: 1px solid var(--footer-border-color);
  }
  .footer .footer-nav li{
    width: 100%;
    border-bottom: 1px solid var(--footer-border-color);
  }
  .footer .footer-nav a{
    width: 100%;
    display: block;
    padding: 0.6rem;
  }
  .footer-nav a:hover{
    background: var(--footer-hover-color);
  }
  .footer .logo{
    margin-top: 3rem;
  }
}


/* --------------------------------------------------
　ポータル
-------------------------------------------------- */
.widget-title__text{
  background-color: var(--main-bg-color) !important;
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  padding-bottom: 0 !important;
  margin-top: 2rem !important;
  color: var(--title-color) !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
}
.widget-title__text h2{
  text-align: center;
  color: var(--title-color) !important;
}

/* PC */
@media screen and (min-width: 640px){
  .home__layout .widget-title__text h2{
    font-size: 1.8rem !important;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .home__layout .widget-title__text h2{
    font-size: 1.6rem !important;
  }
}

/* --------------------------------------------------
　form
-------------------------------------------------- */

.ticket__wrap > div:not(.status__line):empty{
  display: none !important;
}
.ticket-cart-table{
  overflow: auto !important;
}
.confirm__wrap{
  max-width: 9999px !important;
  width: 100%;
  background-color: transparent !important;
}
.register-button.v-btn,
.v-btn{
  border: none !important;
}
.profile-edit__form,
.v-form,
.detail__ticket,
.profile__detail{
  margin: 0 !important;
  padding: 10px !important;
}
.detail__ticket + .detail__ticket{
  border-top: 1px dashed #ddd;
}
.profile__detail .profile__detail{
  padding: 0 !important;
}
.register-passcode__button .v-btn__content,
.reset-buton .v-btn__content,
.login-button__content .v-btn__content,
.login-back__button .v-btn__content,
.login-back__button .v-btn__content i{
  color: #ffffff !important;
}
.login-back__button__text{
  color: var(--more-bg-color) !important;
}
.status__line.passed,
.v-application .primary,
.v-application .accent{
  background-color: var(--more-bg-color) !important;
}
/* .profile__detail__content,
.detail__ticket__content{
  margin-left: 0!important;
  width: calc(100% - 8rem);
} */
.v-date-picker-table .v-btn:not(.v-btn--round).v-size--default{
  height: 100% !important;
}

.v-dialog__content+ .v-menu__content + [role="menu"].v-menu__content{
  top:0 !important;
  animation: slideRight .2s ease 0s 1 forwards !important;
}
.v-dialog__content+ .v-menu__content + [role="menu"].menuable__content__active{
  animation: slideLeft .3s ease 0s 1 forwards !important;
}

/* .priority__statement,
.priority__term
{
  text-align: left !important;
} */
.spacer{
  display: none;
}
.profile__wrap{
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 !important;
  border-radius: var(--radius-size) !important;
  background: none !important;
}
.detail__wrap.confirm__content,
.profile__wrap.confirm__content{
  border: 0 solid #ddd !important;
  padding: 0 !important;
  width: 94% !important;
  margin: 0 auto !important;
  max-width: 800px !important;
  overflow: hidden;
  background: #ffffff !important;
}
/* bs修正 20231010 .payment__title__text追加 */
.profile__detail__label,
.detail__ticket__label,
.profile__title,
.profile__title__text,
.detail__title__text,
.payment__title__text
{
  color: #000000 !important;
  font-family: 'M PLUS 1', sans-serif !important;
  font-weight: 900;
}
.detail__wrap + .profile__wrap{
  margin-top: 1rem !important;
}
.v-btn:not(.v-btn--round).v-size--default{
  height: auto!important;
}
.confirm__wrap .confirm__button.v-btn{
  max-width: 800px !important;
  margin: 50px auto;
  width: 94% !important;
  justify-content: center;
  text-align: center;
  display: block;
}
.complete__wrap{
  background: none !important;
}
.complete__message{
  background: #ffffff !important;
}
/* bs修正 20231010 @mediaに変更 */
@media screen and (min-width: 640px){
  .detail__ticket__label,
  .priority__statement__total__label,
  .profile__detail__label{
    width: 8rem !important;
  }
}
.profile__detail__content,
.profile__detail__label,
.priority__statement__total__label,
.priority__statement__total__price,
.detail__ticket__label,
.priority__date-label,
.detail__ticket__content,
.priority__statement__number,
.priority__statement__price{
  font-size: 1rem !important;
}
/* bs修正 20231010 .payment__title追加 */
.profile__content:empty,
.profile__detail:empty,
.payment__title:empty
{
  display: none;
}
.back-button__wrap,
.next-button__wrap{
  width: 46%;
}

/* bs修正 20231010 .payment__title追加 */
.confirm__content .profile__title,
.confirm__content .detail__title,
.profile__wrap .profile__title,
.payment__title{
  padding: 0 0 0 10px;
  background: none !important;
}
.back-button__description,
.next-button__description{
  margin: 1rem 0 !important;
}


.v-form + .profile__button button{
  position: relative;
  padding: 8px 1rem !important;
  color: #fff !important;
  background-color: var(--more-bg-color) !important;
  border-radius: 5rem !important;
  transition: background-color .3s ease;
  box-shadow: none !important;
  min-height: 48px;
  width: 100% !important;
  margin-bottom: 50px;
}
.v-form + .profile__button button:active,
.v-form + .profile__button button:hover{
  background-color: var(--more-hover-bg-color) !important;
}
.priority__statement{
  margin-top: 1rem;
}
/* .priority__date-label{
  margin-right: auto;
} */
.detail__ticket div:last-of-type{
  margin-bottom: 0 !important;
}
.priority__statement__total__price{
  color: #ff0000 !important;
  font-weight: bold;
  font-size: 1.2rem !important;
}
.v-dialog {
  max-width: 1000px;
}
.ticket-detail__block{
  display: block;
  width: 100%;
  border-top: 1px dashed #ddd;
  padding: 1rem 16px 0;
  margin: 0 !important;
}
.detail-dialog__content{
  display: block;
  width: 100%;
  border-top: 1px dashed #ddd;
  margin: 0 !important;
  padding: 1rem 16px !important;
}
.detail-dialog__title{
  width: 100%;
}
.ticket-detail-title{
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 2px solid #000;
  text-align: center;
}
.ticket-price{
  margin: 0 !important;
}
[role="menu"].v-menu__content .v-list-item .v-list-item__title{
  padding: 0.5rem !important;
}
.ticket-detail-description__detail-text{
  color: var(--link-color) !important;
}
.ticket-detail-description__detail-text i{
  color: var(--link-color) !important;
}

.v-form .v-btn--contained.v-btn,
.selector-dialog__content__no.v-btn,
.selector-dialog__content__yes.v-btn,
.profile-contents__controller__button.v-btn,
.register__button__content.v-btn[type="submit"],
.v-btn:not(.v-btn--round).v-size--default.item__postal-code__button,
.confirm__button.v-btn,
.v-btn--depressed.v-btn,
.v-form button.login-button__content,
.next-button__content.v-btn,
.dialog__content__button.v-btn,
.v-btn--contained,
.save-cancel__wrap .save-cancel__button,
.cart-next-button__content.v-btn{
  position: relative;
  padding: 8px 1rem !important;
  color: #fff !important;
  background-color: var(--more-bg-color) !important;
  border-radius: 5rem !important;
  transition: background-color .3s ease;
  box-shadow: none !important;
}

button.login-button__content + button.register-button{
  color: var(--more-bg-color)!important;
  border: thin solid var(--more-bg-color)!important;
  background: #ffffff !important;
}
button.login-button__content + button.register-button:hover,
button.login-button__content + button.register-button:active{
  color: #fff !important;
  background-color: var(--more-bg-color) !important;
  border: none !important;
}
.v-form .v-btn--contained.v-btn:active,
.v-form .v-btn--contained.v-btn:hover,
.selector-dialog__content__no.v-btn:active,
.selector-dialog__content__yes.v-btn:hover,
.selector-dialog__content__no.v-btn:active,
.selector-dialog__content__yes.v-btn:hover,
.profile-contents__controller__button.v-btn:active,
.profile-contents__controller__button.v-btn:hover,
.register__button__content.v-btn:active,
.register__button__content.v-btn:hover,
.v-btn:not(.v-btn--round).v-size--default.item__postal-code__button:active,
.v-btn:not(.v-btn--round).v-size--default.item__postal-code__button:hover,
.confirm__button.v-btn:active,
.v-btn--depressed.v-btn:active,
.next-button__content.v-btn:active,
.dialog__content__button.v-btn:active,
.cart-next-button__content.v-btn:active,
.confirm__button.v-btn:hover,
.v-btn--depressed.v-btn:hover,
.next-button__content.v-btn:hover,
.dialog__content__button.v-btn:hover,
.cart-next-button__content.v-btn:hover,

.v-btn--contained:hover,
.v-btn--contained:active,
.save-cancel__wrap .save-cancel__button:hover,
.save-cancel__wrap .save-cancel__button:active{
  background-color: var(--more-hover-bg-color) !important;
}
.v-btn:not(.v-btn--round).v-size--default.item__postal-code__button{
}
.status__checked{
  background-color: var(--more-bg-color) !important;
}
.confirm__button.v-btn{
  padding: 1.5rem !important;
}
.ticket-total .next-button__content.v-btn{
  background: #ffffff !important;
  color:  var(--more-bg-color) !important;
}
.v-card__actions{
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.cart-next-button__wrap{
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.cart-item__wrap{
  border-bottom: 1px dashed #ddd;
}
.cart-next-button__content.v-btn:hover{
  background-color: var(--more-hover-bg-color);
}
.card-amount__number__button.v-btn--disabled{
  background: #dddddd !important;
}
.card-amount__number__button{
  background-color: var(--more-bg-color) !important;
  box-shadow: none !important;
  border-radius: 5rem !important;
}
.ticket-total{
  background-color: var(--more-bg-color) !important;
  box-shadow: none !important;
}
.item-delete-button__content.v-btn{
  background-color: var(--more-bg-color) !important;
  border-radius: 5rem !important;
  box-shadow: none !important;
}
.next-button__content.v-btn{
  border-radius: 5rem !important;
}
.cart-back-button__content,
.back-button__content{
  border-radius: 5rem !important;
  border: 2px solid var(--more-bg-color) !important;
  box-shadow: none !important;
  color: var(--more-bg-color) !important;
}
.back-button__content .v-btn__content{
  color: var(--more-bg-color) !important;
}

.back-button__description .back-button__content.v-btn{
  background: #ffffff !important;
}
.cart-button__content .v-btn--contained.v-btn{
  background: #ffffff !important;
  border-radius: var(--radius-size) !important;
}
.back-button__description .back-button__content.v-btn:hover{
  background: #ddd !important;
}
.item__kana__last{
  margin: 5px 5px 5px 0!important;
}
.item__kana__first{
  margin: 5px 0 5px 5px!important;
}

/* --------------------------------------------------
　マイページ
-------------------------------------------------- */
.profile-contents__controller .v-btn,
.save-cancel__wrap .v-btn{
  min-height:4rem !important;
  width: 50%;
  margin: 0 10px;
  max-width: 10000px !important;
}

.item__button.v-btn.v-btn--depressed.v-btn--outlined{
  background:#fff !important;
  color:#000 !important;
  border: 2px solid var(--more-bg-color) !important;
}
.item__button.v-btn.v-btn--depressed.v-btn--outlined.item__active{
  color: #fff !important;
  background-color: var(--more-bg-color) !important;
}

.mypage-contents__menu__logout{
  margin-top: 0 !important;
}
.mypage-contents__menu{
  padding-top: 0 !important;
}
.mypage-contents__menu__logout,
.mypage-contents__menu-item{
  border-top: 1px solid rgba(0,0,0,.12);
}
.mypage-contents__menu-item + hr{
  display: none;
}
.mypage-title__wrap{
  padding: 12px !important;
}
.container.my-ticket-layout__wrap,
.my-ticket-layout__wrap,
.member-profile-layout__wrap,
.login-layout__wrap{
  padding: 0 !important;
}
.my-ticket-layout__wrap .container.my-ticket-layout__wrap{
  width: 94% !important;
}
.my-ticket-sp-title__content,
.member-profile-sp-title__content,
.login-sp-title__content{
  background: #eeeeee !important;
}
.mypage-contents__wrap .info-top__wrap,
.mypage-contents__wrap .profile-contents__wrap{
  padding: 10px;
  margin: 0;
}
.save-cancel__wrap,
.password__wrap,
.info-top__wrap,
.mail-address__wrap,
.mypage-contents__wrap{
  background: none !important;
}

.mypage-title__text{
  border-color: var(--more-bg-color) !important;
}
.profile-contents__detail{
  width: 100%;
}
.profile-contents__card{
  max-height: 99999px !important;
}
.password__message,
.mail-address__message{
  width: 100%;
  padding-top: 0.5rem;
}
.password__card,
.mail-address-passcode__card{
  align-items: center;
}
.password__label,
.mail-address-passcode__label{
  padding-right: 10px;
}

.info-top__card +.info-top__card{
  margin-top: 1rem !important;
}
/* --------------------------------------------------
　アニメーション
-------------------------------------------------- */
@keyframes slideDown {
  0% {
    transform: translateY(-120%);
  }
  100% {
    transform: translateY(0%);
  }
}
 /* 24.09.03 メニューがちょっと見えてしまうのでもうちょっとあげる */
@keyframes slideUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-160%);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(120%);
  }
}
@keyframes backgroundOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes backgroundOver {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes acOn {
  0% {
    max-height: 0;
    clip-path: inset(0);
  }
  99.99999% {
    clip-path: inset(0);
  }
  100% {
    max-height: 400px;
    clip-path: inset(-100vh -100vw);
  }
}
@keyframes acOff {
  0% {
    max-height: 400px;
    clip-path: inset(-100vh -100vw);
  }
  0.00001%{
    max-height: 400px;
    clip-path: inset(-100vh -100vw);
  }
  100% {
    max-height: 0;
    clip-path: inset(0);
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------------------------------------------ */



*{
  font-family: 'M PLUS 1', sans-serif !important;
}
body{
  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-5746ba0e-abdb-4117-bf9d-226b22d90646.png) repeat;
}
.theme--light.v-application{
  background: none !important;
}
.page-selector,
.ticket__menu + section,
.my-ticket__menu + section{
  background: none !important;
}
.v-application.event__wrap, #__layout .v-application.event__wrap, .wrap, .home__wrap, .event__wrap{
  background: none!important;
}
.container.ticket__contents,
.contents__wrap > .coupon__wrap, .widget-header + .container.widget__contents.widget-contents__wrap, .container.widget__contents.widget-contents__wrap{
  width: 94% !important;
  max-width: 1000px !important;
}
.ticket__wrap, .my-ticket__wrap{
  background: none!important;
}
.ticket__wrap{
  padding-bottom: 50px;
}
.event__wrap .ticket__wrap{
  padding-bottom: 0 !important;
}
.my-ticket__wrap + .ticket__wrap{
  margin-top: 8rem;
}
.widget-title__text{
  background: none !important;
}

.information__content__text:before{
  display: none;
}
.information__wrap{
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 3%;
  border: 10px solid #ffa600;
}
.information__content{
  border-bottom: none !important;
  border-top: none !important;
}

.information-date__wrap{
  position: relative;
  padding: 5px 5px;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  background: #ffa600;
  border: 2px solid #ffa600;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-right: 1rem;
}
.information-date__wrap:before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px 0 0;
  background-color: white;
  width: 16px;
  height: 16px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.5;
}

.my-ticket__layout{
  flex-wrap: wrap!important;
}
.ticket-card.my-ticket-card.v-card{
  width: 94% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}
.my-ticket__content.v-list-item + .my-ticket__content.v-list-item{
  margin-top: 20px !important;
}
.information__content + .information__content.noline{
  border-top: 0 !important;
}

@media screen and (min-width: 641px){
  .onlySP {
    display: none !important;
  }
}
@media screen and (max-width: 640px){
  .information__wrap{
    border: 6px solid #ffa600;
  }
  .information-date__wrap {
    margin-right: 0;
  }
  .information-date__text {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .widget-title__text h2{
    font-size: 2.4rem;
  }
}








/* --------------------------------------------------------- */

.original_title{
  position: relative;
  z-index: 1;
}

.original_contents2{
  background: #fff;
  width: 94%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  padding: 50px 40px 20px;
  border-radius: 20px;
  position: relative;
  margin-top: -35px;
}
.original_contents3{
  background: #fff;
  width: 94%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  padding: 0;
  border-radius: 20px;
  position: relative;
  margin-top: -35px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .original_contents2{
    padding: 50px 20px 20px;
  }
  .original_title h2{
    font-size: 2rem !important;
    line-height: 1.1;
  }
}
.text_l{
  font-size: 1.2rem;
}
.text_s{
  font-size: 0.9rem;
}
.text_ss{
  font-size: 0.8rem;
}


/* --------------------------------------------------------- */
.aboutLink-access,
.aboutLink-schedule,
.aboutLink-map{
  padding: 2rem 0;
}
.aboutLink {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
}
.aboutLink-title {
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: -4.5rem;
  position: relative;
  z-index: 2;
  background: #e64d45;
  padding-left: 20px;
  font-weight: 900;
}
.aboutLink-title:before {
  content: "";
  display: block;
  top: 0;
  left: -15px;
  background: #e64d45;
  width: 30px;
  height: 100%;
  position: absolute;
  border-radius: 50%;
}
.aboutLink-title:after {
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  left: -9px;
  top: 5px;
  width: 30px;
  height: 30px;
  opacity: 0.4;
  clip-path: path('M12.2,0l-0.5,0.1C6.3,0.7,1.6,8.2,0,18L30.5,0H12.2z');
  transform: scale(0.8);
  transform-origin: left top;
}
.aboutLink-contents{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding-top: 4.5rem;
  background: #ffffff;
}

.aboutLink-map-img{
  background: #00a571;
}
.aboutLink-access-inner{
  padding: 20px;
}

.aboutLink-map-img img{
  max-width: 100%;
  width: 100%;
}
.iframe {
  position: relative; width: 500px; height: 0; padding-top: 500px; margin: 0 auto;
}

.iframe iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; max-width: 9999px!important;
}

@media all and (max-width:500px) {
  .iframe {
    width: 100%; padding-top: 100%;
  }
}

.btn_close_rt {
  position: absolute; right: 10%; top: 4%; color: #fff; font-size: 40px; cursor: pointer;
}

.modal {
  z-index: 99999;
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  align-items: center;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.6);
}

.modal img {
  max-width: 100%;
}

.txt {
  font-size: 0.9rem;
  font-weight: normal;
}

.modal:before {
  opacity: 0; visibility: hidden;
}

.modal .detail {
  display: block;
  opacity: 0;
  box-shadow: none;
  transform: translate(0, 10px);
}

.overlay_label {
  display: flex;
  position: absolute;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.detail {
  cursor: auto;
  transition: all 0.5s ease 0.3s, opacity 0.3s ease 0.2s;
  display: none;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  width: 94%;
  max-width: 1000px;
  border: 1px solid #aaa;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  border-radius: 0.5rem;
  box-sizing: border-box;
}
.detail .inner{
  padding: 1rem;
  max-height: 80vh;
  overflow: auto;
}

.detail dl {
  display: flex; flex-wrap: wrap; align-items: flex-start; border-bottom: 1px solid #d6c5c5;
}

.detail dt {
  width: 30%; margin: 0; padding: 0.5rem; text-align: left; border-top: 1px solid #d6c5c5; box-sizing: border-box;
}

.detail dd {
  width: 70%; margin: 0; padding: 0.5rem; text-align: left; word-break: break-all; border-top: 1px solid #d6c5c5; box-sizing: border-box;
}
.detail .popup_map_title{
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 2rem;
  display: block;
  padding-bottom: 10px;
  font-weight: 900;
}
.btn_close {
  max-width: 400px;
  margin: 0 auto;
  display: block;
  font-size: 1.3rem;
  border-radius: 5px;
  border: none;
  padding: 0.5rem 3rem;
  box-shadow: 0 0.3px 0.7px -5px rgba(0, 0, 0, 0.164), 0 0.9px 1.8px -5px rgba(0, 0, 0, 0.197), 0 1.8px 3.7px -5px rgba(0, 0, 0, 0.215), 0 3.7px 7.7px -5px rgba(0, 0, 0, 0.244), 0 10px 21px -5px rgba(0, 0, 0, 0.36);
  background: #ffa739;
  color: #ffffff;
  transition: all 0.5s ease 0s;
  transform: translate(0, 0);
  cursor: pointer;
}

.btn_close:hover {
  transform: translate(0, 2px); box-shadow: none;
}

.popupcheck{
  display: none;
}
.popupcheck:checked + .modal {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.popupcheck:checked + .overlay_label:before {
  content: "";
  visibility: visible;
  display: block;
  clear: both;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 1;
}
.popupcheck:checked + .modal .detail {
  display: block; opacity: 1;
  transform: translate(0, 0);
  box-shadow: 0 1.1px 1.8px -9px rgba(0, 0, 0, 0.164), 0 2.9px 4.4px -9px rgba(0, 0, 0, 0.197), 0 5.8px 9px -9px rgba(0, 0, 0, 0.215), 0 12px 18.6px -9px rgba(0, 0, 0, 0.244), 0 33px 51px -9px rgba(0, 0, 0, 0.36);
}

.open{
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 640px) {
  .aboutLink-title{
    font-size: 1.8rem;
  }
  .aboutLink-title{
    margin-bottom: calc(-3rem - 10px);
  }
  .aboutLink-contents{
    padding-top: calc(3rem + 10px);
  }
}

/* --------------------------------------------------------- */



.web-page__html{
  width: 100% !important;
  max-width: 99999px !important;
}

.v-application.event__wrap,
#__layout.v-application.event__wrap,
.wrap,
.home__wrap,
.event__wrap,
.detail__wrap{
  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-5746ba0e-abdb-4117-bf9d-226b22d90646.png) repeat !important;
}

.booth-list-title__text {
  border-left: 0 !important;
}
.booth-list-title__text h2,
.widget-title__text h2,
.widget-header h2, .detail-title__wrap.detail__title h2, .list-title__wrap.list__title h2, .html__wrap .container.widget-header h2, .container.widget-header h2,.detail-title__text h2{
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 2.4rem;
  line-height: 1.1;
  background:none !important;
  padding: 10px;
  text-shadow: 2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 2px 0px 1px #ffffff, 0px 2px 1px #ffffff, -2px 0px 1px #ffffff, 0px -2px 1px #ffffff;
  font-weight: 900;
  text-align: center !important;
  border-left: 0 !important;
}



.webpage-wrap{
  width: 90% !important;
  max-width: 1000px !important;
  padding: 20px 0!important;
  border-radius: 20px;
  background: #fff;
  position: relative;
  margin: 0 auto 100px;
}
.container .webpage-wrap{
  width: 94% !important;
}
.container .html__wrap .webpage-wrap{
  width: 90% !important;
}
.webpage-title {
  background-color: #00ab2d !important;
  border: none !important;
  transition: background-color .3s ease;
  box-shadow: none !important;
  padding: 0.2rem 1rem !important;
  color: #ffffff !important;
  min-width: 164px!important;
  text-align: left;
  position: relative;
  width: 100%;
  margin: 0;
}
.webpage-title-red{
  background-color: #e64d45 !important;
}

.webpage-title:before {
  content: "";
  display: block;
  top: 0;
  left: -15px;
  background: #00ab2d;
  width: 30px;
  height: 100%;
  position: absolute;
  border-radius: 50%;
}
.webpage-title-red:before{
  background: #e64d45;
}

.webpage-title:after {
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  left: -9px;
  top: 5px;
  width: 30px;
  height: 30px;
  opacity: 0.4;
  clip-path: path('M12.2,0l-0.5,0.1C6.3,0.7,1.6,8.2,0,18L30.5,0H12.2z');
  transform: scale(0.8);
  transform-origin: left top;
}

.webpage-title span{
  display: block;
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 2.4rem;
  line-height: 1.1;
  padding: 7px 0;
  font-weight: 900;

}
.webpage-title.txt_small span {
  font-size: 2.2rem;
}
.webpage-contents {
  padding: 20px;
  font-size: 1rem;
}
.theme--light.v-expansion-panels .v-expansion-panel{
  background:none !important;
}
.v-expansion-panel-content{
  background:#fff;
}

.v-expansion-panel-content button[type="submit"] {
  color: #fff !important;
  caret-color: #fff !important;
}

.booth-search__button__icon{
  color: #000 !important;
}

.booth-search__text {
  border-radius: var(--radius-size) !important;
}

.material-icons{
  font-family: 'Material Icons' !important;
}
.booth-search__layout+.v-expansion-panel-content{
  position:relative;
  top:-2px;
}
.row.booth-list__row {
  background: #fff;
}
.booth-description__text {
  -webkit-line-clamp: 3 !important;
}
.booth-list__col__left{
  width:40%;
}
.booth-list__col__right{
  width:60%;
}

.booth__wrap .v-form{
  padding:0 !important;
}
.v-btn:not(.v-btn--round).v-size--default {
  height: auto!important;
}

.filter__button {
  width: 100% !important;
}


.booth-search__item.v-list-item.theme--light {
  padding: 8px 8px 0;
  font-size: 16px;
}

.booth-search__item.v-list-item.theme--light {
  padding: 8px;
}

.v-expansion-panel-content .v-list{
  padding: 0 !important;
}
.booth-title__text{
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 900;

}
.booth-card__category,
.booth-category__chip{
  border-radius: 5rem !important;
  background-color: #aba6a6 !important;
  padding: 3px 10px !important;
  color: #fff !important;
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
  height: auto !important;
  width: auto !important;
  white-space: nowrap;
}
.agreement__button__label,
.agreement__group,
.smart__forget{
  text-align: center;
  white-space: nowrap;
}
.login-back__button__text,
.smart__forget a{
  white-space: nowrap;
}
.booth-card__category:blank{
  display: none;
}
.booth-category__chip:blank{
  display: none;
}
.booth-category__text{
  color: #ffffff !important;
  margin: 0 !important;
}
.booth-category__col{
  padding-left: 0 !important;
}
.filter__button .v-responsive + p {
  width:100%;
}
@media screen and (max-width: 640px){
  .booth-list-title__text h2,
  .widget-header h2, .detail-title__wrap.detail__title h2, .list-title__wrap.list__title h2, .html__wrap .container.widget-header h2, .container.widget-header h2,.detail-title__text h2{
    font-size: 2rem;
    line-height: 1.1;
  }

  .webpage-wrap{
    border-radius: 10px;
    padding: 10px 0!important;
    margin: 0 auto 50px;
  }

  .webpage-title span{
    font-size: 2rem;
    line-height: 1.2;
    padding: 7px 0;
  }
  .webpage-title.txt_small span {
    font-size: 1.3rem;
    line-height: 1.2;
    padding: 7px 0;
  }
  .booth-list__col__left{
    width:100%;
  }
  .booth-list__col__right{
    width:100%;
    padding-top: 10px !important;
  }
  .booth-title__text{
    font-size: 1.1rem !important;
  }
  .webpage-contents{
    padding: 12px;
  }
}


/* --------------------------------------------------------- */

.fc_red{
  color: #e64d45;
}
.fc_green{
  color: #00ab2d;
}
.txt_L {
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 1.1rem;
  font-weight: 900;

}
.txt_LL{
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 1.4rem;
  font-weight: 900;

}
.webpage-contents-text1 p,
.webpage-contents-text1 span{
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 1.1rem;
}

@media screen and (max-width: 640px){
  .webpage-contents-text1 p,
  .webpage-contents-text1 span{
    font-size: 1rem;
  }
}



/* --------------------------------------------------------- */
/* 開催概要
/* --------------------------------------------------------- */

.topicsBox {
  margin: 0 auto 50px;
  padding: 10px 20px 0;
  border: 10px solid #e64d45;

  width: 94%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-sizing: border-box;
  line-height: 1.6;
  font-family: "GSanSerif-B", sans-serif;
  position: relative;
  color: #222;
}

.info-main {
  padding: 20px 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.info-main:before{
  display: none;
}
.info-main dt {
  position: relative;
  width: 15%;
  padding: 5px 5px;
  margin: 0 2% 1rem 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fbe23e;
  background: #e64d45;
  border: 2px solid #e64d45;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-main dt:before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px 0 0;
  background-color: white;
  width: 24px;
  height: 24px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.5;
}
.info-main dd{
  width: 82%;
  height: auto;
  margin-bottom: 1.2rem;
  text-align: left;
  font-size: 1.3rem;
  font-weight: bold;
  box-sizing: border-box;
  line-height: 1.3;
}
.info-main dd span {
  font-size: 0.9rem;
  line-height: 1.5;
  display: block;
  margin-top: 8px;
}
@media screen and (max-width: 640px){
  .topicsBox{
    padding: 10px;
    border: 6px solid #e64d45;
  }
  .info-main{
    padding: 0;
  }
  .info-main dd{
    font-size: 1.2rem;
  }
  .info-main dd span{
    line-height: 1.2;
  }
  .info-main dd:nth-last-of-type(1){
    margin-bottom: 0 !important;
  }
  .info-main dt:nth-last-of-type(1){
    margin-bottom: 0 !important;
  }
}

/* --------------------------------------------------------- */
/* リンク
/* --------------------------------------------------------- */

.bnr_link_1,
.bnr_link_2{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 !important;
  margin: 0 auto;
  justify-content: center;
}
.bnr_link_1{
  max-width: 600px;
}
.bnr_link_2{
  max-width: 700px;
}
.bnr_link_1 a,
.bnr_link_1 div,
.bnr_link_2 a,
.bnr_link_2 div
{
  display: block;
  border: 1px solid #ccc;
  margin: 10px;
}
.bnr_link_1 a img,
.bnr_link_1 div img,
.bnr_link_2 a img,
.bnr_link_2 div img{
  width: 100%;
  display: block;
  margin: 0;
}
.bnr_link_1 li{
  width: 50%;
}
.bnr_link_2 li{
  width: calc(100% / 3);
}
@media screen and (max-width: 640px){
  .bnr_link_1 li{
    width: 100%;
  }
  .bnr_link_1 a,
  .bnr_link_1 div,
  .bnr_link_2 a,
  .bnr_link_2 div{
    margin: 5px;
  }
  .bnr_link_2 li{
    width: 50%;
  }
}


/* ---------------------------------------------------------
  協賛
------------------------------------------------------------*/

.hosted,.cooperation {
  text-align: center;
  width:90%;
  margin:0 auto;
  max-width: 1000px;
}
.hosted{
  padding-bottom:30px;
}
.cooperation{
  margin-bottom:8rem;
}

.hosted-tit,.cooperation-tit {
  font-size: 1.4rem;
  font-weight: 900;
  padding-bottom: 1rem;
}

.hosted-con a,.cooperation-con a {
  display: block;
  max-width: 90%;
  margin: 0 auto;
  width: 210px;

}
.hosted-con img,.cooperation-con img{
  max-width: 100%;
}



/* ---------------------------------------------------------
  booth
------------------------------------------------------------*/

.detail-title__wrap.detail__title:after{
  border-color: #bdee7f transparent transparent transparent;
}

.description{
  position: relative;
  padding:20px !important;
}


.detail__contents section.booth__wrap{
  width: 94% !important;
  max-width: 1000px !important;
  padding: 0 0 50px!important;
}
.booth-main {
  background: #fff;
  border-radius: 20px;
  position: relative;
  padding: 32px;
}

.booth__wrap .description {
  padding: 0 !important;
  margin: 0 !important;
}
.booth__wrap{
  position:relative;
}
.booth__wrap > section > section > section > img {
  display: none;
}
.booth__wrap .title{
  display:none;
}
.booth-category__row{
  display:none;
}
.list__wrap .booth-category__row{
  display: flex;
}
.booth-title_base{
  background-color: var(--color-base) !important;
}
.booth-title_base:before {
  background: var(--color-base);
}
.booth-title_okita{
  background-color: var(--color-okita) !important;
}
.booth-title_okita:before {
  background: var(--color-okita);
}
.booth-title_nemurin{
  background-color: var(--color-nemurin) !important;
}
.booth-title_nemurin:before {
  background: var(--color-nemurin);
}
.booth-title_mezame{
  background-color: var(--color-mezame) !important;
}
.booth-title_mezame:before {
  background: var(--color-mezame);
}

.booth-title_okita span:before,
.booth-title_nemurin span:before,
.booth-title_mezame span:before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
.booth-title_nemurin span:before {
  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-c2926838-cd3e-4948-a8a9-3a89541a6385.png) bottom center no-repeat;
  background-size: contain;
}
.booth-title_okita span:before {
  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-9d23ab17-1590-4690-8860-9ef2d8db8f40.png) bottom center no-repeat;
  background-size: contain;
}
.booth-title_mezame span:before {
  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-40fede01-9a34-4771-a201-deb0e40987dd.png) bottom center no-repeat;
  background-size: contain;
}

.booth-title {
  border: none !important;
  transition: background-color .3s ease;
  box-shadow: none !important;
  color: #ffffff !important;
  min-width: 164px!important;
  text-align: left;
  position: relative;
  width: calc(100% + 60px);
  margin: 0 0 0 -28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding:10px 1rem !important
}

.booth-title:before {
  content: "";
  display: block;
  top: 0;
  left: -15px;
  width: 30px;
  height: 100%;
  position: absolute;
  border-radius: 50%;
}

.booth-title:after {
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  left: -9px;
  top: 5px;
  width: 30px;
  height: 30px;
  opacity: 0.4;
  clip-path: path('M12.2,0l-0.5,0.1C6.3,0.7,1.6,8.2,0,18L30.5,0H12.2z');
  transform: scale(0.8);
  transform-origin: left top;
}


.booth-title span{
  display: block;
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 900;
  padding: 0;
}
.booth-title.add_cap span{
  padding: 0 30px 0 0;
}
.booth-title.add_cap span.text_s,
.booth-title span.text_s{
  font-size: 1rem;
  padding: 0;
  font-weight: normal;
  line-height:1.2;
}

.booth-title.txt_small span {
  font-size: 2.2rem;
}

.booth-title_okita ~ .booth-imglist:after,
.booth-title_nemurin ~ .booth-imglist:after,
.booth-title_mezame ~ .booth-imglist:after{
  content: "";
  display: block;
  left: -18px;
  width: 114px;
  height: 114px;
  position: absolute;
}
.booth-title_okita ~ .booth-imglist:after{
  bottom: -54px;

  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-825566e9-ae01-4bdb-850d-1f73d721d2bc.png) center no-repeat;
  background-size: contain;
}
.booth-title_nemurin ~ .booth-imglist:after{
  bottom: -50px;
  height: 97px;

  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-a1915b82-9713-421c-b5a6-c0636f817e6a.png) center no-repeat;
  background-size: contain;
}
.booth-title_mezame ~ .booth-imglist:after{
  bottom: -63px;
  height: 111px;
  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-2b470556-19ae-446c-94de-7ffac523067d.png) center no-repeat;
  background-size: contain;
}


.booth-tag {
  margin: 10px 0;
}
.booth-tag ul {
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
  width: 100%;
  display: flex;
}
.description .booth-tag li,
.description .booth-tag a{
  background: #aba6a6;
  display: block;
  padding: 3px 1rem;
  border-radius: 5rem;
  color: #fff !important;
}
.booth-tag a:hover{
  color: #ffffff !important;
}





.booth-detail {
  font-size: 1.3rem;
  border-radius: 20px;
  margin: 20px 0 50px;
  font-family: 'M PLUS 1', sans-serif !important;
  font-weight: 900;

}
.booth-detail p{
  font-family: 'M PLUS 1', sans-serif !important;
  font-weight: 900;

}

.booth-link {
  transition: background-color .3s ease;
  margin: 20px auto;
  width: auto;
  display: flex;
  justify-content: center;
}

.description .booth-link a {
  background-color: var(--more-bg-color) !important;
  border: none !important;
  padding: 1rem 2rem !important;
  color: #ffffff !important;
  min-width: 164px!important;
  border-radius: 5rem !important;
  box-shadow: none !important;
  text-align: center;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
}
.booth-link a:before{
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 1);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: .6s;
}
.booth-link a:after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.2rem;
  margin: auto;
  vertical-align: middle;
  width: 0.6rem;
  height: 0.64rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-shadow: none !important;
}
.booth-link a:hover:before {
  width: 30em;
  height: 30em;
  opacity: 0.2;
}
.booth-link a:hover{
  color: #ffffff !important;
}


.booth-return {
  transition: background-color .3s ease;
  margin: 115px auto 10px;
  width: auto;
  display: flex;
  justify-content: center;
}

.description .booth-return a {
  border: none !important;
  padding: 1rem 2rem !important;
  color: #ffffff !important;
  min-width: 280px!important;
  border-radius: 5rem !important;
  box-shadow: none !important;
  text-align: center;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
}
.booth-return_mezame a{
  background-color: var(--color-mezame) !important;
}
.booth-return_nemurin a{
  background-color: var(--color-nemurin) !important;
}
.booth-return_okita a{
  background-color: var(--color-okita) !important;
}
.booth-return a:before{
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 1);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: .6s;
}
.booth-return a:after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  vertical-align: middle;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(225deg);
  box-shadow: none !important;
  left: 1.3rem;
}
.booth-return a:hover:before {
  width: 20em;
  height: 20em;
  opacity: 0.2;
}
.booth-return a:hover{
  color: #ffffff !important;
}



.booth-imglist {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.booth-imglist div {
  width: calc(50% - 5px);
  margin: 10px 0;
}
.booth-imglist div:nth-child(2n){
  margin-left:10px;
}
.booth-imglist p{
  margin:0;
  padding:0;
}

.booth-note {
  font-size: 1rem;
  border-radius: 20px;
  padding: 3%;
  border: 6px solid #d8d8d8;
  margin: 0 0 40px;
}
.booth-caption{
  display: none;
}
.ticket-card-detail__contents__row{
  display: flex;
  flex-wrap: nowrap;
}
.ticket-card-detail div{
}
.ticket-card-detail .v-card__text{
  width: 100% !important;
  /* padding: 0 !important; */
  padding: 0 2% 2% !important; /* bs修正 20231010 */
  margin: 0 !important;
}
.ticket-card__title__name,
.ticket-card-title__text,
.booth-card__title{
  font-weight: normal !important;
  font-size: 1.1rem !important;
  line-height: 1.3;
  height: auto !important;
  margin-bottom: 0px !important;
  width: 100% !important;
}

.container.ticket-card-detail__summary{
  width: 100% !important;
  margin-bottom: 0 !important;
}
.row--dense>.col, .row--dense>[class*=col-]{
  padding: 0 !important;
}
.ticket-card-detail__summary__name{
  margin: 30px 30px 0 !important;
  padding: 0 !important;
  border-bottom: 2px solid #000;
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 1.4rem !important;
  text-align: left;
  display: block;
  padding-bottom: 10px !important;
  line-height: 1.2 !important;
  font-weight: 900;

}
.ticket-card-detail__contents__row{
  position: relative;
  border-top: 2px dotted #ddd;
  padding: 20px 30px !important;
}
.ticket-card-detail__summary__description__hide-detai,
.ticket-card-detail__summary__description{
  line-height: 1.3!important;
  white-space: pre-wrap;
  -webkit-line-clamp: 99 !important;
  max-height: 30vh;
  overflow: auto !important;
  margin: 30px !important;
}
.ticket-card-detail__summary__description__expander{
  display: none;
}
.ticket-card-detail__summary + hr,
.ticket-card-detail__contents__row + hr{
  display: none !important;
}
.ticket-card__contents__value{
  font-size: 1.1rem !important;
  line-height: 1.3;
}
.ticket-card__contents{
  height: auto !important;
  display: flex;
  flex-wrap: nowrap;
}
.ticket-card__contents.row--dense{
  margin-bottom: 8px;
}
.ticket-card__contents.row--dense div:nth-of-type(1){
  margin-right: 5px;
}
.my-ticket-layout__card td{
  padding: 16px;
}
.ticket-card-detail__contents{
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.v-dialog{
  margin: 20px 10px !important;
}
.ticket-card-detail .ticket-card-detail__status{
  padding: 3px 12px 3px 20px!important;
  font-size: 14px;
}
@media screen and (max-width: 639px){
  .booth-main{
    padding:12px 15px !important
  }
  .v-dialog.v-dialog--active{
    border: 6px solid #ffa600 !important;
  }
  .ticket-card-detail__contents__row > div:nth-of-type(1){
    /* width: 8% !important; */ /* bs修正 20231010 */
  }
  .ticket-card-detail__contents__row > div:nth-of-type(2){
    width: 92% !important;
  }
  .ticket-card-detail__contents__row{
    position: relative;
    border-top: 2px dotted #ddd;
    padding: 10px 10px !important;
  }
  .ticket-card-detail__summary__name{
    margin: 10px 10px 0 !important;
  }
  .ticket-card-detail__summary__description__hide-detai,
  .ticket-card-detail__summary__description{
    max-height: 99999px !important;
    margin: 10px !important;
    overflow: hidden !important;
    height: auto !important;
  }
  .detail-title__text h2,
  .detail__title{
    font-size: 2rem;
    line-height: 1.1;
  }
  .detail__contents .booth__wrap{
    border-radius: 10px;
  }
  .description{
    padding:12px 3px !important;
  }
  .booth-title{
    width: calc(100% + 25px);
    margin: 0 0 0 -10px;
  }
  .booth-title span{
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .booth-title span.text_s{
    font-size: 1rem;
  }
  .booth-title.txt_small span {
    font-size: 1.3rem;
    line-height: 1.2;
    padding: 7px 0;
  }
  .booth-detail{
    font-size: 1rem;
    border-radius: 10px;
    margin: 20px 0 30px;
  }
  .booth-note{
    font-size: 0.9rem;
    border-radius: 10px;
    padding: 20px 10px;
    border: 5px solid #d8d8d8;
  }
  .booth-return a,
  .booth-link a ,
  .description .booth-return a,
  .description .booth-link a{
    font-size: 1rem;
  }
}



/* ---------------------------------------------------------
  ticket
------------------------------------------------------------*/

.ticket-detail-title__text{
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 1.4rem;
  text-align:left;
  display: block;
  padding-bottom: 10px;
  line-height: 1.2;
  font-weight: 900;
}
.ticket-detail-description__hide-detail{
  -webkit-line-clamp: 99 !important;
}
.ticket-detail-description__detail-text{
  display: none !important;
}
.detail-dialog__wrap{
  padding: 0 !important;
}
.detail-dialog__detail{
  max-height: 30vh;
  overflow: auto;
  margin: 30px !important;
}
.v-dialog>.v-card>.v-card__title{
  margin: 30px 30px 0 !important;
  padding: 0 !important;
}

.v-dialog.v-dialog--active {
  border-radius: var(--radius-size) !important;
  border: 10px solid #ffa600;
}

.v-dialog.v-dialog--active .v-card:not(.v-sheet--tile):not(.v-card--shaped){
  border-radius: 0 !important;
  justify-content: center;
}
.v-dialog .detail-dialog__content{
  position: relative;
  border-top: 2px dotted #ddd;
  padding: 20px 30px !important;
}
.v-dialog .v-card__actions {
  margin: 0;
  border-radius: 0;
  padding: 0 !important;
}
.v-dialog .cart-next-button__description button{
  border-radius: 0 !important;
  padding: 2rem !important;
  height: auto !important;
}



.ticket-detail__block{
  position: relative;
  padding: 20px !important;
}
.ticket-card-detail__contents__row:before,
.ticket-card-detail__contents__row:after,
.ticket-detail__block:before,
.ticket-detail__block:after,
.v-dialog .detail-dialog__content:before,
.v-dialog .detail-dialog__content:after{
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  background: #ffa600;
  border-radius: 50%;
}
.ticket-card-detail__contents__row:before,
.ticket-detail__block:before,
.v-dialog .detail-dialog__content:before{
  left: -8px;
  top: -8px;
}
.ticket-card-detail__contents__row:after,
.ticket-detail__block:after,
.v-dialog .detail-dialog__content:after{
  right: -8px;
  top: -8px;
}
p.ticket-price__label {
  background: #1d86ff;
  padding: 4px 1rem;
  color: #fff !important;
}
.ticket-detail__wrap {
  border-radius: var(--radius-size) !important;
  border: 5px solid #ffa600;
  overflow: hidden;
}
.ticket-detail__first{
  border-top: 0 !important;
}
.ticket-detail__first:before,
.ticket-detail__first:after{
  display: none;
}
button.detail__title__edit{
  color: #ffffff !important;
}
@media screen and (min-width: 640px){
  .lottery-date__start {
    font-size: 1.3rem !important;
  }
  .lottery-date__end {
    font-size: 1.3rem !important;
  }
  .lottery-date__hyphen {
    font-size: 1.3rem !important;
  }
}


.flex.mypage-contents__menu{
  max-width: 999px !important;
  width: 200px;
  min-width: 0;
}
@media screen and (min-width: 600px){
  .flex.mypage-contents__contents{
    width: calc(100% - 200px);
    max-width: 1000px;
  }

}


@media screen and (max-width: 600px){
  .flex.mypage-contents__menu{
    width: 100% !important;
  }
  .mypage-contents__menu-item{
    background: none !important;
  }
  .mypage-contents__menu__logout{
    background: none !important;
  }
  .sp-menu-spacer{
    display: none !important;
  }
  .profile-edit__form{
    background: none !important;
  }
  .profile-edit__wrap .save-cancel__wrap{
    justify-content: center !important;
  }
}

/* bs修正 20231010  */
.stripe-credit-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px !important;
}
.item__wrap.payment__content,
.payment__content .item__label
{
  flex-direction: column;
}
.payment__content .item__label span {
  display: block;
  font-size: 1rem !important;
  font-weight: normal !important;
}
.profile__wrap.confirm__content,
.confirm__wrap .partner__wrap
 {
  border: 0 solid #ddd !important;
  padding: 1% !important;
  width: 94% !important;
  margin: 1rem auto !important;
  max-width: 800px !important;
  overflow: hidden;
  background: #ffffff !important;
}
.payment__wrap.confirm__content {
  margin: auto !important;
  padding: 1% !important;
  width: 94% !important;
}
.detail__wrap.confirm__content .layout.detail__total {
  padding: 24px 1% !important;
}
@supports (-webkit-line-clamp:2){
  .ticket-card__title {
    overflow: visible !important;
  }
}
.ticket__wrap .detail__wrap.confirm__content{
  padding: 1%!important;
}
.payment__detail {
  margin: 0 !important;
  padding: 1% 0;
}
.ticket__wrap .breadcrumbs {
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .lottery-priority__text-selector {
    padding: 12px !important;
  }
}
/* 2023.02.27 いつの間にか勝手に追加されたもののせいでおかしくなっているのを解消   より*/
button.theme--light.v-btn:not(.v-btn--flat):not(.v-btn--text):not(.v-btn--outlined){
  max-height:999px!important;
}
.v-data-table {
  width: 100%;
}
.detail__ticket__subtotal{
  background:#fff !important;
}
/* マイチケット */
.ticket-card-detail .v-card__actions {
  justify-content: center;
}
.ticket-card__title__name {
  margin: 8px 0 0 !important;
}


/* ---------------------------------------------------------
  新規登録
------------------------------------------------------------*/
.item__postal-code .v-input{
  width:60%;
  max-width:60% !important;
}
.item__postal-code  .v-btn{
  width: calc(40% - 16px);
  min-height:3rem;
}
.login-form__mail__label,
.login-form__password__label,
.mypage-title__text,
.profile-contents__detail__label,
.password__title,
.mail-address__title,
.my-ticket-contents__title,
.mail-address__title,
.info-top__card__label,
.register__mail__label,
.register__mail__label span,
.register__password__label,
.register__password__label span,
.item__label,.item__label span{
  font-size:1.3rem !important;
  color: #000000 !important;
  font-weight: 900 !important;
}
.mypage-sp-title__content .mypage-sp-title__content__image{
  display: none;
}
.mypage-sp-title__content .notranslate{
  display: none;
}
.mypage-sp-title__content{
  position: relative;
  background:none !important;
  padding: 10px;
  border-bottom: 3px solid var(--title-border-color) !important;
  display: block;
  text-align: center;
  width: 100%;
}

.mypage-sp-title__content:before{
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 20px);
  border-width: 20px;
  border-style: solid;
  bottom: -36px;
  border-color: var(--main-bg-color) transparent transparent transparent;
  z-index: 1;
}
.mypage-sp-title__content:after{
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 20px);
  border-width: 20px;
  border-style: solid;
  bottom: -40px;
  border-color: var(--title-border-color) transparent transparent transparent;
}
.mypage-sp-title__content__text{

  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 2rem;
  line-height: 1.1;
  text-align: center;
  color: var(--title-color) !important;
  text-shadow: 2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 2px 0px 1px #ffffff, 0px 2px 1px #ffffff, -2px 0px 1px #ffffff, 0px -2px 1px #ffffff;
  font-weight: 900;
}
.register__password .register__password__label__require,
.register__mail__label .register__mail__label__require,
.item__label__required,
.item__label .item__label__required{
  color: #ff0000 !important;
  font-size: 1rem !important;
}
.profile-contents__detail{
  margin-bottom: 20px;
}
.profile-contents__detail__divider.v-divider{
  display: none;
}
.item__wrap{
  margin-bottom:20px;
}
.item__postal-code{
  flex-wrap:wrap;
}
.item__postal-code:before {
  content: "※郵便番号にハイフン「-」は含めないでください";
  display: block;
  width: 100%;
  color:#ff0000;
  font-size:0.9rem;
}

span.item__label__required{
  font-family: 'M PLUS 1', sans-serif !important;
  font-size:1rem !important;
  font-weight: 900 !important;
}
.item__postal-code:after{
  content:"以下は必須ではありません。";
  display:block;
  width:100%;
  margin-top:10px;
  font-size:0.8rem;


}
.spacer +.item__label{
  display: block;
  margin-top: 20px;
}
/* ---------------------------------------------------------
登録
------------------------------------------------------------*/
.register-lang {
  display: none!important;
}
.booth-card__category__margin{
  margin-top: 10px !important;
}


.register-passcode__code__label:before{
  content: "認証コードを入力してください";
  display: block;
  font-size:1.3rem;
  color:#000;
}
.register-passcode__code__label{
  font-size:0;
}
.register-passcode__code__label:after{
  content: "お送りしたメールが迷惑メールに振り分けられている場合がございます。ご注意ください。";
  display: block;
  font-size:1rem;
  color:#000;
  font-weight:normal;
}

.agreement__button__label{
  width:100%;
}
.register-layout__contents .agreement__button__label{
  font-size: 0 !important;
  white-space: normal;
  text-align: left;
}
.register-layout__contents .agreement__button__label:after{
  content: "上記リンク先の 「利用規約」と「メール配信について」を確認し、同意します。";
  font-size:1rem !important;
  color:#000;
  font-weight:normal;
}

.agreement__button{
  align-items: baseline !important;
}
.agreement__button .checkbox{
  position: relative;
  top: 3px;
}


/* ---------------------------------------------------------
規約
------------------------------------------------------------*/
.policy__wrap,
.terms__wrap{
  max-width: 1000px !important;
  background: none !important;
  width: 94% !important;
  margin: 0 auto !important;
  padding: 20px 0 !important;
  font-size: 0.9rem;
}
.policy__wrap .title,
.terms__wrap .title{
  display: none;
}
.policy__wrap p,
.terms__wrap p{
  padding: 0;
}
.policy__wrap .widget-title__text,
.terms__wrap .widget-title__text{
  margin-top: 0 !important;
}
.policy__wrap .txt_L,
.terms__wrap .txt_L{
  margin-bottom: 20px;
}
.policy__wrap ol + .txt_L,
.policy__wrap ul + .txt_L,
.policy__wrap p + .txt_L,
.terms__wrap ol + .txt_L,
.terms__wrap ul + .txt_L,
.terms__wrap p + .txt_L{
  margin-top: 50px;
}
.policy__wrap ul,
.policy__wrap ol,
.terms__wrap ul,
.terms__wrap ol{
  margin-left: 1.5rem;
}
.policy__wrap p+ul,
.policy__wrap p+ol,
.terms__wrap p+ul,
.terms__wrap p+ol{
  margin-top: 10px;
}
.policy__wrap li+li,
.terms__wrap li+li{
  margin-top: 8px;
}

.ol_kakko{
  list-style: none;
}
.ol_kakko > li  {
  list-style-type:none;
  counter-increment: cnt;
  text-indent:-1.5em;
  padding:0;
}

.ol_kakko > li:before  {
  display: marker;
  content: "("counter(cnt) ") ";
}

.ol_katakana{
  list-style: katakana;
  text-indent:0em;
}
.ol_katakana li{
  list-style: katakana;
}



.text_right{
  text-align: right;
}

.portal-top-button{
  display: none;
}

.booth-list-title__layout-selector{
  display:none;
}
.booth-list-title__wrap.booth-list-title__wrap__list .justify-space-between{
  text-align: center !important;
  justify-content: center !important;
}


.richtext__container{
  font-size: 1rem;
}
.richtext__container a{
  font-size: 1rem;
}

.main-header{
  overflow: hidden;
}

/* 2023.02.22 アップデートに伴うレイアウト崩れのため追加（bravesoftより） */
.theme--light.v-btn:not(.v-btn--flat):not(.v-btn--text):not(.v-btn--outlined) {
    max-height: 48px;
}
.v-messages__message {
    line-height: 18px;
}
div.item__prefecture-and-address1{
    display: block !important;
}
div.item__address3{
    display: none !important;
}
div.item__address1{
    width: 100% !important;
}

/* メニュー（ログイン） */

div#logout-dialog-wrap {
  width: 400px;
  padding: 30px 20px;
  background-color: #fafafa !important;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  border-radius: 4px;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
  z-index: 106;
}
div#logout-dialog-wrap div#logout-dialog-buttons-wrap button {
  color: #fff !important;
}
div#logout-dialog-wrap div#logout-dialog-buttons-wrap button {
  color: #fff !important;
}
div#logout-dialog-wrap div#logout-dialog-buttons-wrap button .v-btn__content {
  align-items: center;
  color: inherit;
  display: flex;
  flex: 1 0 auto;
  justify-content: inherit;
  line-height: normal;
  position: relative;
}
@media screen and (max-width: 600px) {
  div#logout-dialog-wrap {
    max-width: 90%;
  }
  div#logout-dialog-wrap div#logout-dialog-buttons-wrap {
    margin: 20px 0 0;
  }
}
.v-list-item__title.menu__contents .tab-icon {
  display: flex;
  align-items: center;
}
.v-list-item__title.menu__contents .tab-icon img {
  vertical-align: bottom;
  border-radius: 0;
}
div#logout-dialog-wrap div#logout-dialog-buttons-wrap{
  margin:1rem auto 0;
  justify-content: center;
}
div#logout-dialog-wrap div#logout-dialog-buttons-wrap button,
.layout.item__name .layout.btn-wrap button.layout.btn{
    background-color: var(--link-color);
    border-color: var(--link-color);
    border-radius:5rem;
    padding: 1rem 1.5rem;
    height: auto;
    margin:5px;
}


/*
--------------------------------------------------------------------------------------------------- mypage.css
TODO：
マイメニューからマイチケット一覧とログアウト以外を削除
順番に依存するため、絶対に要素が追加したら修正が必要
 */
.mypage-top-layout__wrap .col-6:nth-child(1),
.mypage-top-layout__wrap .col-6:nth-child(2)
{
  display:none !important;
}
.mypage-contents__menu__title + div,
.mypage-contents__menu__title + div + div{
  display:none !important;
}
.mypage-contents__menu hr{
  display:none !important;
}
.sp-menu-spacer{
  display: none !important;
}
.mypage-contents__menu__logout{
  display:none !important;
}
.flex.mypage-contents__menu{
  flex:none;
}


/*
--------------------------------------------------------------------------------------------------- regist.css
TODO：
未入会野た場合に入会用のボタンを表示する画面
 */

.profile__wrap[data-v-374c2725]{
  background: transparent !important;
}
[data-v-374c2725]{
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  min-height: 60vh;

}
[data-v-374c2725] .profile-contents{
  max-width: 600px;
  width: 94%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 8% 4%;
}
div#logout-dialog-wrap div#logout-dialog-buttons-wrap button,
.layout.item__name .layout.btn-wrap button.layout.btn{
  text-align:center;
  color:#fff !important;
  justify-content:center;
  max-width:9999px;
  min-width:1px;

}
.layout.item__name,
.layout.item__name .layout.btn-wrap{
  display: flex;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-top:10px;
}
.item__label .item__label__text{
  font-weight: normal !important;
  font-size: 1rem !important;
}

/* ------------------------------------------------------------
チケット機能内のマイチケットを非表示にし、公開中を中央表示に  bs修正231013
------------------------------------------------------------ */

/* マイチケット非表示 */
.page-selector__my-ticket {
  display: none;
}
/* PC、「公開中」のずれ調整 */
.page-selector__ticket {
  margin: 0 !important;
}
/* SP、「公開中」の中央揃え */
.page-selector__ticket{
  max-width: none !important;
  padding: 0 30px !important;
}
/* チケット内メニューの「マイチケット」 */
.v-application.v-application--is-ltr.theme--light:not(.event__wrap) .v-list-item.theme--light:not([aria-selected="false"]):nth-child(2) {
  display: none;
}

/* ------------------------------------------------------------
各コンテンツ一覧に「※新着順」追加 2023.10.23 ※2023.11.17コメントアウト
------------------------------------------------------------ */
/*.booth__wrap .booth-list__wrap:before {
    content: "※新着順";
    font-size: 0.8rem;
    text-align: right;
    display: block;
    margin-bottom: 0.5rem;
}*/

/* ------------------------------------------------------------
メニューとログアウトポップアップの重なり順がおかしい件の修正 2023.10.24
------------------------------------------------------------ */
#logout-dialog{
    z-index:1000;
}
/* ------------------------------------------------------------
マイメニューのクレジットカード部分のスタイル調整　2023.12.27
------------------------------------------------------------ */
.registered-credit-card {
  margin: 2rem auto !important;
  width: 94%;
  display: block;
}

@media screen and (min-width: 640px){
  .registered-credit-card{
    width:100%;
  }
}



/*
---------------------------------------------------------------------------------------------------
24.09.11　overlayのindex変更、SPのときの位置変更
 */
@media screen and (max-width: 600px) {
    .mypage__layout[data-v-f7751796] {
        margin-top: 3rem;
    }
}
/* PC */
@media screen and (min-width: 640px){
    button.mypage-title__button.v-btn--depressed,
    button.mypage-title__button.v-btn--depressed:hover {
        background-color: #fff !important;
        color: #0066ff !important;
        border: 2px solid #0467fb !important;
    }
}
/* SP */
@media screen and (max-width: 639px){
    button.mypage-title__button.v-btn--depressed:hover,
    button.mypage-title__button.v-btn--depressed {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 50%;
        top: 8px;
        background-color: #fff !important;
        color: #0066ff !important;
        border: 2px solid #0467fb !important;
    }
}




/* ----------------------------------------------------- */
/* おはパー2024用スタイル */
/* ----------------------------------------------------- */

.okita .booth-title{
  background-color: var(--color-okita) !important;
}
.okita .booth-title:before {
  background: var(--color-okita);
}
.nemurin .booth-title{
  background-color: var(--color-nemurin) !important;
}
.nemurin .booth-title:before {
  background: var(--color-nemurin);
}
.mezame .booth-title{
  background-color: var(--color-mezame) !important;
}
.mezame .booth-title:before {
  background: var(--color-mezame);
}

.okita .booth-return a {
  background: var(--color-okita) !important;!i;!;
}
.mezame .booth-return a {
  background: var(--color-mezame) !important;!i;!;
}
.nemurin .booth-return a {
  background: var(--color-nemurin) !important;!i;!;
}

.okita .booth-title span:before,
.nemurin .booth-title span:before,
.mezame .booth-title span:before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
.nemurin .booth-title span:before {
  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-c2926838-cd3e-4948-a8a9-3a89541a6385.png) bottom center no-repeat;
  background-size: contain;
}
.okita .booth-title span:before {
  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-9d23ab17-1590-4690-8860-9ef2d8db8f40.png) bottom center no-repeat;
  background-size: contain;
}
.mezame .booth-title span:before {
  background: url(https://ohaasa-evt.abcid.asahi.co.jp/images/569/533/5499/top-40fede01-9a34-4771-a201-deb0e40987dd.png) bottom center no-repeat;
  background-size: contain;
}

.booth-imglist .text{
  margin:0.5rem 0 1rem;
}
.booth-imglist .img {
    border: 1px solid #ddd;
}
.booth-imglist .img img{
    display: block;
}
.booth-note {
  margin-bottom: 68px;
}

.booth-main + .booth-main {
  margin-top: 100px;
}

.booth-main .info-main dd {
  font-size: 1rem;
  font-weight: normal;
}


.booth-main .info-main dt {
  font-size: 1rem;
  font-weight: normal;
  color: #000;
}
.okita .booth-main .info-main dt{
  background: #b6dcff;
  border: 2px solid #b6dcff;
}
.nemurin .booth-main .info-main dt{
  background: #ffe899;
  border: 2px solid #ffe899;
}
.mezame .booth-main .info-main dt{
  background: #ffc2cd;
  border: 2px solid #ffc2cd;
}

.booth-detail p{
  font-size: 1rem;
}
.booth-detail p {
  font-weight: normal !important;
}

.booth-link a{
  font-size: 1rem !important;
}

.ticket-link {
  margin: 20px auto;
  width: auto;
  display: flex;
  justify-content: center;
}
.ticket-link a {
  border: 1px solid var(--more-bg-color);
  padding: 0.6rem 2rem !important;
  color: var(--more-bg-color) !important;
  min-width: 164px !important;
  border-radius: 5rem !important;
  box-shadow: none !important;
  text-align: center;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.ticket-link a + a{
  margin-left:10px;
}
.ticket-link a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.85rem;
  margin: auto;
  vertical-align: middle;
  width: 0.6rem;
  height: 0.64rem;
  border-bottom: 2px solid var(--more-bg-color);
  border-right: 2px solid var(--more-bg-color);
  transform: rotate(45deg);
  box-shadow: none !important;
}


/* PC */
@media screen and (min-width: 640px){
  .booth-about{
      display:flex;
  }
  .booth-about > div{
      width:50%;
  }
  .booth-about.booth-about_column{
        flex-direction: column;
  }
  .booth-about.booth-about_column > div{
        width:100%;
        padding-left: 0;
  }
  .booth-about.booth-about_column > div p{
    padding:0;
  }
  .booth-about.booth-about_column > div img{
    max-width:700px;
    display:block;
    margin:0 auto;
  }
  .booth-detail{
      padding-left: 1rem;
  }
  .onlySP{
      display: none;
  }
}
/* SP */
@media screen and (max-width: 639px){
  .onlyPC{
      display: none;
  }
  .booth-detail p{
      font-size: 1rem !important;
  }
  .card__lottery-date {
      font-size: 0.7rem;
  }
  p.ticket-card-title__text {
      font-size: 1rem !important;
  }
  p.lottery-label {
      font-size: 0.8rem;
  }
}

/*--------------------------------------- */
.booth-ticket-info{
  position:relative;
}

.booth-subtitle {
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 3rem;
  margin-bottom:1rem;
  position: sticky;
  top: 0;
  background: #ffffff !important;
  width: 100%;
  z-index: 1;
}

.booth-subtitle:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.okita .booth-subtitle{
  border-bottom:2px solid var(--color-okita);
}
.okita .booth-subtitle:before {
  background: var(--color-okita);
}
.nemurin .booth-subtitle{
  border-bottom:2px solid var(--color-nemurin);
}
.nemurin .booth-subtitle:before {
  background: var(--color-nemurin);
}
.mezame .booth-subtitle{
  border-bottom:2px solid var(--color-mezame);
}
.mezame .booth-subtitle:before {
  background: var(--color-mezame);
}
.ticket_guide{
  text-align:right;
  margin-bottom:100px;
  margin-top: 1rem;
}
.terms{
  padding:0 1rem;
}
.booth-main .ticket_guide a{
  display: inline-block;
  background-color: #000!important;
  border: none !important;
  padding: 0.5rem 2rem !important;
  color: #ffffff !important;
  min-width: 164px !important;
  border-radius: 5rem !important;
  box-shadow: none !important;
  text-align: center;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.ticket_guide a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.2rem;
  margin: auto;
  vertical-align: middle;
  width: 0.6rem;
  height: 0.64rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-shadow: none !important;
}
.booth-ticket_list{
  padding-bottom:5rem;
}

.booth-ticket_list-list{
  width:100%;
}

.ticket__card + .ticket__card{
  margin-top:2rem !important;
}
.card__lottery-date {
  padding: 0 1rem 1rem;
  text-align: left;
}
.lottery-label {
  border: 1px solid #000;
  display: inline-block;
  padding: 0.3rem 0.4rem !important;
  font-size:0.9rem;
  line-height:1;
}
.ticket-card-title__text{
  font-size:1rem;
  padding:0 !important;
  font-size:1rem !important;
}
.card__title{
  padding:1rem 1rem 0.5rem 1rem!important;
  position: relative;
  margin: 0 !important;
}
.ticket-mark {
    position: absolute;
    right: 10px;
    top: -2px;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    clip-path: polygon(100% 0, 100% 100%, 50% 88%, 0 100%, 0% 0%);
    border-top: 2px solid rgba(0,0,0,0.1);
    padding-bottom: 1%;
}
.okita .ticket-mark{
    background: var(--color-okita);
}
.nemurin .ticket-mark{
    background: var(--color-nemurin);
}
.mezame .ticket-mark{
    background: var(--color-mezame);
}

.booth-ticket-sub {
  width: calc(100% + 64px);
  left: -32px;
  position: relative;
  padding: 1rem 32px 2rem;
  background: #eaf5ff;
  display: flex;
  flex-direction: column;
}
.booth-ticket-sub .booth-subtitle{
    order:1;
}
.ticket_top .info-main{
    order:3;
}
.ticket_top .booth-ticket-sub-list{
    order:2;
}
.ticket_bottom .info-main{
    order:2;
}
.ticket_bottom .booth-ticket-sub-list{
    order:3;
}


.booth-ticket-sub:last-of-type {
  margin-bottom: -32px;
  border-radius: 0 0 20px 20px;
}

.booth-ticket-sub .booth-subtitle{
  background: #eaf5ff !important;
}

.okita .booth-ticket-sub{
  background: #eaf5ff;
}
.okita .booth-ticket-sub .booth-subtitle{
  background: #eaf5ff !important;
}
.nemurin .booth-ticket-sub{
  background: #faf9e7;
}
.nemurin .booth-ticket-sub .booth-subtitle{
  background: #faf9e7 !important;
}
.mezame .booth-ticket-sub{
  background: #fcf6fb;
}
.mezame .booth-ticket-sub .booth-subtitle{
  background: #fcf6fb !important;
}

.booth-ticket-sub .booth-subtitle:before{
  display: none;
}
.booth-ticket-info{
    margin-top:1rem;
}
.booth-ticket-info > div:nth-of-type(2n-1){
  background: #fff;
}
.booth-ticket-info > div:nth-of-type(2n-1) .booth-subtitle{
  background: #fff !important;
}
.booth-ticket-sub-list {
  display: grid;
  grid-gap: 2.1rem 2rem;
}

a.v-card.card__wrap{
    color:#000 !important;
}
.card-image{
    border-bottom:1px dashed #ddd;
}



/* SP */
@media screen and (max-width: 639px){
  .booth-main .info-main dt {
      width:100%;
      font-size:1rem;
      margin-right: 0;
  }
  .booth-main .info-main dd {
      width:100%;
      font-size: 0.9rem;
      padding: 0 0.9rem;
  }
  .booth-main .info-main dt:nth-last-of-type(1){
      margin-bottom:1rem !important;
  }
  .booth-ticket-sub{
      width: calc(90% + 64px);
      left: calc(5% - 32px);
      padding: 1rem 15px 2rem;
  }
  .booth-ticket-sub:last-of-type {
      margin-bottom: -12px;
  }
  .booth-ticket-sub-list {
      padding: 2rem 1rem;
      grid-template-columns: auto;
  }
  .booth-ticket-info .booth-ticket-sub-list .card__wrap.ticket__card{
      margin-top:0 !important;
  }
  .booth-ticket_list-list-contents{
      padding: 0 1rem;
  }
  .booth-ticket-sub .booth-subtitle{
      font-size: 1.1rem;
      padding: 0.8rem 0;
  }
  .booth-subtitle{
      padding: 0.8rem 0;
  }


}
/* PC */
@media screen and (min-width: 640px){
  .booth-main .info-main dd {
      border-bottom:1px dashed #afafaf;
      padding:0.5rem 0 1rem;
      margin-bottom: 1rem;
  }
  .booth-main .info-main dt {
      margin-bottom:2rem;
  }
  .booth-ticket_list-list-contents{
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 30px;
      padding: 2rem 0;
  }
  .booth-ticket_list-list-contents .v-card.card__wrap + .v-card.card__wrap{
      margin-top: 0 !important;
  }
  .booth-ticket-sub-list {
      grid-template-columns: minmax(auto, 450px) minmax(auto, 450px);
      justify-content:center;
      padding: 2rem 0 1rem;
  }
  .booth-ticket-info .booth-ticket-sub-list .card__wrap.ticket__card{
      margin-top:0 !important;
  }
  .booth-subtitle {
      padding: 0.8rem 0;
      margin-top: 2rem;
  }
}
.ticket-price {
    padding: 0 1rem 1rem;
    text-align: right;
}

/*--- fixed-link -------------------- */

.material-symbols-outlined{
  font-family: "Material Symbols Outlined" !important;
}
.fixed-link {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: flex;
  gap: 10px;
  padding: 4%;
}

.fixed-link a {
  border: 4px solid #ffffff;
  background: var(--color-okita);
  border-radius: 50%;
  padding: 13px;
  font-size: 2rem;
  text-align: center;
  width: 5rem;
  height: 5rem;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  position:relative;
  flex-direction: column;
}
.okita .fixed-link a {
  background: var(--color-okita);
}
.nemurin .fixed-link a {
  background: var(--color-nemurin);
}
.mezame .fixed-link a {
  background: var(--color-mezame);
}
.fixed-link a:before{
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  left: 0.9rem;
  top: 0.1rem;
  width: 21px;
  height: 19px;
  opacity: 0.2;
  transform: rotate(49deg);
  transform-origin: left top;
  clip-path: ellipse(20% 50% at 50% 50%);
}
.fixed-link a span{
  font-size: 2rem;
  color:#fff !important;
}
.fixed-link a span:nth-of-type(2){
  font-size: 0.7rem;
  color:#fff !important;
  line-height: 1;
}
span.ticket_icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20id%3D%22_%E7%B9%9D%EF%BD%AC%E7%B9%A7%EF%BD%A4%E7%B9%9D%EF%BD%A4%E7%B9%9D%EF%BD%BC_1%22%20data-name%3D%22%E7%B9%9D%EF%BD%AC%E7%B9%A7%EF%BD%A4%E7%B9%9D%EF%BD%A4%E7%B9%9D%EF%BD%BC_1%22%20viewBox%3D%220%200%2042.92%2027.31%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M42.37%2010.01c.33-.07.56-.35.56-.69V3.13c0-.84-.28-1.58-.83-2.19C41.53.32%2040.83%200%2040.02%200H2.91C2.1%200%201.4.32.83.94.28%201.55%200%202.28%200%203.13v6.19c0%20.33.23.62.56.69.74.15%201.34.56%201.84%201.23.51.69.76%201.48.76%202.42s-.25%201.71-.76%202.39c-.5.67-1.11%201.08-1.86%201.26-.32.08-.54.36-.54.68v6.19c0%20.84.28%201.58.83%202.19.57.62%201.27.94%202.08.94h37.11c.81%200%201.51-.32%202.08-.94.55-.61.83-1.34.83-2.19v-6.19c0-.32-.22-.61-.54-.68-.75-.18-1.36-.59-1.86-1.26-.51-.68-.76-1.46-.76-2.39s.25-1.72.76-2.42c.5-.67%201.1-1.08%201.84-1.23ZM39.32%207.2c-.88.72-1.62%201.6-2.19%202.63-.64%201.15-.97%202.44-.97%203.82s.33%202.67.97%203.82a9.024%209.024%200%200%200%202.19%202.63v3.37H3.61V20.1c.9-.72%201.65-1.61%202.21-2.64.63-1.15.95-2.44.95-3.82s-.32-2.67-.95-3.82a8.681%208.681%200%200%200-2.21-2.64V3.81h35.71v3.37Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20d%3D%22M28.89%2021.78c.48%200%20.92-.19%201.27-.54s.54-.79.54-1.27-.19-.92-.54-1.27c-.35-.35-.79-.54-1.27-.54s-.92.19-1.27.54c-.35.35-.54.79-.54%201.27s.19.92.54%201.27.79.54%201.27.54ZM28.89%2015.64c.48%200%20.92-.19%201.27-.54.35-.35.54-.79.54-1.27s-.19-.92-.54-1.27c-.35-.35-.79-.54-1.27-.54s-.92.19-1.27.54c-.35.35-.54.79-.54%201.27s.19.92.54%201.27c.35.35.79.54%201.27.54ZM28.89%209.5c.48%200%20.92-.19%201.27-.54.35-.35.54-.79.54-1.27s-.19-.92-.54-1.27c-.35-.35-.79-.54-1.27-.54s-.92.19-1.27.54c-.35.35-.54.79-.54%201.27s.19.92.54%201.27c.35.35.79.54%201.27.54Z%22%20class%3D%22cls-1%22%2F%3E%3C%2Fsvg%3E');    display: inline-block;
    background-position:center;
    width: 1.1em;
    height: 1.1rem;
    margin:0 auto;
    display:flex;
    justify-content:center;
    align-content:center;
}
.fixed-link .ticket_icon{
  margin-bottom:0.3rem;
}

/* PC */
@media screen and (min-width: 640px){
  .fixed-link {
      flex-direction: column;
  }
  .fixed-link{
      padding-right: 0;
      right: 30px;
  }
}
@media screen and (max-width: 639px){

}
.card-image {
    background: #fff;
}

/*--- ticket終了 -------------------- */

.card__wrap.ticket__end {
    pointer-events: none;
    background: #e7e0e0 !important;
    box-shadow: none !important;
    position:relative;
    color:#7e7e7e !important;
    border: 1px solid #f1efef !important;
}
.card__wrap.ticket__end .lottery-label{
    border:1px solid #7e7e7e;
}
.card__wrap.ticket__end .card-image{
    position:relative;
}
.card__wrap.ticket__end .card-image:after{
    content:"終了しました";
    display:block;
    position:absolute;
    width:100%;
    height:2rem;
    background:#535050;
    text-align:center;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transform-origin:right bottom;
    right:0%;
    bottom:0;
    opacity:0.9;   
}
div.card__wrap .ticket-mark{
    background:#c1baba;
}

/*--- booth-bnr -------------------- */

.booth-bnr{
    margin-top:100px;
}
.booth-bnr_list {
    display: flex;
    justify-content: center;
    align-items: center;
}
.booth-bnr a,
.booth-bnr div{
    margin:0 auto;
    width: 94%;
    max-width: 600px;
}
.booth-bnr a{
    display:block;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.booth-bnr img{
    display:block;
    width:auto;
    hegiht:auto;
    max-width:100%;
}

.booth-bnr div span{
    display:flex;
    display:block;
    width:100%;
    height:100%;
    justify-content:center;
    align-items:center;
    border:2px solid #c2c2c2;
    padding:1rem;
    background:#fff;
    color: #888888;
    border-radius:5rem;
    text-align:center;
}
.booth-bnr a span{
    background-color: var(--more-bg-color) !important;
    border: none !important;
    padding: 1rem 2rem 1rem 1rem !important;
    color: #ffffff !important;
    min-width: 164px !important;
    border-radius: 5rem !important;
    box-shadow: none !important;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}
.booth-bnr a span:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.2rem;
    margin: auto;
    vertical-align: middle;
    width: 0.6rem;
    height: 0.64rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    box-shadow: none !important;
}

.booth-bnr.booth-bnr_line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
}
.booth-bnr.booth-bnr_line a,
.booth-bnr.booth-bnr_line div{
  width:100%;
}
.booth-bnr.booth-bnr_colmn {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin:100px auto 0;
}


/*
---------------------------------------------------------------------------------------------------
24.09.03　領収書の宛名削除
 */
section.item__wrap.form-receipt-addressee.form-receipt-addressee__credit{
  display:none;
}
section.confirm__wrap > section.payment__wrap.confirm__content > div:nth-child(4) {
    display: none;
}
/*
---------------------------------------------------------------------------------------------------
24.07.16 スマホでカートのボタンが丸いのを修正
 */

.cart-next-button__description .cart-next-button__content {
    border-radius: 0 !important;
    max-height:auto !important;
    padding:2rem !important;
}

/*
--------------------------------------------------------------------------------------------------- 新規追加
参加者情報の入力の書式を他と合わせる
*/
.partner__wrap .partner__title{
  font-weight: bold;
  padding-left:0 !important;
}

.partner__wrap{
  background: transparent !important;
  width:94% !important;
  padding: 0 !important;
}
.profile__wrap .v-form,
.partner__wrap .v-form{
  padding: 0 !important;
}
.partner__wrap.confirm__content{
  padding:0 !important;
}
.partner__title__text{
  font-weight:bold;
}
.partner__ticket .partner__ticket__title{
  font-size:1rem !important;
  border-bottom:none !important;
  display:none;
}
.partner__ticket .partner__detail__label{
  width:auto !important;
  color:#000 !important;
  font-size:1rem !important;
  padding-right: 1em;
}
.partner__ticket .partner__detail__content{
  text-align:left !important;
  margin-left:0;
  font-weight:normal;
  font-size:1rem !important;
}
.detail__ticket .detail__ticket__content,
.profile__detail .profile__detail__content{
  font-weight:normal;
  margin-left:0;
}
.partner__content .partner__detail{
  margin:0;
}
.partner__content .layout.partner__detail{
  padding:10px;
  padding-left:0;
}
.profile__wrap.confirm__content{
  border-radius:10px !important;
  padding:10px !important;
}
.partner__ticket .partner__content{
  margin:0;
}
.partner__wrap .partner__title{
  padding: 0 0 0 10px;
}
.confirm__content .profile__title, .confirm__content .detail__title, .profile__wrap .profile__title{
  padding-left:0 !important;
}
.confirm__content .profile__detail,
.confirm__content .detail__ticket{
  padding: 0 !important;
}
.partner__wrap .partner__ticket__title{
  margin : 0 !important;
  display:none !important;
}
.item__label{
  margin-top:0 !important;
}
.detail__wrap.confirm__content, .profile__wrap.confirm__content, .partner__wrap.confirm__content{
  padding:1rem !important;
  border-radius: var(--radius-size);
}



/* -- 24.08.16 背景に灰色が設定されているので削除 -- */
.ticket__wrap > section {
    background: none !important;
}

section[page="my-ticket"] {
    background: none !important;
}

/* -- 24.09.17　新たなmin-widthが追加されていたので相殺/プロフィール上部に隙間追加 -- */
.profile-contents {
    width: 100%;
    padding: 3rem 0;
}
.profile__layout {
    min-width: auto !important;
}
.mypage__layout{
    min-width: auto !important;
}
.ticket__wrap{
    min-width: auto !important;
}
.ticket-total{
    min-width: auto !important;
}
/* -- 24.09.17　プロフィール文言中央寄せ -- */
.profile-contents .item__label__text {
    margin: auto;
}


/* ------------------------------------------------------------
ticket周りデザインあわせ 241003
------------------------------------------------------------ */
/* 100%強制 */
.ticket__contents__col__row{
    width: 90dvw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width:1000px;
}
/* ボタン下の隙間 */
.cart-next-button__description{
    margin-top:0!important;
}
/* ticketの下に余白がない */
.ticket__contents {
    padding-bottom: 80px;
}
section.confirm__wrap {
    padding-bottom: 80px;
}
section.discount__wrap + div {
    padding-bottom: 80px;
}
/* 情報入力の背景 */
.payment-layout,
.ticket__wrap .profile__wrap {
    background: #fff !important;
    padding: 2rem !important;
    border-radius: var(--radius-size) !important;
}
/* SP */
@media screen and (max-width: 639px){
    .payment-layout,
    .ticket__wrap .profile__wrap {
        padding: 4% !important;
        border-radius: var(--radius-size) !important;
    }
}
/* クレジット入力のタイトル */
.payment-methods__title {
    font-weight: 900;
}
/* 確認 */
.confirm__wrap .detail__wrap.confirm__content,
.confirm__wrap .profile__wrap.confirm__content,
.confirm__wrap .payment__wrap.confirm__content
{
    border:none !important;
    border-radius: var(--radius-size) !important;
    padding: 1rem !important;
}
/* SP */
@media screen and (max-width: 639px){
    .confirm__wrap .detail__wrap.confirm__content,
    .confirm__wrap .profile__wrap.confirm__content,
    .confirm__wrap .payment__wrap.confirm__content
    {
        padding: 4% !important;
    }
}

.ticket__wrap .profile__button button{
    margin-bottom:0 !important;
}

/* 文字系 */
.confirm__wrap .detail__ticket__content{
    margin-left:0;
}
.confirm__wrap span.detail__ticket__multi-price {
    font-size: 1rem !important;
    font-weight: normal !important;
}
.confirm__wrap span.detail__ticket__subtotal__detail {
    font-weight: normal !important;
}

.confirm__wrap .payment__detail{
    padding:0;
}
.confirm__wrap span.payment__detail__label {
    color: #000;
    font-size: 1rem;
    padding-bottom: 0.5rem;
}
.confirm__wrap span.profile__detail__label {
    font-weight: normal;
}
.confirm__wrap span.detail__ticket__label {
    font-weight: normal;
}
.confirm__wrap .payment__detail__content {
    padding-bottom: 0.5rem;
    margin-left: 0 !important;
    font-weight: normal !important;
    font-size: 1rem !important;
}
.confirm__wrap span.payment__detail__colon {
    padding-bottom: 0.5rem;
}
.confirm__wrap .layout.payment__title {
    padding-left: 0;
}
.detail__wrap.confirm__content .layout.detail__total {
    padding-bottom: 0.5rem !important;
}
.payment-layout {
    width: 94%;
    max-width: 800px;
}

/* ticket購入時のメニュー削除 */

.ticket__wrap .ticket__menu {
    display: none;
}
.ticket__wrap .status__wrap{
    margin-top: 0;
}

/* カートに入れる時に透明で下が見えるのを変更 */
.theme--light.v-btn.v-btn--disabled:not(.v-btn--flat):not(.v-btn--text):not(.v-btn--outlined){
    background-color:#ddd!important
}

/* ------------------------------------------------------------
配布チケット   241009
------------------------------------------------------------ */
.purchase__wrap {
    background: none !important;
}

/* ------------------------------------------------------------
ticket詳細のチェック   241010
------------------------------------------------------------ */
.detail-dialog__warning {
    width: 100%;
    padding: 0 20px 20px;
}
.lottery-other-date__checkbox {
    margin: 0 !important;
    padding: 0 0 0.5rem;
}


/* ------------------------------------------------------------
申込者情報を見やすく羅列に   241112,241115
------------------------------------------------------------ */
.confirm__wrap .profile__detail__label{
    width: auto !important;
    padding-right: 0.5em;
}
.confirm__wrap .profile__detail+.profile__detail {
    padding-top: 1em !important;
}

.confirm__wrap .profile__detail,
.confirm__wrap .profile__detail > .layout{
    flex-direction:column;
    justify-content:center;
    align-items: flex-start !important;
}
.confirm__wrap span.profile__detail__colon {
    display: none;
}
.confirm__wrap span.profile__detail__label{
    display:flex;
    align-items: flex-start;
}
.confirm__wrap span.profile__detail__label:before {
    content:"";
    display: block;
    width:5px;
    height:5px;
    background:#62b94b;
    margin-right:8px;
    border-radius:50%;
    min-width: 5px;
    margin-top: calc(0.5em + 2px);
}
.confirm__wrap span.profile__detail__content{
    padding-left:13px;
    line-height: 1.2;
}
/* アンケートのボタンの色 */
.answered__back-button[data-v-67982bb6]{ background-color: #dc0707!important;}


/* ------------------------------------------------------------
アンケート終了画面での表示変更   241117
------------------------------------------------------------ */
.questionnaire__wrap .v-card .v-image__image.v-image__image--cover{
    animation:none !important;
}
.questionnaire__wrap .v-card:hover .v-image__image.v-image__image--cover{
    animation:none !important;
}

.questionnaire__wrap .answered-image__content{
    border-radius:0 !important;
    max-height: 99999px !important;
}
.questionnaire__wrap .v-card:focus, 
.questionnaire__wrap .v-card:hover, 
.questionnaire__wrap card__wrap:focus, 
.questionnaire__wrap .card__wrap:hover, 
.questionnaire__wrap .card:focus, 
.questionnaire__wrap .card:hover{
    box-shadow:0px 0px 0.5px rgba(0, 0, 0, 0.024),
          0px 0px 1.4px rgba(0, 0, 0, 0.035),
          0px 0px 3.3px rgba(0, 0, 0, 0.046),
          0px 0px 11px rgba(0, 0, 0, 0.07) !important;
}