@charset "UTF-8";
/* Scss Document */
/* mixin
*********************************************************************/
/* media query */
/* mobile menu
-----------------------------------------------------------------*/
#top .menu-btn {
  display: block;
}

.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 38px;
  line-height: 38px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  display: none;
}
.menu-btn p {
  color: black;
  background-color: rgba(255, 255, 255, 0.7);
}
@media all and (max-width: 768px) {
  .menu-btn {
    display: block;
  }
}

/*
.menu-btn p:after {
  content: attr(data-txt-menu);
  position: absolute;
  top:13px;
  left: 7px;
  font-size: 11px;
}

.open .menu-btn p:after {
  content: attr(data-txt-close);
  color: rgba(0,0,0,1);
}
*/
.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 span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  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: black;
}
.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: black;
}

.menu {
  position: fixed;
  display: table;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
}

.menu ul {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 150px;
}

.menu li {
  width: 100%;
  height: 36px;
  line-height: 1em;
  margin: 0 auto;
  text-align: center;
}

.menu li a {
  display: block;
  font-size: 18px;
  color: #fff;
}

.menu li a:hover {
  color: #999;
}

/* 開閉用ボタンがクリックされた時のスタイル
.open .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);
  }
}
