@charset "UTF-8";
html {
    scroll-behavior: smooth;
  }

#royal-asscher {
    font-family: 'Noto Serif JP', serif;
    max-width: 1200px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    /*
    background-color: #082358;
    */
}

/*common*/
#royal-asscher .royal-asscher_bk {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: top 0 center;
    background-image: url(../images/background.jpg);
    background-size: cover;
}


/*メニュー*/

#tabBox {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
    background: #ffffffbe;
    border-bottom: #082358 2px solid;
    margin: 0 auto 50px;
}

#tabBox a.one_tab {
    width: 24.9%;
    border-radius: 5px 5px 0 0;
    background-color: #F2F2F2;
    height: 50px;
    text-align: center;
    color: #082358;
    font-size: 16px;
    font-family: 'Noto Serif JP', serif;
    line-height: 1.2em;
    display: table;
}

#tabBox a.one_tab .tab_inner {
    display: table-cell;
    vertical-align: middle;
}

#tabBox .on {
    background-color: #082358;
    color: #fff;
    border-radius: 5px 5px 0 0;
}

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

    #tabBox a.one_tab {
        font-size: 14px;
    }

}



/***************
royalasscher_title
****************/

#royal-asscher .royalasscher_title {
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    display: table;
    width: 100%;
    min-height: 50px;
    margin: 0 auto 0;
    padding: 0 0 0 0;
}

#royal-asscher .royalasscher_title h1 {
    color: #000;
    display: table-cell;
    vertical-align: middle;
}

#royal-asscher .royalasscher_title h1 img {
    width: 130px;
}

