@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700|Noto+Sans+JP:300,400,500,700');

body {
    font-family: "Yu Mincho Light", YuMincho, "Yu Mincho", 游明朝体, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
    color: #fff;
    background-color: #000;
}

.pc { display:none; }
.sp { display:block; }

.h2, h2 {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #FF0000;
    border-width: 5px;
    padding-bottom: 40px;
    font-size: 1.8rem;
    text-decoration-thickness: 5px;
}
.h3, h3 {
    font-weight: 600;
    font-size: 1rem;
}

/* ヘッダーメニュー */
header {
    height: 70px;
}
.header-logo-img {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    z-index: 3;
}
.menu-btn {
    position: fixed;
    top: 33px;
    right: 5px;
    display: block;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
    transition: all 300ms 0s ease;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    transition: all 300ms 0s ease;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    transition: all 300ms 0s ease;
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 100%;
    z-index: 2;
    background-color: #000;
    transition: all 0.3s;
}
.menu-content a:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}
.menu-content ul {
    padding: 70px 0 0;
}
.menu-content ul li.first {
    border-top: solid 0.5px #ffffff;
    border-bottom: solid 0.5px #ffffff;
    list-style: none;
}
.menu-content ul li {
    border-bottom: solid 0.5px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

#menu-btn-check:checked ~ .menu-content {
    bottom: 0;
}

/* キービジュアル */
section.key-visual {
    background: url(/assets/driveInGhostCar/img/key_visual.jpg) center center /cover no-repeat;
    color: #fff;
    min-height: 350px;
    text-align: center;
    position: relative;
    top: 80px;
}
section.key-visual .content {
    position: absolute;
    top: 55%;
    left: 5%;
    right: 5%;
}
section.key-visual .content img.sub-title {
    width: 80%;
    margin-bottom: 10px;
}
section.key-visual .content img.main-title {
    width: 100%;
}

/* 告知・お知らせ */
section.notice {
    position: relative;
    padding-bottom: 25px;
    top: 120px;
    text-align: center;
    margin-bottom: 150px;
}
section.notice .content {
    text-align: center;
    font-size: 1.1rem;
    margin: 0 0 25px;
}
section.notice .content h3 {
    font-size: 1.65rem;
}
section.notice video {
    max-width: 300px;
    margin: 0 auto;
}

