footer {
  padding: 20px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer img {
  width: 180px;
  height: auto;
}

.tuijuu {
  display: none;
}
.tuijuu {
  position: fixed;
  bottom: 0px;
  z-index: 10;
  width: 100%;
  height: 40px;
  background: rgba(53,65,95,0.95);
  padding: 14px 0 18px;
}
.tuijuu_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}
.tuijuu_inner > span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
  width: 156px;
}
.tuijuu a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  height: 40px;
  width: calc(100% - 156px);
  background: url(../images/cta_btn_bg.png) no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 0 #755a25;
  margin-top: 0;
  transition: 0.3s;
}
.tuijuu a:hover {
  transform: translateY(2px);
  box-shadow: 0 0 0 #755a25;
}
@media (max-width: 768px) {
  footer {
    margin-bottom: 66px;
    /*margin-bottom: 72px;*/
  }
  .tuijuu {
    display: block;
  }
}
@media (max-width: 1090px) {
  .tuijuu a img {
    width: 30%;
    height: auto;
  }
}
@media (max-width: 450px) {
  .tuijuu a img {
    width: 50%;
  }
}
@media (max-width: 450px) {
  .tuijuu a img {
    width: 75%;
  }
}

.hidden {
  animation: fade .2s ease-in-out forwards;
  pointer-events:none;/* 重要 */
}

@keyframes fade {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.visible {
  animation: fadeOut .2s ease-in-out forwards;
  pointer-events:all;/* 重要 */
}

@keyframes fadeOut {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.l-fixed-content {
  display: none;
  width: 100%;
  height: 67px;
  position: fixed;
  bottom: 0;
  z-index: 10;
  box-sizing: border-box;
}
.l-fixed-content_inner {
}
.l-fixed-content_inner a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 67px;
  background: #bd3a46;
  position: relative;
  z-index: 1;
}
.l-fixed-content_inner a:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../images/icon_arr01_sp.png) no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 17.5px;
  z-index: 1;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.l-fixed-content_inner a .txt01 {
  display: block;
  color: #fff;
  font-size: 12.8px;
  font-weight: bold;
  letter-spacing: normal;
}
.l-fixed-content_inner a .txt02 {
  display: block;
  margin-top: .3em;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .06em;
}

@media (max-width: 768px) {
  .l-fixed-content {
    display: block;
  }
}