#footer{
  background: #e4e4e4;
}
#footer-inner {
  padding:50px 0;
}
#footer-inner > .flex{
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
#footer-logo{
  text-align:left;
  margin:0 auto;
  display:table;
  width: 200px;
}
#footer-logo a{
  display: block;
}
#footer-inner__navi{
  width: 100%;
}
#footer-inner__navi ul{
  gap: 30px;
  justify-content: center;
}
#footer-inner__navi ul a{
  font-size: 1.6rem;
  text-decoration: none;
}
#footer a{
  transition: all .5s ease;
}
#footer a:hover {
  color: #fccf00;
  transition: all .5s ease;
}
  @media only screen and (min-width: 768px) {
    #footer-logo{
      margin: 0;
      margin-bottom:20px;
    }
    #footer-inner__navi{
      width: auto;
    }
  }
#copyright {
  padding: 0 10px 20px;
  background: #e4e4e4;
  text-align:center;
  line-height: 1;
  font-size: 1.2rem;
}
/* =======================================
	ハンバーガーメニュー
======================================= */
#trigger {
  display:block;
}
#trigger-inner {
  display: inline;
  position: fixed;
  top: 0px;
  right: 0px;
  width:100%;
  z-index: 100;
}
#trigger-layer,
#trigger-inner.disp {
  top:0px;
}
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	box-sizing: border-box;
	z-index:10;
}
#trigger-inner__bloc {
}
.menu-trigger {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 10px;
  right: 0;
	background-color: #fff;
  z-index:100;
  transition: all 500ms 0s ease;
}
.trigger-open  .menu-trigger {
	background-color: #000;
  transition: all 1000ms ease;
}
.menu-trigger span {
	width: 40px;
	height: 4px;
	position: absolute;
  left: 50%;
  transform: translate(-50%,-50%);
	background-color: #000;
}
.menu-trigger span:nth-of-type(1) {
  top: 17px;
}
.menu-trigger span:nth-of-type(2) {
  top: 30px;
}
.menu-trigger span:nth-of-type(3) {
  top: 44px;
}
.trigger-open  .menu-trigger span:nth-of-type(1) {
	background-color: #fff;
  top: 50%;
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform: translate(-50%,-50%) rotate(45deg);
  transition: all .5s ease;
}
.trigger-open  .menu-trigger span:nth-of-type(2) {
	opacity: 0;
  transition: all .5s ease;
}
.trigger-open  .menu-trigger span:nth-of-type(3) {
	background-color: #fff;
  top: 50%;
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	transform: translate(-50%,-50%) rotate(-45deg);
  transition: all .5s ease;
}
#trigger-inner__menu {
    display:block;
}
.sp-nav{
  padding: 30px 5vw 0;
  box-sizing: border-box;
  position:fixed;
  top:60px;
  right:-100%;
  height:100%;
  width:100%;
  transition: all 1s ease;
}
.sp-nav{
  padding: 30px 5vw;
  box-sizing: border-box;
  text-align: center;
  position:fixed;
  top:80px;
  right:-100%;
  height:calc(100% - 60px);
  width:100%;
  transition: all 1s ease;
}
.trigger-open .sp-nav {
  position:fixed;
  top:80px;
  right: 0;
  bottom: 0;
  background-color: #fff;
  overflow:auto;
  z-index:50;
  transition: all 1s ease;
}
.sp-nav ul li {
  margin-bottom: 40px;
  position:relative;
}
.sp-nav ul li a {
  text-decoration:none;
  flex-direction: column;
  line-height: 1;
}
.sp-nav ul li a span.en{
  font-family: 'Fugaz One', cursive;
  font-size: 3.0rem;
}
.sp-nav ul li a span.ja{
  padding-top: 7px;
  font-size: 1.6rem;
  text-decoration: underline;
}
.sp-nav ul li a:hover {
  color: #fccf00;
}

@media only screen and (min-width: 800px) {
  #trigger {
    display:none;
  }
}