@charset "UTF-8";
*,
::before,
::after{
  padding:0;
  margin:0;
  box-sizing: border-box;
}
ul,
ol{
  list-style: none;
}
a{
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}/* linkに乗せた時の挙動 0.5不透明度 */

body{
  font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif,"P22 Festiva";
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  width: 100%;
  height: 100%;
  position: relative;
  background: #eee;
  color: #fff;
}
img{
  max-width: 100%;
}
/* headerここから */
#header {
  display:none;
}
#main {
  box-sizing: border-box;
  margin-left: 220px;
}
#sub {
  box-sizing: border-box;
  top: 0;
  height: 100%;
  width: 220px;
  position: fixed;
  overflow: auto;
  background: #5e6b7c;
  padding: 20px;
}
.sub-inner{
  height: 100%;
  padding: 20px;
}
.sub-menu{
    position: fixed;
    top: 33%;
    left: 70px;
    z-index: 100;
    font-size: 15px;
}
.footer-copy{
  display: block;
  position: fixed;
  bottom: 1%;
  z-index: 100;
  font-size: 15px;
  padding: 10px 10px 10px 50px;
}

/* footerここから */
footer{
  display: none;
}
/* footerここまで */

@media(max-width: 800px){
  #sub{
    display: none;
  }
  .sub-menu{
    display: none;
  }
  .left-header-menu{
    display: none;
  }
  #header{
    display: block;
    position: fixed;
    top:0;
    left:0;
    right: 0;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    height: 80px;
  }
 .header-inner {
  display:flex;
  max-width: 800px;
  background: #5e6b7c;
  height: 100%;
  margin: 0 auto;
  padding: 40px 20px 40px;
  justify-content: space-between;
  align-items: center;
   position: relative;
  }
  .header-logo{
    width: 80px;
  }
  .toggle-menu-button{
    width: 44px;
    height: 33px;
    background-image: url("../images/rogo/icon-menu.png");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
  }
  .header-site-menu{
    position: absolute;
    top:100%;
    left:0;
    right: 0;
    background-color: #5e6b7c;
    padding: 30px 0 50px;
    font-size: 20px;
    display: none;
  }
  .header-site-menu.is-show{
    display: block;
  }
  .site-menu ul{
    display:block;
    text-align: center;
  }
  .site-menu ul li{
    margin-top: 20px;
  }
    footer{
    display: block;
    background-color: #5e6b7c;
    padding: 20px;
    margin: 0 auto;
    font-size: 15px;
    text-align: center;
  }
}