@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

.wrapper {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #222;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGP明朝B", serif;
    min-width: 0;
    background: url("../img/bg_img.png") repeat;
}

img {
    width: 100%;
    height: auto;
}

.h2_img {
    width: 320px;
    position: absolute;
    top: -283px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

h2+.open__btn {
    background: #b48d31;
    color: #fff;
    position: relative;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 32px;
    transition: 0.2s
}

h2+.open__btn:hover {
    opacity: 0.5;
}

h2+.open__btn::after {
    content: "";
    right: 8px;
    top: calc(50% - 4.72px);
    width: 13.5px;
    height: 9.5px;
    display: block;
    position: absolute;
    background: url("../img/btn_arrow.png");
    background-size: contain;
}

.open__btn+.hidden {
    display: none;
}

.open__btn.close::after {
    transform: rotate(180deg);
}

.open__btn.open::after {
    transform: rotate(0deg);
}

a img {
    transition: 0.2s;
}

a:hover img {
    opacity: 0.5;
}

.rellax {
    position: absolute;
    z-index: 2;
}

.rellax img {
    width: auto;
}

.rellax.left_top {
    left: 0;
    top: 0;
}

.rellax.right_top {
    right: 0;
    top: 0;
}

.rellax.left_middle {
    left: 0;
    top: 50%;
}

.rellax.right_middle {
    right: 0;
    top: 50%;
}

.rellax.left_bottom {
    left: 0;
    bottom: 0;
}

.rellax.right_bottom {
    right: 0;
    bottom: 0;
}



@media screen and (min-width: 768px) and (max-width: 1300px) {
    .h2_img {
        width: calc(320 / 1300 * 100vw);
        top: calc(-283 / 1300 * 100vw);
    }
}


@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .h2_img {
        width: calc(320 / 640 * 100vw);
        top: calc(-283 / 640 * 100vw);
    }

    h2+.open__btn {
        line-height: calc(43/640*100vw);
        font-size: calc(24/640*100vw);
    }

    h2+.open__btn::after {
        content: "";
        right: calc(39 / 640 * 100vw);
        top: calc(50%-(9.5 / 640 * 50vw));
        width: calc(13.5 / 640 * 100vw);
        height: calc(9.5 / 640 * 100vw);
        display: block;
        position: absolute;
        background: url("../img/btn_arrow.png");
        background-size: contain;
    }

    .rellax img {
        width: 100%;
    }
    h2+.open__btn:hover {
        opacity: 1;
    }
    a:hover img {
        opacity: 1;
    }
}

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

    .pc {
        display: block;
    }
}

.button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #fff;
    background-color: #2fa0f6;
    min-width: 120px;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
}

.button svg {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    fill: #fff;
}

.button span {
    display: none;
}

@media (min-width: 600px) {
    .button span {
        display: initial;
    }
}

.button--icon {
    min-width: initial;
    padding: 0.5rem;
}




