/* top.css - top page sections */
#topics {
    background-color: #F9F6F4;

    margin-top: 0;
}

#topics .topics-wrapper {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    padding: 64px 0;
}

#topics .topics-wrapper h3 {
    width: 218px;
}

#topics .topics-wrapper .topics-list li {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

#topics .topics-wrapper .topics-list li:last-of-type {
    padding-bottom: 0px;
}

#topics .topics-wrapper .topics-date {
    font-size: 18px;
    padding-right: 25px;
    font-weight: bold;
}

#topics .topics-wrapper .topics-new {
    width: 30px;
    height: auto;
    padding-right: 10px;
}

#topics .topics-wrapper .topics-text {
    font-size: 16px;
    font-weight: bold;
}

#topics .topics-wrapper .topics-text a {
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
}

#main-img {
    margin: 0 auto;
    width: 100%;
}

#main-img ul {
    display: flex;
}

#main-img ul li {
    width: 25%;
}

@media screen and (max-width: 767px) {
    #main-img {
        width: 95.7vw;
        margin: 2.1vw auto 0;
    }

    #main-img ul {
        display: flex;
        flex-wrap: wrap;
        gap: 2.1vw;
    }

    #main-img ul li {
        width: 46.8vw;
    }
}

#about {
    margin-top: 150px;
}

#about .about-wrapper {
    margin: 0 auto;
    max-width: 1440px;
    display: flex;
    justify-content: center;
}

#about .about-wrapper .about-txt {
    width: 730px;

}

#about .about-wrapper .about-txt h3 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
}

#about .about-wrapper .about-txt .about-txt-content {
    width: 578px;
    margin: 0 auto;
}

#about .about-wrapper .about-txt .about-txt-article {
    font-size: 18px;
    line-height: 2.2em;
}

#about .about-wrapper .about-txt .about-btn-wrapper {
    text-align: center;
    margin-top: 45px;
    display: block;
}

#about .about-wrapper .about-txt .about-info {
    width: 100%;
    margin-top: 55px;
}

#about .about-wrapper .about-txt .about-info .about-info-content {
    display: flex;
    border-top: 1px solid #E8E5E3;
    border-bottom: 1px solid #E8E5E3;
    padding: 23px 12px;
}

#about .about-wrapper .about-txt .about-info .about-info-content .about-info-item {
    margin-right: 21px;
}

#about .about-wrapper .about-txt .about-info .about-info-content .about-info-item span {
    font-size: 15px;
    font-weight: bold;
    border-radius: 6px;
    background-color: #E8E5E3;
    color: #2B2A27;
    display: block;
    padding: 4px 12px;
    width: 88px;
    box-sizing: border-box;
}

#about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail {}

#about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-date {
    font-size: 17px;
    font-weight: bold;
    line-height: 1em;
    margin-top: 28px;
}

#about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-date.about-info-date-top {
    margin-top: 6px;
}

#about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-tt {
    margin-top: 10px;
    font-size: 15px;
    font-weight: bold;
    color: #597765;
    padding-left: 10px;
    display:block;
}

#about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-field {
    font-size: 15px;
    font-weight: bold;
}

#about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-address {
    font-size: 15px;
    font-weight: normal;
}

#about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-url {
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
}

#about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-tt.about-info-tt-top {
    border-left: 1px solid #E8E5E3;
    margin-left: 8px;
}

.contents-grid {
    width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    grid-gap: 50px;
    margin: 50px auto 0 auto;
}

.contents-grid-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 14px;
}

@media screen and (max-width: 768px) {
    .contents-grid {
        width: 100%;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
}

.dd-grid {
    width: 960px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    grid-gap: 50px;
    text-align: left;
    align-items: center;
    margin: 50px auto 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 14px;
}

.dd-grid p {
    margin-top: 0 !important;
}

@media screen and (max-width: 768px) {
    .dd-grid {
        width: 90%;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
}

#contents {
    margin-top: 150px;
    background-color: #F9F6F4;
    padding: 120px 0;
}

#contents h4 img {
    height: 29px;
    width: auto;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    #contents h4 img {
        height: 29px;
    }
}

.contents-title {
    font-size: 15px!important;
    font-weight: bold;
    margin-bottom: 10px;
}

