a:hover {
    opacity: 1;
  }
/* pc menu */
  .menu_pc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    z-index: 99;
    background: #fff;
  }

  .menu {
    display: flex;
    position: relative;
    width: 100%;
    height: 50px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    align-items: center;
  }

  .menu > li {
    padding: 0 2px;
    flex: 1 1 auto;
    text-align: center;
  }

  header,
  .funclub_menu {
    font-family: 'Quicksand', sans-serif;
  }

  .menu > li a {
    font-size: 1.3vw;
    display: block;
    color: #444;
    text-decoration: none;
    transition: .3s;
  }

  .menu > li a:hover {
    color: #c6d0c4;
  }

  ul.menu_second {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
  }

  .menu > li:not(.menu_funclub) {
    position: relative;
    display: inline-block;
  }
  .menu > li:not(.menu_funclub):before,
  .menu > li:not(.menu_funclub):after {
    position: absolute;
    bottom: 0;
    content: "";
    display: inline-block;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .2s;
  }
  .menu > li:not(.menu_funclub):before {
    left: 50%;
  }

  .menu > li:not(.menu_funclub):after {
    right: 50%;
  }

  .menu > li:not(.menu_funclub):hover:before,
  .menu > li:not(.menu_funclub):hover:after {
    width: 50%;
  }

  .menu > li:not(.menu_funclub):hover {
  }

  .menu_second li {
    list-style: none;
  }
  .menu_second li a {
    color: #fff;
    transition: .3s;
  }
  .menu_second li a:hover {
    color: #c6d0c4;
  }

  li.menu_first ul.menu_second {
      display: flex;
      position: absolute;
      width: 100vw;
      height: 50px;
      align-items: center;
      background: #00bd36;
      top: 40px;
      right: -20px;
      left: auto;
      box-sizing: border-box;
      padding: 5px 60px;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
  }

  li.menu_first ul.menu_second:before {
    content: "";
    position: absolute;
    right: 25%;
    top: -10px;
    border-bottom: 10px solid #00c204;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }

  li.menu_first:hover ul.menu_second {
      top: 50px;
      visibility: visible;
      opacity: 1;
  }

  li.menu_first ul.menu_second > li {
      flex: 1 1 25%;
      border: none;
  }

  .menu_first.funclub_button.menu_funclub button{
    height: 35px;
    font-size: 1.2vw;
    transition: .3s;
  }
  .menu_first.funclub_button.menu_funclub button:hover{
    opacity: .8;
  }




  /* sp menu */

  nav.glmenu_sp {
    overflow: hidden;
    overflow-y: scroll;
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: left;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
  }

  nav.glmenu_sp .spmenu_inner {
      margin: 0 auto;
      padding: 0;
      width: 100%;
  }

  nav.glmenu_sp ul li {
      list-style-type: none;
      padding: 0;
      width: 100%;
      border-bottom: 1px solid #9fa2a3;
  }


  ul.spmenu_inner.funclub li:last-child {
      padding-bottom: 0;
      border-bottom: none;
  }

  nav.glmenu_sp ul li a {
    display: block;
    color: #373737;
    padding: 1em 0 1em 20px;
    text-decoration: none;
    transition: .3s;
    backface-visibility: hidden;
  }

  nav.glmenu_sp ul li a:hover {
    opacity: .8;
  }

  nav.glmenu_sp.active {
    transform: translateY(0%);
  }

  .navToggle {
      display: block;
      position: fixed;
      right: 13px;
      top: 42.5px; /* sp_logoの縦幅から/2 */
      transform: translateY(-50%);
      width: 42px;
      height: 51px;
      cursor: pointer;
      z-index: 99;
      text-align: center;
  }

  .navToggle span {
      display: block;
      position: absolute;
      width: 30px;
      border-bottom: solid 3px #373737;
      -webkit-transition: .35s ease-in-out;
      -moz-transition: .35s ease-in-out;
      transition: .35s ease-in-out;
      left: 6px;
  }

  .navToggle span:nth-child(1) {
      top: 9px;
  }

  .navToggle span:nth-child(2) {
      top: 18px;
  }

  .navToggle span:nth-child(3) {
      top: 27px;
  }

  .navToggle span:nth-child(4) {
      border: none;
      color: #373737;
      font-size: 9px;
      font-weight: bold;
      top: 34px;
  }

  /* active */
  .navToggle.active span:nth-child(1) {
      top: 18px;
      left: 6px;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      transform: rotate(-45deg);
  }

  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
      top: 18px;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      transform: rotate(45deg);
  }

  .sp_logo {
    position: relative;
    text-align: center;
    height: 85px;
    border-bottom: solid 1px #9fa2a3;
  }
  .sp_logo .sp_logo_inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    min-width: 400px;
  }

  .funclub {
    background: #00bd36;
  }
  nav.glmenu_sp ul.funclub li {
    border-bottom: 1px solid #fff;
  }
  nav.glmenu_sp ul.funclub li a,
  .funclub p {
    color: #fff;
  }

  .funclub_logo {
    background: #fff;
  }

  .funclub_button {
    text-align: center;
  }
  nav.glmenu_sp ul li.funclub_button a {
    display: inline-block;
    padding: 0;
    width: 30%;
    height: 50px;
    margin-top: 20px;
  }
  nav.glmenu_sp ul li.funclub_button a:first-child {
    margin-right: 20px;
  }
  .funclub_button button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    font-size: 15px;
  }
  .funclub_button p {
    margin: 10px 0;
  }
  button.reg_button {
    background: #ffe139;
    border: none;
    border-radius: 5px;
    color: #ff59af;
  }
  button.login_button {
    background: #01bd36;
    border: none;
    border-radius: 5px;
    color: #fff;
  }
  .menu_sp button.login_button {
    background: #fff;
    color: #01bd36;
  }
  nav.glmenu_sp ul li.funclub_button p a {
    font-size: 14px;
    margin: 0;
    width: auto;
    height: auto;
  }


  .scroll-prevent {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
  }

  .funclub_logo {
    text-align: center;
  }
  nav.glmenu_sp ul li.funclub_logo a,
  .funclub_logo a {
    padding-left: 0;
  }
  .funclub_logo a img {
    width: 200px;
  }

  /* funclub menu */

  .funclub_menu {
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
    -webkit-overflow-scrolling: touch;
  }
  .funclub_menu button.login_button {
    background: #fff;
    color: #01bd36;
  }
  .funclub_menu_bg {
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #fff;
    opacity: 0.6;
  }
  .funclub_menu_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    max-width: 100%;
    transform: translate(-50%,-50%);
    background: #fff;
    z-index: 2;
  }

  .funclub_menu_inner ul {
    margin: 0;
    padding: 0 0 100px 0;
  }

  .funclub_menu_inner ul li {
      list-style-type: none;
      padding: 0;
      width: 100%;
      border-bottom: 1px solid #fff;
  }

  .funclub_menu_inner ul li a {
    display: block;
    color: #373737;
    padding: 1em 0 1em 20px;
    text-decoration: none;
    transition: .3s;
    backface-visibility: hidden;
  }
  .funclub_menu_inner ul li a:hover {
    opacity: .8;
  }
  .funclub_menu_inner ul.funclub li a,
  .funclub_menu_inner .funclub p {
    color: #fff;
  }

  .funclub_menu_inner ul li.funclub_button p a {
    margin-right: 0;
    font-size: 14px;
    margin: 0;
    width: auto;
    height: auto;
  }

  .funclub_menu_inner ul li.funclub_logo a{
    padding-left: 0;
  }

  .funclub_menu_inner ul li.funclub_button a {
    display: inline-block;
    padding: 0;
    width: 30%;
    height: 50px;
    margin-top: 20px;
  }
  .funclub_menu_inner ul li.funclub_button a:first-child {
    margin-right: 20px;
  }




  /* footer menu */
  footer {
    margin-top: 20px;
  }

  footer #google_translate_element {
    text-align: right;
    padding: 0 20px;
    margin: 10px 20px;
  }
  footer select.goog-te-combo {
    height: 30px;
  }
  @media (max-width: 768px){
    footer #google_translate_element {
      padding: 0;
    }
  }

  .footer_menu_list {
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }
  li.footer_menu {
    display: inline-block;
    list-style: none;
    text-align: center;
    margin: 10px 20px;
  }
  li.footer_menu a {
    text-decoration: none;
    color: #373737;
    transition: .3s;
    backface-visibility: hidden;
    font-size: 14px;
  }
  li.footer_menu a:hover {
    opacity: .8;
  }

  .prohibitions{
    padding: 0 20px;
    margin-bottom: 0;
    text-align: center;
    font-size: 13px;
  }
  .copyright{
    padding: 0 20px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 13px;
  }

  @media (max-width: 768px){
    .footer_menu_list {
      display: flex;
      width: 100%;
      padding: 0 20px;
      flex-wrap: wrap;
      text-align: left;
    }
    li.footer_menu {
      list-style: none;
      text-align: left;
      flex: 0 1 33.33%;
      margin: 10px 0;
    }
    li.footer_menu {
      flex: 0 1 50%;
    }
  }