/* 日程 */
section.schedule {
    position: relative;
    padding-bottom: 170px;
    top: 120px;
}
section.schedule .head {
    position: absolute;
    color: #D10A1C;
    border: solid 1px #D10A1C;
    background-color: #000;
    padding: 2px;
    font-size: 0.9rem;
    letter-spacing: unset;
    text-indent: unset;
    left: 50%;
    min-width: 200px;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
section.schedule .head.ja {
    font-size: 1rem;
    letter-spacing: 0.5rem;
    text-indent: 0.5rem;
    min-width: 150px;
}
section.schedule .content {
    color: #D10A1C;
    text-align: center;
    border: solid 1px #D10A1C;
    padding: 30px 10px 20px;
    margin: 0 20px 20px;
    font-size: 0.8rem;
}
section.schedule .content a {
    color: #D10A1C;
    text-decoration:underline;
    text-decoration-color:#FF0000;
}
section.schedule .link-wrap {
    max-width: 800px;
    width: 70%;
    margin: 0 auto;
}
section.schedule .link-wrap a {
    text-decoration: none;
    color: #fff;
}
section.schedule .link-wrap a:hover {
    opacity: 0.8;
}
section.schedule .new-box {
    border: 1px solid #fff;
    padding: 10px;
    font-size: 0.8rem;
    width: 100%;
}
section.schedule .new-box .icon {
    color: #fff;
    background-color: #D10A1C;
    padding: 3px;
    margin-right: 5px;
}
section.schedule .new-box .arrow-icon {
    text-align: center;
    font: normal normal normal 16px/36px Font Awesome 5 Free;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

/* 物販 */
section.sale {
    text-align: center;
    margin: 0 auto 100px;
    max-width: 1000px;
    padding: 0 15px;
}
section.sale .content {
    padding: 25px 30px 0px;
    max-width: 800px;
    text-align: center;
    font-size: 1rem;
    background-color: #1F1F1F;
    margin: 0 auto 25px;
    width: 80%;
}
section.sale .content p {
    font-size: 0.8rem;
    margin-bottom: 2rem;
}
section.sale .content .package-img {
    width: 180px;
}
section.sale .content .moujya-img {
    width: 150px;
    padding: 25px 0;
}
section.sale .content .close-box {
    border: solid 1px #fff;
    width: 50%;
    margin: 0 auto;
    padding: 5px;
}

/* MOVIE */
section.movie {
    text-align: center;
    margin: 0 auto 100px;
    max-width: 1000px;
    padding: 0 15px;
}
section.movie h3 {
    font-size: 1.3rem;
    padding-bottom: 30px;
}
section.movie img {
    width: 100%;
}
section.movie .close {
    padding: 15px 20px 0px !important;
}

/* ストーリー */
section.story {
    text-align: center;
    margin: 0 10px 100px;
}
section.story h3 {
    font-size: 1.3rem;
    padding-bottom: 30px;
}
section.story p {
    line-height: 35px;
    font-size: 0.9rem;
    padding-bottom: 20px;
}
section.story img {
    width: 100%;
}

/* 恐怖ポイント */
section.fear-point {
    text-align: center;
    margin: 0 10px 80px;
}
section.fear-point .content {
    text-align: left;
    padding: 0 10px 40px;
}
section.fear-point .content h3 {
    color: #D10A1C;
    padding: 30px 0 10px;
}
section.fear-point img {
    width: 100%;
}

/* ドライブインお化け屋敷とは？ */
section.about {
    text-align: center;
    margin: 0 10px 100px;
}
section.about h2 {
    font-size: 1.5rem;
}
section.about .content h3 {
    color: #D10A1C;
    font-size: 1.7rem;
    padding-bottom: 50px;
}
section.about .content .text-red {
    color: #D10A1C;
    font-weight: 700;
}
section.about p {
    line-height: 35px;
    padding: 30px 0;
    font-size: 1.1rem;
}
section.about .annotation {
    font-size: 1rem;
}
section.about img {
    width: 100%;
}

/* アクセス */
section.access {
    text-align: center;
    margin: 0 10px 50px;
}
section.access .content {
    padding: 0 10px;
}
section.access .content p {
    margin-bottom: 1.5rem;
    margin: 20px 0 40px;
}
section.access .content a {
    color: #FFF;
    text-decoration: unset;
}

section.access .map-btn {
    text-align: center;
    display: inline-block;
    position: relative;
    min-width: 240px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 1em 20px;
    text-decoration: none;
    color: #29343b;
    border: solid 1px #fff;
}
section.access .map-btn:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.5);
}
section.access .angle-right-icon {
    width: 10px;
    margin: 0 0 5px 10px;
}
section.access .yolo-base {
    width: 100%;
    margin-top: 80px;
    text-align: left;
}

section.access #map {
    overflow: auto!important;
    height: 300px;
    width: 100%;
}

/* 新型コロナウイルス感染防止対策 */
section.covid-19 {
    margin: 0 10px 100px;
}
section.covid-19 h3 {
    font-size: 1.3rem;
    text-align: center;
    padding-bottom: 40px;
}
section.covid-19 .row {
    padding: 10px;
    margin: 10px;
    background-color: #D10A1C;
}
section.covid-19 img {
    width: 100%;
}
section.covid-19 img.icon {
    height: 70px;
}

/* 営業情報/チケット */
section.ticket {
    text-align: center;
    margin: 0 10px 60px;
}
section.ticket .row [class^="col-"] {
    padding: 20px 0 20px 20px;
    border-right: 1px solid #FFF;
    border-left: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
}
section.ticket .row .first {
    border-top: 1px solid #FFF;
}
section.ticket .heading {
    text-align: left;
    align-items: center;
    display: flex;
}
section.ticket .row .bg-gray,.bg-gray-first {
    background-color: #333;
}
section.ticket .row {
    margin: 0;
}
section.ticket .content {
    margin: 0 10px;
    text-align: left;
}
section.ticket .week {
    padding-left: 32px;
}

