/* CSS Document */

/* decoration font
==================================================*/

/* regular */
@font-face {
    font-family: 'Kaisei Decol';
    src: url(../font/KaiseiOpti-Regular.woff2);
    font-weight: normal;
    font-style: normal;
}

/* bold */
@font-face {
    font-family: 'Kaisei Decol';
    src: url(../font/KaiseiOpti-Bold.woff2);
    font-weight: bold;
    font-style: normal;
}

/* variables
==================================================*/
:root {
    --color-main: #192987;
    --color-main-light: #b0b7da;
    --color-main-dark: #001b75;
    --color-line: #dfdcce;
    --color-spnav: #b5ad83;
    --color-header: #0065a1;
    --color-footer: #124f95;
    --color-blue: #00a7cb;
    --color-red: #d6024e;
    --color-red-btn: #e2407e;
    --color-red-btn-shadow: #bf3469;
    --color-pink: #ed6e90;
    --color-green: #0db269;
    --color-gray: #686664;
    --color-lightorange: #f08200;
    --color-darkorange: #ea5404;
    --color-img-back: #ddede0;
}

/* init
==================================================*/

html {
    scroll-padding-top: 90px;
    scroll-behavior: smooth;

}

body {
    font-family: 'Noto Serif JP', serif;
    font-feature-settings: "palt";
    font-size: clamp(0.938rem, 0.925rem + 0.063vw, 1rem);
    color: #4D4D4D;
    cursor: auto;
}

p {
    margin: 15px 0 0;
}

img {
    max-width: 100%;
    vertical-align: top;
    border: none;
}

img[loading="lazy"] {
    background-color: inherit;
}

* a {
    transition: all, 0.3s;
    color: var(--color-main-dark);
}

* a:hover,
* a:hover img {
    color: #000;
    transition: all, 0.3s;
}

* a:hover img {
    opacity: 0.6;
}

small {
    font-size: .75em;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

dd {
    margin-left: 0;
}

::-moz-selection {
    background: var(--color-main);
    color: #fff;
}

::selection {
    background: var(--color-main);
    color: #fff;
}

::-moz-selection {
    background: var(--color-main);
    color: #fff;
}

@media (min-width:768px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/* decoration
==================================================*/

body::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -1;
    background: url(../img/background-image.png) no-repeat bottom / cover;
    opacity: 0.5;
}

.mv-to-contents {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 5%);
}

.wrapper {
    background-color: rgba(255, 255, 255, 0.6);
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

@media(max-width: 768px) {
    .wrapper {
        padding: 1rem;
        margin: 0 0.5em;
    }
}


/* common
==================================================*/

.only-sp {
    display: inherit;
}

@media (min-width: 768px) {
    .only-sp {
        display: none;
    }
}

.attention {
    color: var(--color-red);
}

.hidden {
    display: none;
}

summary {
    display: block;
}

summary::-webkit-details-marker {
    display: none;
}

.summary_inner {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-weight: bold;
    color: var(--color-main-dark);
}

.summary-icon {
    display: block;
    position: relative;
    width: 24px;
    right: 8px;
    margin-left: 6px;
    flex-shrink: 0;
    transform-origin: center 43%;
    transition: transform 0.4s;
}

details[open] .summary-icon {
    transform: rotate(180deg);
}

.summary-icon::before,
.summary-icon::after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 3px;
    background-color: var(--color-main);
}

.summary-icon::before {
    left: 0;
    transform: rotate(45deg);
}

.summary-icon::after {
    right: 0;
    transform: rotate(-45deg);
}

/* header
==================================================*/
header {
    background-color: var(--color-header);
    opacity: .9;
    padding: 20px;
    position: fixed;
    width: 100%;
    height: 90px;
    z-index: 2;
    top: 0;
}

.hd-inner {
    display: table;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

#logo,
.hd-title {
    display: table-cell;
}

#logo {
    width: 63px;
    padding-right: 20px;
}

.hd-title {
    width: 260px;
    position: relative;
    top: 2px;
}

.hd-inner__title {
    display: flex;
    align-items: center;
}

.hd-inner__title .logo {
    width: 4rem;
    padding-right: 1rem;
}

.hd-inner__title .title {
    width: 11.875rem;
}

@media (max-width: 879px) {
    header {
        opacity: .95;
        padding: 0;
    }

    .hd-inner {
        display: block;
        text-align: left;
    }

    #logo,
    .hd-title {
        display: inline-block;
    }

    #logo {
        width: 30px;
        padding-right: 0;
        margin: 10px 5px 10px 11px;
    }

    .hd-title {
        width: 140px;
        padding: 0;
        margin-top: 5px;
    }

    .hd-inner__title .logo {
        width: 2rem;
        margin: 10px;
        padding: 0;
    }

    .hd-inner__title .title {
        width: 8.75rem;
    }
}

/* nav
==================================================*/
/* nav-global */
.nav-global {
    font-size: 0;
    position: absolute;
    right: 0;
    top: 18px;
}

.nav-global li {
    display: inline-block;
    font-size: 18px;
}

.nav-global li+li {
    margin-left: 30px;
}

.nav-global li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0 0 10px;
    position: relative;
    text-decoration: none;
    font-size: 16px;
}

.nav-global li a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    display: block;
    transition: all, 0.2s;
}

.nav-global li a:hover {
    opacity: 0.6;
}

.nav-global li a:hover::after {
    bottom: 6px;
    width: 60%;
    height: 2px;
}

/* nav-utility */
.nav-utility {
    font-size: 0;
    position: absolute;
    right: 0;
    top: -10px;
}

.nav-utility li {
    display: inline-block;
    margin-left: 12px;
}

.nav-utility li img {
    width: 22px;
}

/* nav-archive */
.nav-archive {
    text-align: center;
    background: #ececec;
    padding: 20px 10px;
    margin-top: 0;
}

