@charset "UTF-8";

/* main-header */

html {
    font-size: calc(100vw / 375 * 16);
}

.header-main-nav {
    background: #fff;
}

.navbar {
    z-index: 8999;
}

header .navbar {
    z-index: 9000;
}

a.navbar-brand {
    height: 3rem;
    display: flex;
    align-items: center;
}

a.navbar-brand>img {
    width: 3rem;
}

.company-name {
    font-size: 1.2rem;
}

#mainNavbar a {
    line-height: 1.2;
    display: block;
    width: 100%;
}

.header-main-nav>button {
    width: 3rem;
    height: 3rem;
    background: var(--darkgray);
    border-radius: 0;
    border: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9000;
}

#mainNavbar {
    width: 100%;
    /*
    position: fixed !important;
    top: 0 !important;
    */
    background: #fff;
    z-index: 8999;
}

#hamburger {
    width: 100%;
    height: 100%;
    position: relative;
}

#hamburger p {
    width: 3rem;
    text-align: center;
    font-size: 0.6rem;
    color: #fff;
    position: absolute;
    top: 0.5rem;

}

#hamburger span {
    display: block;
    width: 1.4rem;
    height: 1.8px;
    background-color: #fff;
    position: absolute;
    top: 0.8rem;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#hamburger span::before {
    display: block;
    content: "";
    width: 1.4rem;
    height: 1.8px;
    background-color: #fff;
    position: absolute;
    top: -1rem;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#hamburger span::after {
    display: block;
    content: "";
    width: 1.4rem;
    height: 1.8px;
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: -1rem;
    left: 0;
    right: 0;
    margin: auto;
}


/* city-series-header */

.city-series-navbar {
    width: 100%;
    height: 5rem;
    font-family: 'Noto Serif JP', serif;
    background: var(--prime);
    position: fixed;
    top: 0;
    z-index: 9000;
}

.city-series-navbar.city-series-court {
    background: var(--court);
}

.city-series-navbar.city-series-stage {
    background: var(--stage);
}

.city-series-brand {
    height: 2.4rem;
}

.city-series-brand h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.9rem;
    border-right: 1px solid #fff;
}

.city-series-prime .city-series-brand h1 {
    color: var(--primetitle);
}

.city-series-court .city-series-brand h1 {
    color: var(--courttitle);
}

.city-series-stage .city-series-brand h1 {
    color: var(--stagetitle);
}

.city-series-brand h1>span {
    font-size: 1.2rem;
}

.city-series-brand p {
    font-size: 0.8rem;
}

.city-series-prime .city-series-brand h1>span {
    color: var(--primetitle);
}

.city-series-court .city-series-brand h1>span {
    color: var(--courttitle);
}

.city-series-stage .city-series-brand h1>span {
    color: var(--stagetitle);
}

.city-series-navigation {
    list-style: none;
    display: flex;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.city-series-navigation li {
    width: calc(100% / 3);
    height: 1.6rem;
    border-left: 1px solid #fff;
}

.city-series-navigation li:last-of-type {
    border-right: 1px solid #fff;
}

.city-series-navigation a, .city-series-navigation a>span {
    font-size: 0.6rem;
}

.city-series-navigation a {
    display: block;
    line-height: 1.2;
}

/* property-detail-header */

.property-detail-navbar {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    z-index: 9000;
}

.property-detail-navbar h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: var(--lightgold);
}

.property-detail-navbar .navbar-nav .nav-link {
    color: #fff;
}




/* construction-property-detail-header */

.construction-property-detail-navbar {
    background: rgba(0, 0, 0, 0.6);
}

.construction-property-detail-navbar h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: var(--lightgold);
}

.construction-property-detail-navbar .navbar-nav .nav-link {
    color: #fff;
}

.construction-property-detail-header-image {
    position: relative;
}

.construction-property-detail-header-image picture {
    position: absolute;
    top: 0;
}

/* contact-header */

.contact-navbar {
    background: rgba(0, 0, 0, 0.6);
}

.contact-navbar h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: var(--lightgold);
}

.contact-navbar .navbar-nav .nav-link {
    color: #fff;
}

.contact-header-image {
    position: relative;
}

.contact-header-image picture {
    position: absolute;
    top: 0;
}

@media screen and (max-width: 768px) {
    #mainNavbar {
        position: fixed;
        top: 0;
    }
}
@media screen and (min-width: 768px) {

    /* main-header */

    html {
        font-size: calc(100vw / 1280 * 16);
    }

    .header-main-nav {
        background: none;
    }

    .header-main-nav img {
        width: 4rem;
    }

    .company-name {
        font-family: 'Roboto', sans-serif;
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 0.8;
        display: inline-block;
    }

    .company-name>span:first-of-type {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .company-name>span:last-of-type {
        font-family: 'Noto Serif JP', serif;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .header-main-nav {
        position: absolute;
        left: 0;
    }

    #mainNavbar {
        width: 100vw;
        position: absolute;
        top: calc(100vh - 80px);
        left: 0;
        height: 80px;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9000;
    }

    #mainNavbar li {
        width: calc(100% / 7);
        height: 36px;
        border-right: 1px solid #fff;
    }

    #mainNavbar li:first-of-type {
        border-left: 1px solid #fff;
    }

    #mainNavbar a {
        width: 100%;
        display: block;
        font-size: 0.7rem;
        line-height: 1.2;
        color: #fff;
    }

    #mainNavbar span {
        font-size: 0.5rem;
    }

    #nav-bar-icon-list img {
        height: 2rem;
        width: 2rem;
    }

    #nav-bar-icon-list li {
        width: 2rem;
        height: auto;
        border-right: none;
    }

    #nav-bar-icon-list li:first-of-type {
        border-left: none;
    }

    /* city-series-header */

    .city-series-navbar {
        height: 3rem;
    }

    .city-series-brand {
        height: 3rem;
    }

    .city-series-brand h1 {
        font-size: 1.2rem;
    }

    .city-series-brand h1>span {
        font-size: 1.6rem;
    }

    .city-series-brand p {
        font-size: 1rem;
    }

    .city-series-navigation {
        justify-content: flex-end;
        padding-right: 5rem;
    }

    .city-series-navigation li {
        width: 8rem;
        height: 1.6rem;
        border-left: 1px solid #fff;
    }

    /* property-detail-header */

    .property-detail-navbar .navbar-nav .nav-link {
        font-size: 0.7rem;
    }

    .property-detail-navbar .navbar-nav {
        width: 60vw;
    }

    .property-detail-navbar .navbar-nav .nav-item {
        width: calc(100% / 7);
        text-align: center;
        line-height: 0.8;
        border-left: 1px solid #fff;
    }

    .property-detail-navbar .navbar-nav .nav-item:last-of-type {
        border-right: 1px solid #fff;
    }

}