/* -------------------------------------
    News | Schedule | English page 
----------------------------------------*/

.sub-wrapper {
    padding: 0;
    margin: 90px auto 0;
    max-width: 1000px;
    background-color: #fff;
    -webkit-filter: drop-shadow(0px 0px 10px #fff);
    filter: drop-shadow(0px 0px 10px #fff);
}

.subvisual {
    background: url(../img/schedule-header_c_www.lukasbeck.com.webp) no-repeat 50% 38% / cover;
    height: 140px;
    display: grid;
    align-items: end;
    justify-content: center;
}

@media(min-width: 800px) {
    .subvisual {
        height: 200px;
    }
}

@media(min-width: 1000px) {
    .subvisual {
        height: 200px;
    }
}

.subvisual h1 {
    color: var(--color-main);
    margin: 0 0 -3.5em;
    letter-spacing: .1em;
}

.subvisual+* {
    margin-top: 10rem;
    padding: 0 2rem;
}

/* News
========================================*/

.list-news li {
    padding: 1rem 0;
    border-bottom: 1px dotted var(--color-main);
    line-height: 1.75;
}

.list-news time {
    display: block;
}

@media (min-width: 768px) {

    .list-news li {
        display: flex;
        align-items: center;
    }

    .list-news time {
        font-size: 1rem;
        margin: 0 2em 0 1em;
        width: 5em;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 5rem 0;
}

.pagination li {
    margin: 5px;
}

.pagination a {
    text-decoration: none;
    display: block;
    padding: .5rem .75rem;
    background-color: #bbbbbb;
    color: #fff;
}

.pagination a:hover {
    background-color: #333;
}

.pagination .active a {
    background: var(--color-main);
    pointer-events: none;
}

/* Schedule
========================================*/

.tour-schedule {
    padding-bottom: 5rem;
}

.tour-schedule__list a {
    font-weight: bold;
}

.tour-schedule__list li {
    padding: .5em .5rem;
    border-bottom: 1px dotted var(--color-main);
}

.tour-schedule__list li:last-child {
    border-bottom: none;
}

.tour-schedule__list__icon {
    width: 64px;
    height: 64px;
    align-self: center;
    border-radius: 5px;
    background-color: var(--color-red);
    font-size: .625rem;
    font-weight: bold;
    text-align: center;
    display: grid;
    align-items: center;
    grid-row: 1 / 4;
}

.tour-schedule__list__icon:hover {
    opacity: .6;
}

.tour-schedule__list__icon-b {
    background-color: var(--color-green);
}

.tour-schedule__list__icon a {
    display: block;
    color: #fff;
    text-decoration: none;
}

.tour-schedule__list__icon i {
    display: block;
    font-size: 1.5rem;
    font-style: normal;
}

.tour-schedule__list__date b {
    font-size: 1.1em;
}

.tour-schedule__list li dl {
    display: grid;
    grid-template-columns: auto 64px;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    -moz-column-gap: 8px;
    column-gap: 8px;
}

.tour-schedule__list__date span,
.tour-schedule__list__inquiry {
    font-size: .9em;
}

@media (min-width: 768px) {
    .tour-schedule__list-japantour li dl {
        display: grid;
        grid-template-columns: auto 64px;
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
    }
}


/* English
========================================*/

body:lang(en) {
    font-family: "Times New Roman", serif;
    letter-spacing: 0.05em;
    font-weight: 400;
}

:is(h1, h2, h3, h4, h5, h6):lang(en) {
    font-family: 'EB Garamond', serif;
}

.hdg-l1:lang(en) {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: .08em;
}

.nav-global:lang(en) {
    text-transform: uppercase;
}

.mv-hdg:lang(en) img+img {
    transform: none;
}

.purchase-ticket__btn__venue:lang(en),
.purchase-ticket__btn__date:lang(en) {
    font-family: 'EB Garamond', serif;
}

.numbering-list:lang(en) {
    margin: 2rem 0 2rem 2em;
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
}

/* ticket price */

.ticket-price {
    font-size: 1.25rem;
    font-weight: 600;
    max-width: 620px;
    padding: 1em;
    margin: 0 auto;
}

.ticket-price__contents {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.ticket-price dt {
    padding: 0.25em 0.75em;
    border-radius: 2px;
    width: 100%;
    text-align: center;
    color: #fff;
    letter-spacing: .1em;
}

.ticket-price__holidays {
    background-color: var(--color-pink);
}

.ticket-price__weekdays {
    background-color: var(--color-blue);
}

.ticket-price__u20 {
    background-color: var(--color-green);
}

.ticket-price dd {
    display: block;
    text-align: center;
    margin: 0;
}

.ticket-price__contents-day {
    font-size: 1rem;
}

.ticket-price__contents-price {
    margin: 1.5rem 0;
}

.ticket-price ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1em;
    justify-content: center;
}

.ticket-price__notes {
    width: 88%;
    font-size: .75em;
    margin: 1em auto 2em;
    padding-left: 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1em;
}

.ticket-price__notes li::before {
    content: "*";
}

@media(min-width: 768px) {

    .ticket-price dd {
        margin-left: 2.5rem;
        text-align: left;
    }

    .ticket-price__contents {
        display: grid;
        align-items: center;
        grid-template-columns: 200px 1fr;
    }

    .ticket-price__contents-price {
        margin: 0;
    }

    .ticket-price dt {
        display: inline-block;
        text-align: center;
    }

    .ticket-price ul {
        justify-content: flex-start;
    }
}

/* schedule */
.list-schedule {
    margin-top: -20px;
}

.list-schedule li {
    padding: 20px 50px 20px 20px;
    position: relative;
    font-size: clamp(0.813rem, 0.725rem + 0.438vw, 1.25rem);
}

.list-schedule li small {
    color: #333;
}

.list-schedule li+li {
    border-top: 1px solid #cccccc;
}

.list-schedule li .icon_a,
.list-schedule li .icon_b {
    display: block;
    padding: 15px 10px 11px;
    font-size: 12px;
    line-height: 1.6;
    font-weight: bold;
    position: absolute;
    border-radius: 5px;
    top: 12px;
    right: 15px;
    background: var(--color-red);
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.list-schedule .icon_a i,
.list-schedule .icon_b i {
    display: block;
    font-style: normal;
    font-size: 16px;
}

.list-schedule li .icon_b {
    background: var(--color-green);
}

.icon_a:hover,
.icon_b:hover {
    opacity: .6;
}

.list-schedule a {
    font-weight: bold;
}

@media (max-width: 768px) {
    .list-schedule {
        margin-top: 5px;
    }

    .list-schedule li {
        padding: 15px 75px 15px 0;
    }

    .list-schedule li .icon_a,
    .list-schedule li .icon_b {
        padding: 7px 7px 6px;
        line-height: normal;
        font-size: 9px;
        top: 12px;
        right: 0;
    }

    .list-schedule .icon_a i,
    .list-schedule .icon_b i {
        font-size: 15px;
    }
}