@charset "UTF-8";
/* CSS Document */


html {
  position: relative;
}

body {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

b, strong, .bold{
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

h2 {
  font-size: 16px;
  font-weight: 600;
  padding: 8px;
  margin: 0;
}

h3 {
  margin: 0;
}

ul, li {
  margin:0;
  padding: 0;
  list-style-type: none;
}

img {
  vertical-align: top;
}

p {
  margin: 0;
}



/* #header */

#header {
  max-width: 100%;
  margin: 0 auto;
}



/* #g-nav */

#g-nav{
  position:fixed;
  z-index: 999;
	top:0;
  right: -240px;
	width: 240px;
  height: 100vh;
	background:#000;
  color: #fff;
	transition: all 1s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 240px;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
}
/*リストのレイアウト設定*/
#g-nav li{
  list-style: none;
  text-align: center;
}
#g-nav li a{
  display: block;
  position: relative;
	padding: 15px 0;
}
#g-nav li .g-nav-list__img {
  height: 24px;
}

/*ボタンのためのCSS*/
.openbtn{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
	top: 10px;
	right: 10px;
	cursor: pointer;
  width: 50px;
  height: 50px;
  background: #000;
}
/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
	background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}



/* #main */

#main {
  max-width: 960px;
  margin: 0 auto;
}


/* #breadcrumb */

#breadcrumb {
  background: #F4F0E6;
}

#breadcrumb ul {
  margin: 5px 20px;
  font-size: 12px;
  font-weight: 600;
}

#breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 16px;
}

#breadcrumb li::after {
  content: ">";
  position: absolute;
  margin-left: 5px;
}

#breadcrumb li:last-child::after {
  content: "";
}



/* #footer */

#footer {
  margin: 200px 0 0 0;
  background: #000;
  padding: 24px;
}

.copyright {
  color: #fff;
  font-size: 14px;
  text-align: center;
}




/* === 動き === */

.fadeInUpTrigger{
	opacity: 0;
}