@charset "UTF-8";
/* ===================================================================
  VR
=================================================================== */


/*----------------------------------------------------
  header
----------------------------------------------------*/
/*---------------------------------------------------------------------------*/
@media screen and (min-width: 769px), print {
  /* ===================================================================
  use pc
=================================================================== */
  .header {
    width: 100%;
    height: 50px;
    text-align: center;
    background: #fff;
  }
  .header h1 {
    margin: 0;
    padding: 0;
    line-height: 0;
  }
  .header .bt {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  /* ===================================================================
  use sp
=================================================================== */
  .header {
    height: 50px;
    background: #fff;
    overflow: hidden;
  }
  .header h1 {
    display: block;
    width: 166px;
    float: left;
    margin: 0;
    padding: 14px 0 0;
    line-height: 0;
    text-align: right;
  }
  .header h1 img {
    width: 90%;
    height: auto;
  }
  .header .bt {
    display: none;
  }
/*
  .header .bt {
    width: 45px;
    float: right;
    padding: 5px 0 0;
  }
  .header .bt img {
    width: 40px;
    height: auto;
  }
*/
}


