/**
 * 全ページに対するスタイル指定
 *
 * 注意: 記述量が多いため、ファイルを3つに分割しています。
 *
 * PC、モバイル、印刷共通=> common.css
 * モバイル専用=> common-mobile.css
 * 印刷専用=> common-print.css
 */
/****************************
 * モバイル専用
 ****************************/
@media screen and (max-width: 767px) {
  header {
    height: auto;
    z-index: 10;
  }
  .site-title {
    box-sizing: border-box;
    height: 60px;
    padding: 12px 62px 12px 9px;
  }
  .site-title > a {
    display: block;
    height: 100%;
    max-width: 363px;
    position: relative;
    width: 100%;
  }
  .site-title > a > img {
    bottom: 0;
    height: auto;
    margin: auto;
    position: absolute;
    top: 0;
    vertical-align: middle;
    width: 100%;
  }
  .header-inner {
    margin: 0;
    max-width: none;
    position: relative;
  }
  /**
   * グローバルナビ
   */
  .globalnavi {
    border-top: 1px solid #666;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
    margin-top: 0;
    position: absolute;
    width: 100%;
    z-index: 10000;
  }
  .globalnavi ul {
    border-left: none;
    display: block;
    margin-bottom: 0;
  }
  .globalnavi ul li {
    border-bottom: 1px solid #666;
    border-right: none;
    box-sizing: content-box;
    display: block;
    float: none;
    width: 100%;
  }
  .globalnavi ul li a {
    background: #fff;
    border: none;
    box-sizing: content-box;
    color: #000;
    display: block;
    display: block;
    font-size: 14px;
    height: auto;
    padding: 8px 12px;
    text-align: left;
    vertical-align: middle;
    width: 100%;
  }
  .globalnavi ul li a:hover {
    background: #d2e7f1;
    color: #000;
  }
  .globalnavi .fa-angle-right {
    margin-right: 5px;
  }
  .globalnavi > ul > li > .on {
    background-color: #008fc7;
    color: #fff;
  }
  .globalnavi > ul > li > a > i {
    display: inline;
  }
  .globalnavi .mobile {
    display: block;
  }
  /**
   * グローバルナビのトグルボタン
   */
  .toggle-menu {
    background: #fff;
    border-left: 1px solid #ccc;
    box-sizing: border-box;
    color: #666;
    display: block;
    height: 60px;
    padding: 6px 4px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .toggle-menu:link,
  .toggle-menu:visited,
  .toggle-menu:hover,
  .toggle-menu:active {
    color: #666;
  }
  .toggle-menu-open {
    background: #008fc7;
    color: #fff;
  }
  .toggle-menu-open:link,
  .toggle-menu-open:visited,
  .toggle-menu-open:hover,
  .toggle-menu-open:active {
    color: #fff;
  }
  .toggle-menu i {
    display: block;
    font-size: 30px;
    margin: 0 0 4px;
    text-align: center;
  }
  .toggle-menu span {
    display: block;
    font-size: 11px;
    line-height: 1.0;
    text-align: center;
  }
  /**
   * フッター
   */
  .footer-navi {
    display: none;
  }
  /**
   * 本文コンテナ
   */
  .wrap {
    padding-top: 60px; /* 固定表示されている<header>の高さと同じにする */
  }
  .container {
    padding-top: 10px;
  }
  .container2 {
    padding-top: 0;
  }
  .outline {
    text-align: left;
  }
  /**
   * 見出し
   */
  .h2_img {
    padding-top: 0;
  }
  /**
   * howtouse.html,
   * flow.html
   */
  .nagare {
    display: block;
    float: none;
    height: auto;
    margin-bottom: 0;
    margin-right: 0;
    width: 100%;
  }
  .nagare-end {
    margin-right: 0;
    width: 100%;
  }
  .nagare dl {
    background-color: #eee;
    display: block;
    height: auto;
    margin: 5px 0 15px;
    padding: 10px;
    width: auto;
  }
  .nagare-company-last {
    width: auto;
  }
  .nagare-company-last > dl {
    background: inherit;
    padding: 10px;
  }
  .nagare-company-last > dl > dt {
    padding: 0;
  }
  .nagare-company-last > dl > dd > img {
    height: auto;
    width: auto;
  }
  .nagare > p {
    display: block;
    padding-left: 0;
    width: auto;
  }
  .nagare > p > img {
    display: none;
  }
  .nagare-last {
    float: none;
    height: auto;
    margin-left: 0;
    position: static;
    width: auto;
  }
  .nagare-last img {
    position: static;
  }
  /**
   * interview.html
   */
  .interview-body > h4 {
    padding: 12px 12px 12px 32px;
  }
  .interview-body > p {
    padding: 12px 12px 12px 32px;
    text-indent: -16px;
  }
  .interview-result {
    margin-left: 12px;
    margin-right: 12px;
  }
  .contents,
  .outline,
  .h2_area h2,
  .h2_area2 h2 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .contents .outline {
    padding-left: 0;
    padding-right: 0;
  }
}
