@charset "UTF-8";
/* TODO 後で一つにまとめる ファイル名は仮 */

/*-------------------------------
全体で使う20pxのマージン等レイアウト用
-------------------------------*/
.base-padding-wrapper {
    padding: 20px;
}

/*-------------------------------
config
-------------------------------*/
/* 上下左右真ん中寄せ(別途width,heightを設定する) */
.all-directions-aligncenter {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    margin: auto;
}

/*-------------------------------
見出し
-------------------------------*/
.section-title-text {
    font-family: 'Helvetica','Kozuka Gothic Pro R','小塚ゴシック Pro R','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    margin: 38px 0 20px;
}
.section-title-text.first{
    margin-top: 44px;
}


/*-------------------------------
イベント一覧に使用する矢印
-------------------------------*/
.list-arrow {
    position: relative;
}

.list-arrow:before {
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 9px;
    height: 13px;
    margin-top: -6px;
    content: '';
    background-repeat: no-repeat;
    background-position: 0 0;
}

.list-arrow.green-right:before {
    background-image: url(../../pc_images_v2/pc/common/arrowBigGreenRight.png);
}

.list-arrow.white-right:before {
    background-image: url(../../pc_images_v2/pc/common/arrowBigWhiteRight.png);
}


/* −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−
ステータス ラベル
−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
.label-status {
    display: inline-block;
    width: 100px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.7;
    text-align: center;
    color: #fff;
    margin-right: 10px;
}

/*-- 販売中 --*/
.label-status.sale {
    background-color: #ef3481;
}

/*-- 販売前 --*/
.label-status.before-sale {
    background-color: #1bb263;
}

/*-- 販売終了 --*/
.label-status.finished-sale {
    background-color: #707070;
}

/*-- 予定販売数終了 --*/
.label-status.finished-scheduled-quantity {
    background-color: #707070;
}

/*-- 受付中 --*/
.label-status.currently-accepting {
    background-color: #ef3481;
}

/*-- 受付終了 --*/
.label-status.finished-accepting {
    background-color: #707070;
}

/*-- 売切間近 --*/
.label-status.sell-out-soon {
    background-color: #FF773E;
}

/*-- 無料 --*/
.label-status.free {
    background-color: #ffb600;
}

/*-- イベント終了 --*/
/*-- TODO 色が変更であれば変更する --*/
.label-status.end-event {
    background-color: #707070;
}

/*-- イベント中止 --*/
/*-- TODO 色が変更であれば変更する --*/
.label-status.abort-event {
    background-color: #707070;
}

/*-- 抽選待ち --*/
/*-- TODO 色が変更であれば変更する --*/
.label-status.waiting {
    background-color: #1bb263;
}

/*-- 落選 --*/
/*-- TODO 色が変更であれば変更する --*/
.label-status.lost {
    background-color: #707070;
}

/*-- 当選--*/
/*-- TODO 色が変更であれば変更する --*/
.label-status.won {
    background-color: #FF773E;
}

/*-- 注文開始 --*/
.label-status.ordered {
    background-color: #1bb263;
}

/*-- 決済済 --*/
.label-status.committed {
    background-color: #ef3481;
}

/*-- キャンセル済 --*/
.label-status.canceled {
    background-color: #707070;
}

/*-- 未入金 --*/
.label-status.unpaid {
    background-color: #ea3a3c;
}

/*-- 入金済み --*/
.label-status.credited {
    background-color: #ef3481;
}

/*-- あと値決め --*/
.label-status.negime {
    background-color: #0099FF;
}


/*-- 汎用的なボタン --*/
.label-status.green {
    background-color: #19B5AF;
}

.label-status.pink {
    background-color: #EF3581;
}

.label-status.gray {
    background-color: #707070;
}


/*-- 必須 --*/
.label-required {
    display: inline-block;
    width: 50px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.7;
    text-align: center;
    color: #fff;
    background-color: #ea395f;
    margin-left: 10px;
}


/*-------------------------------
各種アイコン
-------------------------------*/
.icon-min {
    width: 12px;
    background-position: 0 0;
    background-repeat: no-repeat;
}

.icon-min.human {
    background-image: url("../../pc_images_v2/pc/common/iconArtist.png");
    padding-left: 20px;
    margin-bottom: 5px;
    line-height: 18px;
    color: #666;
}

.icon-min.clock {
    background-image: url("../../pc_images_v2/pc/common/iconOpen.png");
    padding-left: 20px;
    margin-bottom: 5px;
    line-height: 15px;
    color: #666;
}

.icon-min.pin {
    background-image: url("../../pc_images_v2/pc/common/iconMap.png");
    padding-left: 20px;
    margin-bottom: 5px;
    line-height: 13px;
    color: #666;
}

.icon-min.human.light-green {
    background-image: url("../../pc_images/top/icon_human_light_green.png");
}

.icon-min.clock.light-green {
    background-image: url("../../pc_images/top/icon_clock_light_green.png");
}

.icon-min.pin.light-green {
    background-image: url("../../pc_images/top/icon_pin_light_green.png");
}