.contents-p {
    margin-bottom: 10px;
    font-size: 13px!important;
}

.contents-text {
    margin-bottom: 10px;
    font-size: 13px!important;
    text-align: left;
}

.contents-btn {
    font-size: 14px;
    font-weight: bold;
    color: #fff !important;
    background-color: #597765;
    padding: 10px 20px;
    border-radius: 100vh;
    display: inline-block;
    text-decoration: none !important;
    transition: 0.3s all;
    margin-top: 8px;
}

.contents-btn:hover {
    opacity: 0.6;
}

#contents .contents-wrapper,
#ticket .contents-wrapper-soon {
    align-items: center;
    margin: 0 auto;
    text-align: center;

}

#contents .contents-wrapper:first-child,
#ticket .contents-wrapper-soon:first-child {
    margin-bottom: 120px;
}

#contents .contents-wrapper h3,
#ticket .contents-wrapper-soon h3 {
    width: auto;
    height: 115px;
}

#contents .contents-wrapper h3 img,
#ticket .contents-wrapper-soon h3 img {
    width: auto;
    height: 100%;
}

.contents-wrapper h4 {
    margin-top: 80px;
    width: auto;
}

.contents-sub-title {
    margin: 0 0 24px;
    text-align: center;
    line-height: 1;
}

.contents-sub-title__en {
    display: inline-block;
    font-family: 'DINOT', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.0;
    color: #183028;
}

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

    .contents-sub-title__en {
        font-size: 28px;
    }

}

#contents .contents-wrapper p,
#ticket .contents-wrapper-soon p {
    margin-top: 30px;
    font-size: 15px;
}

#access {
    margin-top: 175px;
}

#access .access-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
}

#access .access-wrapper .access-txt {
    width: 580px;
    text-align: left;
    margin-left: 90px;
}

#access .access-wrapper .access-txt h3 {
    width: 236px;
}

#access .access-wrapper .access-txt h4 {
    margin-top: 45px;
    width: 482px;
}

#access .access-wrapper .access-txt p {
    margin-top: 45px;
    font-size: 13px;
    line-height: 1.8em;
}

#access .access-wrapper .access-txt .access-rfk {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 50px;
}

#access .access-wrapper .access-txt .access-rfk .access-rfk-logo {
    width: 120px;
    margin-right: 35px;
}

#access .access-wrapper .access-txt .access-rfk .access-rfk-link li {
    display: flex;
    margin-bottom: 15px;
}

#access .access-wrapper .access-txt .access-rfk .access-rfk-link li:last-of-type {
    padding-bottom: 0px;
}

#access .access-wrapper .access-txt .access-rfk .access-rfk-link li img {
    width: 20px;
    height: 20px;
}

#access .access-wrapper .access-txt .access-rfk .access-rfk-link li a {
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 8px;
}

#access .access-wrapper .access-img {
    width: 711px;
}

#access .access-map {
    width: 886px;
    margin: 20px auto 0;
}

#access .access-map .gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    border: 5px solid #597765;
    border-radius: 10px;
}

#access .access-map .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

#access .access-loot-wrapper {
    margin: 150px auto 0;
    display: flex;
    max-width: 1255px;
    justify-content: space-between;
}

#access .access-loot-wrapper .access-loot {
    width: 600px;
    padding: 130px 45px 50px;
    background-color: #F9F6F4;
    box-sizing: border-box;
    position: relative;
}

#access .access-loot-wrapper .access-loot img {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 129px;
}

#access .access-loot-wrapper .access-loot p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.8em;
}

#access .access-loot-wrapper .access-loot p.bold {
    font-weight: bold;
    margin-top: 50px;
}

#access .access-loot-wrapper .access-loot p.bold span {
    font-weight: normal;
    color: #2B2A27;
}

#access .access-loot-wrapper .access-loot p.loot {
    font-size: 15px;
    margin-left: 28px;
    position: relative;
    margin-top: 0;
}

#access .access-loot-wrapper .access-loot p.loot::before {
    position: absolute;
    content: "";
    width: 23px;
    height: 2px;
    background-color: #2B2A27;
    top: 12px;
    left: -28px;
    transform: translate(0%, -50%);
}

#gallery {
    margin-top: 100px;
    text-align: center;
}