/*　ヘッダー　*/
header {
    background: url("../img/nav_bg.png") repeat-x;
    background-size: contain;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.site-header {
    z-index: 10;
    transition: 0.5s;
    display: flex;
    position: relative;
    height: 95px;
}

.header_logo {
    position: absolute;
    width: 62px;
    top: 26px;
    left: 18px;
}

.site-header__wrapper {
    padding-left: 6px;
    max-width: 1140px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    header.scroll-nav {
        background: url("../img/nav_bg.png") repeat-x;
        background-size: contain;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 20;
        animation-name: fadeDownAnime;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes fadeDownAnime {
        from {
            opacity: 0;
            transform: translateY(-100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.scroll-nav .site-header {
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.scroll-nav .site-header .site-header__wrapper {
    width: auto;
    margin: 0;
}

.scroll-nav .site-header .nav__item--end {
    margin-left: 0;
}

.scroll-nav .site-header .site-header__wrapper .nav__item {
    margin: 0 10px;
}

.nav {
    flex: 1;

}

.nav__item a {
    display: block;
    padding: 1.5rem 1rem;
    text-align: center;
    height: 35px;
    display: block;
}

.nav__item a picture {
    height: inherit;
}

.nav__item a img {
    height: inherit;
    width: auto;
}

.nav__item.language {
    width: 105.5px;
}

.nav__toggle {
    display: none;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
    .header_logo {
        width: calc(60/1500*100vw);
        top: calc(26/1500*100vw);
        left: calc(18/1500*100vw);
    }

    .scroll-nav .site-header .header_logo {
        width: calc(209/1500*100vw);
        height: calc(60/1500*100vw);
    }

    .site-header__wrapper {
        margin-left: calc(123/1500*100vw);
    }

    .site-header__wrapper .nav__item a {
        height: calc(35/1500*100vw);
    }
}

@media screen and (min-width: 768px) {

    /* スクロールで、ロゴを切り替える*/
    .scroll-nav .site-header .header_logo img {
        display: none;
    }

    .scroll-nav .site-header .header_logo {
        background: url("../img/nav_logo.png") no-repeat;
        width: 209px;
        height: 60px;
        background-size: contain;
        position: relative;
        margin: 0 33px 0 -30px;
    }

    .site-header__wrapper {
        display: flex;
        padding-top: 0;
        padding-bottom: 0;
        width: 100%;
    }

    .main_nav {
        display: flex;
    }

    .nav__item--end {
        margin-left: auto;
    }
}

@media screen and (max-width: 768px) {

    header {
        background: none;
        position: fixed;

    }

    .header_logo {
        width: calc(62/640*100vw);
        top: calc(26/640*100vw);
        left: calc(40/640*100vw);
    }

    .header_logo.change {
        z-index: 40;
        background: url("../img/nav_logo.png") no-repeat;
        background-size: auto;
        width: calc(395/640*100vw);
        height: calc(113/640*100vw);
        background-size: contain;
        position: absolute;
        margin: 0;
        top: calc(26/640*100vw);
        left: 50%;
        transform: translate(-50%);
    }

    .header_logo.change img {
        display: none;
    }

    .site-header__wrapper,
    .scroll-nav .site-header .site-header__wrapper {
        margin: 0 0 0 auto;
    }

    .nav__wrapper {
        display: grid;
        grid-template-columns: 100vw;
        grid-template-rows: 15vh 73vh 10vh;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 30;
        background-color: #113476;
        visibility: hidden;
        opacity: 0;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        height: 100vh;
    }

    .nav__wrapper.active {
        visibility: visible;
        opacity: 1;
    }

    .nav__wrapper .main_nav {
        grid-row: 2/3;
        width: calc(553/640*100vw);
        margin: calc(-20/640*100vw) auto 0;
    }

    .nav__wrapper li a {
        height: calc(107/640*100vw);
        padding: 1.5rem 0;
    }

    .nav__item.language {
        width: auto;
    }    

    .scroll-nav .site-header .site-header__wrapper .nav__item {
        margin: 0;
    }

    .nav__item a img {
        height: auto;
        width: 100%;
    }

    .nav__wrapper .sns {
        display: flex;
        grid-row: 3/3;
        justify-content: center;
        padding-top: calc(50/640*100vw);
    }

    .nav__wrapper .sns li {
        width: calc(51/640*100vw);
        margin: 0 calc(22/640*100vw);
    }

    .nav__toggle {
        display: block;
        right: calc(39 / 640 * 100vw);
        top: calc(26 / 640 * 100vw);
        z-index: 40;
        position: relative;
        background: none;
        cursor: pointer;
        width: calc(61 / 640 * 100vw);
        height: calc(61 / 640 * 100vw);
        border: solid 2px #bfa348;
        color: #bfa348;
        padding: 0 0 calc(32 / 640 * 100vw);
        font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGP明朝B", serif;
        font-weight: bold;
        font-size: 2.2vw;
    }

    /*ボタン内側*/
    .nav__toggle span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: calc(6 / 640 * 100vw);
        height: calc(3 / 640 * 100vw);
        background: #bfa348;
        width: 78%;
    }

    .nav__toggle span:nth-of-type(1) {
        top: calc(23 / 640 * 100vw);
    }

    .nav__toggle span:nth-of-type(2) {
        top: calc(33 / 640 * 100vw);
    }

    .nav__toggle span:nth-of-type(3) {
        top: calc(43 / 640 * 100vw);
    }

    /*activeクラスが付与されると線が回転して×に*/

    .nav__toggle.close span:nth-of-type(1) {
        top: calc(27 / 640 * 100vw);
        left: calc(6 / 640 * 100vw);
        transform: translateY(6px) rotate(-45deg);
        width: 77%;
    }

    .nav__toggle.close span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .nav__toggle.close span:nth-of-type(3) {
        top: calc(38 / 640 * 100vw);
        left: calc(6 / 640 * 100vw);
        transform: translateY(-6px) rotate(45deg);
        width: 77%;
    }

}




/*　mv　*/
.mv {
    position: relative;
    padding-top: 80px;
    height: calc(1007/1500*100vw);
    min-height: 634px;
}

.mv::after {
    content: "";
    background: url("../img/mv_deco_pc.png") no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.mv h1 {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 30;
    width: 495.5px;
}

.mv .slick-slider {
    width: calc(100% - 180px);
    min-width: 1000px;
    height: auto;
    margin: -16px auto 0;
}

.mv .sns {
    position: absolute;
    width: 34px;
    top: 283px;
    left: 30px;
    z-index: 10;
}

.mv .sns li {
    margin-bottom: 16px;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
    .mv {
        min-height: 0;
    }

    .mv h1 {
        width: calc(419.5/1500*100vw);
    }

    .mv .slick-slider {
        min-width: 0;
        width: calc(100% - (180/1500*100vw));
    }

}

@media screen and (max-width: 768px) {
    .mv {
        z-index: 1;
        height: calc(645/640*100vw);
        padding-top: calc(80/640*100vw);
        min-height: auto
    }

    .mv::after {
        content: "";
        background: url("../img/mv_deco_sp.png") no-repeat;
        width: 100%;
        height: calc(777/640*100vw);
        background-size: cover;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }

    .mv h1 {
        top: calc(40/640*100vw);
        width: calc(495.5/640*100vw);
    }

    .mv .slick-slider {
        min-width: 0;
        width: 100%;
        margin: calc(69/640*100vw) 0 0;
    }
}



/*　チケット購入バナー */
.bottom_banner {
    position: fixed;
    bottom: 39px;
    z-index: 2;
    width: 100%;
}

.bottom_banner ul {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.bottom_banner ul li:nth-child(1) {
    margin-right: 30px;
}

.bottom_banner ul li a {
    position: relative;
    display: flex;
    align-items: center;
}

.bottom_banner ul li .ribon {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.bottom_banner ul li span {
    display: block;
}

@media screen and (max-width: 768px) {

    .bottom_banner {
        margin: 0 calc(11/640*100vw);
        width: auto;
        bottom: calc(48/640*100vw);
    }

    .bottom_banner ul li:nth-child(1) {
        margin-right: 10px;
    }
}



/*　イントロ　*/
.introduction {
    max-width: 1062px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.introduction::after {
    content: url("../img/scroll_img.png");
    margin: 16px auto 0;
    display: block;
    text-align: center;
}

.introduction h2 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #b48d31;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 27px;
}

.introduction h2 span.h2_top {
    display: inline-block;
    font-size: 34px;
    padding-bottom: 5px;
    margin-bottom: 13px;
    border-bottom: solid 1px #b48d31;
}

.introduction h2 span.h2_bottom {
    display: inline-block;
    font-size: 40px;
    border-bottom: solid 1px #b48d31;
    padding-bottom: 5px;
}

.introduction .introduction__txt {
    color: #6d6d6d;
    line-height: 1.625;
    margin-bottom: 15px;
}

.introduction .more__btn {
    cursor: pointer;
    margin: 0 auto;
    display: block;
    width: 370px;
    text-align: center;
    border: solid 1px #b99b43;
    color: #b99b43;
    position: relative;
    line-height: 30px;
}

.introduction .more__btn::after {
    content: "";
    right: 8px;
    top: calc(50% - 4.72px);
    width: 13.5px;
    height: 9.5px;
    display: block;
    position: absolute;
    right: 5px;
    background: url("../img/more_arrow.png");
    background-size: contain;
}

.introduction__more {
    display: none;
    color: #6d6d6d;
    line-height: 1.625;
    margin: 30px auto;
}

.introduction .more__btn.close::after {
    transform: rotate(180deg);
}

.introduction .more__btn.open::after {
    transform: rotate(0deg);
}

.introduction .recommend{
    border: solid 4px #c9b78f;
    padding: 59px 37px 56px;
    margin-top: 30px;
}
.introduction .recommend ul li{
    border-bottom: solid 2px #e0d7c0;
    margin: 36px 0 37px 0;
    padding-bottom: 27px;
}
.introduction .recommend ul li .title {
    font-size: 20px;
    color: #113476;
    padding: 0 0 10px 0;
    font-weight: 600;
}
.introduction .recommend ul li span{
    color: #ff778a;
    font-weight: bold;
}
.introduction .recommend h3 img {
    height: 54px;
    width: auto;
}
/* .recommend .open__btn{
    padding: 5px;
    text-align: center;
    border: 1px solid #c9b78f;
} */

@media screen and (max-width: 768px) {
    .introduction {
        margin: calc(74/640*100vw) auto 0;
        padding: 0 calc(40/640*100vw);
    }

    .introduction h2 {
        margin-bottom: calc(23/640*100vw);
    }

    .introduction h2 span.h2_top {
        font-size: calc(34/640*100vw);
        padding-bottom: calc(5/640*100vw);
        margin-bottom: calc(13/640*100vw);
    }

    .introduction h2 span.h2_bottom {
        font-size: calc(40/640*100vw);
    }

    .introduction .introduction__txt {
        line-height: 1.66;
        font-size: calc(24/640*100vw);
        margin-bottom: calc(22/640*100vw);
    }

    .introduction .more__btn {
        width: 100%;
        line-height: calc(42/640*100vw);
        font-size: calc(24/640*100vw);
    }

    .introduction .more__btn::after {
        right: calc(30/640*100vw);
    }

    .introduction::after {
        content: "";
        background: url("../img/scroll_img.png") no-repeat;
        width: calc(8/640*100vw);
        height: calc(56/640*100vw);
        background-size: contain;
    }

    .introduction .recommend{
        margin-top: calc(18/640*100vw);
        padding: calc(61/640*100vw) calc(29/640*100vw) calc(64/640*100vw);
    }
    .introduction .recommend ul li{
        margin: calc(36/640*100vw) 0 calc(27/640*100vw) 0;
        padding-bottom: calc(21/640*100vw);
    }
    .introduction .recommend ul li .title {
        font-size: calc(26/640*100vw);
        padding: 0 0 calc(10/640*100vw) 0;
    }
    .introduction .recommend h3 img {
        height: calc(54/640*100vw);
    }
}

/*　ニュース　*/
#news {
    position: relative;
    padding-top: 93px;
}

#news .inner {
    position: relative;
    margin: 0 auto;
    max-width: 1300px;
    background: url("../img/box_bg_bottom_pc.png") no-repeat bottom, url("../img/box_bg_top_pc.png") no-repeat top, url("../img/box_bg_middle_pc.png") repeat-y;
    background-size: 100% auto, 100% auto, 100% auto;
    padding: 32px 30px;
}

#news .wrapper {
    padding: 0;
    max-width: 1300px;
    display: flex;
}

#news h2 {
    position: absolute;
    top: -61px;
    left: calc(100% - (100% - 416px)/ 2);
}

#news .wrapper .twitter_widget {
    width: 337px;
    height: 362px;
    padding: 38px 41px 36px 37px;
    border-right: solid 1px #c9b78f;
    flex-shrink: 0;
    min-width: 0;
    box-sizing: content-box;
}

#news .wrapper .news_content {
    overflow-y: scroll;
    width: calc(100% - 415px);
    padding: 0 10px 0;
    box-sizing: border-box;
    height: 277px;
    margin: 155px 55px 0;
}

#news .wrapper .news_content dt {
    color: #113476;
    font-size: 20px;
    margin: 35px 0 15px;
    ;
}

#news .wrapper .news_content dd {
    border-bottom: solid 1px #c9b78f;
    color: #6d6d6d;
    font-size: 18px;
    line-height: 1.33;
    padding-bottom: 15px;
}


@media screen and (max-width: 768px) {
    #news .inner {
        margin: 0 calc(18/640*100vw);
        background: url("../img/box_bg_bottom_sp.png") no-repeat bottom, url("../img/box_bg_top_sp.png") no-repeat top, url("../img/box_bg_middle_sp.png") repeat-y;
        background-size: 100% auto, 100% auto, 100% auto;
        padding: 32px 30px;
    }

    #news h2 {
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        top: calc(-61 / 640 * 100vw);
    }

    #news .wrapper {
        flex-direction: column;
    }

    #news .wrapper .news_content {
        width: inherit;
        height: calc(295/640*100vw);
        margin: calc(155/640*100vw) calc(13/640*100vw) calc(7/640*100vw);
    }

    #news .wrapper .news_content dt {
        font-size: calc(22/640*100vw);
    }

    #news .wrapper .news_content dd {
        font-size: calc(20/640*100vw);
        line-height: 1.2;
        padding-bottom: calc(13/640*100vw);
    }

    #news .wrapper .twitter_widget {
        order: 2;
        border-right: none;
        border-top: solid 1px #c9b78f;
        width: inherit;
        height: 362px;
        padding: 5%;
        overflow: hidden;
    }

    #news .wrapper .twitter_widget .twitter-timeline iframe {
        width: 100%;
        max-width: fit-content;
    }

    #news .rellax.left_top {
        width: calc(59/1500*100vw);
    }

    #news .rellax.right_top {
        width: calc(187/1500*100vw);
    }

    #news .rellax.left_bottom {
        width: calc(124/1500*100vw);
    }

    #news .rellax.right_bottom {
        width: calc(193/1500*100vw);
    }
}

