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

:root {
    --sans-font: Roboto, sans-serif;
    --gothic-font: Noto Sans JP, sans-serif;
    --header-offset: 120px;
}

html {
    font-size: 16px;
    font-family: var(--gothic-font);
    letter-spacing: 0.1em;
    color: #333333;
    touch-action: manipulation;
    line-height: 1.6;
    font-feature-settings: "palt";
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

body.menu {
    overflow: hidden;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: inherit;
}

figure {
    margin: 0;
}

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

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

.visuallyhidden {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}

.section-title {
    font-size: 40px;
    letter-spacing: 0;
    text-align: center;
    line-height: 1;
    vertical-align: middle;
    box-sizing: border-box;
    position: relative;
}

.section-title::before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #00a20a 0%, #0e53be 15%, #fa0009 40%, #fa0009 60%, #0e53be 85%, #00a20a 100%);
    position: absolute;
    top: 53%;
    left: 0;
}

.section-title-inner {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    background-color: #fff;
    position: relative;
    border-radius: 100px;
}

.section-title-head {
    font-size: 40px;
}

.section-title-sub {
    font-size: 25px;
    margin-left: 15px;
    margin-bottom: -2px;
}



@media screen and (max-width:767px) {
    .section-title-inner {
        font-size: 30px;
        display: inline-block;
        background-color: #fff;
        position: relative;
        padding: 0 20px;
    }

    .section-title-sub {
        font-size: 20px;
        margin-left: 0;
        margin-bottom: 0;
        margin-top: 10px;
    }
}

.ie-alert {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: .5s all;
    pointer-events: none;
}
.is-ie .ie-alert {
    display: block;
    opacity: 1;
    pointer-events: all;
}
.ie-alert-inner {
    width: 100%;
    max-width: 980px;
    width: 100%;
    margin: auto;
    padding: 55px 0;
}
.ie-alert-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
}
.ie-alert-btns {
    margin: 20px 0;
    display: flex;
}
.ie-alert-btn {
    display: block;
    background: white;
    color: #333333;
    padding: 10px;
    margin-right: 20px;
    font-weight: bold;
}

/* -------------------------------
            home-hedaer
---------------------------------- */
.gl-header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    box-sizing: border-box;
    border-bottom: solid 1px #113364;
    background-color: #fff;
    z-index: 10;
}

.global-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 30px 0;
}

.global-header .nav-item.logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.global-header .nav-item.logos .logo-item {
    margin-right: 30px;
}

.global-header .nav-item.logos .logo-item:nth-child(3) {
    margin-right: 0;
}

.global-header .nav-item.logos .logo-item:nth-child(1) img {
    width: 120px;
}

.global-header .nav-item.logos .logo-item:nth-child(2) img {
    width: 100px;
}

.global-header .nav-item.logos .logo-item:nth-child(3) img {
    width: 80px;
}