/*-- 登録周り --*/
.icon-regist {
    width: 24px;
    height: 24px;
    background-position: 0 0;
    display: inline-block;
}
.icon-regist.note {
    background-image: url("../../pc_images/top/icon_note_green.png");
}
.icon-regist.lock {
    width: 25px;
    background-image: url("../../pc_images/top/icon_lock_green.png");
}
.icon-regist.note:after,
.icon-regist.lock:after {
    display: block;
    width: 24px;
    height: 24px;
    content: ' ';
    zoom: 1;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    -moz-transition: 0.2s opacity;
    -ms-transition: 0.2s opacity;
    -o-transition: 0.2s opacity;
    transition: 0.2s opacity;
}
.icon-regist.lock:after {
    width: 25px;
}
.icon-regist.note:after {
    background-image: url('../../pc_images/top/icon_note_green_on.png');
}
.icon-regist.lock:after {
    background-image: url('../../pc_images/top/icon_lock_green_on.png');
}



/*-------------------------------
 イベント情報の横長のリスト
-------------------------------*/
.event-list-card .outer {
    position: relative;
    display: block;
    float: left;
    width: 480px;
    height: 100px;
    margin: 0 0 20px 0;
}

.event-list-card .outer a {
    display: block;
    height: 100px;
    cursor: pointer;
    color: #666666;
}

.event-list-card .outer:first-child {
    float: left;
    margin: 0 20px 0 0;
}

.event-list-card figure {
    height: auto;
    height: 100px;
}
.event-list-card figure :not(.ticket-figure-wrapper) img,
.event-list-card .ticket-figure-wrapper {
    float: left;
    width: 100px;
    height: 100px;
}

.event-list-card .ticket-figure-wrapper {
    overflow: hidden;
}

.event-list-card .ticket-figure-wrapper img.thumb-vertical{
    width: 100%;
}

.event-list-card .ticket-figure-wrapper img.thumb-vertical[src*="images/noimage.png"]{
    height: 100%;
}

.event-list-card .ticket-figure-wrapper img.thumb-horizontal{
    position: relative;
    height: 100px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}


.event-list-card figcaption {
    display: block;
    float: left;
    height: auto;
    padding-left: 10px;
}

.event-list-card .list-title {
    width: 354px;
    margin: 4px 0;
    font-size: 15px;
    font-weight: normal;
    color: #000;
}


