/* ========================================
   DARUMA STREET
   Ver.0.1
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

/* ========================================
   LOADING
======================================== */

#loading {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-logo img {

    width: 220px;
    max-width: 70vw;

}

.loading-bar {

    width: 220px;
    height: 2px;

    background: rgba(255,255,255,.15);

    margin-top:40px;

    overflow:hidden;

}

.loading-bar span{

    display:block;

    width:0;

    height:100%;

    background:#fff;

}

/* ========================================
   HEADER
======================================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:28px 36px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:1000;

}

.logo img{

    width:170px;

    display:block;

}

#menuButton{

    background:none;

    border:none;

    color:#fff;

    font-size:14px;

    font-family:"Montserrat";

    letter-spacing:.2em;

    cursor:pointer;

}

/* ========================================
   HERO
======================================== */

#hero{

    position:relative;

    width:100%;

    height:100svh;

    overflow:hidden;

}

.hero-slider{

    position:absolute;

    inset:0;

}

.slide{

    position:absolute;

    inset:0;

    opacity:0;

    transition:opacity 1s ease;

}

.slide.active{

    opacity:1;

}

.slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1);

}

.hero-counter{

    position:absolute;

    right:36px;

    bottom:36px;

    display:flex;

    flex-direction:column;

    gap:10px;

    color:#fff;

    font-size:13px;

    letter-spacing:.15em;

}

.hero-counter .current{

    font-weight:600;

}
