@charset "UTF-8";
/* Scss Document */
/* CSS Document */
#top-head {
  display: none;
}

@media screen and (max-width: 480px) {
  /* header */
  #top-head {
    display: block;
    top: 0px;
    position: fixed;
    width: 100%;
    margin: 0 auto 0;
    padding: 0;
    line-height: 1;
    z-index: 20000;
  }

  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -700px;
    background: rgba(217, 88, 87, 0.7);
    width: 100%;
    text-align: center;
    padding: 0;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }

  #global-nav img {
    width: auto;
  }

  #global-nav ul {
    list-style: none;
    position: static;
    font-size: 1.25em;
    padding: 120px 0 0;
    display: inline-block;
    text-align: left;
  }

  #global-nav ul li {
    float: none;
    position: static;
    line-height: 2;
    padding: 0 1.5em;
    border: 3px solid #fff;
    border-radius: 5px;
  }
  #global-nav ul li:nth-child(n + 2) {
    margin-top: 10px;
  }

  #global-nav ul li a {
    width: 100%;
    display: block;
    padding: 0;
    font-weight: 700;
    color: #fff;
  }
  #global-nav ul li a:hover {
    text-decoration: none;
  }

  #global-nav hr {
    border-top: 1px dotted #fff;
    border-bottom: none;
    border-left: none;
    border-right: none;
    margin: 0.5em 0;
  }

  /* Fixed */
  #mobile-head {
    width: 100%;
    height: 80px;
    z-index: 999;
    position: relative;
    background: #fff;
  }

  /* Toggle Button */
  #nav-toggle {
    position: absolute;
    box-sizing: border-box;
    padding: 14px 16px 0;
    right: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: #c6e5e2;
    cursor: pointer;
    z-index: 101;
  }

  #nav-toggle div {
    position: relative;
  }

  #nav-toggle span {
    position: absolute;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }

  #nav-toggle span:nth-child(1) {
    height: 5px;
    width: 100%;
    background: #cb8377;
    top: 0;
  }

  #nav-toggle span:nth-child(2) {
    height: 5px;
    width: 100%;
    background: #cb8377;
    top: 16px;
  }

  #nav-toggle span:nth-child(3) {
    height: 5px;
    width: 100%;
    background: #cb8377;
    top: 32px;
  }

  #nav-toggle span:nth-child(4) {
    width: 100%;
    height: 9px;
    background: url("../img/common/menu.png") center center/contain no-repeat;
    top: 48px;
  }

  .open #nav-toggle span:nth-child(-n + 3) {
    background: #cb8377;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }

  .open #nav-toggle span:nth-child(2) {
    display: none;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }

  /* #global-nav スライドアニメーション */
  .open #global-nav {
    -moz-transform: translateY(700px);
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    height: 100vh;
  }

  .title {
    position: relative;
  }
  .title .h1 {
    font-size: 26px;
    font-weight: 700;
    position: absolute;
    top: 16px;
    left: 15px;
    white-space: nowrap;
  }
  .title .h1 a {
    color: #039;
  }
  .title .h1 a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .title .h2 {
    font-size: 13px;
    font-weight: 700;
    color: #575757;
    position: absolute;
    top: 52px;
    left: 15px;
    white-space: nowrap;
  }
}
