@charset "euc-jp";

#nav-floating{
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}

.navArea {
  padding: 0.5vw;
  background: #a29834;
      box-shadow: 0px 5px 12px rgb(255 255 255);
}

.h-menu{
  position: relative;
    padding: 1vw;
}

/*inputのcheckboxは非表示に*/
.h-menuCheckbox {
  display:none;
}

/*ハンバーガーメニュー*/
.h-menu_icon {
    display: inline-block;
    width: 3vw;
    height: 3vw;
    vertical-align: middle;
    cursor: pointer;
}
.h-menu_icon::after {
    content: "MENU";
    font-size: 1vw;
    position: absolute;
    bottom: 0.5vw;
    color: #fff;
    letter-spacing: 0.05vw;
}

/*3本線*/
.hamburger-icon, .hamburger-icon::before, .hamburger-icon::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 100;
    top:1vw;
    bottom:0;
    width: 3vw;
    height: 0.3vw;
    background: white;
    cursor: pointer;
}
.hamburger-icon:before {
    top: 0.8vw;
}
.hamburger-icon:after {
    top: 1.6vw;
}

/*メニュー以外を暗くする*/
#h-menu_black {
    display: none;
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .7s ease-in-out;
}

/*中身*/
#h-menu_content {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    /*max-width: 320px;*/
    height: 100vh;
    padding: 8vw 0 1vw 1vw;
    background: #1f2c37;
    overflow: auto;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(100vw);
}

/*チェックボックスにチェックが入ったら表示*/
input:checked ~ .h-menu_icon{
    
}
input:checked ~ .h-menu_icon .hamburger-icon{
    background: transparent;
}
input:checked ~ .h-menu_icon .hamburger-icon::before{
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top:10px;
    z-index:999;
}
input:checked ~ .h-menu_icon .hamburger-icon::after{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top:10px;
    z-index:999;
}
input:checked ~ #h-menu_black {
    /*display: block;/*カバーを表示*/
    /*opacity: .8;*/
}
#h-menu_checkbox:checked ~ #h-menu_content {
    -webkit-transform: translateX(0%);
    transform: translateX(80vw);
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
    background: rgba(0, 0, 0, 0.8);
}
.h-menu_icon .hamburger-icon, .h-menu_icon .hamburger-icon::before, .h-menu_icon .hamburger-icon::after, #h-menu_black, #h-menu_content{
    -webkit-transition: all .3s ;
    transition: all .3s ;}

#h-menu_content ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
#h-menu_content ul li{
    border-bottom: solid 1px #7b7b7b;
}
#h-menu_content li a {
    display: block;
    color: white;
    font-size: 13px;
    padding: 10px;
    letter-spacing: 2px;
    text-decoration: none;
    transition-duration: 0.2s;
    line-height: 0.7;
}
#h-menu_content li a:hover {
        background: #ffffff6b;
}

#template #templateWrap #templateFlame #bodyClump #nav-floating >p{
    margin:29vw 0 0 3vw;
    text-align: center;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
#template #templateWrap #templateFlame #bodyClump #nav-floating >p a{
    padding: 1vw;
    letter-spacing: 0.1vw;
    background: #e70012;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    transition: .4s;
}
#template #templateWrap #templateFlame #bodyClump #nav-floating >p a:hover{
    text-decoration: none;
    background: #ff3d4c;
}

#template #templateWrap #templateFlame .menu-list-title {
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 16px;
}

#template #templateWrap #templateFlame li:nth-child(odd) .menu-list-text{
        color: #fecc4e;
}
#template #templateWrap #templateFlame li:nth-child(even) .menu-list-text{
       color: #ff8503;
}