#gallery h3 {
    margin: 0 auto 30px;
    text-align: center;
    width: 269px;
}

#gallery .gallery-content {
    max-width: 1374px;
    margin: 0 auto;
}

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

#gallery .gallery-content ul li {
    width: 336px;
    height: 224px;
    margin-bottom: 10px;
}

#gallery .gallery-content ul li img {
    width: 100%;
}

#faq {
    margin-top: 230px;
    margin-bottom: 160px;
}

#faq .faq-wrapper {
    max-width: 1255px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto 140px;
}

#faq .faq-wrapper .faq-title {
    width: 210px;
}

#faq .faq-wrapper .faq-title h3 {}

#faq .faq-wrapper .faq-content {
    width: 908px;
}

#faq .faq-link {


    align-items: center;
    justify-content: space-between;
    margin-top: 0;
}

#faq .faq-link .faq-link-text {
    font-size: 16px;
    line-height: 1.8em;
    margin-top: 20px;
    margin-bottom: 10px;
}

#faq h4 {
    position: relative;
    font-size: 16px;
    padding-left: 20px;
}

#faq h4::before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    background-color: #597765;
    border-radius: 12px;
    top: 5px;
    left: 0;
}

#faq .faq-accordion-area {
    list-style: none;

    margin-bottom: 75px;
}

#faq .faq-accordion-area li {
    margin: 0px 0 20px;
}

#faq .faq-accordion-area section {}

#faq .faq-q-title {
    position: relative;
    cursor: pointer;
    font-size: 15px;
    font-weight: normal;
    padding: 1.9%;
    transition: all .5s ease;
    background-color: #F9F6F4;
    border-radius: 14px;

}

#faq .faq-q-title img {
    margin-right: 16px;
    margin-top: 4px;
    width: 14px;
}

#faq .faq-q-title::before,
#faq .faq-q-title::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background-color: #333;
    transition: all .5s ease;
}

#faq .faq-q-title::before {
    top: 48%;
    right: 22px;
    transform: rotate(0deg);

}

#faq .faq-q-title::after {
    top: 48%;
    right: 22px;
    transform: rotate(90deg);

}

#faq .faq-q-title.close::before {
    transform: rotate(180deg);
}

#faq .faq-q-title.close::after {
    transform: rotate(0deg);
}

#faq .faq-a-box {
    display: none;
    font-size: 13px;
    padding: 1.9% 0.8% 1.9% 1.9%;
    gap: 16px;
    align-items: flex-start;
}

#faq .faq-a-box img {
    margin-top: 4px;
    width: 14px;
}

#faq .faq-a-box p {
    margin: 0;
}

#faq .faq-a-box p a {
    color: #597765;
    text-decoration: underline;
    display: inline;
}

#faq .faq-a-box p a:hover {
    color: #000;
    text-decoration: none;
}

.faq-notice-text {
    font-size: 15px;
    line-height: 1.6em;
    margin-bottom: 35px;
}

.pc-block {
    display: block !important;
}

.sp-block {
    display: none !important;
}

