/* 基本的にutility面の補強か、bootstrapで用意されたクラスの上書きのみ、多用しすぎ注意*/

/*--------------- Utility ---------------*/

/* font-size */
.fs-8{
    font-size: 0.8rem;
}
.fs-9{
    font-size: 0.9rem;
}
.fs-10{
    font-size: 1rem;
}
.fs-11{
    font-size: 1.1rem;
}
.fs-12{
    font-size: 1.2rem;
}
.opa0{
    opacity: 0;
}
.opa1{
    opacity: 1;
}


/*--------------- bootstrap ---------------*/

html{
    font-size: 14px;
}

/* table */
.card-title {
    font-size: 1.1rem;
}
.card-body table tr th, .card-body table tr td{
    vertical-align: middle;
}
.content-header h1{
    font-size: 1.4rem;
}
.content-header h1 small{
    font-size: 0.9rem;
    margin-left: 0.9rem;
    color: #777;
}
.pagination{
    justify-content: flex-end;
    margin-right: -8px;
    margin-bottom: initial;
}
.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin-left: 4px;
    padding: initial;
    color: #888;
    border: initial;
    border-radius: 4px;
    font-weight: 500;
}
.page-link:hover {
    color: #888;
    background-color: #F7F8F9;
}
.page-item.active .page-link {
    color: #FFF;
    background-color: #4BA6D7;
    z-index: initial;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    position: relative;
    color: #FFF;
}
.page-item:first-child .page-link::before,
.page-item:last-child .page-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
    background-size: 16px 16px;
}
.page-item:first-child .page-link::before {
    background-image: url("/images/common/icon/arrow_left.svg");
}
.page-item:last-child .page-link::before {
    background-image: url("/images/common/icon/arrow_right.svg");
}
.page-item.disabled:first-child .page-link::before {
    background-image: url("/images/common/icon/arrow_left_disabled.svg");
}
.page-item.disabled:last-child .page-link::before {
    background-image: url("/images/common/icon/arrow_right_disabled.svg");
}

/*--------------- ticket_flow用スタイル ---------------*/
#ticket-flow .select-setting-list{
    transition: 1s;
}
#ticket-flow .select-setting-list i{
    cursor: pointer;
}
#ticket-flow .select-setting-list span{
    cursor: pointer;
}
#ticket-flow .select-setting-list div{
    cursor: pointer;
}
#ticket-flow .select-setting-list:after{
    content: "";
    display: block;
    width: 0;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    border-bottom: 2px solid #2699FB;
    margin: auto;
}
#ticket-flow .area:hover:after{
    width: 16rem;
}
#ticket-flow .ticket_type:hover:after{
    width: 14.3rem;
}
#ticket-flow .price:hover:after{
    width: 7rem;
}
#ticket-flow .schedule:hover:after{
    width: 13rem;
}

.balloon3-right {
    position: relative;
    display: inline-block;
    margin: 1.5em 15px 1.5em 0;
    padding: 0 5px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
    background: #ff8e9d;
    border-radius: 50%;
    box-sizing: border-box;
    transition: 0.5s;
}

.balloon3-right:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #ff8e9d;
    z-index: 0;
    transition: 0.5s;
}

.balloon3-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 0 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  background: #ff8e9d;
  border-radius: 50%;
  box-sizing: border-box;
  transition: 0.5s;
}

.balloon3-left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #ff8e9d;
  z-index: 0;
  transition: 0.5s;
}

.balloon3-right:hover,.balloon3-left:hover{
    font-size: 1.7rem;
    background-color: #ffcc75;
    transition: 0.5s;
}
.balloon3-right:hover:before{
    border-left: 15px solid #ffcc75;
    transition: 0.5s;
}
.balloon3-left:hover:before{
    border-right: 15px solid #ffcc75;
    transition: 0.5s;
}

.slide-enter-active {transition: all .5s ease;}
.slide-leave-active {}
.slide-enter    {transform: translateX(10px); opacity: 0;}
.slide-leave-to {transform: translateX(-10px); opacity: 0;}
.slide-leave    {opacity: 0; position: absolute;}