.global-header .nav-item.site-nav {
    text-align: center;
    margin: 0 40px;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.global-header .nav-item.site-nav .menu-nav-item {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    text-decoration: none;
    color: #333333;
    padding-right: 20px;
    position: relative;
    transition: .3s all;
    display: block;
    position: relative;
}
/* .menu-nav-sub {
    position: absolute;
    background-color: #0082BD;
    padding: 10px;
    width: 180px;
    top: 100%;
    left: -10px;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transition: .5s all;
} */
.menu-nav-sub {
    position: absolute;
    background-color: #fff;
    width: 180px;
    top: 100%;
    left: -10px;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transition: .5s all;
    border: solid 1px #333333;
}
.-open .menu-nav-sub {
    opacity: 1;
    pointer-events: all;
}
.menu-nav-sub-item {
    font-size: 14px;
    border-bottom: solid 1px #333333;
}
.menu-nav-sub-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.menu-nav-sub-item a {
    display: block;
    color: #333333;
    padding: 5px 10px;
}
.menu-nav-sub-item a:hover {
    color: #fff;
    background-color: #0082BD;
}

@media screen and (max-width: 767px) {
    .menu-nav-sub {
        opacity: 1;
        pointer-events: all;
        position: static;
        width: 100%;
        background: none;
        text-align: center;
    }
    .menu-nav-sub-item a {
        font-size: 14px;
    }
}

.global-header .nav-item.site-nav .menu-nav-item:last-child {
    padding-right: 0;
}

.global-header .nav-item.site-nav .menu-nav-item::after {
    content: "｜";
    position: absolute;
    top: -2px;
    right: 2px;
}

.global-header .nav-item.site-nav .menu-nav-item:last-child::after {
    display: none;
}

.global-header .nav-item.right {
    text-align: right;
    font-size: 13px;
}

.global-header .nav-item.right .read-btn {
    background-color: #F7F9FC;
    border: solid 1px #697076;
    border-radius: 2px;
    width: 178px;
    display: flex;
}

.global-header .nav-item.right .setting {
    display: inline-block;
    padding: 7px 7px 6px 7px;
    border-right: solid 1px #697076;
}

.global-header .nav-item.right .setting .icon {
    margin-bottom: -1px;
}

.global-header .nav-item.right .volume {
    display: inline-block;
    padding: 7px 9px 6px 9px;
    border-right: solid 1px #697076;
    color: #333333;
    white-space: nowrap;
}

.global-header .nav-item.right .volume .icon {
    margin-bottom: -1px;
}

.global-header .nav-item.right .play {
    display: inline-block;
    padding: 7px 12px 5px 12px;
}

.global-menu {
    display: none;
}

.global-header .hamburger {
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    position: relative;
    display: none;
}
  
  .global-header .hamburger .line1 {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background: #363636;
    transform: translateY(-7px);
    position: absolute;
    transition: transform 0.5s;
  }
  
  .global-header .hamburger .line2 {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background: #363636;
    transform: translateX(0);
    position: absolute;
    transition:  0.4s;
  }

  .global-header .hamburger .line3 {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background: #363636;
    transform: translateY(7px);
    position: absolute;
    transition: transform 0.5s;
  }
  
  body.menu .global-header .hamburger .line1 {
    transform: rotate(45deg);
  }

  body.menu .global-header .hamburger .line2 {
    transform: translateX(-15px);
    opacity: 0;
  }
  
  body.menu .global-header .hamburger .line3 {
    transform: rotate(-45deg);
  }

  .btn-ticket {
      margin-top: 10px;
      border-radius: 20px;
      background-color: #0082BD;
      width: 178px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      font-weight: 500;
  }

@media screen and (max-width:1239px) {
    .global-header {
        max-width: none;
        margin: auto;
        padding: 30px 20px;
    }
}

@media screen and (max-width:999px) {
    .global-header {
        display: inline-block;
        max-width: none;
        width: 100%;
        padding: 30px 20px 10px;
    }

    .global-header .nav-item.left {
        display: block;
        height: 40px;
    }

    .global-header .nav-item.left .logo {
        height: 40px;
    }

    .global-header .nav-item.site-nav {
        display: none;
    }

    .global-header .hamburger {
        display: inline-flex;
        position: absolute;
        top: 34px;
        right: 20px;
    }

    .global-header .nav-item.right {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        margin-top: 32px;
    }
    .rs_addtools, .rsbtn {
        margin-bottom: 0 !important;
    }
    .btn-ticket {
        max-width: 150px;
        width: auto;
        height: 100%;
        margin-right: 20px;
        flex: 1;
        margin-top: 0;
    }

    .global-header .nav-item.logos {
        width: calc(100% - 50px);
    }
}

/* -------------------------------
            modal-menu
---------------------------------- */
@media screen and (max-width:999px) {
    body .global-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: 10;
        display: none;
        transition: .5s ease-in;
    }

    body.menu .global-menu {
        display: block;
        opacity: 1;
    }

    body.menu .global-menu .modal-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .7);
    }

    body.menu .global-menu .modal-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .7);
    }

    body.menu .global-menu .modal-inner {
        font-size: 25px;
        letter-spacing: 0;
        line-height: 1;
        width: 335px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 50px 0;
        background-color: rgba(21, 92, 165, .8);
        border-radius: 15px;
        color: #fff;
    }

    body.menu .global-menu .modal-inner .menu-nav {
        text-align: center;
        margin-top: 75px;
    }

    body.menu .global-menu .modal-inner .menu-nav-item {
        display: block;
        margin-top: 22px;
    }

    body.menu .global-menu .modal-inner .menu-nav-item:first-child {
        margin-top: 0;
    }

    body.menu .global-menu .modal-inner .modal-close-btn {
        width: 35px;
        height: 35px;
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
    }

    body.menu .global-menu .modal-inner .modal-close-btn span:nth-child(1) {
        content: "";
        display: inline-block;
        width: 34px;
        height: 2px;
        transform: rotate(45deg) translate(-4px, -4px);
        background-color: #fff;
    }

    body.menu .global-menu .modal-inner .modal-close-btn span:nth-child(2) {
        content: "";
        display: inline-block;
        width: 34px;
        height: 2px;
        transform: rotate(-45deg) translate(22px, -22px);
        background-color: #fff;
    }
}




/* -------------------------------
            footer-nav
---------------------------------- */

.gl-footer-nav {
    background-color: #fff;
    padding: 50px 20px 30px;
    position: relative;
}

.gl-footer-nav .ft-wrap {
    max-width: 1200px;
    margin: auto;
}


.gl-footer-nav .head {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #666666;
}