@media screen and (max-width: 1440px) {
    #main {
        margin: 0 auto 0;
        max-width: 1440px;
        height: auto;
    }

    #main img.pc-block {

        width: 100%;
        height: auto;
    }

    #topics {
        background-color: #F9F6F4;

    }

    #topics .topics-wrapper {
        width: 70.63vw;
        padding: 4.44vw 0;
    }

    #topics .topics-wrapper h3 {
        width: 15.13vw;
    }

    #topics .topics-wrapper .topics-list li {
        padding-bottom: 1.38vw;
    }

    #topics .topics-wrapper .topics-date {
        font-size: 1.25vw;
        padding-right: 1.73vw;
    }

    #topics .topics-wrapper .topics-new {
        width: 2.03vw;
        padding-right: 0.69vw;
    }

    #topics .topics-wrapper .topics-text {
        font-size: 1.25vw;
    }

    #topics .topics-wrapper .topics-text a {
        font-size: 1.11vw;
    }

    #about {
        margin-top: 10.41vw;
    }

    #about .about-wrapper .about-txt {
        width: 50.69vw;
        margin-right: 0;
    }

    #about .about-wrapper .about-txt h3 {
        width: 50.13vw;
        margin-bottom: 5.55vw;
    }

    #about .about-wrapper .about-txt .about-txt-content {
        width: 39.58vw;
    }

    #about .about-wrapper .about-txt .about-txt-article {
        font-size: 1.5vw;
        line-height: 2.2em;
    }

    #about .about-wrapper .about-txt .about-btn-wrapper {
        margin-top: 3.12vw;
    }

    #about .about-wrapper .about-txt .about-info {
        width: 100%;
        margin-top: 3.81vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content {
        padding: 1.59vw 0.83vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-item {
        margin-right: 1.45vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-item span {
        font-size: 13px;
        border-radius: 6px;
        padding: 4px 12px;
        width: 8.0vw;
        text-align: center;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-date {
        font-size: 17px;
        margin-top: 1.94vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-tt {
        margin-top: 10px;
        font-size: 15px;
        padding-left: 10px;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-field {
        font-size: 1.25vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-address {
        font-size: 1.11vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-url {
        font-size: 1.11vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-tt.about-info-tt-top {
        margin-left: 8px;
    }

    #contents {
        margin-top: 10.41vw;
        padding: 8.33vw 0;
    }

    #contents .contents-wrapper:first-child,
    #ticket .contents-wrapper:first-child {
        margin-bottom: 8.33vw;
    }

    #contents .contents-wrapper h4,
    #ticket .contents-wrapper h4 {
        margin-top: 80px;
    }

    #contents .contents-wrapper p,
    #ticket .contents-wrapper-soon p {
        margin-top: 2.08vw;
        font-size: 1.11vw;
    }

    #access {
        margin-top: 12.15vw;
    }

    #access .access-wrapper .access-txt {
        width: 40.27vw;
        margin-left: 6.25vw;
    }

    #access .access-wrapper .access-txt h3 {
        width: 16.38vw;
    }

    #access .access-wrapper .access-txt h4 {
        margin-top: 3.12vw;
        width: 33.47vw;
    }

    #access .access-wrapper .access-txt p {
        margin-top: 3.12vw;
        font-size: 13px;
        line-height:1.8em;
    }

    #access .access-wrapper .access-txt .access-rfk {
        margin-top: 3.47vw;
    }

    #access .access-wrapper .access-txt .access-rfk .access-rfk-logo {
        width: 8.33vw;
        margin-right: 2.43vw;
    }

    #access .access-wrapper .access-txt .access-rfk .access-rfk-link li {
        display: flex;
        margin-bottom: 1.04vw;
    }

    #access .access-wrapper .access-txt .access-rfk .access-rfk-link li img {
        width: 1.38vw;
        height: 1.38vw;
    }

    #access .access-wrapper .access-txt .access-rfk .access-rfk-link li a {
        font-size: 1.11vw;
        margin-left: 8px;
    }

    #access .access-wrapper .access-img {
        width: 49.37vw;
    }

    #access .access-map {
        width: 61.52vw;
        margin: 20px auto 0;
    }

    #access .access-loot-wrapper {
        margin: 10.41vw auto 0;
        max-width: 87.15vw;
    }

    #access .access-loot-wrapper .access-loot {
        width: 41.66vw;
        padding: 9.02vw 3.12vw 3.47vw;
    }

    #access .access-loot-wrapper .access-loot img {
        height: 8.95vw;
    }

    #access .access-loot-wrapper .access-loot p {
        font-size: 13px;
        margin-bottom: 1.38vw;
    }

    #access .access-loot-wrapper .access-loot p.bold {
        margin-top: 3.47vw;
    }

    #access .access-loot-wrapper .access-loot p.loot {
        font-size: 15px;
        margin-left: 1.94vw;
    }

    #access .access-loot-wrapper .access-loot p.loot::before {
        width: 1.59vw;
        top: 0.8vw;
        left: -1.94vw;
    }

    #gallery {
        margin-top: 13.8vw;
    }

    #gallery h3 {
        margin: 0 auto 2.08vw;
        text-align: center;
        width: 18.68vw;
    }

    #gallery .gallery-content {
        max-width: 95.41vw;
        margin: 0 auto;
    }

    #gallery .gallery-content ul li {
        width: 23.33vw;
        height: 15.55vw;
        margin-bottom: 0.69vw;
    }

    */ #faq {
        margin-top: 15.97vw;
        margin-bottom: 11.11vw;
    }

    #faq .faq-wrapper {
        max-width: 85.41vw;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        margin: 0 auto 140px;
    }

    #faq .faq-wrapper .faq-title {}

    #faq .faq-wrapper .faq-title h3 {
        width: 14.19vw;
    }

    #faq .faq-wrapper .faq-content {
        width: 69.44vw;
    }

    #faq .faq-link {
        margin-top: 1.55vw;
    }

    #faq .faq-link .faq-link-text {
        font-size: 1.11vw;
        line-height: 1.8em;
        margin-right: 0.69vw;
    }

    #faq .faq-accordion-area {
        list-style: none;

        margin-bottom: 5.20vw;
    }

    #faq .faq-accordion-area li {
        margin: 0px 0 1.38vw;
    }

    #faq .faq-accordion-area section {}

    #faq h4 {
        position: relative;
        font-size: 1.11vw;
        padding-left: 1.38vw;
    }

    #faq h4::before {
        height: 0.83vw;
        width: 0.83vw;
        background-color: #597765;
        border-radius: 0.83vw;
        top: 0.34vw;
    }

    #faq .faq-q-title {
        position: relative;
        cursor: pointer;
        font-size: 1.11vw;
        font-weight: normal;
        padding: 1.9%;
        transition: all .5s ease;
        background-color: #F9F6F4;
        border-radius: 14px;

    }

    #faq .faq-q-title img {
        margin-right: 1.11vw;
        margin-top: 4px;
        width: 0.97vw;
    }

    #faq .faq-q-title::before,
    #faq .faq-q-title::after {
        position: absolute;
        content: "";
        width: 1.04vw;
        height: 2px;
        background-color: #333;
        transition: all .5s ease;
    }

    #faq .faq-q-title::before {
        top: 48%;
        right: 1.52vw;
        transform: rotate(0deg);

    }

    #faq .faq-q-title::after {
        top: 48%;
        right: 1.52vw;
        transform: rotate(90deg);

    }

    #faq .faq-q-title.close::before */ #faq .faq-a-box {
        display: none;
        font-size: 1.11vw;
        font-weight: normal;
        padding: 1.9% 0.8% 1.9% 1.9%;
    }

    #faq .faq-a-box img {
        margin-right: 1.11vw;
        margin-top: 4px;
        float: left;
        width: 0.97vw;
    }

    #faq .faq-a-box p {}
}

