@charset "UTF-8"; #event {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-template-columns: minmax(250px, 1fr) 5fr;
}

#event .category.music {
    background-color: #eaa200;
}

#event .category.stage {
    background-color: #ef717b;
}

#event .category.sport {
    background-color: #289a9a;
}

#event .category.art {
    background-color: #454ebe;
}

#event .category.movie {
    background-color: #a51900;
}

#event .category.other {
    background-color: #069800;
}

/*------------------------
カテゴリーナビゲーション
-------------------------*/
#event .subContents .inner {
    position: sticky;
    top: 0;
    padding: 0;
    z-index: 1;
}

#event .subContents h1 {
    background: #FFD800 url("../images/event_ttl_michu.png") no-repeat center 4.5em;
    padding: 0.7em 0 5.8em 0;
    font-size: 3.2rem;
    text-align: center;
    position: relative;
    line-height: 1.3;
}

#event .subContents .ttlWrap a {
    color: #222;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

#event .subContents .ttlWrap a:hover {
    opacity: 0.8;
}

#event .subContents h1 span {
    display: block;
    font-size: 45%;
    letter-spacing: 0.1em;
}

#event .subContents .buttonWrap {
    display: flex;
    position: relative;
    justify-content: center;
    font-size: 3rem;
    margin-top: -0.9em;
    margin-bottom: 0.5rem;
}

#event .subContents .buttonWrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.8em;
    height: 1.8em;
    line-height: 1;
    background: #fff;
    border-radius: 50%;
}

#event .subContents .buttonWrap a:hover {
    opacity: 1;
}

#event .subContents .buttonWrap a i {
    transition: 0.3s;
}

#event .subContents .buttonWrap a:hover i {
    opacity: 0.8;
}

#event .subContents .buttonWrap a i.fa-twitter {
    color: #1D9BF0;
}

#event .subContents ul {
    padding: 0 1.5rem 2.5rem 1.5rem;
}

#event .subContents ul:last-of-type {
    padding-bottom: 1.5rem;
}

#event .subContents li {
    margin-bottom: 0.4rem;
}

#event .subContents li a {
    display: block;
    padding: 1rem 0.5rem;
    background: #444;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    border-radius: 0.5rem;
    transition: .3s;
}

#event .subContents li a:hover, #event .subContents li a.current {
    opacity: 0.8;
}

#event .subContents .categoryNavSub a {
    background: #fff;
    color: #222;
    font-size: 1.4rem;
    border: 2px solid #aaa;
}

#event .main {
    background: #ebebeb;
}

/*------------------------
イベント一覧
-------------------------*/
#event .main .eventList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(334px, 1fr));
    background: #ebebeb;
}

@media screen and (min-width: 2000px) {
    #event .main .eventList {
        grid-template-columns: repeat(4, 1fr);
    }
}

#event .main .eventList li {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

#event .main .eventList li:before, #event .main .eventList li:after {
    content: "";
    position: absolute;
    z-index: 0;
}

#event .main .eventList li:before {
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: -8rem;
    bottom: -8rem;
    left: -8rem;
    right: -8rem;
    filter: blur(4rem);
}

#event .main .eventList li:after {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #fff 20%, transparent);
    opacity: 0.8;
}

#event .main .eventList li.spacer {
    background: #EBEBEB url("../images/event_spacer_michu.png") center center no-repeat;
}

#event .main .eventList li.spacer:before, #event .main .eventList li.spacer:after {
    content: none;
}

#event .main .eventList figure {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

#event .main .eventList figure img {
    object-fit: contain;
    font-family: 'object-fit: contain;';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: .8s;
    transform: scale(1.01);
}

#event .main .eventList a {
    color: #222;
    display: flex;
    flex-direction: column;
    transition: .3s;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

#event .main .eventList a:hover {
    color: #555;
}

#event .main .eventList a:hover figure img {
    transform: scale(1.08);
    opacity: 0.9;
}

#event .main .eventList .itemInfo {
    font-size: 1.6rem;
    line-height: 1.3;
    display: flex;
    height: 100%;
    padding: 1.5rem 0 0;
    min-height: 15rem;
}

