@charset "UTF-8";
/*共通部分*/
.sp_nav_btn {
  position: absolute;
  right: 0;
  top: 0;
}
.sp_nav_btn a {
  color: white;
}

/**********************************************************************
	ページヘッダ - className : Header
***********************************************************************/
#header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
  color: white;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
#header a {
  color: white;
}
#header a:hover {
  text-decoration: none;
}

/**********************************************************************
	ページタイトル - className : Page_title
***********************************************************************/
.Page_title {
  background: #666;
}

/**********************************************************************
	SPナビゲーション - className : Page_title
***********************************************************************/
.Sp-nav {
  opacity: 0;
  height: 0;
}

/**********************************************************************
	ナビゲーション
***********************************************************************/
#gnav {
  box-sizing: border-box;
  display: block !important;
  position: fixed;
  top: 0;
  right: 0;
  width: 430px;
  height: 100vh;
  overflow-y: scroll;
  background-color: #fff;
  z-index: 9999;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.2s ease-out, transform 0s ease 0.2s;
}
#gnav:before {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw - 430px);
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  content: "";
  opacity: 0;
}
#gnav.on {
  transition: opacity 0.3s ease-out, transform 0s;
  transform: translateX(0);
  opacity: 1;
}
#gnav.on:before {
  left: calc(-100vw + 430px);
  width: calc(100vw - 430px);
  transition: background 0.8s ease-out 0.2s;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
#gnav ol {
  width: 70%;
  margin: 0 auto;
  padding-top: 9vw;
  padding-bottom: 1em;
}
#gnav li {
  position: relative;
}
#gnav li + li {
  margin-top: 10px;
}
#gnav li:after {
  top: 1em;
}
#gnav li a {
  position: relative;
  display: inline-block;
  background-color: #fff;
  padding: 5px 10px 4px 8px;
  text-decoration: none;
  vertical-align: bottom;
  line-height: 1;
  font-weight: 600;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  color: #222;
}
#gnav li a:before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 21px;
  height: 21px;
  margin: auto;
  content: "";
}
#gnav li .list-group > li {
  margin-left: 1em;
}
#gnav li .list-group > li + li {
  margin-top: 0;
}
@media only screen and (max-width: 820px) {
  #gnav {
    background-color: transparent;
    width: 100%;
    overflow: hidden;
  }
  #gnav:before {
    position: absolute;
    top: 0;
    left: -25vw;
    width: 150vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    content: "";
  }
  #gnav.on:before {
    transition: background 0.8s ease-out 0.2s;
    background-color: rgba(0, 0, 0, 0.6);
  }
  #gnav ol {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: none;
    padding: 55px 25%;
    background-color: #fff;
    overflow-y: scroll;
  }
  #gnav li {
    margin-bottom: 10px;
  }
  #gnav li a {
    font-size: 1.4rem;
  }
}

/**********************************************************************
	バーガーメニュー
***********************************************************************/
#btn_menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  transform: translate3d(0, 0, 0);
  z-index: 10000;
  cursor: pointer;
  mix-blend-mode: difference;
}
#btn_menu div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 1px;
  margin: auto;
  transition: all 0.4s;
}
#btn_menu div:nth-child(1) {
  transform: translateY(-7px);
}
#btn_menu div:nth-child(3) {
  transform: translateY(7px);
}
#btn_menu img {
  mix-blend-mode: difference;
  display: inherit;
}
#btn_menu.on div {
  background-color: #333;
}
#btn_menu.on div:nth-child(1) {
  top: -12px;
  transform: translateY(6px) rotate(-45deg);
}
#btn_menu.on div:nth-child(2) {
  opacity: 0;
}
#btn_menu.on div:nth-child(3) {
  top: 12px;
  transform: translateY(-6px) rotate(45deg);
}
#btn_menu.not-blend {
  mix-blend-mode: inherit;
}
@media only screen and (max-width: 820px) {
  #btn_menu {
    width: 60px;
    height: 60px;
  }
}

/**********************************************************************
	ページフッタ
***********************************************************************/
footer {
  background: #222;
  font-size: 1.4rem;
  position: relative;
  padding-top: 60px;
  text-align: center;
}
footer .sns {
  margin-bottom: 40px;
}
footer .sns li {
  display: inline-block;
  margin: 10px;
}
footer .sns li a {
  display: block;
  width: 60px;
  height: 60px;
  background: #333 no-repeat center center/25px auto;
  border-radius: 100px;
  white-space: nowrap;
  text-indent: 120%;
  overflow: hidden;
}
footer .sns li a.btn_fb {
  background-image: url(../img/icon_fb_w.png);
}
footer .sns li a.btn_tw {
  background-image: url(../img/icon_x_w.png);
  background-size: 20px;
}
footer .sns li a.btn_line {
  background-image: url(../img/icon_line_w.png);
}
footer nav {
  margin-bottom: 60px;
}
footer nav li {
  position: relative;
  display: inline-block;
  padding: 0 28px;
}
footer nav li a {
  color: #fff;
  display: inline-block;
  text-decoration: underline;
  line-height: 1;
}
footer .copy {
  background: #222;
  border-top: solid 1px #4e4e4e;
  color: #fff;
  padding: 30px 0;
  font-size: 1.2rem;
}
footer a {
  transition: opacity 0.3s;
}
footer a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 820px) {
  footer {
    padding-top: 45px;
    font-size: 1.1rem;
  }
  footer .sns {
    margin-bottom: 30px;
  }
  footer .sns li {
    margin: 5px;
  }
  footer nav {
    margin-bottom: 30px;
  }
  footer nav li {
    margin: 10px 0;
    padding: 0 15px;
  }
  footer .copy {
    padding: 15px 0 90px;
    font-size: 1rem;
  }
}

/**********************************************************************
	ページトップ - className : Pagetop
***********************************************************************/
.pagetop {
  position: absolute;
  right: 30px;
  bottom: 110px;
  width: 70px;
  height: 70px;
  background: #636363 url(../img/icon_pagetop.svg) no-repeat center center/25px auto;
  cursor: pointer;
  transition: opacity 0.3s;
}
.pagetop:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 820px) {
  .pagetop {
    right: 15px;
    bottom: 140px;
    width: 60px;
    height: 60px;
    background-size: 17px auto;
  }
}/*# sourceMappingURL=common.css.map */