section.ticket-purchase {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 70px;
}
section.ticket-purchase h3 {
    font-size: 1.3rem;
    padding-bottom: 10px;
}
section.ticket-purchase p {
    padding: 0 20px 30px;
    text-align: left;
}
.important-point {
    border: #dc3545 1px solid;
    padding: 15px 20px 5px;
    text-align: left;
    color: #dc3545!important;
    width: 90%;
    margin: 0 auto 15px;
    line-height: 1.6;
}
.important-point .text {
    padding: 5px 0;
    text-align: left;
}
.important-point a {
    color: #dc3545!important;
    font-size: 0.9rem;
    font-weight: 600;
}
.important-point-white {
    border: #fff 1px solid;
    padding: 15px 20px 5px;
    text-align: left;
    color: #fff!important;
    width: 90%;
    margin: 0 auto 15px;
    line-height: 1.6;
}
.important-point-white .text {
    padding: 5px 0;
    text-align: left;
}
.important-point-white a {
    color: #dc3545!important;
    font-size: 0.9rem;
    font-weight: 600;
}

section.ticket-purchase .access-btn {
    text-align: center;
    display: inline-block;
    position: relative;
    min-width: 240px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    text-decoration: none;
    color: #29343b;
    border: solid 1px #fff;
    color: #fff;
}
section.ticket-purchase .access-btn:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.5);
}
section.ticket-purchase .angle-right-icon {
    width: 10px;
    margin: 0 0 5px 10px;
}
section.ticket-purchase iframe.event-calendar {
    height: 550px;
    width: 90%;
}
.exclamation-icon {
    width: 20px;
    padding: 0 0 5px 0;
}

/* お問い合わせ */
section.inquiry {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 70px;
}
section.inquiry h2 {
    padding-bottom: 40px;
}
section.inquiry p {
    padding: 0 20px 0;
    text-align: center;
}
section.inquiry .inquiry-form-wrap {
    padding: 10px 0 60px;
}
section.inquiry .inquiry-btn {
    text-align: center;
    display: inline-block;
    position: relative;
    min-width: 240px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 1em 20px;
    text-decoration: none;
    color: #FFF;
    border: solid 1px #fff;
}
section.inquiry .inquiry-btn:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.5);
}
section.inquiry .angle-right-icon {
    width: 10px;
    margin: 0 0 5px 10px;
}
section.inquiry .accordion-content {
    text-align: left;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
}
section.inquiry .inquiry-tel-wrap {
    max-width: 350px;
    margin: 0 auto;
    border: 1px solid;
    padding: 25px 0 15px;
}
section.inquiry .inquiry-tel-wrap p {
    padding-bottom: 10px;
    font-size: 0.9em;
    padding: 0 10px 0;
}
section.inquiry .inquiry-tel-wrap h3 {
    font-size: 1.5rem;
}
section.inquiry .inquiry-tel-wrap h5 {
    padding-bottom: 10px;
}
section.inquiry .inquiry-tel-wrap .row {
    width: 90%;
    margin: 0 auto 20px;
}

/* 注意事項 */
section.notes {
    padding: 40px 10px 20px;
    margin-bottom: 50px;
    background-color: #161616;
}
section.notes h3 {
    font-size: 1.3rem;
    text-align: center;
    padding: 30px;
}
section.notes .content {
    margin-left: -10px;
    margin-right: 10px;
    line-height: 30px;
}
section.notes p {
    margin-left: 20px;
}