/* second page  */
  /* pc menu */
  header.second_page .menu_pc {
    position: static;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding: 10px 20px 10px 0;
  }
  header.second_page .glmenu_pc {
    display: flex;
  }

  header.second_page .header_logo {
    text-align: center;
    flex: 0 1 15%;
    position: relative;
  }
  header.second_page .header_logo img {
    width: 60%;
    max-width: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  header.second_page .header_logo p {
    margin: 0;
    padding-top: 5px;
    font-size: 10px;
  }

  header.second_page .menu {
    flex: 1 1 auto;
  }

  header.second_page .menu > li {
  }

  header.second_page .menu > li a {
    font-size: 1vw;
  }

  header.second_page .menu > li a {
    color: #444;
    transition: .3s;
  }
  header.second_page .menu > li:not(.menu_funclub):hover a {
    color: #c6d0c4;
  }

  header.second_page .menu > li:not(.menu_funclub):before, header.second_page .menu > li:not(.menu_funclub):after{
    background: #00c204;
  }
  header.second_page .menu > li:not(.menu_funclub):hover:before, header.second_page .menu > li:not(.menu_funclub):hover:after {
    width: 0;
    left: auto;
    right: auto;
  }

  header.second_page li.menu_first ul.menu_second {
    background: #00c204;
    left: auto;
    right: -20px;
    width: 100vw;
    top: 40px;
  }
  header.second_page li.menu_first ul.menu_second:before {
    border-bottom: 10px solid #00c204;
    right: 23%;
  }
  header.second_page li.menu_first:hover ul.menu_second {
    top: 50px;
  }
  header.second_page li.menu_first ul.menu_second {
  }

  header.second_page .menu_second li a {
    color: #fff;
  }
  header.second_page .menu_second li a:hover {
    color: #c6d0c4;
  }

  header.second_page button.login_button {
    background: #01bd36;
    color: #fff;
  }
  /* sp */
  header.second_page .menu_sp button.login_button {
    background: #fff;
    color: #01bd36;
  }

  header.second_page .menu_first.funclub_button.menu_funclub button {
    font-size: 1vw;
  }

  @media (max-width: 992px){
    header.second_page .menu_pc {
      padding: 0 0 10px 0;
    }
    header.second_page li.menu_first ul.menu_second {
      right: 0;
    }
  }