.event-list-card .list-text {
    overflow: hidden;
    width: 200px;
    margin-bottom: 2px;
    padding-left: 20px;
    line-height: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.event-list-card .icon-min {
    background-position: 1px 2px;
}


/* −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−
PC用大きめイベント情報リスト
−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
.event-list-card-large {
    margin-bottom: 15px;
    line-height: 1.7;
}

.event-list-card-large {
    border-top:0px solid #C9D3D3;
}

.event-list-card-large .item {
    display: table !important;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
}

.event-list-card-large .nextstep,
.event-list-card-large .livedata {
    display: table-cell;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}


.event-list-card-large .item .title {
    overflow: hidden;
    height: 1.3em;
    margin-bottom: 8px;
    color: #19b5af;
    font-size:14px;
}


.event-list-card-large .data-list {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
}

.event-list-card-large .ticket,
.event-list-card-large .number {
    padding-left: 0px;
}

.event-list-card-large .artist {
    background-image: url(../../pc_images_v2/pc/common/iconArtist.png);
}
.event-list-card-large .open {
    background-image: url(../../pc_images_v2/pc/common/iconOpen.png);
}
.event-list-card-large .map {
    background-image: url(../../pc_images_v2/pc/common/iconMap.png);
}

.event-list-card-large .inner {
    display: table;
    width: 100%;
    padding: 20px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.ie8 .event-list-card-large .table-layout-fix.inner {
    table-layout: fixed;
}

.event-list-card-large .right-content {
    padding-left: 15px;
}

.event-list-card-large .thumb,
.event-list-card-large .ticket-figure-wrapper,
.event-list-card-large .right-content {
    display: table-cell;
    vertical-align: top;
}
.ie8 .event-list-card-large .right-content {
    width: 795px;
}

.event-list-card-large .thumb,
.event-list-card-large .ticket-figure-wrapper {
    width: 108px;
}

.event-list-card-large .ticket-figure-wrapper {
    min-height: 108px;
    max-height: 158px;
}

.event-list-card-large .ticket-figure-wrapper > figure {
    width: 108px;
    max-height: 158px;
    overflow: hidden;
}

.event-list-card-large .thumb img,
.event-list-card-large .ticket-figure-wrapper img {
    margin-right: 0;
    margin-left: 0;
}

.event-list-card-large .data-list li {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: 0 center;
    padding-left: 15px;
    margin-right: 10px;
}

.event-list-card-large .data-list li.artist {
    display: block;
}

.event-list-card-large .data-list.line li {
    display: block;
}

/*-- 文字数制限 --*/
/* 縦並び */
.event-list-card-large .data-list.line li.text-ellipsis {
    max-width: 770px;
}

/* アイコン無しの場合 */
.event-list-card-large .data-list.line li.text-ellipsis.no-icon{
    max-width: 370px;
}

/* 横並び */
.event-list-card-large .data-list.row li.text-ellipsis {
    max-width: 600px;
}

.event-list-card-large .livedata .title.text-ellipsis {
    max-width: 790px;
}

/* noimage fix */
.event-list-card-large img[src*="images/noimage.png"]{
    height: 104px;
}

.event-list-card-large img.thumb-vertical{
    width: 100%;
}

.event-list-card-large img.thumb-horizontal{
    position: relative;
    height: 108px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}


/*-- 申込状況履歴リスト --*/
.purchase-list {
    border:1px solid #C9D3D3;
    line-height: 1.7;
}

.purchase-list .list-item {
    border-top: 1px solid #C9D3D3;
}

.purchase-list .list-item:first-child {
    border-top: none;
}

.purchase-list .list-item a {
    display: block;
    padding: 20px 20px 15px 20px;
    text-decoration: none;
    color: #666666;
    position: relative;
}

.purchase-list a:hover,
.purchase-list a:hover .date {
    color: #878787;
}

.purchase-list a:hover .name {
    color:#53c8c3;
}

.purchase-list .title {
    margin-bottom: 7px;
}

.purchase-list .label-status {
    float: left;
}

.purchase-list .name {
    line-height: 1.3;
    font-size:14px;
    color: #19B5AF;
    padding-left: 5px;
    max-width: 820px;
}

.purchase-list .reception-name {
    line-height: 1.7;
    margin-bottom: 0;
}

.purchase-list .date,
.purchase-list .number {
    display: inline;
}

.purchase-list .date {
    color: #666;
}

.purchase-list .number {
    color: #666;
}

.purchase-list .event-canceled-msg{
    border: 1px solid #f00;
    color: #f00;
    width: 70%;
    text-align: center;
}


/*-------------------------------
フォーム周り
-------------------------------*/
.form-flat input,
/*.form-flat select,*/
.form-flat textarea,
.form-flat option {
    font: 99% arial,helvetica,clean,sans-serif;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro W3', 'メイリオ',Meiryo, 'ＭＳ Ｐゴシック', Arial, verdana, sans-serif;
    font-weight: normal;
    border-radius: 0;
    background-color: #fff;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            /*box-sizing: border-box;*/
}

.form-flat input[type="text"],
.form-flat input[type="email"],
.form-flat input[type="password"],
.form-flat textarea {
    margin: .5em 0;
    padding: 6px 4px;
    border: 1px solid #C9D3D3;
    width: 100%;
}

.l1-login-llp2 .input_text .login-username {
    margin: 0;
}

.l1-login-llp2 .description {
    margin-bottom: 10px;
}

/*-- インラインフォーム --*/
.form-flat .form-flat-inline {
    display: inline-block;
}

.form-flat input.heigher{
    line-height: 2;
    height: auto;
}

/*-- 2列 --*/
.form-flat .form-flat-inline.double {
    width: 48%;
    margin-right: 4%;
}

/*-- 3列 --*/
.form-flat .form-flat-inline.triple {
    width: 32%;
    margin-right: 2%;
}

/*-- 最後の要素 --*/
.form-flat .form-flat-inline.last{
    margin-right: 0;
}

.form-flat input.form-flat-email{
    width: 400px;
}

/* −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−
 SELECT BOX
−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
.form-flat .select-box-flat-outer {
    /*
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 60px;
    background-color: none;
    border: 1px solid #19B5AF;
    */
}

.form-flat .select-box-flat {
    /*
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    appearance:none;
    position:relative;
    z-index:2;
    display:block;
    width:200%; fallback non calc support
    width:-webkit-calc(100% + 5em);
    margin:0;
    padding:5px;
    padding-right: 25px;
    background:transparent;
    border:0;
    outline:none;
    color: #19B5AF;
    cursor: pointer;
    */
    /*background: none !important;*/
    /*border: none;*/
}

.form-flat .select-box-flat-outer:before {
    /*content:'▼';
    position:absolute;
    display: block;
    z-index:1;
    top: 0;
    right:5px;
    border-left:1px solid #19B5AF;
    color: #19B5AF;
    font-size:8px;
    padding-left: 5px;
    height: 100%;
    padding-top: 9px;*/
    /*top: 5px\9;*/ /* IE8 */
    /*margin-top: -5px\9;*/ /* IE8 */
    /*padding-top: 10px\9;*/ /* IE8 */
}

.form-flat .select-box-flat option{
    /*background: none !important;*/
}
/*-- firefox option 右線が消える対策 --*/
@-moz-document url-prefix() {
    .form-flat .select-box-flat.firefox-option-fixer option{
        padding-right: 3px;
    }
}

.form-flat .suffix-parent {
    position: relative;
}

.form-flat .suffix {
    position: absolute;
    top: 7px;
    right: 1.5em;
}

/*-- 誕生日用 --*/
.form-flat .suffix-select-box {
    margin-left: 10px;
    line-height: 25px;
    display: block;
}

    /* disabled */
.form-flat .select-box-flat-outer.disabled {
    /*background-color:#F5F5F6;
    border:1px solid #D9E0E0;*/
}

.form-flat .select-box-flat-outer.disabled select {
    /*color: #666666;*/
}

.form-flat .select-box-flat-outer.disabled:before {
    /*border-left:1px solid #D9E0E0;
    color: #666666;*/
}


/*-------------------------------
ボタン
-------------------------------*/

