@charset "utf-8";
@import url("pc.css");
@import url("sp.css");
@import url("menu.css");
@import url("footer.css");
@import url("hdmain.css");
.red {
  color: #FF0004;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .none {
    display: none
  }
}

@media screen and (min-width: 769px) {
  .none1 {
    display: none
  }
}


/* フッダー下に */

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  position: relative;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}


/* フッダー下に */

img {
  max-width: 100%;
  height: auto;
  width/***/
  : auto;
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.pagetop a {
  display: block;
  background-color: #cc6633;
  text-align: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  padding: 10px 20px;
}

.pagetop a:hover {
  display: block;
  background-color: #663300;
  text-align: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  padding: 10px 20px;
}

.button {
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}

.button::before, .button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.button {
  background-color: #666;
  color: #fff;
}

.button:hover {
  background-color: #cc3333;
}

.button, .button::before, .button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.fade {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.fade:hover {
  opacity: 0.4;
  filter: alpha(opacity=60);
}



@media only screen and (max-width: 768px) {
  header {
    padding: 5px 5px 0px 5px;
    background: #fff;
  }
  #nav-drawer {
    position: relative;
  }
  /*チェックボックス等は非表示に*/
  .nav-unshown {
    display: none;
  }
  /*アイコンのスペース*/
  #nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
  }
  /*ハンバーガー*/
  #nav-drawer {
    position: relative;
  }
  /*チェックボックス等は非表示に*/
  .nav-unshown {
    display: none;
  }
  /*アイコンのスペース*/
  #nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
  }
  /*ハンバーガーアイコンをCSSだけで表現*/
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 25px;
    /*長さ*/
    border-radius: 3px;
    background: #ff3300;
    display: block;
    content: '';
    cursor: pointer;
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  /*閉じる用の薄黒カバー*/
  #nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
  }
  /*中身*/
  #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /*最前面に*/
    width: 90%;
    /*右側に隙間を作る*/
    max-width: 330px;
    /*最大幅*/
    height: 100%;
    background: #fff;
    /*背景色*/
    transition: .3s 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%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
  }
  