/*有料プログラム*/
#pamphlet{

}
#pamphlet .wrapper{
    padding: 54px 62px;
    width: 100%;
    max-width: 1040px;
}
.pamphlet_flxcontainer{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.pamphlet_outline{
    padding: 5px 0;
    border-top: 2px solid #d3c29e;
    border-bottom: 2px solid #d3c29e;
}
.pamphlet_bg{
    width: 100%;
    border-top: 2px dotted #d3c29e;
    border-bottom: 2px dotted #d3c29e;
    padding: 40px;
}
.pamphlet_img{
    width: 38%;
    max-width: 300px;
}
.pamphlet_txt{
    width: 60%;
    max-width: 640px;
}
.pamphlet_txt h2{
    font-size: 2em;
    font-weight: 700;
    color: #b48d31;
    text-align: center;
    text-decoration: underline 1px ;
    text-underline-offset: 10px;
    margin-bottom: 20px;
    line-height: 1.75;
}
.pamphlet_index{
    padding: 15px;
    margin: 20px 0;
    line-height: 1.5;
}
.pamphlet_index strong{
    display: inline-block;
    /* padding: 3px 10px; */
    /* background-color: #b48d31; */
    margin: 0 10px 10px 0;
    font-weight: 700;
    border-radius: 5px;
    color: #b48d31;
}
.pamphlet_txt ul{
    height: 7em;
    overflow-y: scroll;
    color: #113476;
    margin: 20px auto;
}
.pamphlet_txt ul li{
    line-height: 1.5;
    border-top: 1px solid #d3c29e;
    padding: 15px;
}
.pamphlet_txt ul li:last-child{
    border-bottom: 1px solid #d3c29e;
}
.pamphlet_txt ul li span.pamphlet_date{
    display: block;
    font-size: 1.25em;
}
@media screen and (min-width: 768px) and (max-width: 1040px) {

}

@media screen and (max-width: 768px) {
    .pamphlet_bg{
        width: 100%;
        border-top: 2px dotted #d3c29e;
        border-bottom: 2px dotted #d3c29e;
        padding: 20px 0px;
    }
    .pamphlet_txt{
        width: 100%;
    }
    .pamphlet_txt h2{
        font-size: 1.5em;
        text-underline-offset: 10px;
        margin-bottom: 20px;
    }
    #pamphlet .wrapper{
        padding: 20px;
        width: 100%;
        max-width: 1040px;
    }
    .pamphlet_img{
        width: 100%;
        display: block;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .pamphlet_txt{
        width: 100%;
        max-width: initial;
    }
    .pamphlet_flxcontainer{
        flex-wrap: wrap;
    }
}

/*YouTube*/
#youtube {
    text-align: center;
    padding-top: 80px;
}

#youtube .wrapper {
    background: url("../img/youtube_bg_pc.png") no-repeat;
    background-size: contain;
    padding: 54px 62px;
    width: 100%;
    max-width: 1040px;
    box-sizing: border-box;
    position: relative;
}

#youtube h2 {
    width: 697px;
    position: absolute;
    top: -10px;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 768px) and (max-width: 1040px) {
    #youtube .wrapper iframe {
        width: 100%;
        height: calc(515/1040*100vw);
    }
}

@media screen and (max-width: 768px) {
    #youtube {
        padding-top: calc(95/640*100vw);
    }

    #youtube .wrapper {
        background: url("../img/youtube_bg_sp.png") no-repeat;
        background-size: contain;
        width: calc(605/640*100vw);
        padding: calc(54/640*100vw) calc(54/640*100vw);
        height: calc(381/640*100vw);
    }

    #youtube h2 {
        width: calc(582/640*100vw);
        top: calc(-5/640*100vw);
    }

    #youtube .wrapper iframe {
        width: 100%;
        height: calc(279/640*100vw);
    }
}


/*Program*/
#program {
    padding-top: 99px;
    position: relative;
}

#program .inner {
    max-width: 1300px;
    margin: 0 auto;
    background: url("../img/box_bg_bottom_pc.png") no-repeat bottom, url("../img/box_bg_top_pc.png") no-repeat top, url("../img/box_bg_middle_pc.png") repeat-y;
    background-size: 100% auto, 100% auto, 100% auto;
    padding: 213px 151px 87px;
}

#program .explanation {
    text-align: center;
    font-size: 18px;
    margin: 30px 0 19px;
}

#program #program_a .program_container,
#program #program_b .program_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
}

#program .waku {
    position: relative;
    width: 438px;
}
.programhead4 {
    font-size: 26px;
    color: #b48d31;
    border-bottom: solid 1px #b48d31;
    width: 201px;
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

#program .programhead4 {
    font-size: 26px;
    color: #b48d31;
    border-bottom: solid 1px #b48d31;
    width: 201px;
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

/* #program #program_a .waku {
    background: url("../img/program_a_bg_bottom_pc.png") no-repeat bottom, url("../img/program_a_bg_top.png") no-repeat top;
    background-size: 100% auto, 100% auto;
    background-position: bottom, top;
    margin: 0 20px;
    padding: 35px 0 0;
}

#program #program_a .waku::before {
    position: absolute;
    content: "";
    background: url("../img/program_a_bg_middle_pc.png") repeat-y;
    width: 100%;
    top: 52px;
    height: calc(100% - 57px);
}

#program #program_a h3 {
    width: 652px;
    margin: 0 auto -10px;
} */

#program .waku ul {
    position: relative;
    margin: 9px 40px 21px;
}

#program .waku ul li {
    border-bottom: dotted 2px #d3c29e;
    position: relative;
    background: url(../img/star_icon.png) no-repeat left top 15px;
    background-size: 16px 15px;
    padding: 0.53em 1em 0.60em 1.5em;
    font-size: 18px;
    line-height: 1.38;
    color: #6d6d6d;
}

#program .waku ul li:last-child {
    border-bottom: none;
}

#program #program_b .waku {
    background: url("../img/program_b_bg_bottom_pc.png") no-repeat bottom, url("../img/program_b_bg_top.png") no-repeat top;
    background-size: 100% auto, 100% auto;
    background-position: bottom, top;
    margin: 0 20px;
    padding: 35px 0 0;
}

#program #program_b .waku::before {
    position: absolute;
    content: "";
    background: url("../img/program_b_bg_middle_pc.png") repeat-y;
    width: 100%;
    top: 52px;
    height: calc(100% - 57px);
}

#program #program_b h3 {
    /*width: 389px;*/
    width: 516px;
    margin: 24px auto -9px;
}

#program #program_b .waku ul {
    position: relative;
}

#program #program_b h5 {
    text-align: center;
    font-size: 18px;
    position: relative;
    color: #6d6d6d;
    margin-top: 20px;
}

#program #program_a h5:nth-of-type(2) {
    margin-top: 45px;
}

/*↓2/14追加*/
#program #program_a .waku {
    background: url("../img/program_a_bg_bottom_pc.png") no-repeat bottom, url("../img/program_a_bg_top.png") no-repeat top;
    background-size: 100% auto, 100% auto;
    background-position: bottom, top;
    margin: 0 20px;
    padding: 35px 0 0;
}

#program #program_a .waku::before {
    position: absolute;
    content: "";
    background: url("../img/program_a_bg_middle_pc.png") repeat-y;
    width: 100%;
    top: 52px;
    height: calc(100% - 57px);
}

#program #program_a h3 {
    /*width: 389px;*/
    width: 516px;
    margin: 24px auto -9px;
}

#program #program_a .waku ul {
    position: relative;
}

#program #program_a h5 {
    text-align: center;
    font-size: 18px;
    position: relative;
    color: #6d6d6d;
    margin-top: 20px;
}

#program #program_a h5:nth-of-type(2) {
    margin-top: 45px;
}
/*↑2/14追加*/

#program .program__badge {
    margin: 30px auto 0;
    width: 919px;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
    #program .inner {
        padding: calc(213/1500*100vw) calc(151/1500*100vw) calc(87/1500*100vw);
    }

    #program .program__badge {
        width: 100%;
    }
}