/*-- 基本ボタン グレー --*/
.btn-flat {
    width: 150px;
    background: none;
    border: none;
    display: block;
    background-color: #707070;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    background-repeat: no-repeat;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.btn-flat-more,
.btn-flat-more-l {
    width: 150px;
    background: none;
    border: solid 2px #14b5b1;
    display: block;
    background-color: transparent;
    color: #14b5b1;
    text-decoration: none;
    text-align: center;
    background-repeat: no-repeat;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.btn-flat:hover {
    background-color: #8D8D8D;
}
.btn-flat-more:hover,
.btn-flat-more-l:hover {
    background-color: #bee2d6;
}

.btn-flat a,
.btn-flat:hover,
.btn-flat a:hover {
    color: #fff;
}
.btn-flat-more a,
.btn-flat-more:hover,
.btn-flat-more a:hover,
.btn-flat-more-l a,
.btn-flat-more-l:hover,
.btn-flat-more-l a:hover {
    color: #14b5b1;
}

/*-- 横並びボタン --*/
.btn-flat.btn-inline {
    display: inline-block;
}

/*-- 大きいサイズ --*/
.btn-flat.btn-large {
    width: 300px;
    height: 16px;
    /*padding-top: 14px;*/
    padding-top: 15px;
    padding-bottom: 20px;
    font-size: 18px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "ＭＳ Ｐゴシック", Arial, verdana, sans-serif;
}
.btn-flat-more.btn-more-large,
.btn-flat-more-l.btn-more-large {
    width: 500px;
    height: 30px;
    padding-top: 19px;
    padding-bottom: 18px;
    font-size: 22px;
    font-weight: normal;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "ＭＳ Ｐゴシック", Arial, verdana, sans-serif;
}

.btn-flat.btn-medium {
    width: 230px;
    padding: 0 9px;
    font-size: 16px;
    line-height: 45px;
}
.btn-flat-more.btn-more-medium {
    width: 220px;
    padding: 0 9px;
    font-size: 14px;
    line-height: 40px;
}

input.btn-flat.btn-large, button.btn-flat.btn-large {
    padding-bottom: 36px;
}

/*-- ページ下部で使われるボタン二つ並びのデザイン *要調整 --*/
.bottom-btn-flat-area {
    margin-top: 40px;
    width: 620px;
}

.bottom-btn-flat-area .btn-flat:first-child {
    margin-right:20px;
}

.bottom-btn-flat-area.btn-single .btn-flat.center-block:first-child {
    margin-right: auto;
}

/*-- li 等で囲われている場合に二つ目のボタンに付与し、横並びに --*/
.bottom-btn-flat-area .btn-flat.btn-flat-bottom-second {
    margin-right: 0;
}

/*-- 矢印右向き --*/
.btn-flat.btn-arrow:after {
    content: "";
    position: absolute;
    display: block;
    background-position: right center;
    background-image: url( ../pc_images_v2/pc/common/arrowWhiteRight.png);
    width: 5px;
    height: 7px;
    top: 50%;
    margin-top: -3px;
    right: 5px;
}
.btn-flat-more.btn-more-arrow:after {
    content: "";
    position: absolute;
    display: block;
    background-image: url(../images/icon_arrow_right_green.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 10px;
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -6px;
    right: 5px;
}
.btn-flat-more-l.btn-more-l-arrow:after {
    content: "";
    margin-top: -6px;
    position: absolute;
    display: block;
    background-image: url(../images/icon_arrow_right_green.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 18px;
    width: 20px;
    height: 20px;
    top: 46%;
    right: 18px;
}

.btn-flat.btn-white.btn-arrow:after {
    background-image: url(/pc_images_v2/pc/common/arrowGrayRight.png);
}


/*-- 矢印下向き --*/
.btn-flat.btn-arrow.down:after {
    background-image: url(/pc_images_v2/pc/common/arrowWhiteBottom.png);
    width: 7px;
    height: 5px;
    margin-top: -2px;
}
/*-- 矢印上向き --*/
.btn-flat.btn-arrow.up:after {
    background-image: url(/pc_images_v2/pc/common/arrowWhiteTop.png);
    width: 7px;
    height: 5px;
    margin-top: -2px;
}

.btn-flat.btn-large.btn-arrow:after {
    background-image: url(/pc_images_v2/pc/common/arrowWhiteRightBold.png);
    width: 9px;
    height: 14px;
    margin-top: -6px;
    right: 14px;
}

.btn-flat.btn-large.btn-arrow-new:after {
    background-image: url(/pc_images_v2/pc/common/arrowWhiteRightBold.png);
    width: 9px;
    height: 14px;
    margin-top: -6px;
    right: 14px;
}

/*-- 幅100% --*/
.btn-flat.btn-block {
    width: 100%;
}

/*-- テキスト位置 --*/
.btn-flat.btn-text-left {
    text-indent: 10px;
    text-align: left;
}
.btn-flat.btn-text-right {
    width: 140px;
    padding-right: 10px;
    text-align: right;
}
.btn-flat.btn-large.btn-text-right {
    width: 290px;
    padding-right: 10px;
    text-align: right;
}
.btn-flat.btn-block.btn-text-right {
    width: 100%;
    padding-right: 10px;
    text-align: right;
}

/*-- カラーバリエーション --*/
.btn-flat.btn-pink {
    background: #EF3581;
}
.btn-flat.btn-pink-disabled {
    cursor: not-allowed;
    background: #C9C9C4;
}
.btn-flat.btn-pink:hover {
    background: #F175A7;
}
.btn-flat.btn-green {
    background: #19B5AF;
}
.btn-flat.btn-green:hover {
    background: #33b5c5;
}
.btn-flat.btn-white {
    color: #707070;;
    background-color: #fff;
}
.btn-flat.btn-white:hover {
    color: #878787;
}
.btn-flat.btn-off {
    color: #FFFFFF;
    background-color: #19B5AF;
}
.btn-flat.btn-off a{
    color: #ccc;
}
.btn-flat.btn-off:hover {
    color: #fff;
    background-color: #36D2CC;
}
.btn-flat.btn-off:hover a{
    color: #fff;
}
.btn-flat.btn-bg-on{
    background-image: url(/images/payment_title_on.png);
    background-size: 26px;
    background-position: 10% 14px;
}

.btn-flat.btn-bg-off{
    background-image: url(/images/payment_title_off.png);
    background-size: 26px;
    background-position: 10% 14px;
}
/*-- 真ん中寄せ --*/
.center-block {
    margin-left: auto;
    margin-right: auto;
}

.btn-flat.btn-flat-input {
    height: 15px;
    margin-bottom: 18px;
}

.btn-flat.btn-flat-input > input, .btn-flat.btn-flat-input > button {
    position: absolute;
    width: 150px;
    height: 26px;
    padding-top: 3px;
    top: 0;
    left: 0;
    border-style: none;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.btn-flat.btn-flat-input.btn-large > input, .btn-flat.btn-flat-input.btn-large > button {
    position: absolute;
    width: 300px;
    height: 50px;
    padding-top: 5px;
    top: 0;
    left: 0;
    border-style: none;
    color: #fff;
    cursor: pointer;
}

/*--IE8でafter要素が隠れる対策--*/
.ie8 .btn-flat.btn-flat-input.btn-large.btn-arrow > input, .ie8 .btn-flat.btn-flat-input.btn-large.btn-arrow > button {
    background-image: url(/pc_images_v2/pc/common/arrowWhiteRightBold.png);
    background-repeat: no-repeat;
    background-position: 276px center;
}

.btn-flat.btn-flat-input.btn-block > input, .btn-flat.btn-flat-input.btn-block > button {
    width: 100%;
}

.btn-flat.btn-flat-input.btn-green > input, .btn-flat.btn-flat-input.btn-green > button {
    background: #19B5AF;
}

.btn-flat.btn-flat-input.btn-green > input:hover, .btn-flat.btn-flat-input.btn-green > button:hover {
    background: #33b5c5;
}

.btn-flat.btn-flat-input.btn-pink > input, .btn-flat.btn-flat-input.btn-pink > button {
    background: #EF3581;
}
.btn-flat.btn-flat-input.btn-pink-disabled > input, .btn-flat.btn-flat-input.btn-pink-disabled > button {
    cursor: not-allowed;
    background: #C9C9C4;
}

.btn-flat.btn-flat-input.btn-pink > input:hover, .btn-flat.btn-flat-input.btn-pink > button:hover {
    background: #F175A7;
}

.btn-flat.btn-flat-input.btn-white > input, .btn-flat.btn-flat-input.btn-white > button {
    color: #707070;;
    background-color: #fff;
}

.btn-flat.btn-white > input:hover {
    color: #878787;
}
.btn-margin {
    margin-top: 28px;
}

.btn-flat.btn-atone {
    width: 100%;
    height: 16px;
    font-size: 18px;
    padding-top: 14px;
    padding-bottom: 20px;
    background-color: #ff0000;
    display: block;
}

.btn-flat.btn-atone:hover {
    opacity: .7;
}

/*-------------------------------
アイコン付きのボタン
-------------------------------*/
.btn-icon {
    line-height: 23px;
    position: relative;
    display: block;
    height: 23px;
    line-height: 23px;
    margin-top: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    cursor: pointer;
    transition: .3s ease-in-out;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #707070;
    margin-bottom: 20px;
}

.btn-icon:after {
    content: '';
}

.btn-icon .inner {
    position: static;
    display: inline-block;
    display: block;
    cursor: pointer;
    transition: .3s ease-in-out;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.btn-icon:hover {
    background-color: #8d8d8d;
}

.btn-icon .inner:before {
    position: absolute;
    top: 50%;
    right: 5px;
    display: block;
    width: 5px;
    height: 7px;
    margin-top: -3px;
    content: '';
    background-image: url(../../pc_images_v2/pc/common/arrowWhiteRight.png);
    background-position: right center;
}

/* メール */
.btn-icon.btn-icon-mail:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 17px;
    height: 11px;
    margin-top: -6px;
    margin-left: -82px;
    background-image: url(../../pc_images_v2/pc/event/iconMail.png);
    background-repeat: no-repeat;
}

/* ウェブフォーム */
.btn-icon.btn-icon-web:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 17px;
    height: 17px;
    margin-top: -9px;
    margin-left: -97px;
    content: ' ';
    background-image: url(../../pc_images_v2/pc/event/iconWeb.png);
    background-repeat: no-repeat;
}

/* 電話 */
.btn-icon.btn-icon-tel{
    background: none;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-image: url(../../pc_images_v2/pc/event/iconTel.png);
    display: inline-block;
    font-size: 18px;
    color: #333333;
    text-decoration: none;
    padding-left: 25px;
    height: 23px;
    line-height: 23px;
}

.btn-icon.btn-icon-tel .inner {
    display: inline-block;
    background-color: transparent;
    color: #333;
    padding-top: 0;
    padding-bottom: 0;
    position: static;
}

.btn-icon.btn-icon-tel .inner:before{
    background-image: none;
}

/*-------------------------------
ボーダー
-------------------------------*/
.border-gray {
    border: 1px solid #C9D3D3;
}

.border-green {
    border: 1px solid #19B5AF;
}

.border-gray .list-bordered {
    border-top: 1px solid #C9D3D3;
}

.border-gray .list-bordered:first-child {
    border-top: none;
}

.border-gray .list-bordered {
    border-top: 1px solid #C9D3D3;
}

.border-green .list-bordered:first-child {
    border-top: none;
}

.border-bar-gray {
    border-top: 1px solid #C9D3D3;
    height: 0px;
    width: 100%;
}

.border-bar-green {
    border-top: 1px solid #19B5AF;
    height: 0px;
    width: 100%;
}

/* −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−
プライスリスト
−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
.price-table-vertical {
    width: 100%;
    border-collapse: collapse;
}

.price-table-vertical,
.price-table-vertical th,
.price-table-vertical td {
    border: 1px solid #D9E0E0;
    padding: 10px;
    text-align: left;
    word-break:break-all;
}

.price-table-vertical th {
    background-color: #EEF1F1;
    width: 180px;
    text-align: center;
    color: #333333;
}

.price-table-vertical tr.subtotal th,
.price-table-vertical tr.subtotal td {
    border-top:3px solid #D9E0E0;
}

.price-table-vertical tr.sum th {
    background-color: #333333;
    color: #FFFFFF;
}

.price-table-vertical {
    margin-bottom: 15px;
}

.price-table-vertical h3 {
    font-size:14px;
    color: #19B5AF;
    margin-bottom: 5px;
}

.price-table-vertical td s.real_price {
    color: #ff0000 !important;
}

.price-table-vertical td.text-bold {
    font-size: 14px;
    font-weight: bold;
}
.bg-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../pc_images_v2/pc/common/overlay_lg.png');
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    background-repeat: repeat-x;
    background-position: bottom;
}

.share-event-section {
    background-color: #DDE1E1;
    background-repeat: no-repeat;
    background-position: 160px center;
    background-image: url(../../pc_images_v2/pc/event/captionShare.png);
    padding: 25px;
    padding-left: 500px;
}

.share-event-section h2 {
    display: none;
}

.share-event-section .sns-area .sns-block {
    float: right;
    position: absolute;
    right: 0;
    bottom: 0;
}

.share-event-section .sns-block li a {
    background-position: 0 0;
    display: block;
    height: 45px;
    margin-top: 12px;
    transition-duration: 0.2s;
    transition-property: background-image;
    width: 45px;
    text-indent: -9999px;
}

.share-event-section .sns-block li:first-child a {
    margin-top: 0;
}

.share-event-section .sns-block li a:hover {
    background-position: 0 bottom;
}

.share-event-section .sns-block .promoter li a:hover {
    background-position: 0 bottom;
}

.share-event-section .sns-block .promoter .mini-white a:hover {
    background-position: 0 top;
}

.share-event-section .sns-block .clearfix > li {
    float: left;
    margin-left: 30px;
}
.share-event-section .sns-block .clearfix > li:first-child {
    margin-left: 0;
}

.share-event-section .sns-block .clearfix > li a {
    margin-top: 0;
}

.share-event-section .sns-block .twitter a {
    background-image: url(../../pc_images_v2/pc/common/iconTwitter.png);
}

.share-event-section .sns-block .facebook a {
    background-image: url(../../pc_images_v2/pc/common/iconFacebook.png);
}

.share-event-section .sns-block .mixi a {
    background-image: url(../../pc_images_v2/pc/common/iconMixi.png);
}

.share-event-section .sns-block .line a {
    background-image: url(../../pc_images_v2/pc/common/iconLine.png);
}

.share-event-section .sns-block .mail a {
    background-image: url(../../pc_images_v2/pc/common/iconMail.png);
}

.share-event-section .sns-block .twitter a.miniIcon {
    background-image: url(../../pc_images_v2/pc/common/iconTwitterMini.png);
}

.share-event-section .sns-block .facebook a.miniIcon {
    background-image: url(../../pc_images_v2/pc/common/iconFacebookMini.png);
}

.share-event-section .sns-block .mixi a.miniIcon {
    background-image: url(../../pc_images_v2/pc/common/iconMixiMini.png);
}

.share-event-section .sns-block .line a.miniIcon {
    background-image: url(../../pc_images_v2/pc/common/iconLineMini.png);
}

.share-event-section .sns-block .mail a.miniIcon {
    background-image: url(../../pc_images_v2/pc/common/iconMailMini.png);
}

.share-event-section .sns-block .twitter a.miniIconWhite {
    background-image: url(../../pc_images_v2/pc/common/iconTwitterMiniWhite.png);
}

.share-event-section .sns-block .facebook a.miniIconWhite {
    background-image: url(../../pc_images_v2/pc/common/iconFacebookMiniWhite.png);
}

.share-event-section .sns-block .mixi a.miniIconWhite {
    background-image: url(../../pc_images_v2/pc/common/iconMixiMiniWhite.png);
}

.share-event-section .sns-block .line a.miniIconWhite {
    background-image: url(../../pc_images_v2/pc/common/iconLineMiniWhite.png);
}

.share-event-section .sns-block .mail a.miniIconWhite {
    background-image: url(../../pc_images_v2/pc/common/iconMailMiniWhite.png);
}

.share-event-section .sns-block li a {
    background-position: 0 0;
    display: block;
    height: 45px;
    margin-top: 12px;
    transition-duration: 0.2s;
    transition-property: background-image;
    width: 45px;
    text-indent: -9999px;
}

.share-event-section .sns-block li a.mini {
    background-position: 0 0;
    display: block;
    height: 26px;
    margin-top: 15px;
    transition-duration: 0.2s;
    transition-property: background-image;
    width: 26px;
    text-indent: -9999px;
}

.share-event-section .sns-block li a.mini-white {
    background-position: 0 bottom;
    display: block;
    height: 26px;
    margin-top: 15px;
    transition-duration: 0.2s;
    transition-property: background-image;
    width: 26px;
    text-indent: -9999px;
}

.share-event-section.style-block{
    float: right;
    width: 280px;
    background-color: #DDE1E1;
    background-image: none;
    padding: 7px 15px;
}

.share-event-section.style-block .sns-block {
    margin-bottom: 0;
}

.share-event-section.style-block .sns-block .clearfix > li {
    margin-left: 13px;
}

.share-event-section.style-block .sns-block .clearfix > li:first-child {
    margin-left: 0;
}
/* −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−
パンくずリスト
−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
.breadcrumb-list {
    border-top:1px solid #D9E0E0;
    border-bottom:1px solid #D9E0E0;
    margin-top: 60px;
}

.breadcrumb-list.no-margin {
    margin-top: 0;
}

.breadcrumb-list ul {
    width: 980px;
    margin-left: auto;
    margin-right: auto;
    border-top:1px solid #D9E0E0;
}

.breadcrumb-list ul:first-child {
    border-top: none;
}

.breadcrumb-list ul li {
    line-height: 46px;
    display: inline-block;
    float: left;
    overflow: hidden;
    max-width: 270px;
    height: 46px;
    margin-right: 10px;
    padding-left: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-image: url(../../pc_images_v2/pc/common/breadcrumbList.png);
    background-repeat: no-repeat;
    background-position: 0;
}

.breadcrumb-list ul li:first-child {
    background: none;
    padding-left: 0;
}

.breadcrumb-list ul li a {
    text-decoration: underline;
}


/* −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−
その他
−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
.size-border-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.pull-left {
    float: left;
}

.pull-right {
    float: right;
}
.text-link {
    color: #19B5AF;
    text-decoration: underline;
}

.text-link:hover {
    color: #53c8c3;
    text-decoration: underline;
}

.text-link.no-line,
.text-link.no-line:hover {
    text-decoration: none;
}

/*-- 必須マーク --*/
.mark-required {
    color: #E25454;
}

/*-- 注意書き --*/
.text-attention {
    color: #E25454;
}

.text-attention-title {
    display: block;
    margin-bottom: .5em;
}

/*-- 注意書き --*/
.text-required {
    color: #E25454;
    margin-left: 0.5em;
}

/*-- 規約表示 --*/
.agreement-wrap {
    height: 11em;
    padding: 10px 20px;
    overflow: scroll;
}
.agreement-wrap li{
    margin: 0 20px;
}
.agreement-check-wrap {
    margin: 14px 20px;
}
.agreement-check-wrap input[type=checkbox] {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
}
.agreement-text {
    font-size: 18px;
    vertical-align: middle;
}
.agreement-check-wrap label, .agreement-check-wrap input[type='checkbox'] {
    cursor: pointer;
}

/*-- フォントサイズ --*/
.text-l {
    font-size: 14px;
}

.text-m {
    font-size: 12px;
}

.text-s {
    font-size: 10px;
}

/*-- 下線付きテキスト --*/
/*.text-under-line {
    text-decoration: underline;
}*/

/*-- リンクのカラーをオフに --*/
a .link-color-off,
a .link-color-off *,
a:link .link-color-off,
a:visited .link-color-off,
a:active .link-color-off,
a:hover .link-color-off {
    color: #666;
    text-decoration: none;
}


/* global-top用 上部slide内に別リンク付与対応 */

.carousel .inner .slides .slide.absolute-link-parent{
    position: relative;
    width: 1000px;
    height: 400px;
}

.carousel .inner .slides .slide .absolute-link{
    display: block;
    width: 440px;
    height: 56px;
    position: absolute;
    bottom: 60px;
    left: 0;
    text-indent: -9999em;
    background-color: transparent;
}

.carousel .inner .slides .slide .absolute-link.carousel01{
    background-image: url("/pc_images/top/carousel-btn-01.png")\9;
}

.carousel .inner .slides .slide .absolute-link.carousel02{
    background-image: url("/pc_images/top/carousel-btn-02.png")\9;
}

/* 背景が画像のタイトル */
.bg-img-title {
    display: block;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: center center;
    height: 46px;
    margin-bottom: 20px;
}

.bg-img-title.bg-img-title-contact {
    background-image: url(../../pc_images_v2/pc/event/captionContact.png);
}

/*-- 添付ファイル --*/
.base-icon-flame{
    max-width: 120px;
    max-height: 120px;
    margin: auto;
    vertical-align: middle;
}

.pdf-icon-flame{
    width: 100px;
    height: 120px;
}

.image-flame-base{
    display: table;
}

.image-flame{
    border: solid 1px #ccc;
    display: table-cell;
    height:120px;
    width: 120px;
    text-align: center;
    vertical-align: middle;
}


/*----- new_events_area ------*/
.new_events_area {
    width: 980px;
    margin-right: auto;
    margin-left: auto;
}

.new_events_area h2{
    text-align: center;
    font-size: 30px;
    margin: 26px 0;
    letter-spacing: 8px;
    line-height: 1;
}

.list-item div {
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis; /* Opera9,10対応 */
    -webkit-text-overflow: ellipsis;
    color: #808080;
}
.over_hidden{
    color: #19B5AF;
}
.list_link {
    text-align: right;
    font-size: 120%;
    margin-top: 7px;
}

.new_events_area .list-item{
    width: 418px;
    border: 1px solid #dde1e1;
    overflow: hidden;
    padding: 0 63px 0px 63px;
}
.new_events_area .promoter_banner {
    width: 400px;
}

.new_events_area .list-item .list{
    margin-right: 14px;
    text-align: right;
}
.new_events_area .promoter_banner div {
    text-align: right;
    font-size: 120%;
    margin-top: 8px;
}
.pickup-title {
    /*font-size: 500%;*/
    font-size: 370%;
    text-align: center;
    font-weight: bold;
}

.new_events_area .item_border {
    border-top: 1px solid #707070;
}

.list-item div.item-first-line {
    margin-bottom: 10px;
}
.list-item div.item-second-line {
    margin-left: 2px;
    margin-bottom: 28px;
}

.list-item .new-event-row {
    width: 50%;
    float: left;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis; /* Opera9,10対応 */
    -webkit-text-overflow: ellipsis;
}

div.base-wrapper #banner img {
    width: 100%;
    margin-top: 70px;
}

div.base-wrapper #banner div.link-text {
    line-height: 1.7;
    text-align: right;
    font-size: 120%;
    margin-top: 8px;
}
.payment_tab{
    border-top    : 1px solid #19B5AF;
    border-right  : 1px solid #19B5AF;
    border-bottom : none;
    border-left   : 1px solid #19B5AF;
}
.payment_tab_left{
    border-top    : 1px solid #19B5AF;
    border-right  : none;
    border-bottom : none;
    border-left   : 1px solid #19B5AF;
}
.payment_tab_right{
    border-top    : 1px solid #19B5AF;
    border-right  : 1px solid #19B5AF;
    border-bottom : none;
    border-left   : none;
}
.payment_tab_center{
    border-top    : 1px solid #19B5AF;
    border-right  : 1px solid #19B5AF;
    border-bottom : none;
    border-left   : none;
}

/*----- クレジットカード新規追加時のCSS ------*/
#select_li #select_list span.new_card {
    background-color: #EF3581;
    color           : #FFFFFF;
    padding         : 0 5px;
}

/*----- クレジットカードリストのradioボタンカスタム ------*/
#select_li #select_list .card_list_radio{
    display : none;
}
#select_li #select_list .card_list_radio + label{
    padding-left : 35px;
    position     : relative;
    margin-right : 20px;
}
#select_li #select_list .card_list_radio:checked + label{
    font-weight : bold;
}
#select_li #select_list .card_list_radio + label::before{
    content       : "";
    display       : block;
    position      : absolute;
    top           : 2px;
    left          : -5px;
    width         : 15px;
    height        : 15px;
    border        : 3px solid #999;
    border-radius : 50%;
}
#select_li #select_list .card_list_radio:checked + label::after{
    content       : "";
    display       : block;
    position      : absolute;
    top           : 7px;
    left          : 0px;
    width         : 11px;
    height        : 11px;
    background    : #19B5AF;
    border-radius : 50%;
}
div#entryNewCardtext{
    width          : 330px;
    min-width      : 300px;
    float          : left;
    font-size      : 18px;
    height         : 15px;
    padding-top    : 15px;
    padding-bottom : 20px;
    text-align     : center;
    border         : dotted 1px #19B5AF;
    border-radius  : 10px;
}
#other_payment_method_select_img{
    height       : 60px;
    font-size    : 20px;
    padding-top  : 16px;
}

#credit_card_select_img{
    height       : 60px;
    font-size    : 20px;
    padding-top  : 16px;
}

#atone_payment_method_select_img{
    height       : 60px;
    font-size    : 20px;
    padding-top  : 16px;
}
