@charset "UTF-8";
@media screen and (max-width: 900px) {
  .sp_hidden {
    display: none;
  }
  .pc_hidden {
    display: block;
  }
  .row {
    padding-right: 15px;
    padding-left: 15px;
  }
  /*ヘッダー　-----------------------------------------------------------------*/
  header {
    width: calc(100% - 70px);
    height: 70px;
    position: fixed;
    z-index: 50;
    float: none;
    padding: 10px 20px 0;
    margin: 0;
      box-sizing: border-box;
  }
  header h1 {
    color: #000;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 16px;
    margin-right: 20px;
  }
  header h2 {
    color: #000;
    font-weight: bold;
    font-size: 12px;
  }
  #sub_header {
    float: none;
    width: 100%;
    background-color: #0095b3;
    box-sizing: border-box;
    /*height: 115px;*/
    height: auto;
    padding: 80px 0 10px;
  }
  #acount_area {
    background-color: #FFF;
    margin: 0 20px;
    box-sizing: border-box;
    height: auto;
    border-radius: 30px;
    padding: 2px 20px;
    color: #001f3d;
  }
  .ttl_mps_top {
   border: none;
   padding: 0;
  }
  /*メインコンテンツ　-----------------------------------------------------------------*/
  main {
    width: 100%;
    float: none;
    padding: 20px;
  }
  /*メニュー　-----------------------------------------------------------------*/
  #nav-drawer {
    display: block;
    position: relative;
  }
  /*アイコンのスペース*/
  #nav-open {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #000;
    padding: 20px;
    z-index: 60;
  }
  /*ハンバーガーの形をCSSで表現*/
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px; /*線の太さ*/
    width: 35px; /*長さ*/
    border-radius: 3px;
    background: #FFF;
    display: block;
    content: '';
    cursor: pointer;
  }
  #nav-open span:before {
    bottom: -13px;
  }
  #nav-open span:after {
    bottom: -26px;
  }
  /*閉じる用の薄黒箇所*/
  #nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    opacity: 0;
    transition: .3s ease-in-out;
  }
  /*メニューの中身*/
  #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 90%;
    max-width: 250px; /*最大幅（お好みで調整を）*/
    height: 100%;
    background: #fff;
    transition: .4s ease-in-out;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
  }
  /*チェックがついたら表示させる*/
  #nav-input:checked ~ #nav-close {
    display: block;
    opacity: .5;
  }
  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  /*メニュー　-----------------------------------------------------------------*/
  menu {
    width: 250px;
    height: 100%;
    float: none;
    margin: 0;
    padding: 2% 0 0;
    box-sizing: border-box;
  }
  ul#main_menu li a {
    color: #4d4d4d;
    display: block;
    padding: 7% 0 7% 22%;
  }
  /*システム画面　-----------------------------------------------------------------*/

  /*スマホマニュアルリンク　-----------------------------------------------------------------*/
  #mobile_manual {
    /*最新OSにより複雑な操作が不要になったため非表示*/
    /*display: block;*/
    margin-bottom: 20px;
    text-align: center;
  }
  #mobile_manual a {
    border: 1px solid #438fae;
    padding: 4% 6%;
    display: inline-block;
    text-align: left;
    font-size: 100%;
    color: #438fae;
  }
}