@media screen and (max-width: 1196px) {

    #program #program_a .part_2,
    #program #program_b .part_2 {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    #program {
        padding-top: calc(107/640*100vw);
    }

    #program .inner {
        margin: 0 calc(18/640*100vw);
        background: url("../img/box_bg_bottom_sp.png") no-repeat bottom, url("../img/box_bg_top_sp.png") no-repeat top, url("../img/box_bg_middle_sp.png") repeat-y;
        background-size: 100% auto, 100% auto, 100% auto;
        padding: calc(224/640*100vw) calc(54/640*100vw) calc(74/640*100vw);
    }

    #program .explanation {
        font-size: calc(20/640*100vw);
        margin: calc(20/640*100vw) 0 calc(10/640*100vw);
    }

    /* #program #program_a h3 {
        width: calc(529/640*100vw);
        margin-left: calc(-16/640*100vw);
    } */

    #program .waku {
        width: 100%;
    }

    #program .waku ul {
        margin: calc(9/640*100vw) calc(28/640*100vw) calc(45/640*100vw) calc(35/640*100vw);
    }

    #program .waku ul li {
        font-size: calc(20/640*100vw);
        line-height: 1.25;
    }

    #program .waku ul li span {
        font-size: calc(16/640*100vw);
    }

    /* #program #program_a .waku {
        margin: calc(26/640*100vw) 0 calc(-10/640*100vw);
    } */

    #program #program_b h3,#program #program_a h3 {
        width: calc(389/640*100vw);
        margin: calc(31/640*100vw) auto calc(-15/640*100vw);
        width: 100%;
    }

    /* #program #program_a .waku::before {
        background: url("../img/program_a_bg_middle_sp.png") repeat-y;
        background-size: 100% auto;
        top: calc(59/640*100vw);
        height: calc(100% - (59/640*100vw) - (6/640*100vw));
    } */

    /*↓2/14 #program_a追加*/
    #program #program_b.waku {
        margin: calc(26/640*100vw) 0 calc(24/640*100vw);
    }
    #program #program_a.waku {
        margin: calc(26/640*100vw) 0 calc(24/640*100vw);
    }

    #program #program_b .waku::before {
        background: url("../img/program_b_bg_middle_sp.png") repeat-y;
        background-size: 100% auto;
        top: calc(59/640*100vw);
        height: calc(100% - (59/640*100vw) - (6/640*100vw));
    }
    #program #program_a .waku::before {
        background: url("../img/program_a_bg_middle_sp.png") repeat-y;
        background-size: 100% auto;
        top: calc(59/640*100vw);
        height: calc(100% - (59/640*100vw) - (6/640*100vw));
    }
    /*↑2/14 #program_a追加*/
    
 .programhead4 {
        font-size: calc(26/640*100vw);
        width: calc(201/640*100vw);
        padding-bottom: calc(15/640*100vw);
    } 

    #program .program__badge {
        margin: 0;
        width: calc(496/640*100vw);
    }

    /* #program #program_a .waku {
        background: url("../img/program_a_bg_bottom_sp.png") no-repeat bottom, url("../img/program_a_bg_top_sp.png") no-repeat top;
        background-size: 100% auto, 100% auto;
        background-position: bottom, top;
    } */

    #program #program_b .waku {
        background: url("../img/program_b_bg_bottom_sp.png") no-repeat bottom, url("../img/program_b_bg_top_sp.png") no-repeat top;
        background-size: 100% auto, 100% auto;
        background-position: bottom, top;
    }

    /*↓2/14追加*/
    #program #program_a .waku {
        background: url("../img/program_a_bg_bottom_sp.png") no-repeat bottom, url("../img/program_a_bg_top_sp.png") no-repeat top;
        background-size: 100% auto, 100% auto;
        background-position: bottom, top;
    }


    #program .rellax.left_top {
        width: calc(189/1500*100vw);
    }

    #program .rellax.right_top {
        width: calc(244/1500*100vw);
    }

    #program .rellax.left_bottom {
        width: calc(108/1500*100vw);
    }

    #program .rellax.right_bottom {
        width: calc(232/1500*100vw);
    }
}

/*program_commentary*/
.program_commentary{
    margin: 40px 0 80px 0;
    border-bottom: 3px dotted #b48d31;
    padding: 20px 20px 40px 20px;
}
.program_commentary h6{
    margin: 20px 0;
    font-weight: 700;
    font-size: 2em;
    color: #b48d31;
    text-align: center;
    text-decoration: underline 1px;
    text-underline-offset: 10px;
}
div.program_commentary p.open__btn{
    width: 5em;
    margin: 0 auto;
    text-align: center;
    background-color: #b48d31;
    color: #fff;
    padding: 5px;
}
.commentary_read{
    color: #113476;
    font-weight: 700;
    line-height: 1.5;
    padding: 40px;
    font-style: italic;
}
.commentary_txt{
    color: #113476;
    line-height: 1.5;
}
.commentary_txt span{
font-size: .75em;
}
@media screen and (max-width: 768px) {
    .program_commentary h6{
        font-size: 1.5em;
    }
    .commentary_read{
        padding: 40px 0;
    }
}

/*wellbeing-20240228*/
.smalltxt{
    font-size: 0.75em;
    line-height: 0.75em;
}
.boldtxt{
    font-weight: 700;
    color:#113476;
}

#wellbeing{
    font-family: 'Zen Maru Gothic';
    font-size: 16px;
}
#wellbeing hr{
    height: 3px;
    border-bottom: 5px dotted #b48d31;
    border-top: 0;
}

#wellbeing article{
    padding: 50px 40px 40px 40px;
    margin: 80px 0 0 0;
    background-color: #e8ebfa;
    color: #6d6d6d;
    border-radius: 15px;
    position: relative;
}

#wellbeing h5{
    font-size: 1.5em;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #3e3e8a;
}
#wellbeing h6{
    font-size: 1em;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #3e3e8a;
}
#wellbeing.wbcontainer article.wbitem h4{
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 15px;
    background-color: #b48d31;
    color: #fff;
    position: absolute;
    top: 0;
    transform: translateX(-0.5em) translateY(-50%);
}
#wellbeing.wbcontainer article.wbitem p{
    line-height: 1.5em;
    font-weight: 400;
    padding: 8px 0 10px;
}
.date{
    font-weight: 700;
    font-size: 1.5em;
    color: #3e3e8a;
}
.dayofweek{
    font-weight: 700;
    font-size: .75em;
    color: #3e3e8a;
}
.wbtime{
    color: #3e3e8a;
    font-weight: 700;
}
.infant::before{
    content: '';
    display: block;
    position: absolute;
    width : 100px;
    height: 100px;
    left: 0;
    background: url(../img/infant.svg) no-repeat;
    transform: translateY(25%);
} 
.infant{
    position: relative;
    display: block;
    padding-left: 140px;
    margin: 20px 0;
}
.infantinquiry{
    display: inline-block;
    line-height: 1.3em;
    margin: 0 0 5px 0;
    padding: 0px 8px;
    background-color: #113476;
    border-radius: 8px;
    font-size: 0.75em;
    color: #fff;
}

.tel::before{
    content: '';
    display: inline-block;
    position: absolute;
    width: 24px;
    height: 24px;
    left: 0;
    bottom: 0;
    background: url(../img/tel.svg) no-repeat;
}

.tel{
    position: relative;
    display: inline-block;
    padding-left: 36px;
    text-decoration: underline;
    font-size: 1.5em;
    line-height: 1.5em;
}

.tel:hover{
    opacity: .5;
    transition: .3s;
}
.zenmaru{
    font-family:'Zen Maru Gothic';
}

.flxcontainer_2i{
    display: flex;
    margin: 40px;
    justify-content: space-between;
}
.flxcontainer_2i p{
    line-height: 1.5em;
    font-size: 16px;
}

.flxitem_2{
    width: 49%;
}

.childrenicon::before{
    content: '';
    display: block;
    position: absolute;
    width : 100px;
    height: 100px;
    left: 0;
    background: url(../img/children.svg) no-repeat;
} 

.u20icon::before{
    content: '';
    display: block;
    position: absolute;
    width : 100px;
    height: 100px;
    left: 0;
    background: url(../img/u20.svg) no-repeat;
} 

.childrenicon,.u20icon{
    position: relative;
    display: block;
    padding-left: 120px;

}
.u20icon{
    margin-bottom: 20px;
}
.iconheadline{
    color: #ff778a;
    font-weight: 700;
    font-size: 1.5em;
}

.artistsupport{
    background-color: #ffb5bf;
    border-radius: 30px;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    width: 250px;
    line-height: 1.3;
    margin: 0 auto;
}

.artistsupport:hover{
    transition: 1s;
    background-color: #ff778a;
}

.artistsupport a{
    color: #fff;
    width: 300px;
}

.btncontainer{
    margin: 40px auto;
    width: 250px;
}
.spmn{
    display: none;
}
.tbmn{
    display: none;
}


@media screen and (min-width: 768px) and (max-width: 1300px) {        
 #wellbeing.wbcontainer article.wbitem h4{
            font-weight: 700;
            padding: 10px 15px;
            border-radius: 15px;
            background-color: #b48d31;
            color: #fff;
            position: absolute;
            top: 0;
            transform: translateX(-0.5em) translateY(-50%);
        }  
        .flxcontainer_2i{
            display: flex;
            margin: 40px;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .flxcontainer_2i p{
            line-height: 1.5em;
            font-size: 16px;
            height: 120px;
        }
        .flxitem_2{
            width: 100%;
        }

    }
    

@media screen and (max-width: 1196px) {
    .tbmn{
        display: block;
    }
}

