/*---------------------------------------------------------------------------
header
---------------------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100% !important;
  height: 80px !important;
  background: #222;
  color: #fff;
}

header > .container {
  width: initial !important;
  padding: 0 54px;
}

header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

header .jp-play {
  display: block;
  height: 20px;
  background: url(https://fj.with-me.biz/wp-content/themes/funkyjam/images/speaker.png) center top no-repeat;
  cursor: pointer;
  background-size: contain;
}

header button {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@-webkit-keyframes "UpAnime" {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes "UpAnime" {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@-webkit-keyframes "DownAnime" {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes "DownAnime" {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.container {
  width: 100%;
  max-width: 1330px;
  height: 100%;
  margin: 0 auto;
  padding: 0 110px;
}

.logo {
  width: 256px;
}

nav {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

nav h1 {
  margin: 0;
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-right > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-right .sns {
  font-size: 22px;
}

#jp_container_1 {
  width: 28px !important;
  margin: 0 !important;
}

.lang-btn {
  width: 20px;
    margin-left: 30px;
    letter-spacing: .05em;
    color: #aaa;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.lang-btn .active {
  color: #fff;
}

.lang-btn .split {
  margin: 0 12px;
  letter-spacing: 0.03em;
  color: #fff;
  font-family: "Red Hat Display";
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
}

#burger {
  position: relative;
  width: 40px;
  height: 20px;
  margin-left: 30px;
}

#burger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
}

#burger span:first-child {
  top: 0;
}

#burger span:last-child {
  bottom: 0;
}

#burger.active span {
  right: -20px;
  left: auto;
}

#burger.active span:first-child {
  top: auto;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

#burger.active span:last-child {
  bottom: auto;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.menu {
  position: fixed;
  z-index: 100;
  top: 80px;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  padding: 60px;
  opacity: 0;
  background: #222;
  color: #fff;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}

.menu.active {
  visibility: visible;
  opacity: 1;
}

.menu ul {
  margin: 0;
  padding: 0;
}

.menu ul li {
  margin: 0;
}
.sp-link-list {
    display: none;
    margin-top: 17px;
    gap: 33px;
}
.pc-link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.menu-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 10px 25px 0;
    border-bottom: solid 1px #aaa;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 992px){
  .sp-link-list {
    display: flex;
    margin-top: 17px;
        gap: 33px;
  }
  .sp-link-list ul:last-child {
    margin-top: 0 !important;
  }
  .sp-link-list ul li:first-child a {
    border-top: none;
}
}

@media screen and (max-width: 992px) {
.pc-link-list ul:last-child {
    display: none;
}
}
.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-list ul {
  width: 100%;
}

.menu-list ul:last-child {
  margin-left: 40px;
}

.menu-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 10px 25px 0;
  border-bottom: solid 1px #aaa;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu-list a div {
  display: -webkit-box;
  display: -ms-flexbox;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Futura", "Helvetica", "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.menu-list a .kubota:hover {
  color: #cfb844;
}

.menu-list a .urashima:hover {
  color: #af353b;
}

.menu-list a .mori:hover {
  color: #0c9;
}

.menu-list a .hikka:hover {
  color: #4495cf;
}

.menu-list li:first-child a {
  border-top: solid 1px #aaa;
}

.menu-list div {
  letter-spacing: 0.04em;
  font-size: 20px;
  line-height: 1.35;
  width: 100%;
}

.menu-list span {
  margin-left: 16px;
  letter-spacing: 0.01em;
  font-size: 14px;
  line-height: 1.4;
}

.menu-list i {
  color: #aaa;
  font-size: 22px;
}

@media screen and (max-width: 1200px) {
  header .container,
  .menu .container,
  #bottom-section .container,
  footer .container {
    padding: 0 40px;
  }
}

@media screen and (max-width: 992px) {
  header .container,
  #bottom-section .container,
  footer .container {
    padding: 0 24px;
  }
  .header-right > div > :first-child {
    margin-left: 16px;
  }
  .lang-btn {
    margin-left: 16px;
  }
  .logo {
    width: 140px;
  }
  #burger {
    width: 20px;
    height: 10px;
    margin-left: 16px;
  }
  #burger span {
    height: 2px;
  }
  .menu {
    padding: 8px 0 0 0;
  }
  .menu .container {
    padding: 0 24px;
  }
  .menu ul:last-child {
    margin-top: -1px;
    margin-left: 0;
  }
  .menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu a {
    padding: 18px 5px 18px 0;
  }
}

/*---------------------------------------------------------------------------
footer
---------------------------------------------------------------------------*/
#bottom-section {
  padding: 50px 0;
  background: #f1f2f6;
}

.banner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -25px 0 0 -8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.banner-list li {
  width: 33%;
  padding: 25px 0 0 8px;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}

.banner-list li:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

footer {
  height: 145px;
  letter-spacing: 0.05em;
  background: #222;
  color: #fff;
  font-family: "Helvetica";
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
}

footer a {
  text-decoration: underline;
  color: #fff;
}

footer .footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .copyright {
  font-size: 11px;
  margin-top: 11px;
  color: #aaa;
  margin: 0;
}

@media screen and (max-width: 992px) {
  #bottom-section {
    padding: 30px 0;
  }
  #bottom-section .banner-list li {
    padding-left: 14px;
  }
  footer {
    height: 118px;
    padding: 24px 0 18px;
  }
  footer .footer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  footer .footer-right {
    margin-top: 16px;
  }
}
/*# sourceMappingURL=new-header-footer.css.map */