@media screen and (max-width: 1440px) {
    #danner-camp .dc-btn {
        font-size: 1.11vw;
        padding: 0.83vw 2.08vw;
    }
}

@media screen and (max-width: 767px) {
    #danner-camp .dc-btn {
        font-size: 15px;
        padding: 3.1vw 9.3vw;
    }

    #danner-camp .ticket-fixed {
        top: 75%;
        width: 13.8vw;
    }

    #main {
        margin: 0 auto 0;
    }

    #main img.sp-block {
        margin: 0 auto;
        width: 93.3%;
    }

    #topics {}

    #topics .topics-wrapper {
        flex-direction: column;
        padding: 17vw 6.6vw;
        justify-content: flex-start;
        align-items: flex-start;
        width: auto;
    }

    #topics .topics-wrapper h3 {
        width: 43.7vw;
        margin-bottom: 11.2vw;
    }

    #topics .topics-wrapper .topics-list li {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 7.4vw;
    }

    #topics .topics-wrapper .topics-date {
        font-size: 4.8vw;
        padding: 0;
    }

    #topics .topics-wrapper .topics-new {
        width: 8vw;
        padding-top: 4.2vw;
        padding-right: 0;
    }

    #topics .topics-wrapper .topics-text {
        font-size: 4.2vw;
    }

    #topics .topics-wrapper .topics-text a {
        font-size: 4.2vw;
    }

    #about {
        margin-top: 0;
    }

    #about .about-wrapper {
        flex-direction: column;
        width: 100%;
    }

    #about .about-wrapper .about-txt {
        width: auto;
        padding: 10vw 6.6vw;
        margin: 0 auto;
    }

    #about .about-wrapper .about-txt h3 {
        width: 73.7vw;
        margin: 0 auto 8.2vw auto;
    }

    #about .about-wrapper .about-txt .about-txt-content {
        width: 100%;
    }

    #about .about-wrapper .about-txt .about-txt-article {
        font-size: 18px;
    }

    #about .about-wrapper .about-txt .about-btn-wrapper {
        margin-top: 9.3vw;
    }

    #about .about-wrapper .about-txt .about-info {
        margin-top: 11.2vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content {
        flex-direction: column;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content {
        padding: 6.1vw 0;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-item {
        width: max-content;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-item span {
        font-size: 4.2vw;
        padding: 1.2vw 3.4vw;
        width: auto;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-date.about-info-date-top {
        margin-top: 5.8vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-date {
        margin-top: 7.4vw;
        font-size: 17px;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-tt {
        line-height: 1em;
        font-size: 3.7vw;
        border-left: 1px solid #E8E5E3;
        display: block;
        margin-top: 0;
        padding-top: 2vw;
        padding-left: 2vw;
        margin-left: 1.0vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-tt.about-info-tt-top {
        padding-top: 0;
        margin-left: 2.1vw;
        margin-top: 6.1vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-tt.about-info-tt-top:not(:first-of-type) {
        margin-top: 10px;
        padding-top: 2vw;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-field {
        margin-top: 5.3vw;
        font-size: 15px;
        line-height: 1.8em;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-address {
        font-size: 15px;
        line-height: 1.8em;
    }

    #about .about-wrapper .about-txt .about-info .about-info-content .about-info-detail .about-info-url {
        font-size: 4.2vw;
        line-height: 1.8em;
    }

    #contents {
        margin-top: calc(25.3vw - 17vw);
        padding: 21.3vw 0;
    }

    #contents .contents-wrapper,
    #ticket .contents-wrapper-soon {
        padding: 0 6.6vw;
        align-items: flex-start;
        width: auto;
    }

    #contents .contents-wrapper:first-child,
    #ticket .contents-wrapper-soon:first-child {
        margin-bottom: 24vw;
    }

    #contents .contents-wrapper h3,
    #ticket .contents-wrapper-soon h3 {
        height: 26.9vw;
    }

    #contents .contents-wrapper h4,
    #ticket .contents-wrapper-soon h4 {}

    #contents .contents-wrapper p,
    #ticket .contents-wrapper-soon p {
        font-size: 4.1vw;
    }

    #access {
        margin-top: 22.6vw;
    }

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

    #access .access-wrapper .access-txt {
        width: auto;
        padding: 0 6.6vw;
        margin-left: 0;
    }

    #access .access-wrapper .access-txt h3 {
        width: 47.2vw;
    }

    #access .access-wrapper .access-txt h4 {
        margin-top: 12vw;
        width: 72.8vw;
    }

    #access .access-wrapper .access-txt p {
        margin-top: 12vw;
        font-size: 3.5vw;
    }

    #access .access-wrapper .access-txt .access-rfk {
        flex-direction: column;
        align-items: center;
        margin-top: 6.6vw;
    }

    #access .access-wrapper .access-txt .access-rfk .access-rfk-logo {
        width: 32vw;
        margin-right: 0;
    }

    #access .access-wrapper .access-txt .access-rfk .access-rfk-link {
        margin-top: 8vw;
    }

    #access .access-wrapper .access-txt .access-rfk .access-rfk-link li {
        margin-bottom: 4.5vw;
    }

    #access .access-wrapper .access-txt .access-rfk .access-rfk-link li img {
        width: 4.5vw;
        height: 4.5vw;
    }

    #access .access-wrapper .access-txt .access-rfk .access-rfk-link li a {
        font-size: 4vw;
        margin-left: 2vw;
    }

    #access .access-wrapper .access-img {
        width: 93.3vw;
        margin-left: auto;
        margin-top: 4.2vw;
    }

    #access .access-map {
        width: auto;
        padding: 5.3vw 6.6vw 0;
    }

    #access .access-loot-wrapper {
        margin: 4vw 6.6vw 0;
        flex-direction: column;
        align-items: center;
    }

    #access .access-loot-wrapper .access-loot {
        width: 100%;
        padding: 34.6vw 6.6vw 13.3vw;
        border-radius: 3.7vw;
        margin-top: 24vw;
    }

    #access .access-loot-wrapper .access-loot img {
        height: 34.4vw;
    }

    #access .access-loot-wrapper .access-loot p {
        font-size: 13px;
        margin-bottom: 5.3vw;
        line-height: 1.8em;
    }

    #access .access-loot-wrapper .access-loot p.bold {
        font-weight: bold;
        margin-top: 8.3vw;
    }

    #access .access-loot-wrapper .access-loot p.loot {
        font-size: 15px;
        margin-left: 6vw;
        position: relative;
        margin-top: 0;
    }

    #access .access-loot-wrapper .access-loot p.loot::before {
        position: absolute;
        content: "";
        width: 4vw;
        height: 2px;
        background-color: #2B2A27;
        top: 4vw;
        left: -6vw;
        transform: translate(0%, -50%);
    }

    #gallery {
        margin-top: 18.6vw;
    }

    #gallery h3 {
        margin: 0 auto 9.3vw;
        width: 53.8vw;
    }

    #gallery .gallery-content {
        width: 100%;
    }

    #gallery .gallery-content .gallery-movie-wrapper ul,
    #gallery .gallery-content ul {
        width: 86.6vw;
        display: flex;
        margin: 0 auto;
    }

    #gallery .gallery-content ul li {
        width: 42.4vw;
        height: 28.2vw;
        margin-bottom: 1.8vw;
    }

    #faq {
        margin-top: 21.3vw;
        margin-bottom: 32vw;
    }

    #faq .faq-wrapper {
        flex-direction: column;
        width: 86.6vw;
    }

    #faq .faq-wrapper .faq-title {
        width: 28.8vw;
        margin-bottom: 6.6vw;
    }

    #faq .faq-wrapper .faq-title h3 {
        width: 40.2vw;
    }

    #faq .faq-wrapper .faq-content {
        width: 100%;
    }

    #faq h4 {
        position: relative;
        font-size: 4.26vw;
        padding-left: 5.33vw;
    }

    #faq h4::before {
        height: 3.2vw;
        width: 3.2vw;
        border-radius: 3.2vw;
        top: 1.3vw;
    }

    #faq .faq-accordion-area {
        margin-bottom: 11.2vw;
    }

    #faq .faq-accordion-area li {
        margin-bottom: 4.8vw;
    }

    #faq .faq-q-title {
        font-size: 3.5vw;
        line-height: 1.8em;
        padding: 4.8vw 10.6vw 4.8vw 4.8vw;
        border-radius: 3.7vw;
        display: flex;
    }

    #faq .faq-q-title img {
        margin-right: 16px;
        margin-top: 4px;
        height: auto;
        width: 3.7vw;
        height: fit-content;
        height: intrinsic;
        padding-top: 0.3em;
    }

    #faq .faq-q-title span {
        width: 66.6vw;
    }

    #faq .faq-q-title::before,
    #faq .faq-q-title::before,
    #faq .faq-q-title::before,
    #faq .faq-q-title::after {
        right: 4.8vw;
        width: 3.2vw;
    }

    #faq .faq-a-box {
        font-size:3.0vw;
        padding: 4.8vw 2.4vw 4.8vw 4.8vw;
    }

    #faq .faq-a-box img {
        margin-right: 16px;
        margin-top: 4px;
        float: left;
        height: fit-content;
        height: intrinsic;
        width: 3.7vw;
    }

    #faq .faq-link {
        margin-top: 7.3vw;
        flex-direction: column;
        justify-content: flex-start;
    }

    #faq .faq-link .faq-link-text {
        margin: 0 auto;
        font-size: 3.5vw;
    }

    #faq .faq-link .faq-btn-wrapper {
        margin-top: 6.1vw;
    }

    #faq .faq-link .faq-btn-wrapper .dc-btn {
        padding: 3.1vw 8.9vw;
    }

    .pc-block {
        display: none !important;
    }

    .sp-block {
        display: block !important;
    }
}

.faq-a-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-a-box li {
    margin:0!important;
    position: relative;
    padding-left: 1.2em;
    padding-right: 1.2em;
}

.faq-a-box li:last-child {
    margin-bottom: 0;
}

.faq-a-box li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}