/* FAQ */
section.faq {
    padding: 40px 10px;
    background-color: #161616;
    margin-bottom: 70px;
}
section.faq h3 {
    font-size: 1.3rem;
    text-align: center;
    padding-bottom: 10px;
}
section.faq .content {
    width: 90%;
    margin: 0 auto;
}
section.faq .accordion-group {
    margin: 30px 0;
}
section.faq .accordion-title h3 {
    font-size: 1rem;
    padding-top: 5px;
    padding-left: 32px;
    margin-top: 30px;
    cursor: pointer;
    position: relative;
    text-align: left;
}
section.faq .accordion-title h3:before {
    width: 2px;
    height: 12px;
    top: 8px;
    left: 30px;
    z-index: 1;
    margin: 0 -15px;
}
section.faq .accordion-title h3:after {
    width: 12px;
    height: 2px;
    top: 13px;
    left: 25px;
    margin: 0 -15px;
}
section.faq .accordion-content {
    color: #FFF;
    padding: 22px 0;
    line-height: 1.8;
    display: none;
    font-size: 0.9rem;
}
section.faq .accordion.opened .accordion-title h3:before, .accordion.opened .accordion-title h3:after{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #FFF;
}
section.faq .accordion-title h3:before, section.faq .accordion-title h3:after {
    content: '';
    position: absolute;
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    background: #FFF;
}
section.faq dt {
    border-bottom: 1px solid #707070;
}

/* 主催 */
section.organizer {
    text-align: center;
    margin: 70px 50px;
}
section.organizer .share-img {
    width: 40px;
    margin: 0 10px;
}
section.organizer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}
section.organizer p {
    font-size: 0.8rem;
    margin-bottom: 50px;
}
footer p {
    font-size: 0.8rem;
}

.toggle-language {
    border: none;
    padding: 0;
    position: fixed;
    top: 10px;
    right: 80px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 3;
    background-color: unset;
    -webkit-appearance: none;
}
.toggle-language img {
    height: 24px;
    width: 36px;
}
.modal.language-select li {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin: 6px auto;
}
.modal.language-select a,
.modal.language-select a:focus,
.modal.language-select a:active,
.modal.language-select a:visited {
    color: #2E2E2E;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
}
.modal.language-select a:hover {
    color: #2E2E2E;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    background-color: #FFEFF0;
    -webkit-tap-highlight-color: #FFEFF0;
}
.modal.language-select img {
    display: inline-block;
    margin-right: 1rem;
    height: 24px;
    width: 36px;
}
.modal.language-select button {
    border: 1px solid #c2c2c2;
    color: #c2c2c2;
    display: block;
    margin: auto;
    padding: 0.5rem 3rem;
}
.modal-body ul {
    padding: 0;
}
.modal-content {
    border-radius: 24px !important;
}
iframe.event-calendar {
    max-width: 1000px;
    width: 100%;
    min-height: 500px;
    height: 680px;
}

.required {
  margin: 0 5px;
  padding: 0 10px;
  font-size: 85%;
  border-radius: 10px;
  background-color: red;
  color: white;
}
.error_input {
    border : 1px solid red !important;
}
.ticket-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    border: unset;
    height: 80px;
    width: 80px;
    z-index: 3;
    text-align: center;
    background-color: #D10A1C;
    color: #FFF;
    font-size: 0.6rem;
    padding-top: 10px;
}
.ticket-btn .ticket-img {
    width: 30px;
}

/* 公式アンバサダー */
section.ambassador {
    text-align: center;
    margin: 0 auto 100px;
    max-width: 1000px;
    padding: 0 15px;
}
section.ambassador h2 {
    padding-bottom: 50px;
}
section.ambassador p {
    max-width: 800px;
    margin: 0 auto;
}
section.ambassador a:hover {
    opacity: 0.8;
    text-decoration: none;
}

section.ambassador .content {
    padding: 25px 30px 0px;
    max-width: 1000px;
    text-align: center;
    font-size: 1rem;
    margin: 0 auto 25px;
}
section.ambassador .content .ambassador-img {
    width: 90px;
    height: 90px;
    border-radius: 50px;
    margin-bottom: 15px;
}
section.ambassador .content .ambassador-card {
    width: 100%;
    background-color: #000000;
    margin: 10px auto;
    color: #fff;
    padding: 10px 0;
}
section.ambassador .content .ambassador-card .name {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
}
section.ambassador .content .ambassador-card .text {
    font-size: 0.8rem;
    margin-top: 5px;
    text-align: left;
}