@media screen and (max-width: 767px) { 
    #wellbeing{
        font-size: 16px;
    }
    #wellbeing h5,#wellbeing h6{
        margin: 0 0 10px 0;
        text-align: center;
    }
    #wellbeing hr{
        height: 3px;
        border-bottom: 3px dotted #b48d31;
    }
    #wellbeing article{
        padding: 30px 20px 20px 20px;
        margin: 50px 0 0 0;
    }
    #wellbeing.wbcontainer article.wbitem h4{
        padding: 8px 10px;
    }
    .spmn{
        display: block;
    }
    .infant::before{
        position: initial;
        width : 100%;
        left: initial;
        transform: initial;
        background-position-x: 50%;
    } 
    .infant{
        position: initial;
        margin: 20px 0;
        padding: 0;
        text-align: center;
    }
    .infantinquiry{
        display: block;
        padding: 2px 8px;
        text-align: center;
    }
    .tel::before{
    }
    .tel{
        padding-left: 30px;
    }
    .flxcontainer_2i{
        margin: 0px 0px 40px 0;
        flex-wrap: wrap;
    }
    .flxcontainer_2i p{
        font-size: 16px;
        text-align: center;
        margin: 0;
    }
    .flxitem_2{
        width: 100%;
    }
    .childrenicon::before{
        content: '';
        display: block;
        position: initial;
        margin: 20px auto 10px;
    } 
    .u20icon::before{
        content: '';
        display: block;
        position: initial;
        margin: 20px auto 10px;
    } 
    .childrenicon,.u20icon{
        padding-left: 0px;
    } 
    .iconheadline{
        font-size: 1em;
    }
    
.artistsupport{
    padding: 5px 10px;
    text-align: center;
    width: 150px;
    font-size: .75em;
}


.artistsupport a{
    color: #fff;
    width: 150px;
}
.btncontainer{
    margin: 20px auto;
    width: 250px;
}
}

/*schedule*/
#schedule {
    padding-top: 94px;
    position: relative;
}

#schedule .inner {
    max-width: 1300px;
    margin: 0 auto;
    background: url("../img/box_bg_bottom_pc.png") no-repeat bottom, url("../img/box_bg_top_pc.png") no-repeat top, url("../img/box_bg_middle_pc.png") repeat-y;
    background-size: 100% auto, 100% auto, 100% auto;
    padding: 227px 151px 74px;
}

#schedule h3 img {
    height: 54px;
    width: auto;
}

#schedule .schedule_box {
    border: solid 4px #c9b78f;
    padding: 60px 40px 36px 37px
}

#schedule .schedule_box ul li {
    border-bottom: solid 1px #e0d7c0;
    padding: 26px 0;
}

#schedule .schedule_box ul li:last-child {
    border-bottom: none;
}

#schedule .schedule01 {
    margin-top: 31px;
}

#schedule .schedule02 {
    margin-top: 20px;
}

#schedule .schedule_box dl {
    display: grid;
    grid-template-columns: auto 125px;
    grid-auto-flow: column;
}

#schedule .schedule_box dl dt {
    font-size: 18px;
    color: #6d6d6d;
    background: url(../img/star_icon.png) no-repeat left top 2px;
    background-size: 16px 15px;
    padding: 0 0 10px 1.3em;
}

#schedule .schedule_box dl dt b {
    font-size: 20px;
    color: #113476;
}

#schedule .schedule_box dl dt span {
    font-size: 14px;
}

.tour-schedule__list__venue a,
.tour-schedule__list__inquiry a {
    font-size: 18px;
    color: #b48d31;
    border-bottom: solid 1px #b48d31;
}

.tour-schedule__list__inquiry span {
    font-size: 14px;
    color: #6d6d6d;
}

#schedule .schedule_box dl dd.tour-schedule__list__icon {
    grid-row: 1 / 4;
}

#schedule .schedule01 dl {
    grid-template-rows: repeat(2, auto);
}

#schedule .schedule02 dl {
    grid-template-rows: repeat(3, auto);
}

#schedule .schedule02 ul {
    margin-top: 10px;
}

#schedule .schedule02 .tour-schedule__list__venue {
    margin: 5px 0 10px;
    color: #6d6d6d;
}

#schedule .caution {
    text-align: right;
    margin: 31px 0 20px;
    font-size: 14px;
    color: #000;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
    #schedule .inner {
        padding: calc(227/1500*100vw) calc(151/1500*100vw) calc(74/1500*100vw);
    }
}

@media screen and (max-width: 768px) {
    #schedule {
        padding-top: calc(89/640*100vw);
    }

    #schedule .inner {
        margin: 0 calc(18/640*100vw);
        background: url("../img/box_bg_bottom_sp.png") no-repeat bottom, url("../img/box_bg_top_sp.png") no-repeat top, url("../img/box_bg_middle_sp.png") repeat-y;
        background-size: 100% auto, 100% auto, 100% auto;
        padding: calc(228/640*100vw) calc(54/640*100vw) calc(65/640*100vw);
    }

    #schedule .schedule_box {
        padding: calc(64/640*100vw) calc(32/640*100vw) calc(8/640*100vw) calc(29/640*100vw);
    }

    #schedule h3 img {
        height: calc(50/640*100vw);
    }

    #schedule .schedule_box ul li {
        padding: calc(30/640*100vw) 0 calc(20/640*100vw);
    }

    #schedule .schedule01 dl {
        grid-template-columns: auto 20vw;
    }

    #schedule .schedule02 dl {
        grid-template-columns: auto 20vw;
    }

    #schedule .schedule_box dl dt {
        font-size: calc(18/640*100vw);
        padding: 0 0 calc(10/640*100vw) 1.3em;
    }

    #schedule .schedule_box dl dt b {
        font-size: calc(20/640*100vw);
    }

    #schedule .schedule_box dl dt span {
        font-size: calc(14/640*100vw);
    }


    .tour-schedule__list__venue a,
    .tour-schedule__list__inquiry a {
        font-size: calc(18/640*100vw);
        margin-bottom: calc(10/640*100vw);
    }

    #schedule .schedule02 .tour-schedule__list__venue {
        font-size: calc(18/640*100vw);
    }

    #schedule .caution {
        font-size: calc(14/640*100vw);
        margin: calc(31/640*100vw) 0 0;
    }

    #schedule .rellax.left_top {
        width: calc(193/1500*100vw);
    }

    #schedule .rellax.right_top {
        width: calc(296/1500*100vw);
    }

    #schedule .rellax.left_bottom {
        width: calc(236/1500*100vw);
    }

    #schedule .rellax.right_bottom {
        width: calc(63/1500*100vw);
    }
}





/*Member*/
#member {
    padding-top: 92px;
    position: relative;
}

#member .inner {
    max-width: 1300px;
    margin: 0 auto;
    background: url("../img/box_bg_bottom_pc.png") no-repeat bottom, url("../img/box_bg_top_pc.png") no-repeat top, url("../img/box_bg_middle_pc.png") repeat-y;
    background-size: 100% auto, 100% auto, 100% auto;
    padding: 227px 151px 54px;
}

#member .txt-lead {
    color: #6d6d6d;
    line-height: 1.625;
    margin: 24px 0 30px;
    position: relative;
}

#member .txt-lead::after {
    content: url("../img/scroll_img.png");
    margin: 28px auto 58px;
    display: block;
    text-align: center;
}

#member ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#member ul li {
    width: 19%;
    margin-bottom: 35px;
    position: relative;
}

#member ul li:nth-child(2n) {
    padding: 0 1%;
}

#member ul li:nth-child(6),
#member ul li:nth-child(16) {
    padding: 0 2% 0 0;
}

#member ul li:nth-child(10),
#member ul li:nth-child(20),
#member ul li:last-child{
    padding: 0 0 0 2%;
}

/*#member ul li:nth-last-child(2) {
    margin-right: auto;
    margin-left: 0.5%;
}*/

/* カペルマイスターが5n+1番目の時は使わない
  #member ul li:nth-last-child(2) {
    margin-right: 20%;
} */

#member ul li a::after {
    content: "";
    width: 41px;
    height: 41px;
    position: absolute;
    top: 25%;
    right: -18px;
    background: url("../img/btn_more.png") no-repeat top center;
    background-size: contain;
  }

@media screen and (min-width: 768px) and (max-width: 1300px) {
    #member .inner {
        padding: calc(227/1500*100vw) calc(151/1500*100vw) calc(54/1500*100vw);
    }
}

@media screen and (max-width: 768px) {
    #member {
        padding-top: calc(86/640*100vw);
    }

    #member .inner {
        margin: 0 calc(18/640*100vw);
        background: url("../img/box_bg_bottom_sp.png") no-repeat bottom, url("../img/box_bg_top_sp.png") no-repeat top, url("../img/box_bg_middle_sp.png") repeat-y;
        background-size: 100% auto, 100% auto, 100% auto;
        padding: calc(228/640*100vw) calc(54/640*100vw) calc(74/640*100vw);
    }

    #member .txt-lead {
        line-height: 1.54;
        font-size: calc(22/640*100vw);
        margin: calc(13/640*100vw) 0 calc(20/640*100vw);
    }

    #member .txt-lead::after {
        content: "";
        background: url("../img/scroll_img.png") no-repeat;
        background-size: auto;
        width: calc(8/640*100vw);
        height: calc(56/640*100vw);
        background-size: contain;
        margin: calc(43/640*100vw) auto 0;
    }

    #member ul li {
        width: 33%;
        margin-bottom: calc(21/640*100vw);
    }

    #member ul li:nth-child(2n) {
        width: 31.5%
    }

    #member ul li:nth-child(22) {
        width: 35% !important;
        margin-left: -1%;
    }
    #member ul li a::after {
        width: calc(40/640*100vw);
        height: calc(40/640*100vw);
        top: 8vw;
        right: -2vw;
      }
    #member .rellax.left_top {
        width: calc(194/1500*100vw);
    }

    #member .rellax.right_top {
        width: calc(156/1500*100vw);
    }

    #member .rellax.left_bottom {
        width: calc(158/1500*100vw);
    }

    #member .rellax.right_bottom {
        width: calc(240/1500*100vw);
    }
}

