@charset "utf-8";
/*
************************************************************************
 チケットストア
************************************************************************
*/
.order-info
{
    margin-top: -2.5em;
}
.order-info-box
{
    padding:1.5em;
    border-radius: 0.5em;
    background-color: var(--body-background-color);
	box-shadow: 0px -5px 5px 0px #0000000f;
}
.order-info-box .title
{
    font-size:1.4em;
    font-weight:bold;
    line-height:1.4;
}
.order-info-box .sub-title
{
    font-size:1.0em;
    font-weight:bold;
    line-height:1.4;
}
.order-info-box .spec-tabel
{
    margin-top: 1.0em;
}

.step-title
{
    border-bottom: 1px solid var(--body-border-color);
    margin-bottom: 1.0em;
}
.step-title .step
{
    display: inline-block;
    border-radius: 0.5em;
    background: var(--brand-color-grd);
    color:var(--accent-font-color);

    font-size:1.0em;

    padding:0.3em 0.5em;

    margin-bottom: 0.25em;
    line-height:1;
}
.step-title .main
{
    display:block;
    font-size:1.2em;
    font-weight: bold;
}

.ticket-list
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    
    margin:-1.0em;
}
.ticket-list-item
{
    margin:1.0em;
    width:calc(100% - 2.0em);
    flex:0 0 calc(100% - 2.0em);

    padding:1.0em;
    border:1px solid var(--body-frame-color);
    border-radius: 0.5em;

    display: flex;
    align-items: center;
    align-content: center;
}
.ticket-list-item .ticket-list-item-ope
{
    flex:0 1 auto;
    line-height:1;
} 
.ticket-list-item .ticket-list-item-ope > i
{
    color: var(--body-icon-color);
    line-height:1;
}
.ticket-list-item .ticket-list-item-ope > i.remove
{
    color: #CC3333;
    cursor:pointer;
}
.ticket-list-item .ticket-list-item-info
{
    flex:1 1 auto;
} 
.ticket-list-item-info .ticket-name
{
    margin-top:0.5em;
    line-height:1;
    font-size:1.2em;
    font-weight: bold;
}
.ticket-list-item-info .ticket-description
{
    font-size: 0.8em;
    margin-top:0.5em;
}
.ticket-list-item-info .ticket-price
{
    margin-top:0.5em;
    line-height:1;
    text-align: right;
}
.ticket-list-item-info .ticket-price .price
{
    font-size: 1.5em;
    font-weight: bold;
}
.ticket-list-item-info .ticket-price .tax
{
    font-size: 0.8em;
}
.ticket-list-item-info .ticket-amount
{
    margin-top:1.0em;
    text-align: right;
}
.ticket-list-item-info .ticket-amount .ticket-amount-input
{
    display: inline-flex;
    align-items: center;
    align-content: center;

    border-radius: 0.5em;
    overflow: hidden;
    border:1px solid var(--body-border-color);
    background:var(--brand-color-grd);

    line-height:1;
}
.ticket-list-item-info .ticket-amount .ticket-amount-input input
{
    border:0px solid transparent;
    background-color: #FFFFFF;
    text-align: right;
    width:4em;
    font-size:16px;
    line-height: 1.2;

    padding:0.25em 0.5em;
}
.ticket-list-item-info .ticket-amount .ticket-amount-input .count-up,
.ticket-list-item-info .ticket-amount .ticket-amount-input .count-down
{
	cursor: pointer;
	color: #FFFFFF;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ticket-list-item.none-item
{
    background-color: #EFEFEF;
    cursor:pointer;
}
.ticket-list-item.none-item .ticket-name
{
    margin-top:0.0em;
    color:#999999;
}


/* ################################################################################################ */
/* ## TAB						 ################################################################## */
/* ################################################################################################ */
@media screen and (max-width:1040px) {
}

/* ################################################################################################ */
/* ## スマホサイト用スタイル ###################################################################### */
/* ################################################################################################ */
@media screen and (max-width:640px) {
}