#event .main .eventList .dateWrap {
    font-size: 1.6rem;
    border-right: 1px solid rgb(0 0 0 / 30%);
    padding-right: 1em;
    margin-right: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#event .main .eventList .dateWrap > * {
    min-width: 4.5em;
}

#event .main .eventList .date div:first-of-type {
    font-size: 87.5%;
    line-height: 1;
}

#event .main .eventList .date div:last-of-type {
    font-size: 175%;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
}

#event .main .eventList .date div:last-of-type span {
    font-size: 50%;
    margin-left: 0.3em;
}

#event .main .eventList .date + .date:before {
    content: "";
    display: block;
    width: 0;
    height: 0.7em;
    border-left: 0.15em solid;
    margin: 0.2em auto 0.2em 2.5em;
}

#event .main .eventList .dateWrap .indefinite {
    font-size: 87.5%;
    align-self: center;
    opacity: 0.8;
}

#event .main .eventList .ttlWrap {
    font-weight: bold;
}

#event .main .eventList .ttlWrap .tagWrap {
    margin-bottom: 1rem;
    display: inline-flex;
    font-size: 87.5%;
    color: #fff;
    line-height: 1;
}

#event .main .eventList .tagWrap > div {
    padding: 0.3em 1em;
}

#event .main .eventList .tagWrap .status {
    background: #444;
}

#event .main .eventList .tagWrap > div:nth-of-type(n+2) {
    margin-left: 0.5rem;
}

#event .main .noResults {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/*------------------------
イベント詳細
-------------------------*/
#event .main article {
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#event .main article:before, #event .main article:after {
    content: "";
    position: absolute;
    z-index: -1;
}

#event .main article:before {
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: -8rem;
    bottom: -8rem;
    left: -8rem;
    right: -8rem;
    filter: blur(4rem);
}

#event .main article:after {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #fff 20%, rgb(255 255 255 / 85%));
    opacity: 0.9;
}

#event .main .articleInfo {
    font-size: 3.5rem;
    line-height: 1.3;
    display: flex;
    background: #ebebeb;
    justify-content: flex-start;
}

#event .main .articleInfo .dateWrap {
    font-size: 2rem;
    border-right: 1px solid rgb(0 0 0 / 30%);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#event .main .articleInfo .dateWrap > *:only-of-type {
    padding: 0 1em;
}

#event .main .articleInfo .date + .date {
    padding-left: 0.8em;
    margin-left: 0.4em;
    position: relative;
}

#event .main .articleInfo .date div:first-of-type {
    font-size: 87.5%;
    line-height: 1.3;
}

#event .main .articleInfo .date div:last-of-type {
    font-size: 190%;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

#event .main .articleInfo .date div:last-of-type span {
    font-size: 50%;
    margin-left: 0.3em;
}

#event .main .articleInfo .date + .date:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 1em;
    left: 0;
    width: 0.4em;
    height: 0;
    border-top: 0.15em solid;
    margin: 0;
}

#event .main .articleInfo .dateWrap .indefinite {
    font-size: 87.5%;
    align-self: center;
    opacity: 0.8;
}

#event .main .articleInfo .ttlWrap {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#event .main .articleInfo .ttlWrap .tagWrap {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: inline-flex;
    color: #fff;
    line-height: 1;
    font-weight: bold;
}

#event .main .articleInfo .tagWrap > div {
    padding: 0.3em 1em;
}

#event .main .articleInfo .tagWrap .status {
    background: #444;
}

#event .main .articleInfo .tagWrap > div:nth-of-type(n+2) {
    margin-left: 0.5rem;
}

#event .main .articleInfo .organizer {
    font-size: 50%;
}

#event .main .articleDetail {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2.5rem;
}

#event .main .articleDetail .mainImage {
    width: 45%;
    max-width: 640px;
    margin-right: 4rem;
}

#event .main .articleDetail figure {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

#event .main .articleDetail figure:nth-of-type(n+2) {
    margin-top: 1.5rem;
}

#event .main .articleDetail figure img {
    object-fit: contain;
    font-family: 'object-fit: contain;';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

#event .main .articleDetail .outline {
    font-size: 1.8rem;
    line-height: 1.8;
    width: 100%;
}

#event .main .articleDetail .mainImage + .outline {
    width: calc(55% - 4rem);
}