/*modal*/
#modal-block {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #113476;
    z-index: 99;
    overflow-y: scroll;
  }
  @media only screen and (max-width: 768px) {
    #modal-block img {
      width: 100%;
    }
  }
  #modal-block .close-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #modal-block .close {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    border: 2px solid #bfa348;
    z-index: 5;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  @media only screen and (max-width: 768px) {
    #modal-block .close {
      top: 3.4375vw;
      right: 5.8vw;
      width:calc(56/640*100vw);
      height:calc(56/640*100vw);
    }
  }
  #modal-block .close span {
    position: absolute;
    display: block;
    top: 25px;
    left: 14px;
    width: 23px;
    height: 2px;
    background-color: #bfa348;
    transition: all 0.3s ease;
  }
  @media only screen and (max-width: 768px) {
    #modal-block .close span {
      top: 3.90625vw;
      left: 2.1875vw;
      width: 3.59375vw;
      height: 0.3125vw;
    }
  }
  #modal-block .close span:nth-child(1) {
    transform: rotate(45deg);
  }
  #modal-block .close span:nth-child(2) {
    transform: rotate(-45deg);
  }
  #modal-block .m-box {
    display: none;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
  }
  #modal-block .modal-content {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  #modal-block .modal-content::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  #modal-block .detail-box .wrap {
    position: relative;
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 90px 0;
  }
  @media only screen and (max-width: 768px) {
    #modal-block .detail-box .wrap {
      display: block;
      width: 86.875vw;
      padding: 14.0625vw 0;
    }
  }
  #modal-block .detail-box .image {
    width: 399px;
  }
  @media only screen and (max-width: 768px) {
    #modal-block .detail-box .image {
      width: auto;
      margin-bottom: 4.6875vw;
    }
  }
  #modal-block .detail-box .image img {
    width: 100%;
  }
  #modal-block .detail-box .txt-box {
    width: 570px;
  }
  @media only screen and (max-width: 768px) {
    #modal-block .detail-box .txt-box {
      width: auto;
    }
  }
  #modal-block .detail-box .txt-box h4 {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  @media only screen and (max-width: 768px) {
    #modal-block .detail-box .txt-box h4 {
      font-size: 30px;
      font-size: 4.6875vw;
      margin-bottom: 3.125vw;
    }
  }
  #modal-block .detail-box .txt-box h4 span {
    font-size: 14px;
    vertical-align: middle;
  }
  @media only screen and (max-width: 768px) {
    #modal-block .detail-box .txt-box h4 span {
      font-size: 18px;
      font-size: 2.8125vw;
    }
  }
  #modal-block .detail-box .txt-box p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
  }
  @media only screen and (max-width: 768px) {
    #modal-block .detail-box .txt-box p {
      font-size: 24px;
      font-size: 3.75vw;
    }
  }



/*Ticket*/
#ticket {
    padding-top: 99px;
    position: relative;
}

#ticket .inner {
    max-width: 1300px;
    margin: 0 auto;
    background: url("../img/box_bg_bottom_pc.png") no-repeat bottom, url("../img/box_bg_top_pc.png") no-repeat top, url("../img/box_bg_middle_pc.png") repeat-y;
    background-size: 100% auto, 100% auto, 100% auto;
    padding: 227px 151px 93px;
}

#ticket h2 {
    text-align: center;
}

#ticket h3 img {
    height: 54px;
    width: auto;
}

.in_open__btn {
    background: #b48d31;
    color: #fff;
    position: relative;
    cursor: pointer;
    width: 370px;
    margin: 0 auto;
    text-align: center;
    line-height: 32px;
    transition: 0.2s
}

.in_open__btn:hover {
    opacity: 0.5;
}

.in_open__btn::after {
    content: "";
    right: 8px;
    top: calc(50% - 4.72px);
    width: 13.5px;
    height: 9.5px;
    display: block;
    position: absolute;
    background: url("../img/btn_arrow.png");
    background-size: auto;
    background-size: contain;
}

.in_open__btn+.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    #ticket {
        padding-top: calc(87/640*100vw);
    }

    #ticket .inner {
        margin: 0 calc(18/640*100vw);
        background: url("../img/box_bg_bottom_sp.png") no-repeat bottom, url("../img/box_bg_top_sp.png") no-repeat top, url("../img/box_bg_middle_sp.png") repeat-y;
        background-size: 100% auto, 100% auto, 100% auto;
        padding: calc(228/640*100vw) calc(54/640*100vw) calc(55/640*100vw);
    }

    #ticket h3 img {
        height: calc(51/640*100vw);
    }

    #ticket .rellax.left_top {
        width: calc(245/1500*100vw);
    }

    #ticket .rellax.right_top {
        width: calc(151/1500*100vw);
    }

    #ticket .rellax.left_middle {
        width: calc(222/1500*100vw);
    }

    #ticket .rellax.right_middle {
        width: calc(137/1500*100vw);
    }

    #ticket .rellax.left_bottom {
        width: calc(151/1500*100vw);
    }

    #ticket .rellax.right_bottom {
        width: calc(201/1500*100vw);
    }
    .in_open__btn:hover {
        opacity: 1;
    }
}


/*発売日程*/
#ticket .release-schedule {
    border: solid 4px #c9b78f;
    padding: 59px 37px 56px;
    margin-top: 30px;
}

#ticket .release-schedule ul {
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 2px #e0d7c0;
    margin: 36px 0 37px 0;
}

#ticket .release-schedule ul li {
    width: 50%;
    padding-bottom: 27px;
}

#ticket .release-schedule ul li .title {
    font-size: 20px;
    color: #113476;
    background: url(../img/star_icon.png) no-repeat left top 2px;
    background-size: auto;
    background-size: 16px 15px;
    padding: 0 0 10px 1.3em;
    font-weight: 600;
}

#ticket .release-schedule ul li .date {
    font-size: 18px;
    color: #6d6d6d;
    margin-bottom: 15px;
}

#ticket .release-schedule ul li .btn {
    background: #b48d31;
    color: #fff;
    position: relative;
    cursor: pointer;
    padding: 0 39px;
    margin: 0 3px 0 0;
    text-align: center;
    line-height: 32px;
    display: inline-block;
    font-size: 14px;
    transition: 0.2s;
}
#ticket .release-schedule ul li .btn a{
    color: #fff;
}

#ticket .release-schedule ul li .btn:hover {
    opacity: 0.5;
}

#ticket .release-schedule ul li .btn::after {
    content: "";
    right: 8px;
    top: calc(50% - 4.72px);
    width: 13.5px;
    height: 9.5px;
    display: block;
    position: absolute;
    background: url("../img/btn_arrow.png");
    background-size: auto;
    background-size: contain;
    transform: rotate(-90deg);
}

#ticket .release-schedule .price__notes {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    #ticket .release-schedule {
        padding: calc(59/640*100vw) calc(25/640*100vw) calc(30/640*100vw) calc(30/640*100vw);
        margin-top: calc(30/640*100vw);
    }

    #ticket .release-schedule ul {
        padding-bottom: calc(17/640*100vw);
        margin: calc(36/640*100vw) 0 calc(27/640*100vw) 0;
    }

    #ticket .release-schedule ul li {
        width: 100%;
        padding-bottom: calc(21/640*100vw);
    }

    #ticket .release-schedule ul li .title {
        font-size: calc(20/640*100vw);
        padding: 0 0 calc(10/640*100vw) 1.3em;
    }

    #ticket .release-schedule ul li .date {
        font-size: calc(22/640*100vw);
        margin-bottom: calc(10/640*100vw);
    }

    #ticket .release-schedule ul li .btn {
        padding: 0 calc(39/640*100vw);
        margin: 0 calc(3/640*100vw) 0 0;
        line-height: calc(32/640*100vw);
        font-size: calc(14/640*100vw);
    }

    #ticket .release-schedule .price__notes {
        font-size: calc(18/640*100vw);
        line-height: 1.55;
    }
    #ticket .release-schedule ul li .btn:hover {
        opacity: 1;
    }
    
}


/*料金*/
#ticket .price {
    border: solid 4px #c9b78f;
    padding: 59px 37px 52px;
    margin-top: 20px;
}

#ticket .price .price__plans {
    display: flex;
    flex-wrap: wrap;
    margin: 36px 0 33px;
    justify-content: space-between;
    border-bottom: solid 2px #e0d7c0;
    padding-bottom: 25px;
}

#ticket .price .price__plans>dl {
    width: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#ticket .price .price__plans>dl>dt {
    font-size: 26px;
    color: #b48d31;
    border-bottom: solid 1px #b48d31;
    width: 201px;
    display: block;
    margin: 39px auto 0;
    text-align: center;
    position: relative;
    padding-bottom: 13px;
}

#ticket .price .price__plans>dl>dd {
    position: relative;
    margin: 9px 40px 21px;
    color: #6d6d6d;
}