.nav-archive li {
    display: inline-block;
    font-size: 12px;
    margin: 0 10px;
}

/* nav-sns */
.nav-sns li {
    list-style: none;
    display: inline-block;
    margin: 0 5px;
}

.nav-sns li img {
    width: 36px;
}

/* nav-logo */
.nav-logo li {
    list-style: none;
    display: inline-block;
    margin: 10px 5px;
}

/* nav-txt */
.nav-txt {
    text-align: center;
    margin: 30px 20px 0;
    letter-spacing: .1em;
}

.nav-txt a {
    text-decoration: none;
}

/* nav-sale */
.nav-sale {
    display: block;
    margin: 5px 20px 15px;
    padding: 7px 20px;
    background: var(--color-blue);
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
}

.nav-sale:hover {
    color: #fff;
    opacity: 0.6;
}

/* nav-toggle */
[class*="nav-toggle"] {
    cursor: pointer;
}

/* nav-lang */
.nav-lang {
    margin-top: 20px;
}

.nav-lang li {
    display: inline-block;
}

.nav-lang li a {
    color: #fff;
    font-size: 14px;
}

/* nav-pagetop */
.nav-pagetop {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: 110px;
    background: var(--color-footer);
    opacity: 0.8;
    border-radius: 50%;
    z-index: 10;
}

.nav-pagetop a {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
}

@media (max-width: 879px) {

    /* nav-global */
    .nav-global {
        position: static;
        display: table;
        width: 100%;
        border-top: 1px solid var(--color-spnav);
    }

    .nav-global li {
        display: table-cell;
        font-size: 10px;
        width: 10%;
        text-align: center;
        white-space: pre;
    }

    .nav-global li+li {
        margin-left: 0;
        border-left: 1px solid var(--color-spnav);
    }

    .nav-global li a {
        padding: 10px 5px;
        font-size: 11px;
    }

    .nav-global li a::after {
        display: none;
    }

    /* nav-utility */
    .nav-utility {
        font-size: 0;
        right: 10px;
        top: 14px;
    }

    .nav-utility li {
        margin-left: 5px;
    }

    /* nav-com */
    .nav-com a {
        padding: 15px;
        font-size: 16px;
        line-height: 1.5;
    }

    /* nav-pagetop */
    .nav-pagetop {
        right: 10px;
    }
}

/* Purchase-Ticket
==================================================*/

