html {
	font-size: 62.5%; /* 10px = 1rem */
    font-family: 'Noto Sans JP', sans-serif;
}
/****************************************

	header

*****************************************/
.clone-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    transition: .3s;
    transform: translateY(-100%);
  }
  .is-show {
    transform: translateY(0);
  }
  header {
      box-sizing: border-box;
      position: relative;
      width: 100%;
      background: url('../img/top/bg_dot_blue3.gif') left top repeat;
      display:block;
      font-size:100%;
  }
  #logo {
      width: 290px;
  }
  #login li a {
      display: block;
      border-radius: 5px;
  }
  #login li:nth-of-type(1) a {
      background: #f39800;
      color: #fff;
      border: 2px solid #f08300;
  }
  #login li:nth-of-type(2) a {
      background: #fff;
      color: #58c3e6;
      border: 2px solid #58c3e6;
  }
