@charset "utf-8";

/* CSS Document */
html,
body {
    height: 100%;
    font-size: 62.5%;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

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

* {
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
}

body {
    background-color: #0D1531;
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.9;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
}

main {
    display: block;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

a:hover {
    opacity: .7;
}

.sp-only {
    display: none;
}

.en {
    font-family: "Taviraj", serif;
    font-style: normal;
}

.gothic {
    font-family: "Noto Sans JP", sans-serif;
}

/* header-------------------------------------------*/
.side-bar {
    width: 276px;
    z-index: 1;
    position: fixed;
    top: 54px;
    left: calc((100vw - 1180px) / 2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.side-bar.is-visible {
    opacity: 1;
    visibility: visible;
}

.side-logo {
    max-width: 221px;
}

.side-list {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    margin-top: 2.7rem;
}

.side-item a {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.header-sp {
    display: none;
}

/* fv -------------------------------------------*/
.fv {
    position: relative;
    background-image: url(/image/fv.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.fv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 4.8rem 2rem 6.2rem;
    text-align: center;
}

.fv-head-ttl {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.fv-head-txt {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.fv-logo {
    max-width: 790px;
    margin: 6.7rem 0 2.8rem;
}

.fv-logo img {
    width: 100%;
    height: 100%;
}

.fv-mid-ttl {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.5;
}

.fv-mid-txt {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.77;
    max-width: 992px;
    margin: 1.8rem auto 2rem;
    text-align: left;
}

.fv-anchor-txt {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.77;

}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.3rem auto;
    max-width: 658px;
    width: 100%;
    text-align: left;
}

.anchor-link {
    background-color: #000;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 1.2rem 6rem 1.2rem 2.9rem;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
}

.anchor-link:after {
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../image/icon-anchor.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.3s;
    display: inline-block;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}

/*map ---------------------------------*/
.map-section {
    padding-top: 4.7rem;
}

.page-width {
    max-width: 1220px;
    padding: 0 20px 0 276px;
    margin: 0 auto;
}

.section-ttl {
    text-align: center;
}

.section-ttl h2 {
    color: #E8A95E;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.section-ttl p {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.map-content {
    margin-top: 6.6rem;
    width: calc(100% + 50vw - 580px);
    margin-right: calc(50% - 50vw);
}

.js-modal {
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.js-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.modal-bg {
    background: rgba(0, 0, 0, 0.6);
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal-container {
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 10px;
    left: 50%;
    padding: 24px 20px 50px;
    position: absolute;
    top: 50%;
    width: 440px;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.js-modal.is-open .modal-container {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.modal-close {
    width: 41px;
    height: 41px;
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 999px;
    position: absolute;
    top: -20px;
    right: -20px;
}

.modal-close::before,
.modal-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 22px;
    background: #fff;
}

.modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-flex {
    display: flex;
    gap: 18px;
}

.modal-left {
    width: 170px;
}

.modal-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.modal-right {
    width: calc(100% - 188px);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
}

.modal-desc {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.75;
}

/* marche     -------------------------*/
.marche-section {
    padding-top: 11.3rem;
}

.heading-flex {
    display: flex;
    gap: 2.8%;
}

.heading-info {
    width: 37.5%;
}

.heading-logo img {
    width: 100%;
    height: 100%;
}

.heading-ttl-en {
    font-size: 2rem;
    font-weight: 700;
    color: #E8A95E;
    margin-top: 3rem;
}

.heading-ttl {
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.11;
    margin-bottom: 1rem;
}

.deadline-txt {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #E8A95E;
    margin-top: 3rem;
}

.deadline-att {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #E8A95E;
    margin: 1rem 0 2.4rem;
}

.btn {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    height: 43px;
    width: 100%;
    max-width: 218px;
    padding-left: 3rem;
    margin-top: 1.8rem;
    position: relative;
}

.btn:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 2rem;
    bottom: 0;
    margin: auto;
}

.heading-img {
    width: calc(59.7% + 50vw - 580px);
    margin-right: calc(50% - 50vw);
}

.marche-map {
    width: calc(100% + 50vw - 600px);
    margin-right: calc(50% - 50vw);
    margin-top: 10rem;
}

.marche-map img {
    width: 100%;
    height: 100%;
}

/* handmade    -------------------------*/
.handmade-section {
    padding-top: 16.5rem;
padding-bottom: 16rem;
}

.heading-sns-txt {
    margin-top: 3rem;
}

.heading-sns {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 1.8rem;
}

.osso-logo {
    width: 56px;
}

.osso-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sns-link {
    display: block;
}

.sns-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* concert     -------------------------*/
.concert-section {
    padding: 16rem 0;
}

.sponsor-logo {
    margin-top: 2rem;
    max-width: 178px;
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
}

/* access     -------------------------*/
.access-section {
    padding-top: 4rem;
    background: linear-gradient(to bottom, #152553, #0D1531);
}

.access-content {
    margin-top: 4rem;
    width: calc(100% + 50vw - 600px);
    margin-right: calc(50% - 50vw);
}

.access-content iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 321 / 184;
}

/* link   -------------------------*/
.link-section {
    padding-top: 24rem;
}

.kyoen-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kyoen-logo {
    display: block;
    max-width: 285px;
}

.kyoen-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kyoen-insta {
    display: flex;
    gap: 1.7rem;
    align-items: center;
}

.kyoen-insta-link {
    display: block;
    width: 36px;
}

.kyoen-insta-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.overview-list {
    max-width: 380px;
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overview-txt {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
}

.overview-link {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: underline;
}

/* footer   -------------------------*/
.footer {
    margin-top: 7.5rem;
    text-align: center;
    background-color: #000;
}

.footer p {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    padding: 25px 0;
    line-height: 1.5;
    font-weight: 300;
}

.fadein {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;
}

.fadein-bottom {
    transform: translate(0, 30px);
}

.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

@media screen and (max-width: 1200px) {
    .side-bar {
        display: none;
    }

    .page-width {
        padding: 0 20px;
    }

    .header-sp {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 45px;
        z-index: 999;
        background-color: #0D1531;
    }

    .header-sp-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
        height: 100%;
    }

    .header-logo {
        max-width: 99px;
        z-index: 2;
    }

    .hamburger {
        position: absolute;
        right: 2rem;
        top: 0;
        text-align: center;
        display: inline-block;
        width: 45px;
        height: 45px;
        z-index: 2;
    }

    .hamburger span {
        position: absolute;
        background: #fff;
        height: 1px;
        width: 30px;
        transition: .3s;
        right: 0;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 19px;
    }

    .hamburger p {
        position: absolute;
        top: 27px;
        right: 0;
        font-size: 0.9rem;
        font-weight: 400;
        line-height: 1;
    }

    .ham-close,
    .hamburger.bgactive .ham-menu {
        display: none;
    }

    .hamburger.bgactive .ham-close {
        display: block;
        right: -1px;
    }

    .hamburger.bgactive span:nth-child(1) {
        transform: translateY(4.5px) rotate(30deg);
        width: 30px;
        right: 0;
    }

    .hamburger.bgactive span:nth-child(2) {
        transform: translateY(-4.5px) rotate(-30deg);
        width: 30px;
    }

    .nav_sp {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        background: #0D1531;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity .6s ease, visibility .6s ease;
        z-index: 1;
        visibility: hidden;
    }

    .nav_list_sp {
        padding: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        gap: 2.7rem;
    }

    .nav_item_sp a {
        font-size: 1.5rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .nav_sp.bgactive {
        opacity: 1;
        visibility: visible;
    }

    .heading-img {
        width: calc(59.7% + 50vw);
    }

    .map-content,
    .marche-map,
    .access-content {
        width: calc(100% + 40px);
        margin-right: -20px;
        margin-left: -20px;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 1.2rem;
    }

    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    /* fv -------------------------------------------*/
    .fv-content {
        padding: 6rem 2rem 2rem;
    }

    .fv-head-ttl {
        font-size: 1.4rem;
    }

    .fv-head-txt {
        font-size: 1.2rem;
    }

    .fv-logo {
        max-width: 790px;
        margin: 3rem 0;
    }

    .fv-mid-ttl {
        font-size: 1.8rem;
    }

    .fv-mid-txt {
        font-size: 1.2rem;
        margin: 1.2rem auto 2.2rem;
    }

    .fv-anchor-txt {
        font-size: 1.2rem;
    }

    .link-list {
        gap: 0.4rem;
        margin: 1.2rem auto;
    }

    .anchor-link {
        padding: 1rem 4.6rem 1rem 1.4rem;
        font-size: 1.2rem;
    }

    .anchor-link:after {
        width: 24px;
        height: 24px;
        right: 12px;
    }

    /*map ---------------------------------*/
    .map-section {
        padding-top: 4.2rem;
    }

    .section-ttl h2 {
        font-size: 2rem;
    }

    .section-ttl p {
        font-size: 1.2rem;
    }

    .map-content {
        margin-top: 2.2rem;
    }

    .modal-container {
        padding: 25px 25px 50px;
        width: 264px;
    }

    .modal-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-left {
        width: 100%;
    }

    .modal-right {
        width: 100%;
    }

    /* marche     -------------------------*/
    .marche-section {
        padding-top: 4.5rem;
    }

    .heading-flex {
        flex-direction: column-reverse;
        gap: 2.4rem;
    }

    .heading-info {
        width: 100%;
    }

    .heading-logo {
        max-width: 227px;
    }

    .heading-ttl-en {
        font-size: 1.6rem;
        margin-top: 2.4rem;
    }

    .heading-ttl {
        font-size: 2.4rem;
    }

    .deadline-txt {
        font-size: 1.8rem;
        margin-top: 2.4rem;
    }

    .heading-img {
        width: calc(100% + 40px);
        margin-right: -20px;
        margin-left: -20px;
    }
.marche-map {
    margin-top: 2.4rem;
}
    /* handmade    -------------------------*/
    .handmade-section {
        padding-top: 6rem;
padding-bottom: 6rem;
    }

    /* concert    -------------------------*/
.concert-section {
    padding: 6rem 0;
}
.sponsor-logo {
    margin-top: 1.5rem;
    max-width: 123px;
}
    /* access     -------------------------*/
    .access-section {
        padding-top: 4rem;
    }

    .access-content {
        margin-top: 3rem;
    }

    .access-content iframe {
        aspect-ratio: 375 / 501;
    }

/* link   -------------------------*/
.link-section {
    padding-top: 8rem;
}

.kyoen-flex {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

.kyoen-logo {
    max-width: 197px;
}

.overview-list {
    max-width: none;
    margin-top: 5rem;
}
.overview-txt {
    font-size: 1.2rem;
}

.overview-link {
    font-size: 1.2rem;
}

/* footer   -------------------------*/
.footer {
    margin-top: 5rem;
}

.footer p {
    font-size: 1.2rem;
    padding: 25px 0;
}
}