/* HTML Set up */
footer {
  color: #000;
  margin: 0;
  width: 100%;
}

footer .centered {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

footer .centered .footer-logo img.logo {
  padding: 30px 20px 10px 20px;
  max-width: 100%;
}

footer .centered .footer-navigation .footer-links-holder {
  position: relative;
  float: left;
  margin: 0;
  width: 100%;
}
footer .centered .footer-navigation .footer-links-holder .footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-transition: max-height .2s;
  transition: max-height .2s;
}
footer .bottom-bar {
  position: relative;
  text-align: center;
  font-size: .8em;
  /*  text-transform: uppercase;*/
  background: #FEC327;
  padding: 15px 0;
}

footer .footer-navigation {
  display: -webkit-flex; /* Safari */
  display: flex;
  flex-wrap: wrap;
  /* margin-right:5px; */
  width:100%;
}

footer .menu {
  width:calc(100% / 6);
}

div#footer {
  clear: both;
  background: #FDD100;
}



footer a {
  padding-left:0.5em;
}
footer a:visited {
  color: #069
}
footer a:hover {
  color: #65c2ed;
}

.f_menu {
  width: 100%;
  max-width: 1080px;
  margin: 15px auto;
}

@media screen and (max-width: 768px) {
  .f_menu {
    width: 100%;
    margin: 0;s
  }
}

.f_uli{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.f_uli li a {
  display: block;
  color:#333;
  text-decoration:none;
}

/* Misc CSS */
.clearfix:before, .clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  clear: both;
}

/* PCの時 */
.menu02 input {
  display: none;
}

.menu02 {
  width: calc(-1px + 100% / 6);
}

footer p {
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 10px 0;
  font-size: 12px;
}

footer li {
  /*  text-transform: uppercase;*/
  letter-spacing: 0.05em;
  margin:auto;
  font-size: 12px;
}

@media screen and (max-width: 768px) {

  .menu02 {
    width: 100% !important;
  }

  .menu02 input {
      display: none;
  }

  .menu02 label {
    cursor :pointer;
    display: block;
    text-decoration: none;
    color: #333;
    line-height: 1;
    position: relative;
    /* margin: 0 0 10px; */
    padding: 10px;
    background-color: #f1f1f1;
  }
  .menu02 ul {
      margin: 0;
      padding: 0;
      list-style: none;
      margin-bottom: 1px;
  }
  .menu02 li {
    max-height: 0 !important;
    overflow-y: hidden;
    -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
  }
  
  .menu02 ul li::before {
      display: none;
  }
  
  #menu_bar01:checked ~ #links01 li {
      max-height: 30px !important;
      opacity: 1;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
      padding: 10px 0px;
  }
  
  #menu_bar01:checked ~ #links01 li:last-child {
      margin-bottom: 20px;
  }

  .menu02 label:after{
      content:"";
      display:block;
      width:8px;
      height:8px;
      border-top: #333 2px solid;
      border-right: #333 2px solid;
      -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      transform: rotate(135deg);
      position:absolute;
      right: 2%;
      top: 0;
      bottom: 15%;
      margin:auto;
  }
  .menu02 input[type=checkbox]:checked + label:after{
      content:"";
      display:block;
      width:8px;
      height:8px;
      border-top: #fff 2px solid;
      border-right: #fff 2px solid;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
      position:absolute;
      right: 2%;
      top: 7%;
      bottom: 0;
      margin:auto;
  }

  footer p, footer li {
    letter-spacing: 0.05em;
    margin: 0 !important;
    text-align: center;
    font-size: 13px;
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 10px;
  }
  
}