.article {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
}

br.smp {
    display: block;
}

br.pc {
    display: none;
}

#onlinesale-contents img {
    display: block;
    width: 100%;
    height: auto;
}

#event-outline,
#event-detail {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}

.event-info {
    text-align: center;
}

.event-info .event {
    margin: 40px 0 0;
}

.event-info .title {
    max-width: 350px;
    margin: 0 auto;
}

.event-info .link {
    text-align: center;
    margin: 20px 0 0;
}

.event-info .link .btn {
    display: block;
    background: #128A44;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    max-width: 350px;
    margin: 0 auto;
    padding: 1em;
    line-height: 1;
    font-size: 1.6rem;
    font-family: Roboto, Arial, 'Zen Kaku Gothic New', sans-serif;
}

.event-info .link .btn::after {
    display: none;
}

.event-info .link .btn::before {
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #ffffff;
    margin: 0 0.5em 0 0;
}

.event-info .link .btn.comingsoon {
    background: #ccc;
}

.event-info .link .btn.comingsoon::before {
    display: none;
}

.event-info .link .btn-white {
    display: block;
    background: #fff;
    border: 1px solid #128A44;
    border-radius: 5px;
    color:#128A44;
    text-decoration: none;
    max-width: 350px;
    margin: 0 auto;
    padding: 1em;
    line-height: 1;
    font-size: 1.4rem;
    font-family: Roboto, Arial, 'Zen Kaku Gothic New', sans-serif;
}

.event-info .link .btn-white::before {
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 4px;
    border-color: transparent transparent transparent #128A44;
    margin: 0 0.5em 0 0;
}

@media all and (min-width: 768px), print {
    br.smp {
        display: none;
    }

    br.pc {
        display: block;
    }

    #onlinesale-contents {
        background: url("../img/bg.jpg") center top;
        padding: 80px;
    }

    .event-info .link a.btn,
    .event-info .link a.btn-white {
        transition: opacity 0.2s linear 0s;
        opacity: 1;
    }

    .event-info .link a.btn:hover,
    .event-info .link a.btn-white:hover {
        opacity: 0.8;
    }
}

/* ----- Event Outline ----- */
#event-outline .event-title {
    padding: 0 20px;
    margin: 10px 0 30px;
}

#event-outline .event-title img {
    max-width: 350px;
    margin: 0 auto;
}

#event-outline .keyvisual {
    border-radius: 5px;
    overflow: hidden;
}

#event-outline .event-info .event {
    margin: 40px 0 0;
}

#event-outline .event-info .link .btn-white {
    margin-top: 5px;
}

#event-outline .lead {
    margin: 60px 0 0;
}

#event-outline .lead img {
    max-width: 500px;
    margin: 0 auto;
}

#event-outline .outline-video {
    padding: 40px 0 0;
}

#event-outline .outline-video .article-video-wrapper {
    margin-top: 0!important;
}

@media all and (min-width: 768px), print {
    #event-outline {
        padding: 50px 90px 60px;
    }

    #event-outline .event-title {
        padding: 0;
        margin: 0 0 30px;
    }

    #event-outline .event-title img {
        max-width: 100%;
    }

    #event-outline .event-info {
        display: flex;
        justify-content: space-between;

    }

    #event-outline .event-info > .event {
        width: 290px;
        margin: 30px 0 0;
    }

    #onlinesale-outline {
        padding: 1px 0 0;
    }

    #event-outline .lead {
        margin: 50px 0 0;
    }

    #event-outline .lead img {
        max-width: 100%;
    }
}

/* ----- Sale Items ----- */
#sale-items {
    padding: 20px;
}

#sale-items .tag {
    max-width: 500px;
    margin: 0 auto 5.8vw;
}

#sale-items .tag-inner .num {
    width: 23%;
}

#sale-items .tag-inner .photo-area {
    position: relative;
    margin: 1.3vw 0 4vw;
}

#sale-items .tag-inner .photo {
    border-radius: 10px;
    overflow: hidden;
}

#sale-items .tag-inner .badge {
    position: absolute;
    width: 23.8%;
    right: 0;
    bottom: 0;
    transform: translateY(78%);
}

#sale-items .item-detail {
    display: none;
}

