@charset "UTF-8";
/* Scss Document */
/* mixin
*********************************************************************/
/* media query */
/* mobile menu
-----------------------------------------------------------------*/
.menu-btn {
  position: fixed;
  top: -20px;
  right: 5px;
  width: 50px;
  height: 50px;
  line-height: 38px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  z-index: 99999;
 /* display: none;*/
}
/*@media all and (max-width: 768px) {
  .menu-btn {
    display: block;
  }
}*/
.menu-btn p {
  color: black;
  background-color: rgba(255, 255, 255, 0);
}
.menu-btn p img{
width: 36px;
  
}
.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 36px;
  height: 19px;
  right: 0px;
  top: 5px;
}
.menu-trigger img {
  position: absolute;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  border-radius: 3px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 8px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.open .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-315deg);
  transform: translateY(8px) rotate(-315deg);
  background-color: #000000;
}
.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.open .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(315deg);
  transform: translateY(-8px) rotate(315deg);
  background-color: #000000;
}
.sp_menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120%;
  box-sizing: border-box;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
}
.sp_menu .inner {
  padding: 70px 0 0;
}
.sp_menu .inner ul {
  border-top: #C34D22 solid 1px;
  margin: 30px 0;
  padding: 30px 0;
  display: block;
  background-color: #fff;
}
.sp_menu .inner ul li {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4em;
  display: block;
}
.sp_menu .inner ul li:last-child {
  border-bottom: #C34D22 solid 1px;
  padding-bottom: 30px;
}
.sp_menu .inner ul li a {
  display: block;
  padding: 20px 0;
  color: #C34D22;
}
/* 開閉用ボタンがクリックされた時のスタイル */
.open .sp_menu {
  cursor: url(../images/cross.svg), auto;
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
  z-index: 9996;
}
.footer_nav {
  display: none;
}
.footer_nav ul {
  padding: 5px;
  display: flex;
  justify-content: space-between;
}
.footer_nav ul li {
  width: auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
}
.footer_nav ul li.medium {
  width: 22%;
}
.footer_nav ul li.large {
  width: 55%;
}
.footer_nav ul li a {
  height: 36px;
  padding: 5px 0;
  display: block;
}
.footer_nav ul li a img {
  height: 100%;
  width: auto;
}
@media all and (max-width: 768px) {
  .footer_nav {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0px;
    background-color: rgba(255, 255, 255, 0.5);
  }
}