.purchase-ticket {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url(../img/background-image-btn.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-color: rgba(255, 255, 255, .4);
    background-blend-mode: lighten;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.purchase-ticket::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: relative;
    top: 4px;
}

.purchase-ticket h2 {
    background: #fff;
    font-size: 0.875rem;
    line-height: 1;
    margin: -.75em 0 0;
    padding: .5em 1em;
    color: var(--color-red);
    letter-spacing: .05em;
    border: 2px solid var(--color-blue);
    -o-border-image: linear-gradient(to left, #E9B8B8 10%, #A5CAD7 100%) 1;
    border-image: linear-gradient(to left, #E9B8B8 10%, #A5CAD7 100%) 1;
    border-top: none;
    border-bottom: none;
    z-index: 2;
}

.purchase-ticket__btn {
    width: 100%;
    max-width: 1000px;
    margin: .5rem auto;
    padding: 0 1.5rem .75rem;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.purchase-ticket__btn>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    background-color: var(--color-red-btn);
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.25em 0.5em;
    box-shadow: 0 3px 0 var(--color-red-btn-shadow);
    text-decoration: none;
    transition: .2s all;
}

.purchase-ticket__btn>a:hover {
    background-color: var(--color-red-btn-shadow);
    box-shadow: none;
    transform: translateY(3px);
}

.purchase-ticket__btn>a:active {
    background-color: #fff;
    box-shadow: inset 0 3px var(--color-red-btn-shadow);
    color: var(--color-pink);
    border: none;
    transform: translateY(3px);
}

.purchase-ticket__btn>a+a {
    -webkit-filter: hue-rotate(346deg);
    filter: hue-rotate(346deg);
}

.purchase-ticket__btn__venue {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(0.75rem, 4vw - 1rem, 1.063rem);
    letter-spacing: .05em;
}

.purchase-ticket__btn__venue span {
    display: none;
}

.purchase-ticket__btn__date {
    font-family: 'Kaisei Decol', serif;
    font-weight: 500;
    font-size: clamp(1.125rem, 4vw - 1rem, 1.25rem);
    font-weight: bold;
    line-height: 1.25;
}

.purchase-ticket__btn__date .month {
    vertical-align: super;
    font-size: smaller;
}

@media(min-width: 769px) {
    .purchase-ticket {
        background-color: rgba(0, 0, 0, .25);
        background-blend-mode: darken;
    }

    .purchase-ticket__btn>a {
        flex-direction: row;
        justify-content: center;
        padding: .75rem;
        box-shadow: 0 5px 0 var(--color-red-btn-shadow);
    }

    .purchase-ticket__btn>a:hover {
        transform: translateY(5px);
    }

    .purchase-ticket__btn>a:active {
        box-shadow: inset 0 5px var(--color-red-btn-shadow);
        transform: translateY(5px);
    }

    .purchase-ticket__btn__venue {
        padding-right: 1em;
    }
}

@media(min-width: 982px) {
    .purchase-ticket__btn__venue span {
        display: inline;
    }
}

/* YouTube
==================================================*/

.youtube {
    max-width: 560px;
    margin: 0 auto;
}

.youtube__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 56.25%;
}

.youtube__inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.release-schedule ol {
    margin: 1rem 0;
    padding: 0 1rem;
}

.release-schedule ol li+li {
    margin-top: 1rem;
}

.release-schedule ol li span {
    font-weight: bold;
    display: block;
}

@media(min-width: 768px) {
    .release-schedule ol {
        padding: 0 2rem;
    }

    .release-schedule ol li span {
        display: inline;
    }

    .release-schedule ol li span::after {
        content: "：";
    }

    .release-schedule ol li+li {
        margin-top: .5rem;
    }
}

/* price
==================================================*/

.price__plans {
    padding: 0 1.5rem;
}

.price__plans__term {
    color: #fff;
    letter-spacing: .1em;
    padding: .25em .75em;
    border-radius: 2px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.price__plans__term--holidays {
    background-color: var(--color-pink);
}

.price__plans__term--weekdays {
    background-color: var(--color-blue);
}

.price__plans__term--u20 {
    background-color: var(--color-green);
}

.price__plans dd {
    text-align: center;
}

.price__plans__date {
    margin-top: .75rem;
    font-size: 1rem;
}

.price__plans__main {
    margin: .25rem 0;
    font-size: 1.25rem;
    font-weight: bold;
}

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

.price__plans__supplement {
    margin-bottom: 2rem;
}

.price__plans__supplement dd {
    display: inline-block;
    margin: 0;
}

.price__plans__supplement dd+dd {
    margin-left: 1em;
}

.price__plans__supplement--u20 {
    font-size: .75rem;
}

@media(min-width: 768px) {
    .price__plans {
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 200px auto;
        justify-content: center;
    }

    .price__plans__term {
        align-self: center;
    }

    .price__plans__term--holidays {
        grid-row: 1/4;
    }

    .price__plans__term--weekdays {
        grid-row: 4/7;
    }

    .price__plans__term--u20 {
        grid-row: 7/10;
    }

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

    .price__plans__date {
        margin-top: 2rem;
    }

    .price__plans__main ul {
        justify-content: flex-start;
    }

    .price__plans__supplement dl {
        display: flex;
    }
}

/* notes
=================================================*/

.price__notes {
    font-size: .75rem;
    margin: 2em auto;
    padding: 0 1rem 0 1rem;
}

@media(min-width: 768px) {
    .price__notes {
        padding: 0 2rem 0 2rem;
    }
}

.price__notes li {
    padding-left: 1em;
}

.price__notes li::before {
    margin-left: -1em;
    content: "※";
}

.price__notes dd {
    margin-left: 1em;
}

.price__notes dd::before {
    margin-left: -1em;
    content: "◎";
}

/* pop-section
=================================================*/

.pop>* {
    font-family: 'Kaisei Decol', serif;
}


/* listen-with-family
=================================================*/

.listen-with-family {
    margin-top: 5rem;
    border: 4px solid var(--color-lightorange);
    border-radius: 16px;
    padding: 0 1rem 1.5rem;
}

.listen-with-family h3 {
    color: #fff;
    text-align: center;
    margin: -1.5rem 0 0;
}

.listen-with-family h3 span {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-color: var(--color-darkorange);
    border-radius: 50%;
    font-size: clamp(1.5rem, 4vw - 1rem, 2rem);
    text-align: center;
    line-height: 1.4;
}

.listen-with-family h3 span:nth-of-type(even) {
    background-color: var(--color-lightorange);
}

.listen-with-family-h3-br {
    display: none;
}

@media(max-width: 368px) {
    .listen-with-family-h3-br {
        display: block;
    }
}

.listen-with-family h4 {
    color: var(--color-darkorange);
    font-size: 1.5rem;
    padding: .5rem;
    border-bottom: 4px dotted var(--color-darkorange);
    margin: .75rem 0;
}

.listen-with-family__example {
    display: flex;
    flex-direction: column;
}

.listen-with-family__example p {
    text-align: center;
    font-size: clamp(1rem, 4vw - 1rem, 1.25rem);
}

.listen-with-family__example p span {
    color: var(--color-darkorange);
    font-weight: 600;
}

.listen-with-family__example p b:nth-of-type(2) {
    display: inline-block;
    margin-top: 1em;
}

.listen-with-family__child-minding-center {
    margin-top: 2rem;
    padding: 1.25rem;
    background-color: #f5f1de;
    border-radius: 10px;
}

.listen-with-family__child-minding-center h5 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--color-pink);
}

.listen-with-family__child-minding-center h5+p {
    margin: 0;
}

.listen-with-family__child-minding-center p:nth-child(3) {
    color: #fff;
    border-radius: 16px;
    padding: 4px 1em;
    background-color: var(--color-blue);
}

.listen-with-family__child-minding-center dl {
    padding: 0;
    font-family: 'Noto Srif JP', serif;
    font-size: clamp(1rem, 4vw - 1rem, 1.25rem);
}

.listen-with-family__child-minding-center dt::first-letter {
    font-size: 50%;
    vertical-align: middle;
    padding-right: .25rem;
    color: var(--color-blue);
}

.listen-with-family__child-minding-center dd {
    margin-left: 1em;
}

.listen-with-family__child-minding-center dd a {
    display: inline-block;
    margin-right: 8px;
    color: var(--color-blue);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

@media(min-width: 768px) {
    .listen-with-family {
        padding: 0 2rem 1.5rem;
    }

    .listen-with-family__example {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .listen-with-family__child-minding-center {
        padding: 2rem;
    }

    .listen-with-family__child-minding-center dl {
        padding-left: 1rem;
    }
}

/* hdg
==================================================*/

.hdg-top {
    text-align: center;
    font-size: 30px;
    color: var(--color-main);
}

.hdg-top span {
    display: block;
    font-size: 36px;
    color: var(--color-main-dark);
}

.hdg-l1 {
    text-align: center;
    color: var(--color-main);
    font-size: 34px;
    font-weight: bold;
}

.hdg-l1::after {
    content: "";
    width: 22px;
    height: 7px;
    display: block;
    position: absolute;
    border-bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-bottom: 4px solid var(--color-main);
}

.hdg-l2 {
    color: var(--color-blue);
    font-size: 26px;
    font-weight: bold;
    line-height: 1.6;
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 15px;
    margin: 0;
}

.hdg-l4 {
    background: var(--color-main);
    text-align: center;
    font-size: 22px;
    padding: 10px 0;
    margin-top: 80px;
    color: #fff;
}

.hdg-s2 {
    font-size: 18px;
    margin: 0 0 -10px;
    font-family: 'Noto Sans JP', sans-serif;
}

.hdg-s4 {
    font-size: 22px;
    margin: 0 0 -10px;
    font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 768px) {
    .hdg-top {
        font-size: 20px;
    }

    .hdg-top span {
        font-size: 26px;
    }

    .hdg-l1 {
        font-size: 22px;
    }

    .hdg-l1::after {
        width: 17px;
        height: 5px;
    }

    .hdg-l2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .hdg-l4 {
        font-size: 18px;
        margin: 40px 0 0;
        padding: 5px;
    }

    .hdg-l4 span::after {
        width: 20px;
        height: 20px;
        padding: 1px;
        font-size: 12px;
        top: -2px;
        line-height: 17px;
    }

    .hdg-s2 {
        font-size: 16px;
        margin: 0 0 -10px;
    }
}

/* txt
==================================================*/
.txt-lead {
    margin-top: 70px;
    border-top: 1px solid var(--color-main);
    border-bottom: 1px solid var(--color-main);
    padding: 30px;
    line-height: 2;
    text-align: justify;
}

.txt-lead2 {
    text-align: center;
    margin: 0 0 30px;
    color: var(--color-main);
    font-size: 18px;
    font-weight: bold;
}

.txt-lead3 {
    text-align: center;
    margin: 0 0 30px;
    font-size: 18px;
}

.txt-lead3 strong {
    font-size: 18px;
    color: var(--color-blue);
    font-size: 130%;
}

.txt-caption {
    font-size: 80%;
}

.txt-strong {
    font-weight: bold;
    color: var(--color-blue);
    font-size: 130%;
}

@media (max-width: 768px) {
    .txt-lead {
        margin-top: 40px;
        padding: 15px;
    }

    .txt-lead2 {
        margin: 15px 0 20px;
        font-size: 16px;
    }

    .txt-lead3 {
        margin: 20px 0 20px;
        font-size: 14px;
    }

    .txt-lead3 strong {
        font-size: 140%;
    }
}

.introduction-txt p {
    text-align: justify;
}

.introduction-btn {
    display: block;
    margin: 1rem 0 1rem auto;
    background-color: inherit;
    color: var(--color-main);
    padding: 0.5em 1em .25em;
    outline: 0;
    border: none;
    border-bottom: 1px var(--color-main) solid;
    font-family: 'Noto Serif JP', serif;
    cursor: pointer;
    transition: .5s;
}

.introduction-btn::after {
    content: "▼ もっと詳しく";
    transition: .2s;
}

.introduction-btn.on-click::after {
    content: "▲ 閉じる";
}

/* layout
==================================================*/
/* base */

.contents {
    background: url(../img/bg_btm2023.jpg) no-repeat center top;
    background-size: contain;
    margin-top: 90px;
}

.wrapper.contents {
    padding: 212px 0 0;
}

@media(max-width: 768px) {
    .wrapper.contents {
        padding: 160px 0 0;
    }
}

@media(max-width: 520px) {
    .wrapper.contents {
        padding: 120px 0 0;
    }
}

.contents article {
    background: #fff;
    /* min-height: 100vh; */
}

section {
    margin: 0 auto;
}

.contents section,
.contents .news-contents {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

section+section {
    margin-top: 60px;
}

section.line {
    border-top: 6px double var(--color-line);
    padding-top: 60px;
}

section.line .icon {
    width: auto;
    position: relative;
    margin-left: 10px;
    top: 8px;
}

section.line .ph {
    text-align: center;
}

section.line .ph picture>* {
    width: auto;
    max-width: 100%;
}

.contents article {
    padding-top: 5rem;
}

@media (max-width: 768px) {
    .contents {
        padding-top: 120px;
        background-size: 100%;
        margin-top: 88px;
    }

    .contents article {
        padding-top: 40px;
    }

    section.line {
        padding-top: 20px;
    }
}

/* column */
.lyt-column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
    align-items: stretch;
}

.lyt-column+.lyt-column {
    margin-top: 20px;
}

.lyt-column+.txt-caption {
    margin-top: 30px;
}

.lyt-column.line {
    border-top: 1px solid #dddddd;
    margin-top: 50px;
    padding-top: 50px;
}

.col2 {
    margin-top: 2rem;
}

.col2>* {
    width: 50%;
    padding-right: 20px;
}

.col2>*+* {
    padding: 0 0 0 20px;
}

@media (max-width: 768px) {
    .lyt-column+.lyt-column {
        margin-top: 0;
    }

    .lyt-column+.txt-caption {
        margin-top: 20px;
    }

    .lyt-column.line {
        margin-top: 20px;
        padding-top: 10px;
    }

    .col2 {
        margin-top: 40px;
    }

    .col2>* {
        width: 100%;
        padding: 0;
    }
}

/* box-program */
.box-program {
    background: #fff;
    text-align: center;
    padding: 0;
    width: 47%;
    border-radius: 8px;
    border: 20px solid var(--color-main);
}

.box-program-inner {
    border-radius: 5px;
}

.box-program-hdg {
    text-align: center;
    font-size: 20px;
    margin: 0;
    color: #fff;
    background: var(--color-main);
    padding-bottom: 15px;
}

@media (max-width: 768px) {
    .box-program {
        width: 100%;
        border: 10px solid var(--color-main);
    }

    .box-program+.box-program {
        margin-top: 20px;
    }

    .box-program-inner {
        border-radius: 5px;
    }

    .box-program-hdg {
        font-size: 18px;
        padding-bottom: 7px;
    }
}

/* box-day */
.box-day {
    padding-top: 15px;
    width: 15%;
    font-size: 29px;
    text-align: center;
    color: var(--color-main);
    line-height: 1.3;
}

.box-day span {
    display: block;
    font-size: 20px;
    line-height: 1.5;
}

.box-day+* {
    width: 80%;
}

@media (max-width: 768px) {
    .box-day {
        padding-top: 15px;
        width: 100%;
        font-size: 26px;
        margin-bottom: 15px;
    }

    .box-day span {
        font-size: 18px;
    }

    .box-day+* {
        width: 100%;
    }

    .lyt-column+.lyt-column .box-day {
        display: block;
    }

    .lyt-column+.lyt-column+.lyt-column .box-day {
        display: block;
    }

    .lyt-column+.lyt-column+.lyt-column+.lyt-column .box-day {
        display: block;
    }
}

/* box */
.box-01 {
    padding: 20px 30px;
    background: #fefcf3;
}

.box-01+.box-01 {
    margin-top: 10px;
}

.box-02 {
    margin-top: 50px;
    padding: 20px 30px 35px 5px;
    background: #f5f1de;
    border-radius: 5px;
}

.box-02>* {
    width: 50%;
}

.box-02>* img {
    margin-top: 20px;
}

.nav-com+.box-01 {
    margin-top: 30px;
}

.box-02 .color1 {
    font-size: 110%;
}

.special-discount__days div {
    display: flex;
    flex-direction: row;
    margin: .5em 0;
}

.special-discount__days dd {
    margin-left: 0;
}

.special-discount__days dd::before {
    content: "……";
    padding: 0 .5em;
}

@media(max-width: 520px) {
    .special-discount__days div {
        flex-direction: column;
    }

    .special-discount__days dd::before {
        padding: 0 0.5em 0 0;
    }
}

@media (max-width: 768px) {
    .box-01 {
        padding: 15px 20px;
        background: #fefcf3;
    }

    .box-01+.box-01 {
        margin-top: 10px;
    }

    .box-02 {
        margin-top: 40px;
        padding: 10px 25px 25px;
    }

    .box-02>* {
        width: 100%;
    }

    .box-02>* img {
        margin-top: 15px;
    }
}

/* box-movie */
.box-movie {
    width: 560px;
    margin: 40px auto 0;
}

@media (max-width: 768px) {

    .box-movie,
    .box-movie * {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .box-movie {
        margin-top: 30px;
    }
}

/* list
==================================================*/

/* profile */
.list-profile {
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
    align-items: stretch;
    gap: 2rem 0.5rem;
}

.list-profile li {
    text-align: center;
}

.list-profile .ph {
    display: block;
    width: 160px;
    height: 160px;
    overflow: hidden;
    border-radius: 50%;
    background: #eeeeee;
    margin: 0 auto;
}

.list-profile .ph:hover img {
    transform: scale(1.2);
    transition: all 0.3s;
}

.list-profile .name {
    display: block;
    text-transform: capitalize;
}

.list-profile-detail {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 1001;
    transition: all, 0.3s;
}

.list-profile-detail::after {
    content: "";
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.list-profile-box {
    width: 100%;
    max-width: 720px;
    max-height: 500px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #fff;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    text-align: left;
    padding: 1.5rem;
    position: fixed;
}

.list-profile-box p {
    overflow-y: scroll;
    max-height: 430px;
    display: block;
    margin-top: 0;
    padding-right: 12px;
    text-align: justify;
}

a.open+.list-profile-detail {
    visibility: visible;
    z-index: 1001;
    opacity: 1;
}

.nav-close a {
    display: block;
    text-align: center;
    width: 35px;
    height: 35px;
    background: #E9E9E9;
    border-radius: 50%;
    margin: 20px auto 0;
    font-size: 13px;
    position: absolute;
    right: -20px;
    top: -40px;
    text-align: center;
    line-height: 25px;
    padding: 5px;
    z-index: 1001;
    text-decoration: none;
}

@media (max-width: 768px) {
    .list-profile {
        margin-top: 2.5rem;
    }

    .list-profile .ph {
        width: 135px;
        height: 135px;
    }

    .list-profile-box {
        width: 85%;
        padding: 20px;
    }

    .nav-close a {
        right: -10px;
        top: -30px;
        font-size: 26px;
        line-height: 20px;
    }
}

/* program */
.list-program {
    margin: 0;
    padding: 20px 25px;
}

.list-program li {
    text-align: left;
    font-size: 14px;
    padding: 7px;
}

.list-program li small {
    color: #4d4d4d;
}

.list-program li+li {
    border-top: 1px dotted var(--color-main);
}

@media (max-width: 768px) {
    .list-program {
        padding: 10px 15px;
    }
}



.tour-schedule__others {
    padding-right: 0;
    text-align: right;
}

/* price */
.list-price>* {
    width: 23%;
    text-align: center;
    font-size: 28px;
    border: 1px solid var(--color-main-light);
    padding: 10px 10px 20px;
}

.list-price em {
    display: block;
    font-size: 40px;
    font-style: normal;
    color: var(--color-main);
}

.list-price span {
    display: block;
    font-size: 14px;
}

@media (max-width: 768px) {
    .list-price>* {
        width: 46%;
        font-size: 20px;
        margin-bottom: 10px;
        padding: 10px;
    }

    .list-price em {
        font-size: 26px;
        line-height: 1.2;
    }

    .list-price span {
        font-size: 10px;
    }
}

/* service */
.list-service {
    text-align: center;
}

.list-service li {
    display: inline-block;
    margin: 0 10px;
}

.list-service li img {
    width: 200px;
}

@media (max-width: 768px) {
    .list-service li {
        margin: 0 5px;
    }

    .list-service li img {
        width: 120px;
    }
}

/* sale */
[class*="list-sale"] {
    margin-top: 0;
}

[class*="list-sale"] li {
    width: 31%;
    background: #f6f4ef;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.list-sale2 li {
    width: 48%;
    background: #f6f4ef;
    text-align: center;
    padding: 20px;
}

.list-sale2 li dl dt {
    font-size: 1.25rem;
    font-weight: 500;
}

.list-sale-num {
    background: var(--color-main);
    padding: 20px 24px;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    position: relative;
    top: -20px;
}

.list-sale-tel {
    display: block;
    font-size: 1.25rem;
    color: var(--color-blue);
    font-weight: bold;
    line-height: 1.4;
    margin: 5px 0 0;
    text-decoration: none;
}

[class*="list-sale"] li em {
    display: block;
    color: #fff;
    background: var(--color-main);
    font-weight: bold;
    font-style: normal;
    margin: 0 0 20px;
    font-size: 110%;
    padding: 7px 0;
    border-bottom: 1px solid #fff;
}

[class*="list-sale"] li dl {
    margin-top: 15px;
}

[class*="list-sale"] li dt,
[class*="list-sale"] li dd {
    margin: 0;
}

[class*="list-sale"] b {
    display: block;
    padding-top: 10px;
    margin-top: 10px;
}

[class*="list-sale"] li:last-child b {
    border-top: 1px dotted #000;
}

@media (max-width: 768px) {
    [class*="list-sale"] {
        margin-top: 0;
    }

    [class*="list-sale"] li {
        width: 100%;
        padding: 10px;
    }

    [class*="list-sale"] li+li {
        margin-top: 10px;
    }

    .list-sale-num {
        padding: 12px 15px;
        font-size: 20px;
        top: -12px;
    }

    .list-sale-tel {
        font-size: 22px;
    }

    [class*="list-sale"] li em {
        margin: 0 0 15px;
        font-size: 100%;
        padding: 3px 0;
    }

    [class*="list-sale"] li dl {
        margin-top: 10px;
    }
}

/* num */

.numbering-list {
    margin: 1rem 0 0 2em;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}

.numbering-list li {
    counter-increment: cnt;
}

.numbering-list li::before {
    content: "(" counter(cnt) ")";
    display: inline-block;
    margin-left: -2em;
    width: 2em;
    text-align: center;
}

.numbering-list li+li {
    margin-top: .5em;
}

.list-notes {
    padding: 0 1.5em;
}

.list-notes li+li {
    margin-top: .5em;
}

.list-notes li::before {
    content: "＊";
    display: inline-block;
    margin-left: -1em;
}

/* point */
.list-point {
    counter-reset: section;
}

.list-point li {
    position: relative;
    padding: 20px 10px 20px 83px;
    line-height: 1.8;
    text-align: justify;
}

.list-point li+li {
    border-top: 1px solid #e3e3e3;
    margin: 0;
}

.list-point li::before {
    counter-increment: section;
    content: counter(section);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--color-blue);
    padding: 5px;
    font-size: 30px;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 5px;
    bottom: 0;
    margin: auto;
    line-height: 1.5;
}

.list-point li q,
.list-point li strong {
    color: var(--color-blue);
    font-weight: bold;
    font-size: 105%;
    letter-spacing: .05em;
}

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

    .list-point li {
        padding: 13px 10px 5px 68px;
    }

    .list-point li::before {
        width: 50px;
        height: 50px;
        font-size: 24px;
        top: 15px;
        bottom: auto;
    }
}

/* sns
==================================================*/
.twitter-inner {
    content-visibility: auto;
}

@media (min-width:768px) {
    .twitter-inner {
        width: 60%;
        margin: 0 auto 50px;
        height: 600px;
        overflow-y: scroll;
    }
}

@media (max-width: 768px) {
    .twitter-inner {
        padding: 0;
        margin-bottom: 20px;
        overflow-y: scroll;
        height: 400px;
    }
}

.info {
    font-size: clamp(0.813rem, 4vw - 1rem, 1.125rem);
    text-align: center;
}


/* footer
==================================================*/
footer {
    background: var(--color-footer);
    text-align: center;
    padding-bottom: 6rem;
    margin-top: 5rem;
}

footer * img {
    width: auto;
}

.ft-inner {
    background: #fff;
    font-size: 12px;
    padding: 40px 20px;
    border-top: 1px solid var(--color-line);
    color: #818181;
}

.credits__single,
.credits__multiple {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
    cursor: text;
}

.credits dt::after {
    content: "：";
}

.credits dd {
    margin: 0;
}

.credits__multiple dd::after {
    content: "/";
    padding: 0 .5em;
}

.credits__multiple dd:last-child::after {
    content: none;
}

.credits__multiple img {
    vertical-align: middle;
}

footer p {
    padding-bottom: 2em;
}

@media (max-width: 768px) {
    footer {
        margin-top: 2.5rem;
    }

    .ft-inner {
        padding: 20px 15px;
    }

}

/* top
==================================================*/
.mv {
    position: relative;
    padding-top: 90px;
}

.mv-img::after {
    content: "";
    bottom: -5px;
    left: 0;
    width: 100%;
    background: url(../../img/mv_bottom.svg) center bottom no-repeat;
    background-size: 110% auto;
    height: 300px;
    position: absolute;
}

.mv-img>* {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    margin-top: -90px;
}

.mv-img:lang(en)>* {
    margin-top: 0;
}

.mv-hdg {
    margin-top: 2rem;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mv-hdg img {
    width: 65%;
    margin: 0 auto;
}

.mv-hdg img+img {
    width: 12%;
    transform: translateY(-50%);
    -webkit-filter: drop-shadow(2px 1px 1px #fff) drop-shadow(-1px -2px 5px #fff);
    filter: drop-shadow(2px 1px 1px #fff) drop-shadow(-1px -2px 5px #fff);
}

.mv-logo {
    position: absolute;
    top: 30%;
    width: 12%;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1919px) {
    .mv-img>* {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .mv::after {
        height: 100px;
    }

    .mv-hdg {
        margin: .5rem 0 0;
    }

    .mv-img {
        margin-top: 0;
    }
}

/* additional
================================================= */
.tar {
    text-align: right;
}

.tac {
    text-align: center;
}

.caution {
    color: #a70241;
    font-size: 30px;
}

.uppercase {
    text-transform: uppercase;
}

.guillemet {
    position: relative;
}

.guillemet::before {
    content: "\0ab";
}

.guillemet::after {
    content: "\0bb";
}

.guillemet::before,
.guillemet::after {
    margin: 0 2px;
    position: relative;
    bottom: 1px;
}

/* program
====================================== */

.program__h3 {
    margin: 2rem auto;
    border: 1px solid var(--color-red);
    border-left: none;
    border-right: none;
    padding: 0.5em 0;
    text-align: center;
    font-size: clamp(1.125rem, 4vw - 1rem, 1.5rem);
    letter-spacing: .1em;
    color: #5e5e5e;
    background-color: rgba(255, 255, 255, 0.2);
    max-width: 600px;
}

#program-b .program__h3 {
    border-color: var(--color-green);
}

.program__h3 span {
    text-transform: uppercase;
}

.program__section {
    border-radius: 8px;
    background-color: var(--color-red);
    padding: 6px 2px 8px;
    display: flex;
    flex-direction: column;
}

#program-b .program__section {
    background-color: var(--color-green);
}

.program__h4 {
    background-color: var(--color-red);
    text-align: center;
    color: #fff;
    margin: 0;
    padding-bottom: 6px;
}

#program-b .program__h4 {
    background-color: var(--color-green);
}

.program__list {
    margin: 0;
    padding: 0.625rem 1rem;
    background-color: #fff;
    flex: 1;
}

.program__list li {
    text-align: left;
    font-size: clamp(0.938rem, 4vw - 1rem, 1.125rem);
    padding: .5em;
    letter-spacing: .025em;
}

.program__list dl {
    display: flex;
    flex-direction: column;
}

.program__list dl dt {
    font-weight: 700;
    font-size: 1.125rem;
}

.program__list dl dt span {
    font-weight: 500;
}

.program__list dl dd {
    margin-left: 0;
    font-weight: 500;
}

.program__list dd.composer {
    order: -1;
}

.program__list li+li {
    border-top: 1px dotted var(--color-red)
}

#program-b .program__list li+li {
    border-top: 1px dotted var(--color-green)
}

.program__badge {
    margin: 5rem 0 2rem;
    padding: 0 1rem;
}

@media(min-width: 768px) {
    .program__badge {
        display: flex;
        gap: 2rem;
        align-items: center;
        padding: 0 2rem;
    }
}

@media(min-width: 950px) {
    .program__container {
        display: flex;
    }

    .program__section {
        width: calc(50% - 12px);
    }

    .program__section+.program__section {
        margin: 0 0 0 1.5rem;
    }

    .program__list {
        padding: 1.25rem 1.5rem;
    }
}

/* How to Purchase Tickets
=========================================*/

.u20-announcement {
    font-size: 1.375rem;
    color: var(--color-red);
}

/* special-services
========================================*/

.special-services {
    border: 4px solid var(--color-pink);
    border-radius: 8px;
    padding: 0;
    margin: 3.125rem 0 2rem;
    text-align: center;
}

.special-services h3 {
    font-size: clamp(1.25rem, 4vw - 1rem, 2rem);
    ;
    margin: 0;
    color: #fff;
    padding: .5em;
    background-color: var(--color-pink);
}

.special-services li {
    margin: 2rem auto;
    padding: 0 1rem;
}

.special-services h4 {
    font-size: 1.25rem;
    margin: 0;
    border-top: 1px solid #cbcbcb;
    border-bottom: 1px solid #cbcbcb;
    padding: .5em 0;
    color: var(--color-pink);
}

.special-services p {
    text-align: center;
}

.special-services__wrapper {
    padding: 0 1rem;
}

.special-services__list {
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.special-services__list li {
    width: 260px;
    justify-content: center;
}

.special-services li:last-of-type p {
    font-size: clamp(0.938rem, 4vw - 1rem, 1.125rem);
}

.special-services li:last-of-type p a {
    text-decoration: none;
    color: var(--color-blue);
    border-bottom: 1px dotted var(--color-blue);
    font-size: 140%;
    display: inline-block;
    margin-bottom: 2px;
}

@media(min-width: 768px) {

    .special-services ul {
        display: flex;
        flex-wrap: wrap;
        padding: 1rem;
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem;
    }

    .special-services ul li {
        width: calc(33% - 16px);
        margin: 2rem auto 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
    }

    .special-services ul li:last-child {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 33%;
        align-items: center;
    }

    .special-services ul li:last-child h4 {
        grid-row: 1/2;
        padding: .5em .75em;
    }

    .special-services ul li:last-child p {
        grid-row: 2/3;
    }

    .special-services ul li:last-child figure {
        grid-column: 2/3;
        grid-row: 1/3;
    }

    /* .special-services ul li p {
        align-self: start;
    } */

    /* .special-services ul li figure {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    } */
}

.explanation {
    font-size: clamp(0.813rem, 4vw - 1rem, 1.125rem);
    text-align: center;
}

.notes-btn {
    display: block;
    margin: 1rem 0 1rem auto;
    background-color: inherit;
    color: var(--color-main);
    padding: 0.5em 1em .25em;
    outline: 0;
    border: none;
    border-bottom: 1px var(--color-main) solid;
    font-family: 'Noto Serif JP', serif;
    cursor: pointer;
    transition: .5s;
}

.notes-btn::after {
    content: "▼ 詳細は";
    transition: .2s;
}

.notes-btn.on-click::after {
    content: "▲ 閉じる";
}

.member__more {
    text-align: center;
    color: var(--color-pink);
    font-size: 1.125rem;
    margin: 5em auto 2.5em;
    border: 4px double var(--color-pink);
    border-left: none;
    border-right: none;
    padding: 1em 0;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: .075em;
}

@media(min-width: 520px) {
    .member__more {
        width: 70%;
    }
}

/*2023年5月30日追加：プログラム販売のお知らせ*/
.programsell{
    background: var(--color-main);
    margin: 40px 0;
    font-family: sans-serif;
}
.flxcontainer230530{
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    flex-wrap: nowrap;
    margin: auto;
    padding: 20px;
    max-width: 650px;
}
.programimg{
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.flxitem230530{
    width: 49%;
}

.flxitem230530 h4{
    color: #ffffff;
}

.newslist_program{
    color: #ffffff;
    text-decoration: none;
}

.newslist_program a{
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    display: block;
}

.newslist_program a:hover{
    color: var(--color-blue);;
}

.flxitem230530:last-child{
    padding: 0 0 0 10px;
}

.newslist_program li{
    margin: 0 0 10px 0;
}
.newslist_program li:before{
    content: "♪";
    display: inline-block;
}

@media screen and (max-width:480px){
    .flxcontainer230530{
        flex-wrap: wrap;
    }
    .flxitem230530{
        width: 100%;
    }
    .newslist_program{
        padding: 0px ;
    }
    .flxitem230530:last-child{
        padding: 0;
    }
}


/* How-to-Buy
==================================*/

.how-to-buy__heading4 {
    font-size: clamp(1.125rem, 4vw - 1rem, 1.25rem);
    color: var(--color-main-dark);
    padding: .5rem 0 .5rem .5em;
    border-bottom: 2px solid var(--color-main-dark);
    letter-spacing: .05em;
    margin-bottom: 0;
}

.how-to-buy__list {
    padding: 0 .5rem;
}

.how-to-buy__list dt {
    font-size: clamp(1.125rem, 4vw - 1rem, 1.25rem);
    font-weight: bold;
    margin-top: 2rem;
    padding-left: 10px;
    border-left: 2px solid var(--color-blue);
    position: relative;
}

.how-to-buy__list dt::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: var(--color-blue);
    position: absolute;
    left: 2px;
}

.how-to-buy__list dd {
    margin: .5em 0 0 .5em;
}

.how-to-buy__list__call {
    text-decoration: none;
    color: var(--color-blue);
    font-weight: bold;
}

.how-to-buy__list__call-jpia {
    font-size: clamp(2rem, 4vw - 1rem, 2.5rem);
}

.how-to-buy__list--ticketagency a {
    color: var(--color-blue);
    text-decoration: none;
}

.how-to-buy__list--ticketagency a[target^="_blank"]::after {
    content: "";
    background: url(../img/target-blank-icon.png) no-repeat center / contain;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    padding-left: 2px;
}

.how-to-buy__list__jpialink__btn {
    display: block;
    margin: 1rem auto;
    border-radius: 3px;
    padding: 0.25rem;
    background-color: var(--color-pink);
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.how-to-buy__list__jpialink__btn:hover {
    color: #fff;
    opacity: .8;
}

.how-to-buy__list__jpialink__btn span {
    font-weight: bold;
    letter-spacing: .1em;
}

.how-to-buy__list small a {
    font-size: .8rem;
}

.how-to-buy__list+h4 {
    margin-top: 3rem;
}

.ticketagency-btn {
    display: block;
    margin: 1rem 0 1rem auto;
    background-color: inherit;
    color: var(--color-main);
    padding: 0.5em 1em .25em;
    outline: 0;
    border: none;
    border-bottom: 1px var(--color-main) solid;
    font-family: 'Noto Serif JP', serif;
    cursor: pointer;
    transition: .5s;
}

.ticketagency-btn::after {
    content: "▼ その他プレイガイド";
    transition: .2s;
}

.ticketagency-btn.on-click::after {
    content: "▲ 閉じる";
}

@media(min-width: 768px) {
    .how-to-buy__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .how-to-buy__list.how-to-buy__list--ticketagency {
        display: inherit;
    }

    .how-to-buy__list--ticketagency dd {
        display: inline-block;
    }

    .how-to-buy__list--ticketagency dt+dd {
        margin-left: 1rem;
    }
}

/* share
===================================*/
.share {
    max-width: 450px;
    margin: 5rem auto;
}

.share__catch {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: var(--color-lightorange);
    border: 2px dotted var(--color-lightorange);
    padding: 8px 0;
    border-right: none;
    border-left: none;
}

.share__catch::before,
.share__catch::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url(../../img/bear_navy.png);
    background-position: center;
    background-size: contain;
    padding: 0 1em;
    vertical-align: middle;
    transform: rotate(350deg);
}

.share__catch::after {
    background-image: url(../../img/bear_white.png);
    transform: rotate(370deg);
}

.share__btns {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share__btns a img {
    transition: all .4s ease-out;
}

.share__btns a img:hover {
    transform: translateY(-10px);
}

/* pdf-download
===================================*/

.pdf-download {
    margin-bottom: 2.5rem;
    text-align: center;
}

.pdf-download>figure>img {
    height: auto;
}

.pdf-download__btn {
    width: fit-content;
    margin: .75rem auto;
    background-color: var(--color-main);
    border-radius: 40px;
}

.pdf-download__btn:hover {
    opacity: .8;
}

.pdf-download__btn>a {
    display: block;
    padding: 1rem 2rem;
    color: #fff;
    text-decoration: none;
}

/* footer
===================================*/

.copyright {
    color: #fff;
    text-align: center;
}