@media all and (min-width: 768px), print {
    #sale-items {
        padding: 40px 0 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #sale-items .tag {
        width: 185px;
        position: relative;
        margin: 0 0 20px;
        cursor: pointer;
        opacity: 1;
        transition: opacity 0.2s linear 0s;
    }

    #sale-items .tag:hover {
        opacity: 0.8;
    }

    #sale-items .tag::before {
        display: block;
        content: "";
        width: 189px;
        height: 422px;
        position: absolute;
        top: 0;
        left: 2px;
        background: url("../img/tag_shadow.png") no-repeat 0 0;
        background-size: cover;
    }

    #sale-items .tag-bg {
        width: 185px;
        height: 416px;
        background: url("../img/tag.png") no-repeat 0 0;
        background-size: 100%;
        position: relative;
    }

    #sale-items .tag-inner {
        padding: 57px 18px 0;
    }

    #sale-items .tag-inner .num {
        width: 100%;
        margin: 0;
    }

    #sale-items .tag-inner .photo-area {
        margin: 15px 0 20px;
    }

    #sale-items .tag-inner .photo {
        border-radius: 5px;
    }

    #sale-items .tag-inner .badge {
        bottom: -24px;
        right: -27px;
        width: 63px;
        height: 63px;
        transform: none;
    }
}

/* ----- Event Detail ----- */
#evevnt-detail {

}

#event-detail .event-info .event {
    margin: 0;
    padding-top: 40px;
}

.onlinesale-info {
    margin: 2em auto 0;
    text-align: left;
    max-width: 350px;
}

.onlinesale-info h3 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #128A44;
}

.onlinesale-info dt {
    color: #128A44;
    margin-top: 0.5em;
}

.onlinesale-info li {
    position: relative;
    /* text-indent: -1em; */
    padding-left: 1em;
    margin-top: 0.1em;
}

.onlinesale-info li::before {
    content: "\30FB";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    text-align: center;
}

#festa-detail {
    padding-bottom: 0;
    border-bottom: none;
}

#festa-detail .intro {
    margin: 1em auto 0;
    text-align: left;
    max-width: 350px;
}

#festa-info {
    margin: 2em auto 0;
    text-align: left;
    max-width: 350px;
}

#festa-info > dt {
    color: #128A44;
    margin: 0 0 0.2em;
    font-size: 1.6rem;
    font-weight: bold;
}

#festa-info > dd {
    margin: 0 0 1em;
}

#festa-info > dd:last-child {
    margin-bottom: 0;
}

#festa-cast {
    display: flex;
    justify-content: space-between;
}

#festa-cast li {
    width: calc(50% - 10px);
}

#festa-cast li .photo {
    margin: 0 0 5px;
}

#festa-cast li .name {
    font-size: 1.4rem;
    text-align: center;
}

/* #festa-info dd.content li {
    text-indent: -1em;
    padding-left: 1em;
} */

#festa-info .content-list {
    margin: 1em 0 0;
}

#festa-info .content-list dt {
    font-size: 1.4rem;
    /* font-weight: bold; */
    line-height: 1.5;
    margin: 0 0 3px;
    color: #128A44;
}

#festa-info .content-list dd {
    margin-bottom: 1em;
    font-size: 1.4rem;
}

#festa-info .content-list dd:last-child {
    margin-bottom: 2em;
}

#festa-info dd.audience {
    text-align: justify;
    word-wrap: break-word;
}

#festa-info dd.audience p {
    margin-bottom: 1em;
}

#festa-info dd.audience .themes {
    /* display: flex;
    flex-wrap: wrap; */
    margin-bottom: 2em;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5em 2em;

}

#festa-info dd.audience .themes > dt {
    color: #128A44;
    /* width: 1.2em; */
    margin-top: 1em;
}

#festa-info dd.audience .themes > dt:first-child {
    margin-top: 0;
}

#festa-info dd.audience .themes > dd {
    /* width: calc(100% - 1.2em); */
}

#festa-info dd.audience .terms {
    font-size: 1.4rem;
}

#festa-info dd.audience .terms > dt {
    color: #128A44;
}

#festa-info dd.audience .terms .terms-item {
    margin-bottom: 1em;
}

#festa-info dd.audience .terms .terms-item li {
    /* text-indent: -1em; */
    padding-left: 1em;
    margin-top: 0.1em;
    position: relative;
}

#festa-info dd.audience .terms .terms-item li::before {
    content: "\30FB";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    text-align: center;
}