#event .main .articleDetail .outline > table {
    font-size: 1.5rem;
    line-height: 1.8;
    width: 100%;
}

#event .main .articleDetail .outline > table tr {
    border-bottom: 1px solid rgb(0 0 0 / 20%);
}

#event .main .articleDetail .outline > table th, #event .main .articleDetail .outline > table td {
    padding: 2rem 0;
}

#event .main .articleDetail .outline > table th {
    width: 12em;
    text-align: center;
    font-weight: bold;
}

#event .main .articleDetail .outline > table td {
    width: calc(100% - 12em);
    vertical-align: middle;
}

#event .main .buttonWrap {
    width: 100%;
}

#event .main .buttonWrap .buttonWrapInner {
    padding: 0 2.5rem;
}

#event .main .buttonWrap.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: minmax(250px, 1fr) 5fr;
    background: linear-gradient(to top, #fff 30%, transparent);
    pointer-events: none;
    padding-top: 3rem;
}

#event .main .buttonWrap.fixed:before {
    content: "";
}

#event .main .buttonWrap.fixed .buttonWrapInner {
    padding: 1.5rem 2.5rem;
}

#event .main .buttonWrap .button {
    display: block;
    align-self: center;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1;
    padding: 0.8em 1em;
    letter-spacing: 0.1em;
    background: #FEF402;
    color: #222;
    border-radius: 0.8rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    transition: 0.3s;
    pointer-events: auto;
}

#event .main .buttonWrap .button.gray {
    background: #d9d9d9;
    color: #999999;
}

#event .main .buttonWrap .button .fa-angle-right {
    margin-left: 0.5em;
    transition: 0.3s;
}

#event .main .buttonWrap .button .fa-film {
    margin-right: 0.5em;
}

#event .main .buttonWrap .button .fa-ticket-alt {
    transform: rotate(-30deg);
    margin-right: 0.3em;
}

#event .main .buttonWrap .button:hover .fa-angle-right {
    transform: translateX(10px);
}

#event .main .buttonWrap + .buttonWrap {
    margin-top: 4rem;
}

#event .main .buttonWrap.official .button {
    font-size: 1.6rem;
    max-width: 350px;
}

#event .main .related {
    padding-top: 5rem;
}

#event .main .related h1.ttl {
    text-align: center;
    font-size: 3.8rem;
    margin-bottom: 2.5rem;
}

#event .main .ad {
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*------------------------
試写会
-------------------------*/
#event .main .eventDetail.movie .mainImage {
    width: 250px;
    margin-right: 3rem;
}

#event .main .eventDetail.movie .mainImage + .outline {
    width: calc(100% - 250px - 3rem);
}

/*------------------------
ムビチケ
-------------------------*/
#event .main .eventDetail.movietiket .articleDetail {
    display: block;
    padding: 0;
    position: relative;
}

@media screen and (max-width: 1025px) {
    #event .main .articleInfo {
        font-size: 3rem;
    }

    #event .main .articleInfo .dateWrap {
        font-size: 1.8rem;
        align-items: flex-start;
        flex-direction: column;
        padding: 2rem;
    }

    #event .main .articleInfo .date + .date {
        padding-left: 0;
        margin-left: 0;
        position: static;
    }

    #event .main .articleInfo .date + .date:before {
        position: static;
        width: 0;
        height: 0.6em;
        border: none;
        border-left: 0.15em solid;
        margin: 0.3em auto 0.1em 2.5em;
    }

    #event .main .articleInfo .ttlWrap {
        padding: 2rem;
    }

    #event .main .eventDetail .mainImage {
        width: 100%;
        max-width: none;
        margin-right: 0;
        margin-bottom: 3rem;
    }

    #event .main .eventDetail .mainImage + .outline {
        width: 100% !important;
    }

    #event .main .eventDetail.movie .mainImage {
        width: 100%;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
    }

    #event .main .eventDetail.movie figure {
        width: 50%;
        padding-top: 28.125%;
    }

    #event .main .eventDetail.movie figure:nth-of-type(n+2) {
        margin-top: 0;
        margin-left: 1.5rem;
    }
}

.pchide {
    display: none !important;
}

.gFooter .pageTop {
    display: none;
}