#ticket .price .price__plans dl dd.price__plans__date {
    font-size: 16px;
    margin: 18px 0 0;
}

#ticket .price .price__plans dl dd.price__plans__date.attention {
    color: #2170dc;
    font-weight: 600;
}

#ticket .price .price__plans dl dd.price__plans__main {
    font-size: 22px;
    font-weight: 600;
    position: relative;
    text-align: center;
    line-height: 1.49;
    margin: 3px 40px 0;
}

#ticket .price .price__plans dl dd.price__plans__main::after {
    content: url(../img/star_icon.png);
    display: block;
    margin-top: -3px;
}

#ticket .price .price__plans dl dd.price__plans__supplement dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.685;
}

#ticket .price .price__plans dl dd.price__plans__supplement {
    font-size: 16px;
    margin: 1px 41px 29px;
}

#ticket .price .price__plans dl dd.price__plans__supplement.price__plans__supplement--u20 {
    margin: 0 13px 29px;
    font-size: 14px;
    line-height: 1.714;
}

#ticket .price__plans__term--holidays {
    position: relative;
    background: url("../img/price01_bg_bottom_pc.png") no-repeat bottom, url("../img/price01_bg_top_pc.png") no-repeat top;
    background-size: 100% auto, 100% auto;
    background-position: bottom, top;
}

#ticket .price__plans__term--holidays::before {
    position: absolute;
    content: "";
    background: url("../img/price01_bg_middle_pc.png") repeat-y;
    background-size: 100% auto;
    width: 100%;
    top: 52px;
    height: calc(100% - 57px);
}

#ticket .price__plans__term--weekdays {
    position: relative;
    background: url("../img/price02_bg_bottom_pc.png") no-repeat bottom, url("../img/price02_bg_top_pc.png") no-repeat top;
    background-size: 100% auto, 100% auto;
    background-position: bottom, top;
}

#ticket .price__plans__term--weekdays::before {
    position: absolute;
    content: "";
    background: url("../img/price02_bg_middle_pc.png") repeat-y;
    background-size: 100% auto;
    width: 100%;
    top: 52px;
    height: calc(100% - 57px);
}

#ticket .price__plans__term--u20 {
    position: relative;
    background: url("../img/price03_bg_bottom_pc.png") no-repeat bottom, url("../img/price03_bg_top_pc.png") no-repeat top;
    background-size: 100% auto, 100% auto;
    background-position: bottom, top;
}

#ticket .price__plans__term--u20::before {
    position: absolute;
    content: "";
    background: url("../img/price03_bg_middle_pc.png") repeat-y;
    background-size: 100% auto;
    width: 100%;
    top: 52px;
    height: calc(100% - 57px);
}

#ticket .price .price__notes {
    line-height: 1.785;
    font-size: 14px;
}

#ticket .price dl.price__notes {
    margin: 22px 0 0;
}

#ticket .price dl.price__notes dt {
    font-size: 18px;
    line-height: 1.38;
}

#ticket .price dl.price__notes dd {
    position: relative
}

#ticket .price dl.price__notes dd::before {
    content: "◆";
    color: #c9b78f;
}


@media screen and (max-width: 1192px) {

    #ticket .price .price__plans {
        justify-content: space-around;
    }

    #ticket .price .price__plans__term--u20 {
        margin-top: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 828px) {
    .price__plans__term--weekdays {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    #ticket .price {
        padding: calc(63/640*100vw) calc(36/640*100vw) calc(65/640*100vw);
        margin-top: calc(15/640*100vw);
    }

    #ticket .price .price__plans {
        margin: calc(33/640*100vw) calc(-6/640*100vw) calc(25/640*100vw);
        padding-bottom: calc(11/640*100vw);
    }

    #ticket .price .price__plans>dl {
        width: 100%;
        margin-bottom: calc(20/640*100vw);
    }

    #ticket .price .price__plans>dl>dt {
        font-size: calc(26/640*100vw);
        width: calc(340/640*100vw);
        margin: calc(39/640*100vw) auto 0;
        padding-bottom: calc(13/640*100vw)
    }

    #ticket .price .price__plans dl dd.price__plans__date {
        font-size: calc(20/640*100vw);
        margin: calc(18/640*100vw) 0 0;
    }

    #ticket .price .price__plans dl dd.price__plans__main {
        font-size: calc(26/640*100vw);
        line-height: 1.384;
        margin: calc(6/640*100vw) 0 0;
    }

    #ticket .price .price__plans dl dd.price__plans__main::after {
        margin-top: calc(-8/640*100vw);
    }

    #ticket .price .price__plans dl dd.price__plans__supplement {
        font-size: calc(20/640*100vw);
        margin: calc(1/640*100vw) 0 calc(23/640*100vw);
    }

    #ticket .price .price__plans dl dd.price__plans__supplement dt {
        line-height: 1.35;
    }

    #ticket .price .price__plans dl dd.price__plans__supplement dd {
        line-height: 1.5;
    }

    #ticket .price__plans__term--holidays {
        background: url("../img/price01_bg_bottom_sp.png") no-repeat bottom, url("../img/price01_bg_top_sp.png") no-repeat top;
        background-size: 100% auto, 100% auto;
        background-position: bottom, top;
    }

    #ticket .price__plans__term--holidays::before {
        background: url("../img/price01_bg_middle_sp.png") repeat-y;
        background-size: 100% auto;
        width: 100%;
        top: calc(52/640*100vw);
        height: calc(100% - (59/640*100vw));
    }

    #ticket .price__plans__term--weekdays {
        background: url("../img/price02_bg_bottom_sp.png") no-repeat bottom, url("../img/price02_bg_top_sp.png") no-repeat top;
        background-size: 100% auto, 100% auto;
        background-position: bottom, top;
    }

    #ticket .price__plans__term--weekdays::before {
        background: url("../img/price02_bg_middle_sp.png") repeat-y;
        background-size: 100% auto;
        width: 100%;
        top: calc(52/640*100vw);
        height: calc(100% - (59/640*100vw));
    }

    #ticket .price__plans__term--u20 {
        background: url("../img/price03_bg_bottom_sp.png") no-repeat bottom, url("../img/price03_bg_top_sp.png") no-repeat top;
        background-size: 100% auto, 100% auto;
        background-position: bottom, top;
    }

    #ticket .price__plans__term--u20::before {
        background: url("../img/price03_bg_middle_sp.png") repeat-y;
        background-size: 100% auto;
        width: 100%;
        top: calc(52/640*100vw);
        height: calc(100% - (59/640*100vw));
    }

    #ticket .price .price__plans__term--u20 {
        margin-top: 0;
    }

    #ticket .price .price__plans dl dd.price__plans__supplement.price__plans__supplement--u20 {
        font-size: calc(20/640*100vw);
        line-height: 1.5;
        margin: 0 calc(41/640*100vw) calc(22/640*100vw);
    }

    #ticket .price .price__notes {
        font-size: calc(18/640*100vw);
        line-height: 1.55;
        margin: 0 calc(-10/640*100vw) 0 calc(-8/640*100vw);
    }

    #ticket .price dl.price__notes {
        margin: calc(25/640*100vw) 0 0;
    }

    #ticket .price dl.price__notes dt {
        font-size: calc(22/640*100vw);
        line-height: 1.36;
    }
}




/*家族で聴こう！*/
#ticket .listen-with-family {
    border: none;
    padding: 0;
    margin-top: 20px;
    position: relative;
}
#ticket .listen-with-family .tell {
    position: absolute;
    left: 40%;
    bottom: 4%;
    width: 52%;

}

@media screen and (max-width: 768px) {
    #ticket .listen-with-family {
        margin: calc(39/640*100vw) 0 0 calc(-60/640*100vw);
        width: calc(616/640*100vw);
    }
    #ticket .listen-with-family .tell {
        left: 15%;
        bottom: 2.5%;
        width: 70%;
    
    }
}

/*特別サービス*/
#ticket .special-services {
    border: none;
    padding: 0;
    margin-top: 20px;
}

#ticket .special-services ul {
    display: flex;
}

@media screen and (max-width: 768px) {
    #ticket .special-services {
        margin-top: calc(16/640*100vw);
    }
}


/*購入方法*/
#ticket .how-to-buy {
    border: solid 4px #c9b78f;
    padding: 59px 37px 56px;
    margin-top: 20px;
}

#ticket .how-to-buy h4 {
    color: #b48d31;
    font-size: 22px;
    line-height: 2.9;
    border-bottom: solid 1px #c9b78f;
    margin-bottom: 50px;
}

#ticket .how-to-buy .how-to-buy__list {
    display: flex;
    flex-wrap: wrap;
    margin: 36px 0 7px 0;
}

#ticket .how-to-buy__list--ticketagency {
    flex-direction: column;
}

#ticket .how-to-buy .how-to-buy__list__inner {
    width: 50%;
    padding-bottom: 27px;
}

#ticket .how-to-buy dl dt {
    font-size: 20px;
    color: #113476;
    background: url(../img/star_icon.png) no-repeat left top 2px;
    background-size: auto;
    background-size: 16px 15px;
    padding: 0 0 10px 1em;
    font-weight: 600;
}