/* PC */
@media screen and (min-width: 480px){
    .pc { display: block; }
    .sp { display: none; }

    .h2, h2 {
        padding-bottom: 70px;
    }
    .h3, h3 {
        font-size: 1.75rem;
    }
    section.notice .content h3 {
        font-size: 2.65rem;
        margin-bottom: 15px;
    }
    p {
        font-size: 1.1rem;
    }
    .header-logo-img {
        width: 180px;
        left: 40px;
    }
    .hamburger-menu {
        width: 100%;
        margin: 0 auto;
    }
    .hamburger-menu .fixed {
        position: fixed;
        width: 100%;
        z-index: 5;
    }
    .hamburger-menu .pc {
        display: block;
        text-align: center;
    }
    .hamburger-menu .pc a {
        color: #FFF;
        margin-right: 10px;
        position: relative;
        top: 20px;
        left: 40px;
        font-size: 0.9rem;
    }
    .hamburger-menu .pc .toggle-language {
        position: relative;
        top: 10px;
        float: right;
        right: 50px;
    }
    .hamburger-menu .pc .toggle-language.scroll {
        right: 110px;
    }
    /* キービジュアル */
    section.key-visual {
        background-image: url(/assets/driveInGhostCar/img/key_visual_pc.jpg);
        background-size: 2000px;
        min-height: 700px;
        margin: 0 auto 150px;
    }
    section.key-visual .content {
        width: 100%;
        left: 0;
    }
    section.key-visual .content img.sub-title {
        width: 480px;
        margin-bottom: 20px;
    }
    section.key-visual .content img.main-title {
        width: 700px;
    }

    /* 日程 */
    section.schedule {
        max-width: 1000px;
        padding-bottom: 100px;
        margin: 0 auto;
        top: 20px;
    }
    section.notice .content {
        margin: 20px 0 25px;
    }
    section.schedule .head {
        border: solid 2px #D10A1C;
        font-weight: 600;
   }
    section.schedule .content {
        border: solid 2px #D10A1C;
        font-size: 0.9rem;
        font-weight: bold;
        margin: 0 20px 30px;
    }
    section.schedule .link-wrap {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    section.schedule .new-box {
        border: 1px solid #fff;
        padding: 10px;
        font-size: 0.8rem;
        margin: 0 auto;
    }
    section.notice {
        position: unset;
        padding-bottom: 25px;
        margin-bottom: 50px;
        text-align: center;
    }
    section.notice video {
        max-width: 500px;
        margin: 0 auto;
    }
    section.sale .content img {
        padding: 20px 0;
    }
    section.sale .content .moujya-img {
        width: 180px;
    }
    section.sale .content .package-img {
        width: 200px;
    }
    /* MOVIE */
    section.movie img {
        width: 95%;
    }
    section.movie .movie-img {
        transition-duration: 500ms;
        cursor: pointer;
    }
    section.movie .movie-img:hover {
        -webkit-transform: scale(1.1,1.1);
        -ms-transform: scale(1.1,1.1);
        transform: scale(1.1,1.1);
        transition-duration: 500ms;
    }

    /* ストーリー */
    section.story {
        max-width: 1000px;
        margin: 0 auto 80px;
    }
    section.story h3 {
        font-size: 1.5rem;
        padding-bottom: 50px;
    }
    section.story p {
        line-height: 40px;
        font-size: 1rem;
        padding-bottom: 40px;
    }
    section.story img {
        width: 60%;
    }

    /* 恐怖ポイント */
    section.fear-point {
        max-width: 1500px;
        margin: 0 auto 100px;
    }
    section.fear-point .text {
        align-items: center;
        display: flex;
    }
    section.fear-point .point02-text {
        padding-left: 20px;
    }

    /* ドライブインお化け屋敷とは？ */
    section.about {
        max-width: 1000px;
        margin: 0 auto 100px;
    }
    section.about p {
        padding: 40px 0;
        font-size: 1.5rem;
    }

    /* アクセス */
    section.access {
        max-width: 1000px;
        margin: 0 auto 100px;
    }
    section.access #map {
        height: 500px;
    }

    /* 新型コロナウイルス感染防止対策 */
    section.covid-19 {
        max-width: 800px;
        margin: 0 auto 100px;
    }
    section.covid-19 p {
        text-align: center;
    }

    /* 営業情報/チケット */
    section.ticket {
        max-width: 1000px;
        margin: 0 auto 70px;
    }
    section.ticket .row .bg-gray-first {
        border-top: 1px solid #FFF;
    }
    section.ticket .heading {
        text-align: center;
        align-items: center;
        display: inline-grid;
    }
    section.ticket .row [class^="col-"] {
        padding: 20px;
    }

    section.ticket-purchase {
        margin: 0 auto;
    }
    section.ticket-purchase p {
        padding: 0 20px 10px;
        text-align: center;
    }
    .important-point {
        border: #dc3545 1px solid;
        padding: 15px 20px 5px;
        text-align: left;
        color: #dc3545!important;
        width: 90%;
        margin: 0 auto 15px;
        line-height: 1.6;
    }
    .important-point .text {
        padding: 5px 15px;
    }
    .important-point-white {
        border: #fff 1px solid;
        padding: 15px 20px 5px;
        text-align: left;
        color: #fff!important;
        width: 90%;
        margin: 0 auto 15px;
        line-height: 1.6;
    }
    .important-point-white .text {
        padding: 5px 15px;
    }

    /* 注意事項 */
    section.notes {
        max-width: 800px;
        margin: 0 auto 50px;
    }
    section.notes .content {
        margin: 0 20px;
    }

    /* FAQ */
    section.faq {
        max-width: 800px;
        margin: 0 auto 100px;
    }
    section.faq .accordion-content {
        display: block;
    }
    section.faq .accordion-title h3 {
        padding-left: 0;
    }
    section.faq .accordion.opened .accordion-title h3:before, .accordion.opened .accordion-title h3:after{
        background: unset;
      }
    section.faq .accordion-title h3:before, section.faq .accordion-title h3:after {
        background: unset;
    }

    /* 主催 */
    section.organizer p {
        font-size: 1rem;
    }
    .ticket-btn {
        position: fixed;
        bottom: 50px;
        right: 50px;
        border-radius: 50px;
        border: unset;
        height: 100px;
        width: 100px;
        z-index: 3;
        text-align: center;
        background-color: #D10A1C;
        color: #FFF;
        font-size: 0.8rem;
        padding-top: 10px;
    }
    .ticket-btn .ticket-img {
        width: 30px;
    }
    .toggle-language {
        border: none;
        padding: 0;
        /* position: relative;
        top: 40px;
        right: 50px;
        float: right;
        display: flex; */
        /* height: 60px; */
        width: 50px;
        /* justify-content: center;
        align-items: center; */
        z-index: 3;
        background-color: unset;
    }
    .menu-btn {
        top: 33px;
        right: 25px;
        display: none;
    }
    iframe.event-calendar {
        height: 550px;
    }
    section.ticket-purchase iframe.event-calendar {
        width: 100%;
    }
    section.covid-19 .row {
        margin: 40px 10px 30px;
    }
    section.inquiry .inquiry-tel-wrap {
        max-width: 500px;
    }
    section.ambassador p {
        margin: 0 auto 50px;
    }
    section.ambassador .content .ambassador-img {
        width: 60px;
        height: 60px;
        border-radius: 50px;
        margin-bottom: unset;
    }
    section.ambassador .content .ambassador-card {
        width: 100%;
        height: 115px;
        background-color: #fff;
        margin: 10px auto;
        color: #000000;
        padding: 15px 0;
    }
    section.ambassador .content .ambassador-card .name {
        text-align: left;
        font-size: 1rem;
        padding: 0 15px;
    }
    section.ambassador .content .ambassador-card .text {
        padding: 0 15px;
    }
}
@media screen and (min-width: 481px) and (max-width: 1130px) {
    .header-logo-img {
        left: 40px;
        top: 20px;
    }
    .hamburger-menu .fixed {
        position: unset;
        width: unset;
    }
    .hamburger-menu .pc {
        display: none;
    }
    .hamburger-menu .sp {
        display: block;
    }
    .toggle-language {
        right: 100px;
    }
    .menu-btn {
        right: 15px;
        display: block;
        top: 33px;
    }
    section.fear-point .point02-text {
        padding-left: 0px;
    }
    section.schedule .link-wrap {
        max-width: 100%;
        width: 80%;
        margin: 0 auto;
    }
}

#map {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#map::-webkit-scrollbar {
    display:none;
}
