@charset "utf-8";

/*================================
PC & SP
================================*/
*{
  box-sizing: border-box;
}
html,body{
  height: 100%;
  /*font-family: 'Roboto', 'Noto Sans JP', sans-serif;*/
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
li{
  list-style: none;
}
img{
  border:none;
  vertical-align:bottom;
  width: 100%;
}
a{
  text-decoration: none;
  color: #f39800;
}
a:hover{
  text-decoration: underline;
  opacity: 0.9;
}
.over{
  transition: -webkit-opacity .5s ease;
  transition: opacity .5s ease;
}
.over:hover{
  opacity: 0.4;
}

#glayLayer{
  display:none;
  position:fixed;
  left:0;
  top:0;
  height:100%;
  width:100%;
  background: rgba(0,0,0,0.8);
  z-index: 100;
}

#overLayer{
  display:none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  z-index: 100;
}

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac \*/
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */


.inner{
  max-width:680px;
  margin:0 auto;
  padding: 0 10px;
}

.pagetop{
  position: fixed;
  right: 10px;
  bottom: 10px;
}

/* ヘッダー */
header ul li{
  display: inline-block;
}

/* ドロワーメニュー */
.drawer-nav{
  width: 70%;
}
.drawer--right .drawer-nav{
  right: -70%;
}
.drawer-hamburger-icon, .drawer-hamburger-icon:before, .drawer-hamburger-icon:after{
  height: 2px;
}

/* フッター */
footer ul li{
  display: inline-block;
}

/* 下層ページ共通部分 */

/*================================
for PC
================================*/
@media screen and (min-width: 769px) {
  .is-pc{
    display: block !important;
  }
  .is-sp{
    display: none !important;
  }
}

/*================================
for SP スマホ
================================*/
@media screen and (max-width: 768px) {
  .is-pc{
    display: none !important;
  }
  .is-sp{
    display: block !important;
  }
  .inner{
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  /* ヘッダー　*/

  /* フッター */

  /* 下層ページ共通部分 */
}