#ticket .how-to-buy dl dd {
    font-size: 16px;
    color: #6d6d6d;
    margin-bottom: 7px;
    line-height: 1.3;
}

#ticket .how-to-buy dl dd .how-to-buy__list__call {
    font-size: 26px;
    color: #b48d31;
    line-height: 1.61;
    border-bottom: solid 1px #b48d31;
    font-weight: 600;
}

#ticket .how-to-buy dl dd span {
    font-size: 14px;
    margin-top: 15px;
    display: block;
}

#ticket .how-to-buy dl dd .how-to-buy__list__time {
    color: #b48d31;
    margin-top: 15px;
    border-bottom: solid 1px #b48d31;line-height: 1.5;
}

#ticket .how-to-buy .btn {
    background: #b48d31;
    color: #fff;
    position: relative;
    cursor: pointer;
    padding: 0 39px;
    margin: 0 3px 0 0;
    text-align: center;
    line-height: 32px;
    display: inline-block;
    font-size: 14px;
}

#ticket .how-to-buy .btn::after {
    content: "";
    right: 8px;
    top: calc(50% - 4.72px);
    width: 13.5px;
    height: 9.5px;
    display: block;
    position: absolute;
    background: url("../img/btn_arrow.png");
    background-size: auto;
    background-size: contain;
    transform: rotate(-90deg);
}

#ticket .how-to-buy .how-to-buy__list__jpialink a {
    margin: 27px 0 -17px;
    display: block;
}

#ticket .how-to-buy .summary_inner h4 {
    margin-bottom: 19px;
}

#ticket .how-to-buy .how-to-buy__list--ticketagency a {
    color: #b48d31;
    border-bottom: solid 1px #b48d31;
    margin-right: 1em;
}

#ticket .how-to-buy .how-to-buy__list--ticketagency dd {
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    #ticket .how-to-buy {
        margin-top: calc(18/640*100vw);
        padding: calc(61/640*100vw) calc(29/640*100vw) calc(64/640*100vw);
    }

    #ticket .how-to-buy h4 {
        font-size: calc(24/640*100vw);
        line-height: 2.5;
        margin: calc(12/640*100vw) 0 0;
    }

    #ticket .how-to-buy .how-to-buy__list {
        margin: calc(18/640*100vw) 0 calc(7/640*100vw) 0;
    }

    #ticket .how-to-buy .how-to-buy__list__inner {
        width: 100%;
        padding-bottom: calc(20/640*100vw);
    }

    #ticket .how-to-buy dl dt {
        line-height: 1.318;
        font-size: calc(22/640*100vw);
        background: url(../img/star_icon.png) no-repeat left top 2px;
        background-size: calc(16/640*100vw) calc(15/640*100vw);
        padding: 0 0 calc(6/640*100vw) 1em;
    }

    #ticket .how-to-buy dl dd {
        font-size: calc(20/640*100vw);
        margin-bottom: calc(7/640*100vw);
    }

    #ticket .how-to-buy dl dd .how-to-buy__list__call {
        line-height: 1.26;
        font-size: calc(30/640*100vw);
    }

    #ticket .how-to-buy .how-to-buy__list__jpialink a {
        margin: calc(22/640*100vw) 0 calc(-12/640*100vw);
    }

    #ticket .how-to-buy .summary_inner h4 {
        margin: 0px 0 calc(20/640*100vw);
        line-height: 1.8;
        padding-bottom: calc(9/640*100vw);
    }

    .in_open__btn {
        width: 99%;
        line-height: calc(43/640*100vw);
        font-size: calc(24/640*100vw);
    }

    .in_open__btn::after {
        right: calc(38/640*100vw);
        top: calc(50% - (4.72/640*100vw));
        width: calc(13.5/640*100vw);
        height: calc(9.5/640*100vw);
    }

    #ticket .how-to-buy .how-to-buy__list--ticketagency dd {
        line-height: 1.5;
        margin-bottom: calc(20/640*100vw)
    }
}


/*注意事項*/
#ticket .notes {
    border: solid 4px #c9b78f;
    padding: 59px 37px 56px;
    margin-top: 20px;
}

#ticket .notes .explanation {
    font-size: 22px;
    color: #b48d31;
    font-weight: 600;
    margin: 20px 0 22px;
    padding-bottom: 24px;
    border-bottom: solid 1px #b48d31;
}

#ticket .notes ul {
    margin-top: 20px;
}

#ticket .notes ul li {
    font-size: 16px;
    line-height: 1.8125;
    color: #6d6d6d;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
    #ticket .inner {
        padding: calc(227/1500*100vw) calc(151/1500*100vw) calc(93/1500*100vw);
    }
}

@media screen and (max-width: 768px) {
    #ticket .notes {
        padding: calc(62/640*100vw) calc(29/640*100vw) calc(25/640*100vw);
        margin-top: calc(25/640*100vw);
    }

    #ticket .notes .explanation {
        font-size: calc(24/640*100vw);
        line-height: 1.33;
        margin: calc(16/640*100vw) 0 calc(20/640*100vw);
        padding-bottom: calc(8/640*100vw);
    }
}



/*end_content*/
.end_content {
    padding-top: 70px;
}

.end_content .sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 52px;
}

.end_content .sns li {
    height: 30px;
    margin: 0 15px;
}

.end_content .sns li img {
    height: 100%;
    width: auto;
}

.end_content .pdf_download {
    width: 458px;
    margin: 0 auto;
}

.end_content .logo {
    width: 207px;
    margin: 50px auto 69px;
}

@media screen and (max-width: 768px) {
    .end_content {
        padding-top: calc(37/640*100vw);
    }

    .end_content .sns {
        margin-bottom: calc(46/640*100vw);
    }

    .end_content .sns li {
        height: calc(42/640*100vw);
        margin: 0 calc(19/640*100vw);
    }

    .end_content .pdf_download {
        width: calc(458/640*100vw);
    }

    .end_content .logo {
        width: calc(207/640*100vw);
        margin: calc(50/640*100vw) auto calc(68/640*100vw);
    }
}



/*上へ戻る*/
#page-top a {
    width: 65px;
    height: 65px;
    display: block;
    transition: all 0.3s;
}

#page-top {
    position: fixed;
    right: 60px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
}

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(100px);
    }
}

@media screen and (max-width: 768px) {
    #page-top {
        right: calc(41/640*100vw);
    }

    #page-top a {
        width: calc(65/640*100vw);
        height: calc(65/640*100vw);
    }
}




/*footer*/
footer {
    background-color: #113476;
    color: #ffffff;
    position: relative;
    padding: 69px 0 130px;
}

footer .wrapper {
    overflow: hidden;
}

footer::before {
    content: "";
    border-top: solid 2px #113476;
    width: 100%;
    display: block;
    position: absolute;
    top: -4px;
}

footer::after {
    content: "";
    border-top: dotted 2px #113476;
    width: 100%;
    display: block;
    position: absolute;
    top: -8px;
}

footer dl {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

footer dl dt {
    white-space: nowrap;
}

footer dl dd {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

footer dl dd span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

footer dl dd img {
    width: auto;
    margin: 0 27px 4px 14px;
}

/*20240213追加*/
.support img{
    height: 30px;
}

.logo_sponsor{
    width: 220px;
}

.head3_program img{
    width: 516px;
    margin: 0 auto;
}

/*20240213追加*/

footer dl dd a {
    color: #fed56b;
    margin-left: 10px;
    letter-spacing: 0.01em;
}

footer ul.banner {
    display: flex;
    flex-wrap: wrap;
    margin: 40px -36px 47px;
}

footer ul.banner li {
    margin: 0 34px 16px;
}

footer ul.banner li img {
    height: 48px;
    width: auto;
}

footer small {
    text-align: center;
    display: block;
}

@media screen and (max-width: 768px) {
    footer {
        padding: calc(67/640*100vw) calc(40/640*100vw) calc(180/640*100vw);
        font-size: calc(18/640*100vw);
    }

    footer::before,
    footer::after {
        margin-left: calc(-40/640*100vw);
    }

    footer dl {
        align-items: baseline;
        margin-bottom: calc(17/640*100vw);
    }

    footer dl dd {
        width: calc(100% - 3em);
        letter-spacing: 0;
    }

    footer dl dd span {
        margin-bottom: calc(12/640*100vw);
    }

    footer dl dd span:last-child {
        margin-bottom: 0;
    }

    footer dl dd span img {
        height: calc(30/640*100vw);
        margin: 0 calc(12/640*100vw) 0 calc(14/640*100vw);
    }

    footer dl.cooperation dd span {
        margin-bottom: calc(24/640*100vw);
    }

    footer ul.banner {
        margin: calc(40/640*100vw) 0 calc(8/640*100vw);
    }

    footer ul.banner li {
        margin: 0 calc(30/640*100vw) calc(25/640*100vw) 0;
    }

    footer ul.banner li:nth-child(3) {
        margin: 0 0 calc(16/640*100vw) 0;
    }

    footer ul.banner li img {
        height: calc(40/640*100vw);
    }
}