@charset 'UTF-8';
.event-list-full-img {
    width: 980px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    word-break: break-all;
}
.event-list-full-img .item {
    position: relative;
    float: left;
    overflow: hidden;
    box-sizing: border-box;
    width: 235px;
    height: 328px;
    margin-bottom: 13px;
    margin-left: 13px;
    border: 1px solid #dde1e1;
    background-color: transparent;
}
.event-list-full-img .item.head-item,
.event-list-full-img .item:first-child {
    margin-left: 0;
}
.event-list-full-img .item a {
    display: block;
    height: 100%;
}
.event-list-full-img .item .title {
    font-size: 18px;
    line-height: 1.4;
    padding-top: 2px;
    padding-bottom: 6px;
    color: #000;
    /* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+, IE v10+ and by Opera v10.5+ */
    text-shadow: 0 1px 8px rgb(255,255,255);
    margin-bottom: 0;
}
.event-list-full-img .item .tag {
    display: inline;
    color: #333;
}
.event-list-full-img .item .tag:hover {
    text-decoration: underline;
    color: black;
    cursor: pointer;
    cursor: hand;
}

.event-list-full-img .item .title:before {
    display: inline-block;
    height: 100%;
    margin-right: -.25em;
    content: '';
    vertical-align: middle;
}
.event-list-full-img .item .title .title-inner {
    color: black;
    display: inline-block;
    width: 211px;
    vertical-align: bottom;
    /*line-height: 1em;
    max-height: 2em;*/
    line-height: 21px;
    max-height: 42px;
    position: relative;
    padding-right: 1.5em;
    overflow: hidden;
    display: -webkit-box;
    /* webkit系のみ行数でoverflow:hidden可能
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    */
    font-size: 16px;
    font-weight: bold;    
}
.event-list-full-img .item .title .title-inner:hover {
    text-decoration: underline;
    color: black;
}

.event-list-full-img .item .thumb {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 233px;
    max-height: 330px;
    margin: auto;
}
.event-list-full-img .item .thumb-square {
    position: absolute;
    right: 0;
    left: 0;
    max-width: 233px;
    max-height: 330px;
    margin: auto;
}
.event-list-full-img .item .thumb-vertical {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 233px;
    margin: auto;
}
.event-list-full-img .item .thumb-horizontal {
    position: absolute;
    top: 0;
    /*right: -50%;*/
    left: 50%;
    height: 100%;
    max-height: 240px;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    margin: auto;
}

.published-event .event-list-full-img:first-child .item:first-child .thumb-vertical,
.published-event .event-list-full-img:first-child .item:first-child + * .thumb-vertical {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 481px;
    margin: auto;
}
.published-event .event-list-full-img:first-child .item:first-child .thumb-horizontal,
.published-event .event-list-full-img:first-child .item:first-child + * .thumb-horizontal {
    position: absolute;
    top: 0;
    /*right: -50%;*/
    left: 50%;
    height: 100%;
    max-height: 481px;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    margin: auto;
}

.published-event .event-list-full-img:first-child .item:first-child .event-list-full-noimage,
.published-event .event-list-full-img:first-child .item:first-child + * .event-list-full-noimage {
    background-image: url(../../images/noimage.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.published-event .event-list-full-img:first-child .item:first-child .event-list-full-noimage img,
.published-event .event-list-full-img:first-child .item:first-child + * .event-list-full-noimage img {
    display: none;
}

.event-list-full-img .item .caption {
    position: absolute;
    bottom: 0;
    display: table-cell;
    box-sizing: border-box;
    width: 233px;
    height: auto;
    padding: 10px;
    -webkit-transition: .4s bottom ease, .4s opacity ease;
         -o-transition: .4s bottom ease, .4s opacity ease;
            transition: .4s bottom ease, .4s opacity ease;
    opacity: 1;
    /* Firefox v3.6+ */
    background-image:    -moz-linear-gradient(50% 0% -90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .66) 20%, #fff 100%);
    /* safari v4.0+ and by Chrome v3.0+ */
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0, rgba(255, 255, 255, 0)), color-stop(.2, rgba(255, 255, 255, .66)), color-stop(1, #fff));
    /* Chrome v10.0+ and by safari nightly build*/
    background-image: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .66) 20%, #fff 100%);
    /* Opera v11.10+ */
    background-image:      -o-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .66) 20%, #fff 100%);
    /* IE v10+ */
    background-image:     -ms-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .66) 20%, #fff 100%);
    background-image:         linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .66) 20%, #fff 100%);
    background-repeat: repeat-x\9;
    background-position: left top \9;

    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(Src=/pc_images/bg_gradient.png,SizingMethod=scale);
}
.event-list-full-img .item .info {
    font-size: 13px;
    opacity: 0.8;
    display: inline-block;
    color: #333;
    width: 211px;
    vertical-align: bottom;
    line-height: 1.5em;
    max-height: 6em;
    position: relative;
    padding-right: 1.5em;
    overflow: hidden;
}
.event-list-full-img .item .info li{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;  
}
.event-list-full-img .item:hover .caption {
    /*bottom: -30px;
    opacity: 0;

    -ms-filter: 'alpha(opacity=0)';*/
}