@media all and (min-width: 768px), print {
    #event-outline, #event-detail {
        padding-bottom: 40px;
    }

    #event-detail .event-info .title {
        width: 400px;
        max-width: 100%;
    }

    #event-detail .event-info .link .btn {
        max-width: 400px;
    }

    .onlinesale-info {
        max-width: 400px;
    }

    #festa-detail .intro {
        margin-top: 2em;
        max-width: 400px;
    }

    /* #festa-info {
        display: flex;
        flex-wrap: wrap;
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    } */

    #festa-info {
        display: flex;
        flex-wrap: wrap;
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }

    #festa-info > dt {
        width: 6em;
        box-sizing: border-box;
        padding-right: 2em;
        text-align: right;
    }

    #festa-info > dd {
        width: calc(100% - 8em);
    }

    #festa-info .content-list {
        margin: 0;
    }

    #festa-info dt.audience,
    #festa-info dd.audience {
        width: 100%;

    }

    #festa-info dt.audience {
        text-align: left;
    }
}

/* ----- Link Anniversary ----- */
#link-anniversary {
    /* padding: 40px; */
    max-width: 350px;
    margin: 5vw auto;
}

#link-oedo {
    margin: 5vw 0 0;
}


@media all and (min-width: 768px), print {
    #link-anniversary {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        padding: 60px 0 0;
    }

    #link-oedo,
    #link-asakusa {
        width: 360px;
        margin: 0;
    }

    #link-oedo a,
    #link-asakusa a {
        opacity: 1;
        transition: opacity 0.2s linear 0s;
    }

    #link-oedo a:hover,
    #link-asakusa a:hover {
        opacity: 0.8;
    }

    #link-asakusa {
        margin-right: 40px;
    }

}




.featherlight .featherlight-content {
    padding: 0;
    margin: 0 20px;
    max-height: calc(100% - 40px);
    border-radius: 13px;
}

.featherlight .featherlight-close {
    display: none;
}

.featherlight-content .detail-inner {
    padding: 20px;
    max-width: 540px;
}

.featherlight-content .item-detail .detail-close {
    position: absolute;
    background: url('../img/item_detail_close.png') no-repeat 50% 50%;
    background-size: 20px;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
}

.featherlight-content .detail-inner .pc {
    display: none;
}

.featherlight-content .detail-inner {
    border-radius: 13px;
    /* text-align: center; */
}

.featherlight-content .detail-inner .num {
    width: 23%;
    margin-bottom: 10px;
}

.featherlight-content .detail-inner .photo-area {
    position: relative;
    margin: 0 0 30px;
}

.featherlight-content .detail-inner .photo {
    border-radius: 13px;
    overflow: hidden;
}

.featherlight-content .detail-inner .note {
    font-size: 1.2rem;
    margin-top: 0.5em;
    margin-right: 23.8%;
}

.featherlight-content .detail-inner .badge {
    position: absolute;
    width: 23.8%;
    right: -10px;
    bottom: -10px;
}

.featherlight-content .detail-inner .text-area {
    text-align: center;
    max-width: 398px;
    margin: 0 auto;
}

.featherlight-content .detail-inner .name img {
    width: 100%;
}

.featherlight-content .detail-inner .intro {
    text-align: left;
    font-size: 1.4rem;
    text-align: justify;
    margin: 2em 0;
}

@media all and (min-width: 768px) and (min-height: 690px), print {
    .featherlight-content .detail-inner .pc {
        display: block;
    }

    .featherlight-content .detail-inner .smp {
        display: none;
    }

    .featherlight-content .detail-inner {
        width: 840px;
        max-width: 100%;
        display: flex;
        padding: 50px 73px 25px;
        align-items: center;
    }

    .featherlight-content .item-detail .detail-close {
        cursor: pointer;
        opacity: 1;
        transition: opacity 0.2s linear 0s;
    }

    .featherlight-content .item-detail .detail-close:hover {
        opacity: 0.5;
    }

    .featherlight-content .detail-inner .photo-area {
        margin: 0;
    }


    .featherlight-content .detail-inner .photo {
        width: 420px;
        height: 420px;
        margin: 0;
    }

    .featherlight-content .detail-inner .badge {
        width: 90px;
        right: -40px;
        bottom: -40px;
    }

    .featherlight-content .detail-inner .note {
        position: absolute;
        left: 0;
        bottom: -2rem;
        font-size: 1rem;
        margin-right: 0;
    }


    .featherlight-content .detail-inner .num {
        width: 100%;
        margin: 0 0 20px;
    }

    .featherlight-content .detail-inner .text-area {
        width: 194px;
        margin: 0 0 0 auto;
    }

    .featherlight-content .detail-inner .intro {
        font-size: 1.2rem;
    }

}