#footer{
  overflow: hidden;
  z-index: 1;
  position: relative;
}

#footer .deco-circle{
  position: absolute;
  top: 30%;
  right: 0;
  height: 25vw;
  width: 25vw;
  background: url("../img/background/bg_footer.png") no-repeat center/contain;
  z-index: -1;
}
#footer a{
  text-decoration: none;
}
#footer-inner {
  padding:60px 0 0;
}
#footer-logo{
  text-align:left;
  margin:0 auto;
  /* display:table; */
  width: 200px;
}
#footer-logo a{
  display: block;
}
#footer .flex{
  align-items: center;
}

.footer-menu__area{
  display: none;
}
@media only screen and (min-width: 768px) {
  #footer-logo,
  .footer-inner__addr{
    margin-left: 0;
  }
 .footer-menu__area{
    display: block;
    margin-right: 0;
    margin-left: auto;
    width: calc(100% - 200px - 100px);
  }
  .footer-menu{
    margin: 0 -10px;
    position:relative;
    height:100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-end;
    line-height: 1;
    transition: all 500ms 0s ease;
  }
  .footer-menu > li{
    margin-left:10px;
    margin-right:10px;
    font-weight: bold;
  }
  .footer-menu > li a{
    padding: 10px;
    text-align: center;
    display: inline-block;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 16px;
  }

  .footer-menu > li a:hover{
    color: var(--color-accent);
  }
  .footer-menu > li.entry-link a{
    background: #185aa5;
    border: 1px solid #185aa5;
    color: #fff;
    border-radius: 19px;
    padding: 10px 20px;
  }
  .footer-menu > li.entry-link a:hover{
    color: #185aa5;
    background: #fff;
  }
}


#copyright {
padding: 60px 10px 20px;
  text-align:center;
  font-size: 1rem;
  line-height: 1;
}
/* =======================================
	ハンバーガーメニュー
======================================= */
#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;
  right: 5vw;
  top: 10px;
	background-color: #fff;
  z-index:100;
  transition: all 500ms 0s ease;
}
.trigger-open  .menu-trigger {
  background: #185aa5;
  transition: all .5s ease;
}
.menu-trigger span {
	width: 40px;
	height: 4px;
	position: absolute;
  left: 50%;
  transform: translate(-50%,-50%);
	background-color: #185aa5;
}
.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{
  box-sizing: border-box;
  position:fixed;
  top:80px;
  right:-100%;
  height:calc(100% - 80px);
  width:100%;
  transition: all 1s ease;
}
.trigger-open .sp-nav {
  position:fixed;
  top:80px;
  right: 0;
  bottom: 0;
  background: #edf2f8;
  overflow:auto;
  z-index:50;
  transition: all 1s ease;
}
#sidemenu{
  padding: 30px 5vw;
}
.sp-nav ul li {
  position:relative;
}
.sp-nav ul li a {
  text-decoration:none;
  padding: 20px;
  display: block;
  position: relative;
  color: #185aa5;
}
.sp-nav ul li a .arrow{
  left: auto;
  right: 0;
  transform: translateY(-50%);
}
.sp-nav ul li a .arrow::before{
  background: url(../img/common/icon/icon_arrow.png) no-repeat center/contain;
}
.sp-nav ul li a:hover{
  opacity: .6;
  transition: all .5s ease;
}
/* .sp-nav ul li a:hover .arrow::before{
  background: url(../img/common/icon/icon_arrow_white.png) no-repeat center/contain;
} */
.sp-nav .link-area{
  text-align: center;
}

/* @media only screen and (min-width: 768px) {
  .menu-trigger {
    right: 5vw;
  }
} */
@media only screen and (min-width: 1040px) {
  #trigger {
    display:none;
  }
}