.event-list-full-img .item .title h2 {
}

/* 開催中イベント最初の2件のみ拡大表示 */

.published-event .event-list-full-img:first-child .item:first-child,
.published-event .event-list-full-img:first-child .item:first-child + * {
    width: 483px;
    height: 483px;
    margin-left: none;
}

.published-event .event-list-full-img:first-child .item:first-child {
    margin-right: 0;
}

.published-event .event-list-full-img .item.head-item,
.published-event .event-list-full-img .item:first-child {
    margin-left: 0;
}

.published-event .event-list-full-img:first-child .item:first-child .title,
.published-event .event-list-full-img:first-child .item:first-child + * .title {
    font-size: 25px;
    font-weight: bold;
    line-height: 1.4;
    padding-top: 10px;
    padding-bottom: 10px;
    /*  color: #249da5;*/
    color: #000;
    /* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+, IE v10+ and by Opera v10.5+ */
    text-shadow: 0 1px 8px rgb(255,255,255);
}
.published-event .event-list-full-img .item .title:before {
    display: inline-block;
    height: 100%;
    margin-right: -.25em;
    content: '';
    vertical-align: middle;
}

.published-event .event-list-full-img:first-child .item:first-child .title .title-inner,
.published-event .event-list-full-img:first-child .item:first-child + * .title .title-inner {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.published-event .event-list-full-img:first-child .item:first-child .thumb,
.published-event .event-list-full-img:first-child .item:first-child + * .thumb {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 483px;
    max-height: 483px;
    margin: auto;
}

.published-event .event-list-full-img:first-child .item:first-child .thumb[src*="noimage_vertical"],
.published-event .event-list-full-img:first-child .item:first-child + * .thumb[src*="noimage_vertical"] {
    content: '';
    background-image: url(../../pc_images/noimage_full.png);
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
}

.published-event .event-list-full-img:first-child .item:first-child .caption,
.published-event .event-list-full-img:first-child .item:first-child + * .caption {
    position: absolute;
    bottom: 0;
    display: table-cell;
    box-sizing: border-box;
    width: 483px;
    height: auto;
    padding: 20px;
    -webkit-transition: .4s bottom ease, .4s opacity ease;
         -o-transition: .4s bottom ease, .4s opacity ease;
            transition: .4s bottom ease, .4s opacity ease;
    opacity: 1;
    /* Firefox v3.6+ */
    background-image:    -moz-linear-gradient(50% 0% -90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .66) 20%, #fff 100%);
    /* safari v4.0+ and by Chrome v3.0+ */
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0, rgba(255, 255, 255, 0)), color-stop(.2, rgba(255, 255, 255, .66)), color-stop(1, #fff));
    /* Chrome v10.0+ and by safari nightly build*/
    background-image: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .66) 20%, #fff 100%);
    /* Opera v11.10+ */
    background-image:      -o-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .66) 20%, #fff 100%);
    /* IE v10+ */
    background-image:     -ms-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .66) 20%, #fff 100%);
    background-image:         linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .66) 20%, #fff 100%);
    background-repeat: repeat-x\9;
    background-position: left top \9;

    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(Src=/pc_images/bg_gradient.png,SizingMethod=scale);
}

.published-event .event-list-full-img:first-child .item:first-child .info li,
.published-event .event-list-full-img:first-child .item:first-child + * .info li {
    font-size: 15px !important;
}

.published-event .event-list-full-img:first-child .item:first-child:hover .caption,
.published-event .event-list-full-img:first-child .item:first-child + *:hover .caption {
    bottom: -50px;
    opacity: 0;
    -ms-filter: 'alpha(opacity=0)';
}
/* ステータスラベル */
.status-view{
    position: absolute;
    width: 60px;
    text-align: center;
}
.status-view ul{
    padding: 6px 0;
}
.status-view li{
    font-size: 13px;
    line-height: 1.4;
}
.status-finish {
    padding: 0;
    color: #fff;
    background-color: #626262;
}
.status-sale {
    padding: 0;
    color: #fff;
    background-color: #f12d80;
}
.status-pre_sale {
    padding: 0;
    color: #fff;
    background-color: #1bb263;
}
.status-sold_out {
    padding: 0;
    color: #fff;
    background-color: #626262;
}
.status-end_sale {
    padding: 0;
    color: #fff;
    background-color: #626262;
}
.status-none {
    padding: 0;
    color: #fff;
    background-color: #b5b5b5;
}
