@charset "UTF-8";
/* CSS Document */

/*==================================================
ナビゲーションメニュー
================================================== */
.inner {
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
 
/* header */
#top-head {
    top: 0;
    position: fixed;
    width: 100%;
    height: 90px;
    margin:0;
    padding: 0;
    z-index: 999;
    background-color: rgba(255,255,255, 0.7);
}

/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    /*position: fixed;*/
    z-index: 999999;
    background: #fff;
}



@media (max-width: 320px) {
    

    
}


/* --------------- iPad--------------- */



/* --------------- MENU--------------- */
@media (max-width: 767px) {


    #top-head {
        display: block;
        top: 0;
        margin: 0;
        margin-top: 0;
		height: 60px;
		padding-top: 0;
    }  

    #global-nav {
        display: none;
    }

}



 
.navi {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  z-index: 999;
  padding-top: 65px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 600ms ease-out;
  -o-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
  overflow-y: scroll;
}

.navi_inner{
    height: 120vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.navi ul {
    display: block;
    list-style: none;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    white-space:nowrap !important;
}

.navi ul li {
    width: 100%;
    margin: 0 auto 8px;
}

.navi ul li.full-w{
	float: none;
	width: 100%;
}

.navi ul li a {
    display: block;
    color: #333;
    text-align: center;
    height: 38px;
    line-height: 38px;
    }
    
.navi ul li a i{
    position: absolute;
    top: 45%;
    right: 10px;
}







/*Pure CSS Sidebar*/

#sidebarMenu {
    height: 100%;
    position: fixed;
    right: 0;
    width: 100% ;
    transform: translateX(100%);
    transition: transform 700ms ease-in-out;
}

header input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

header input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    height: 100%;
    width: 100%;
    top: 7px;
    right: 7px;
    height: 44px;
    width: 44px;
    /*border: 1px solid #fc7248;
    border-radius: 50%;*/
    margin: 0;
    padding: 11px 12px 0 12px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #333;
}

.contents-page .spinner,
#top-head.fixed .spinner{
    background-color: #333;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 6px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 6px;
}
header input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
header input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
header input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -10px;
}
 