.gl-footer-nav .head .sns-list {
    margin-top: 10px;
}

.gl-footer-nav .head .sns-list-item:first-child {
    margin-right: 18px;
}

.gl-footer-nav .nav-list {
    margin: 30px 0 0;
    color: #666666;
}

.gl-footer-nav .nav-list .link {
    display: inline-block;
    margin-right: 24px;
    position: relative;
}

.gl-footer-nav .nav-list .link:last-child {
    margin-right: 0;
}

.gl-footer-nav .nav-list .link::after {
    content: "";
    width: 1px;
    height: 14px;
    background-color: #666666;
    position: absolute;
    top: 6px;
    right: -12px;
}

.gl-footer-nav .nav-list .link:last-child::after {
    display: none;
}

.gl-footer-nav .nav-list .nav-item-event {
    margin: 26px 0 0;
}

@media screen and (max-width:767px) {
    .gl-footer-nav .ft-wrap {
        max-width: 100%;
        text-align: center;
    }
}


/* -------------------------------
            home-footer
---------------------------------- */

.gl-footer {
    background-color: #E5E9EF;
}

.gl-footer .ft-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: auto;
    padding: 33px 20px 33px;
}

.gl-footer .ft-wrap .left .logo {
    height: 60px;
}

.gl-footer .ft-wrap .nav-item.logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.gl-footer .ft-wrap .nav-item.logos .logo-item {
    margin-right: 30px;
}

.gl-footer .ft-wrap .nav-item.logos .logo-item:nth-child(3) {
    margin-right: 0;
}

.gl-footer .ft-wrap .nav-item.logos .logo-item:nth-child(1) img {
    width: 120px;
}

.gl-footer .ft-wrap .nav-item.logos .logo-item:nth-child(2) img {
    width: 100px;
}

.gl-footer .ft-wrap .nav-item.logos .logo-item:nth-child(3) img {
    width: 80px;
}

.gl-footer .ft-wrap .right {
    font-size: 13px;
    line-height: 1.538;
    text-align: right;
    color: #666666;
}

.gl-footer .ft-wrap .right .info br{
    display: none;
}

.gl-footer .copyright {
    font-size: 13px;
    background-color: #002063;
    padding: 30px 0;
    text-align: center;
    color: #fff;
}

.gl-footer .ft-wrap .footer-info {
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    width: fit-content;
    margin-inline: auto;
    p {
        word-break: keep-all;
        span {
            font-weight: normal;
            display: inline-block;
        }
    }
}

.gl-footer-nav .ft-wrap ul.nav-item.logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 300px;
}

@media screen and (max-width:999px) {
    .gl-footer .ft-wrap .left .logo {
        height: 40px;
    }

    .gl-footer .ft-wrap {
        display: block;
        /* text-align: center; */
        max-width: none;
        padding: 30px 20px 30px;
    }

    .gl-footer .ft-wrap .right {
        /* text-align: center; */
        margin: 30px 0 0;
    }

    .gl-footer .copyright {
        font-size: 12px;
        padding: 26px 0;
    }

    .gl-footer .ft-wrap .right .info br{
        display: inline-block;
    }

    .gl-footer-nav .ft-wrap ul.nav-item.logos {
        position: relative;
        margin-top: 50px;
        justify-content: center;
        width: 90%;
        max-width: 500px;
        margin-inline: auto;
    }
}



.zoomer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: .25s opacity;
}
.zoomer.-open {
    opacity: 1;
    pointer-events: all;
}
.zoomer-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(21, 92, 165, 0.5);
    cursor: pointer;
}
.zoomer-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
    fill: #fff;
    cursor: pointer;
    transition: .2s all;
    z-index: 11;
}
.zoomer-cont {
    width: calc(100vw - 200px);
    height: 95vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zoomer-cont img {
    max-width: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767px) {
    .zoomer-cont {
        width: 100%;
        height: calc(100% - 160px);
        overflow: scroll;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
    .zoomer-close {
        top: 100px;
        right: 30px;
    }
    .zoomer-cont img {
        height: 100%;
        max-width: none;
        width: auto;
        display: block;
    }
}




.mzoomer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: .25s opacity;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mzoomer.-open {
    opacity: 1;
    pointer-events: all;
}
.mzoomer-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(21, 92, 165, 0.5);
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
}
.mzoomer-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
    fill: #fff;
    cursor: pointer;
    transition: .2s all;
    z-index: 11;
}
.mzoomer-cont {
    position: relative;
}
.mzoomer-cont img {
    max-width: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767px) {
    .mzoomer-cont {
        width: calc(100% - 40px);
    }
    .mzoomer-close {
        top: 100px;
        right: 30px;
    }
    .mzoomer-cont iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 600/400;
    }
}