@charset "UTF-8";
/*
Theme Name: theme
*/
/* ===============================================
# navarea
=============================================== */
@media screen and (max-width: 767px) {
  #navArea nav {
    align-items: center;
    background-color: #1A4899;
    bottom: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    left: -100%;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transition: 0.5s;
    width: 100%;
    z-index: 300;
  }
  #navArea nav .nav {
    display: block;
    margin: 0 auto;
  }
  #navArea nav .nav li a {
    display: block;
    font-size: 16px;
    padding: 20px;
  }
  #navArea.open nav {
    left: 0;
  }
  #navArea.open .toggle_btn span {
    background-color: #fff;
  }
  #navArea.open .toggle_btn span:nth-child(1) {
    animation: unset;
    top: 5px;
    transform: translate(0, 10px) rotate(-45deg);
  }
  #navArea.open .toggle_btn span:nth-child(2) {
    animation: unset;
    opacity: 0;
  }
  #navArea.open .toggle_btn span:nth-child(3) {
    animation: unset;
    top: 25px;
    transform: translate(0, -10px) rotate(45deg);
    width: 32px;
  }
  .toggle_btn {
    cursor: pointer;
    display: block;
    height: 24px;
    position: fixed;
    right: 15px;
    top: 8px;
    transform: translate(0, 0);
    transition: all 0.5s;
    width: 32px;
    z-index: 10000;
  }
  .toggle_btn span {
    background-color: #fff;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: all 0.5s;
    width: 32px;
  }
  .toggle_btn span:nth-child(1) {
    top: 5px;
    width: 32px;
  }
  .toggle_btn span:nth-child(2) {
    top: 12px;
    width: 32px;
  }
  .toggle_btn span:nth-child(3) {
    top: 19px;
    width: 23px;
  }
  .error404 .error-404 {
    letter-spacing: 0.05em;
    line-height: 2;
    margin: 100px auto;
    padding: 0 20px;
  }
  .error404 .error-404 h1 {
    border-bottom: 1px dotted #000;
    font-size: 20px;
    margin: 0 0 12px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  #navArea nav {
    align-items: center;
    background-color: #1A4899;
    color: #fff;
    bottom: 0;
    display: flex;
    left: -100%;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transition: 0.5s;
    width: 100%;
    z-index: 300;
  }
  #navArea nav .nav {
    display: block;
    margin: 0 auto;
  }
  #navArea nav .nav li a {
    display: block;
    font-size: 20px;
    padding: 40px;
  }
  #navArea.open nav {
    left: 0;
  }
  #navArea.open .toggle_btn span {
    background-color: #fff;
  }
  #navArea.open .toggle_btn span:nth-child(1) {
    animation: unset;
    top: 5px;
    transform: translate(0, 10px) rotate(-45deg);
  }
  #navArea.open .toggle_btn span:nth-child(2) {
    animation: unset;
    opacity: 0;
  }
  #navArea.open .toggle_btn span:nth-child(3) {
    animation: unset;
    top: 25px;
    transform: translate(0, -10px) rotate(45deg);
    width: 32px;
  }
  .toggle_btn {
    cursor: pointer;
    display: block;
    display: none;
    height: 30px;
    position: fixed;
    right: 32px;
    text-align: center;
    top: 18px;
    transform: translate(0, 0);
    transition: all 0.5s;
    width: 32px;
    z-index: 10000;
  }
  .toggle_btn span {
    background-color: #fff;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: all 0.5s;
    width: 32px;
  }
  .toggle_btn span:nth-child(1) {
    left: 0;
    top: 5px;
    width: 32px;
  }
  .toggle_btn span:nth-child(2) {
    left: 0;
    top: 12px;
    width: 32px;
  }
  .toggle_btn span:nth-child(3) {
    left: 0;
    top: 19px;
    width: 23px;
  }
  .error404 .error-404 {
    letter-spacing: 0.05em;
    line-height: 2;
    margin: 10vw auto;
    width: 75vw;
  }
  .error404 .error-404 h1 {
    border-bottom: 1px dotted #000;
    font-size: 1.25vw;
    font-size: clamp(10px, 1.25vw, 24px);
    margin: 0 0 1.2vw;
    padding-bottom: 1vw;
  }
}
/* ===============================================
# mask
=============================================== */
#mask {
  display: none;
}

.open #mask {
  background: #000;
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.8;
  position: fixed;
  top: 0;
  transition: all 0.5s;
  width: 100%;
  z-index: 111;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ===============================================
# animation
=============================================== */
.ani.anit {
  opacity: 0 !important;
  transform: translateY(30px);
  transition: all 1s 0s ease;
}

.ani.anit.active {
  opacity: 1 !important;
  transform: translateY(0);
}

.ani.anir {
  opacity: 0 !important;
  transform: translateX(-30px);
  transition: all 1s 0s ease;
}

.ani.anir.active {
  opacity: 1 !important;
  transform: translateX(0);
}

.ani.anil {
  opacity: 0 !important;
  transform: translateX(30px);
  transition: all 1s 0s ease;
}

.ani.anil.active {
  opacity: 1 !important;
  transform: translateX(0);
}

.animation02 {
  overflow: hidden;
  position: relative;
}

.animation02 img {
  display: block;
  opacity: 0;
  position: relative;
  transition: all 1s 0.3s ease;
  width: 100%;
  z-index: 0;
}

.animation02::before {
  background: rgb(255, 255, 255);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transform: translateX(0);
  transition: all 0.8s 0.4s ease;
  width: 100%;
  z-index: 1;
}

.animation02.active:before {
  transform: translateX(100%);
}

.animation02.active img {
  opacity: 1;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-14px);
  }
}
*:focus {
  outline: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  animation: fadein 3s forwards;
  color: rgb(0, 0, 0);
  font-family: "Noto Sans JP", sans-serif;
}

a {
  transition: all 0.3s ease;
}

a:active,
a:focus,
a:hover,
a:link,
a:visited {
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  header {
    align-items: center;
    display: flex;
    background-color: #00469B;
    height: 40px;
    justify-content: space-between;
    left: 0;
    padding: 0 12px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
  }
  header h1 a {
    display: block;
  }
  header h1 a img {
    height: 22px;
  }
  header ul.nav {
    display: none;
  }
  header ul.nav li a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding-left: 24px;
  }
  footer {
    background-image: url(/files/user/lp/fanclub/images/bg04@2x.jpg?1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 75px 12px 100px;
  }
  footer .group .left {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.35;
    margin: 0 auto 100px;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .group .right .logo {
    margin: 0 auto 20px;
    text-align: center;
    width: 58.6vw;
  }
  footer .group .right .logo img {
    width: 100%;
  }
  footer .group .right .sns {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }
  footer .group .right .sns li a {
    font-size: 22px;
    margin: 0 5px;
  }
  footer .group .right .link {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
  }
  footer .group .right .link li a {
    border-left: 1px solid #fff;
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-left: 5px;
    padding-left: 5px;
  }
  footer .group .right .link li:first-child a {
    border: none;
  }
  footer .group .right .copyright {
    font-size: 12px;
    text-align: center;
  }
  .banner-boshu01 {
    bottom: 12px;
    position: fixed;
    left: 12px;
    width: calc(100% - 24px);
    overflow: hidden;
    z-index: 10;
  }
  .banner-boshu01 a {
    display: block;
    pointer-events: none;
  }
  .banner-boshu01 a img {
    width: 100%;
  }
  .home {
    background-image: url(/files/user/lp/fanclub/images/fv02@2x.jpg);
    background-position: center 40px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-attachment: fixed;
  }
  .home #fv {
    margin: 60px 0 0 0;
    color: #fff;
    width: 100%;
  }
  .home #fv .catch {
    margin: 0 0 0 auto;
    padding: 0 15px 330px;
    width: 69.3vw;
  }
  .home #fv .catch img {
    width: 100%;
  }
  .home #fv .mikawarium {
    background-color: #00469B;
    padding: 70px 0 55px;
    text-align: center;
  }
  .home #fv .mikawarium .image {
    margin: auto;
    width: 76vw;
  }
  .home #fv .mikawarium .image img {
    width: 100%;
  }
  .home #fv .mikawarium .line {
    display: none;
  }
  .home #fv .group {
    background-color: #00469B;
    width: 100%;
  }
  .home #fv .group .left {
    padding: 0 0 155px;
    position: relative;
  }
  .home #fv .group .left .desc {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8571428571;
    text-align: center;
  }
  .home #fv .group .joinus {
    color: rgba(255, 255, 255, 0.5);
    font-family: "bebas-neue-pro", sans-serif;
    font-weight: bold;
  }
  .home #fv .group .joinus .sec1 {
    width: 100%;
    display: flex;
    overflow: hidden;
  }
  .home #fv .group .joinus .sec1__title--first,
  .home #fv .group .joinus .sec1__title--second {
    flex-shrink: 0;
    width: auto;
    height: auto;
    display: inline-block;
    text-wrap: nowrap;
    white-space: nowrap;
    font-size: 40px;
    text-box: trim-both cap alphabetic;
    line-height: 1;
  }
  .home #fv .group .joinus .sec1__title--first {
    animation: anim--first 8s infinite linear 0.1s both;
  }
  .home #fv .group .joinus .sec1__title--second {
    animation: anim--second 8s infinite linear 0.1s both;
  }
  @keyframes anim--first {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes anim--second {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .home #about {
    background-color: #00469B;
    color: #fff;
    padding: 60px 26px 110px;
    text-align: center;
  }
  .home #about .header {
    padding-bottom: 40px;
  }
  .home #about .header h2 {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 18px;
  }
  .home #about .header h3 img {
    width: 100%;
  }
  .home #about .desc {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8571428571;
  }
  .home #about- {
    display: flex;
    overflow: hidden;
    padding-top: 40px;
  }
  .home #about- .left {
    position: relative;
    width: calc(50% - 281px);
  }
  .home #about- .left .image01 {
    position: absolute;
    left: 0;
    top: 40px;
    z-index: 3;
  }
  .home #about- .left .image02 {
    position: absolute;
    left: -280px;
    top: 310px;
    z-index: 2;
  }
  .home #about- .center {
    padding: 140px 0 190px;
    position: relative;
    text-align: center;
    width: 562px;
    z-index: 5;
  }
  .home #about- .center .header {
    padding-bottom: 50px;
  }
  .home #about- .center .header h2 {
    font-size: 24px;
    font-weight: bold;
  }
  .home #about- .center .header h3 {
    color: #1A4899;
    font-size: 80px;
    font-weight: bold;
  }
  .home #about- .center .desc {
    font-size: 16px;
    font-weight: bold;
    line-height: 2.25;
  }
  .home #about- .right {
    position: relative;
    width: calc(50% - 281px);
  }
  .home #about- .right .image03 {
    position: absolute;
    right: -76px;
    top: -130px;
    z-index: 5;
  }
  .home #about- .right .image04 {
    position: absolute;
    right: 0;
    top: 270px;
    z-index: 6;
  }
  .home #about- .right .image05 {
    position: absolute;
    right: -65px;
    top: 366px;
    z-index: 5;
  }
  .home .early {
    background-color: #fff;
    padding: 30px 12px 50px 0;
  }
  .home .early a {
    pointer-events: none;
  }
  .home .early img {
    width: 100%;
  }
  .home .wrap01 {
    background-color: #fff;
    background-image: url(/files/user/lp/fanclub/images/bg08@2x.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
    position: relative;
  }
  .home .wrap01 #campaign {
    position: relative;
    z-index: 2;
  }
  .home .wrap01 #campaign > .header {
    color: #fff;
    padding: 80px 0 52px;
    text-align: center;
  }
  .home .wrap01 #campaign > .header h2 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 64px;
    font-weight: 600;
    padding-bottom: 10px;
  }
  .home .wrap01 #campaign > .header h3 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.02em;
  }
  .home .wrap01 #campaign > .group {
    padding: 0 12px;
  }
  .home .wrap01 #campaign > .group .block {
    background-color: #fff;
    border-radius: 10px;
    margin: 0 auto 20px;
    width: 100%;
  }
  .home .wrap01 #campaign > .group .block .header {
    align-items: center;
    display: flex;
    padding: 18px 12px;
  }
  .home .wrap01 #campaign > .group .block .header .num {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #000;
    border-radius: 30px;
    display: flex;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 22px;
    font-weight: 600;
    height: 30px;
    justify-content: center;
    margin-right: 8px;
    width: 54px;
  }
  .home .wrap01 #campaign > .group .block .header h4 {
    font-size: 24px;
    font-weight: bold;
  }
  .home .wrap01 #campaign > .group .block .icon {
    border-bottom: 1px solid #000;
    text-align: center;
    padding: 0 0 18px;
  }
  .home .wrap01 #campaign > .group .block .list {
    padding: 22px 12px;
  }
  .home .wrap01 #campaign > .group .block .list li {
    display: flex;
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 8px;
  }
  .home .wrap01 #campaign > .group .block .list li::before {
    content: "●";
    color: #FFE100;
    font-size: 12px;
    margin: 3px 12px 0 0;
  }
  .home .wrap01 #campaign > .group .block .link a {
    background-image: url(/files/user/lp/fanclub/images/arrow-left01.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 15px;
    color: #1A4899;
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin: 0 26px 16px auto;
    padding-right: 26px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .home .wrap01 #event {
    padding: 0 0 75px 26px;
    color: #fff;
  }
  .home .wrap01 #event .block {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
  }
  .home .wrap01 #event .block .txt {
    order: 1;
    width: 100%;
  }
  .home .wrap01 #event .block .txt .header {
    align-items: center;
    display: flex;
    padding-bottom: 15px;
  }
  .home .wrap01 #event .block .txt .header .num {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #000;
    border-radius: 30px;
    color: #000;
    display: flex;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 22px;
    font-weight: 600;
    height: 30px;
    justify-content: center;
    margin-right: 8px;
    width: 54px;
  }
  .home .wrap01 #event .block .txt .header h4 {
    font-size: 24px;
    font-weight: bold;
  }
  .home .wrap01 #event .block .txt .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 36px;
  }
  .home .wrap01 #event .block .image {
    order: 2;
    width: 100%;
  }
  .home .wrap01 #event .block .image img {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
  }
  .home .wrap01 #passport {
    color: #fff;
    padding: 0 26px 0 0;
  }
  .home .wrap01 #passport .block {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
  }
  .home .wrap01 #passport .block .txt {
    order: 1;
    padding-left: 12px;
    width: 100%;
  }
  .home .wrap01 #passport .block .txt .header {
    align-items: center;
    display: flex;
    padding-bottom: 15px;
  }
  .home .wrap01 #passport .block .txt .header .num {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #000;
    border-radius: 30px;
    color: #000;
    display: flex;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 22px;
    font-weight: 600;
    height: 30px;
    justify-content: center;
    margin-right: 8px;
    width: 54px;
  }
  .home .wrap01 #passport .block .txt .header h4 {
    font-size: 24px;
    font-weight: bold;
  }
  .home .wrap01 #passport .block .txt .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 36px;
  }
  .home .wrap01 #passport .block .image {
    order: 2;
    width: 100%;
  }
  .home .wrap01 #passport .block .image img {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
  }
  .home .wrap01 #point {
    background-color: #fff;
    padding-bottom: 105px;
  }
  .home .wrap01 #point > .header {
    color: #fff;
    padding-bottom: 70px;
    text-align: center;
  }
  .home .wrap01 #point > .header h2 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 64px;
    font-weight: 600;
    padding-bottom: 10px;
  }
  .home .wrap01 #point > .header h3 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.02em;
  }
  .home #plan {
    background-color: #fff;
    padding: 70px 12px 90px;
  }
  .home #plan .left .header {
    padding-bottom: 60px;
    text-align: center;
  }
  .home #plan .left .header h2 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 64px;
    font-weight: 600;
    padding-bottom: 10px;
  }
  .home #plan .left .header h3 {
    color: #1A4899;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.02em;
  }
  .home #plan .right .group {
    padding-bottom: 12px;
  }
  .home #plan .right .group .block {
    border: 2px solid #707070;
    border-radius: 6px;
    margin-bottom: 20px;
    padding: 24px 16px;
  }
  .home #plan .right .group .block .header {
    padding-bottom: 20px;
  }
  .home #plan .right .group .block .header .catch {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #000;
    border-radius: 22px;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    height: 32px;
    justify-content: center;
    margin-bottom: 6px;
    padding: 0 26px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .home #plan .right .group .block .header h4 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .home #plan .right .group .block .header .notice {
    font-size: 14px;
    font-weight: bold;
  }
  .home #plan .right .group .block .price {
    padding: 0 0 24px;
  }
  .home #plan .right .group .block .price dl {
    align-items: center;
    display: flex;
    margin-bottom: 10px;
  }
  .home #plan .right .group .block .price dl dt {
    align-items: center;
    background-color: #1F6DB7;
    border-radius: 2px;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    height: 22px;
    justify-content: center;
    padding: 0 5px;
    margin-right: 18px;
    width: 60px;
  }
  .home #plan .right .group .block .price dl dd {
    font-size: 18px;
    font-weight: bold;
  }
  .home #plan .right .group .block .list li {
    margin-bottom: 8px;
    width: 100%;
  }
  .home #plan .right .group .block .list li img {
    width: 100%;
  }
  .home #plan .right .group .block .desc {
    font-size: 9px;
    line-height: 1.5;
    padding-top: 7px;
  }
  .home #plan .right .links {
    width: 100%;
  }
  .home #plan .right .links .link {
    padding-bottom: 16px;
  }
  .home #plan .right .links .link a {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    position: relative;
  }
  .home #plan .right .links .link a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    color: #fff;
    display: block;
    height: 11px;
    position: absolute;
    right: 17px;
    top: 29px;
    width: 10px;
  }
  .home #plan .right .links .link.link01 {
    width: 100%;
  }
  .home #plan .right .links .link.link01 a {
    background-color: #1A4899;
    border: 1px solid #1A4899;
    width: 100%;
  }
  .home #plan .right .links .link.link01 a:hover {
    background-color: rgba(26, 72, 153, 0.2);
    color: #1A4899;
  }
  .home #plan .right .links .link.link02 {
    width: 100%;
  }
  .home #plan .right .links .link.link02 a {
    background-color: #FFE100;
    border: 1px solid #FFE100;
    color: #000;
    pointer-events: none;
    width: 100%;
  }
  .home #plan .right .links .link.link02 a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right03@2x.png);
    display: none;
  }
  .home #plan .right .links .link.link02 a:hover {
    background-color: rgba(255, 225, 0, 0.2);
  }
  .home #membership {
    background-color: #fff;
    padding: 65px 12px 80px;
    position: relative;
  }
  .home #membership:before {
    background-color: #F7F7F7;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    top: 0;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
  }
  .home #membership .group {
    margin: 0 auto;
  }
  .home #membership .group .left {
    padding-bottom: 32px;
  }
  .home #membership .group .left img {
    width: 100%;
  }
  .home #membership .group .right h4 {
    color: #1A4899;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.25;
    padding-bottom: 12px;
  }
  .home #membership .group .right .desc {
    font-size: 16px;
    line-height: 1.625;
    padding-bottom: 35px;
  }
  .home #membership .group .right .link {
    padding-bottom: 40px;
  }
  .home #membership .group .right .link a {
    align-items: center;
    background-color: #1A4899;
    border: 1px solid #1A4899;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    position: relative;
    width: 100%;
  }
  .home #membership .group .right .link a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    color: #fff;
    display: block;
    height: 11px;
    position: absolute;
    right: 17px;
    top: 29px;
    width: 10px;
  }
  .home #membership .group .right .link a:hover {
    background-color: rgba(26, 72, 153, 0.2);
    color: #1A4899;
  }
  .home #faq {
    background-color: #fff;
    padding: 0 12px 80px;
  }
  .home #faq .left {
    padding-bottom: 30px;
  }
  .home #faq .left h4 {
    color: #1A4899;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 12px;
  }
  .home #faq .left .desc {
    font-size: 16px;
    line-height: 1.625;
  }
  .home #faq .right .link {
    width: 100%;
  }
  .home #faq .right .link a {
    align-items: center;
    background-color: #1A4899;
    border: 1px solid #1A4899;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    position: relative;
    width: 100%;
  }
  .home #faq .right .link a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    color: #fff;
    display: block;
    height: 11px;
    position: absolute;
    right: 17px;
    top: 29px;
    width: 10px;
  }
  .home #faq .right .link a:hover {
    background-color: rgba(26, 72, 153, 0.2);
    color: #1A4899;
  }
  .plan {
    background-color: #F4F8FC;
  }
  .plan #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg03@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 88px;
    margin-top: 42px;
    padding-left: 12px;
  }
  .plan #pageheader .inner h2 {
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px;
  }
  .plan #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
  }
  .plan #point {
    padding: 45px 12px 0;
  }
  .plan #point > .desc {
    color: #004B9E;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 55px;
  }
  .plan #point > .group {
    margin: 0 auto 60px;
  }
  .plan #point > .group > .block {
    margin: 0 auto 50px;
    width: 100%;
  }
  .plan #point > .group > .block .num {
    align-items: center;
    background-color: #004B9E;
    border-radius: 78px;
    color: #fff;
    display: flex;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 20px;
    height: 78px;
    justify-content: center;
    margin: 0 auto 23px;
    width: 78px;
  }
  .plan #point > .group > .block .txt h4 {
    color: #004B9E;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 8px;
  }
  .plan #point > .group > .block .txt > .desc {
    font-size: 12px;
    line-height: 1.6666666667;
  }
  .plan #list {
    margin: 0 auto;
    padding: 0 12px 120px;
  }
  .plan #list .tab-group {
    margin-bottom: 64px;
  }
  .plan #list .tab-group .tab-area {
    margin-bottom: 25px;
  }
  .plan #list .tab-group .tab-area .tab {
    align-items: center;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    height: 40px;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 4px;
    padding-left: 14px;
    width: 100%;
  }
  .plan #list .tab-group .tab-area .tab span {
    display: block;
  }
  .plan #list .tab-group .tab-area .tab span.circle {
    display: block;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    border: 1px solid #707070;
    background-color: #fff;
    margin-right: 7px;
  }
  .plan #list .tab-group .tab-area .tab.active {
    border: 2px solid #126DB7;
  }
  .plan #list .tab-group .tab-area .tab.active span.circle {
    background-color: #ffff00;
  }
  .plan #list .tab-group .content-area .content {
    display: none;
  }
  .plan #list .tab-group .content-area .content.show {
    display: block;
  }
  .plan #list .tab-group .content-area .content.show .fukidashi {
    position: relative;
    display: inline-block;
    margin-bottom: 22px;
    padding: 10px 18px;
    border-radius: 6px;
    background-color: #004b9e;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    width: 100%;
  }
  .plan #list .tab-group .content-area .content.show .fukidashi:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 18px 18px 0 0;
    border-color: #004b9e transparent transparent;
    translate: -50% 100%;
  }
  .plan #list .tab-group .content-area .content.show .block {
    background-color: #fff;
    background-color: #fff;
    border: 2px solid #707070;
    border-radius: 6px;
    padding: 24px 16px 55px;
  }
  .plan #list .tab-group .content-area .content.show .block .header {
    align-items: center;
    padding: 0 0 20px;
  }
  .plan #list .tab-group .content-area .content.show .block .header .catch {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #000;
    border-radius: 32px;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    height: 32px;
    justify-content: center;
    margin-bottom: 11px;
    padding: 0 26px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .plan #list .tab-group .content-area .content.show .block .header h5 {
    font-size: 32px;
    font-weight: bold;
    text-box: trim-both cap alphabetic;
  }
  .plan #list .tab-group .content-area .content.show .block .price {
    padding: 0 0 35px;
  }
  .plan #list .tab-group .content-area .content.show .block .price dl {
    align-items: baseline;
    display: flex;
    margin-bottom: 12px;
  }
  .plan #list .tab-group .content-area .content.show .block .price dl dt {
    align-items: center;
    background-color: #1F6DB7;
    border-radius: 5px;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 26px;
    justify-content: center;
    padding: 0 1px;
    margin-right: 13px;
    width: 66px;
  }
  .plan #list .tab-group .content-area .content.show .block .price dl dd {
    align-items: baseline;
    display: flex;
    font-size: 42px;
    font-weight: bold;
    text-box: trim-both cap alphabetic;
  }
  .plan #list .tab-group .content-area .content.show .block .price dl dd span {
    font-size: 18px;
    font-weight: 400;
  }
  .plan #list .tab-group .content-area .content.show .block .plan01 {
    padding-bottom: 40px;
  }
  .plan #list .tab-group .content-area .content.show .block .plan01 li {
    margin-bottom: 12px;
    width: 100%;
  }
  .plan #list .tab-group .content-area .content.show .block .plan01 li img {
    width: 100%;
  }
  .plan #list .tab-group .content-area .content.show .block h6 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 25px;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 {
    padding-bottom: 35px;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 .header {
    align-items: center;
    display: flex;
    margin-bottom: 7px;
    padding: 0;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 .header .num {
    align-items: center;
    background-color: #004B9E;
    border-radius: 25px;
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    height: 25px;
    justify-content: center;
    margin-right: 5px;
    text-box: trim-both cap alphabetic;
    width: 25px;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 .header .item {
    color: #004B9E;
    font-size: 20px;
    font-weight: bold;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 13px;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 .image {
    width: 100%;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 .image img {
    width: 100%;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01.last {
    padding-bottom: 0;
  }
  .plan #list .tab-group .content-area .content.show .block.block-junior .plan01 {
    padding-bottom: 10px;
  }
  .plan #list .tab-group .content-area .content.show .block.block-mailmagazine {
    padding-bottom: 0;
  }
  .plan #list .tab-group .content-area .content.show .block.block-mailmagazine .header {
    padding-bottom: 30px;
  }
  .plan #list .tab-group .content-area .content.show .block.block-mailmagazine .price {
    padding-bottom: 30px;
  }
  .plan #list .tab-group .content-area .content.show .block.block-mailmagazine .price .kaihi dd span {
    font-size: 42px;
    font-weight: bold;
  }
  .plan #list .link {
    padding-bottom: 50px;
  }
  .plan #list .link a {
    align-items: center;
    background-color: #1A4899;
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: calc(100% - 14px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    border: 1px solid #1A4899;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }
  .plan #list .link a:hover {
    background-color: rgba(26, 72, 153, 0.2);
    color: #1A4899;
  }
  .plan #list .early {
    text-align: center;
  }
  .plan #list .early a {
    pointer-events: none;
  }
  .benefits #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg03@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 88px;
    margin-top: 42px;
    padding-left: 12px;
  }
  .benefits #pageheader .inner h2 {
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px;
  }
  .benefits #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
  }
  .benefits #tokuten {
    margin: 50px auto 20px;
    padding: 0 12px;
  }
  .benefits #tokuten h4 {
    align-items: center;
    background-color: #004B9E;
    height: 36px;
    border-radius: 36px;
    color: #fff;
    display: flex;
    font-size: 24px;
    font-weight: bold;
    padding: 0 18px;
    margin-bottom: 22px;
  }
  .benefits #tokuten > .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 55px;
  }
  .benefits #tokuten .block {
    padding-bottom: 30px;
  }
  .benefits #tokuten .block h5 {
    color: #004B9E;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 8px;
  }
  .benefits #tokuten .block h6 {
    color: #004B9E;
    font-size: 12px;
    font-weight: bold;
    padding-bottom: 5px;
  }
  .benefits #tokuten .block .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 30px;
  }
  .benefits #tokuten .block .image {
    padding-bottom: 30px;
  }
  .benefits #tokuten .block .image img {
    width: 100%;
  }
  .benefits #royalty {
    background-color: #F4F8FC;
    padding: 80px 15px 30px;
  }
  .benefits #royalty > .inner h4 {
    align-items: center;
    background-color: #004B9E;
    height: 36px;
    border-radius: 36px;
    color: #fff;
    display: flex;
    font-size: 24px;
    font-weight: bold;
    padding: 0 18px;
    margin-bottom: 22px;
  }
  .benefits #royalty > .inner > .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 55px;
  }
  .benefits #royalty > .inner > .desc span {
    color: #cc0000;
  }
  .benefits #royalty > .inner > .block {
    padding-bottom: 40px;
  }
  .benefits #royalty > .inner > .block h5 {
    color: #004B9E;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 45px;
  }
  .benefits #royalty > .inner > .block .flow {
    padding-bottom: 40px;
    width: 100%;
  }
  .benefits #royalty > .inner > .block .flow img {
    width: 100%;
  }
  .benefits #royalty > .inner > .block .step {
    padding-bottom: 36px;
    width: 100%;
  }
  .benefits #royalty > .inner > .block .step img {
    width: 100%;
  }
  .benefits #royalty > .inner > .block h6 {
    color: #1A4899;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.6666666667;
    padding-bottom: 5px;
  }
  .benefits #royalty > .inner > .block .desc {
    font-size: 12px;
    line-height: 1.6666666667;
  }
  .benefits #royalty > .inner > .block .image {
    padding-bottom: 36px;
  }
  .benefits #royalty > .inner > .block .image img {
    width: 100%;
  }
  .benefits #royalty > .inner > .block.block02 h5 {
    padding-bottom: 10px;
  }
  .benefits #royalty > .inner > .block.block03 {
    padding-bottom: 60px;
  }
  .benefits #royalty > .inner > .block.block03 h5 {
    padding-bottom: 26px;
  }
  .benefits #royalty > .inner > .block.block03 .image {
    padding-bottom: 22px;
  }
  .benefits #royalty > .inner > .block.block04 h5 {
    padding-bottom: 8px;
  }
  .benefits #event {
    padding: 80px 12px 0;
  }
  .benefits #event h4 {
    align-items: center;
    background-color: #004B9E;
    height: 36px;
    border-radius: 36px;
    color: #fff;
    display: flex;
    font-size: 24px;
    font-weight: bold;
    padding: 0 18px;
    margin-bottom: 20px;
  }
  .benefits #event > .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 60px;
  }
  .benefits #event .early {
    padding-bottom: 60px;
    text-align: center;
    width: 100%;
  }
  .benefits #event .early a {
    display: block;
  }
  .benefits #event .early img {
    width: 100%;
  }
  .benefits #event > .block {
    padding-bottom: 60px;
  }
  .benefits #event > .block .header {
    color: #004B9E;
  }
  .benefits #event > .block .header h6 {
    align-items: center;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 7px;
  }
  .benefits #event > .block .header h6 span {
    align-items: center;
    background-color: #A99148;
    border-radius: 22px;
    color: #fff;
    display: flex;
    font-weight: 400;
    height: 22px;
    margin-right: 5px;
    padding: 0 8px;
  }
  .benefits #event > .block .header h5 {
    color: #004B9E;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 18px;
  }
  .benefits #event > .block .inner .image {
    padding-bottom: 19px;
    width: 100%;
  }
  .benefits #event > .block .inner .image img {
    width: 100%;
  }
  .benefits #event > .block .inner .txt {
    font-size: 12px;
    line-height: 1.6666666667;
  }
  .benefits #event > .block .desc {
    font-size: 12px;
    line-height: 1.6666666667;
  }
  .benefits #event .desc01 {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 60px;
  }
  .benefits #passport {
    background-color: #F4F8FC;
    padding: 100px 12px 45px;
  }
  .benefits #passport .desc {
    font-size: 12px;
    line-height: 1.6666666667;
  }
  .benefits #passport > .inner h4 {
    align-items: center;
    background-color: #004B9E;
    height: 36px;
    border-radius: 36px;
    color: #fff;
    display: flex;
    font-size: 24px;
    font-weight: bold;
    padding: 0 18px;
    margin-bottom: 20px;
  }
  .benefits #passport > .inner > .block h5 {
    color: #004B9E;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 10px;
  }
  .benefits #passport > .inner > .block .image {
    padding-bottom: 30px;
    width: 100%;
  }
  .benefits #passport > .inner > .block .image img {
    width: 100%;
  }
  .benefits #passport > .inner > .block .desc {
    padding-bottom: 30px;
  }
  .benefits #passport > .inner > .block .desc span {
    color: #cc0000;
  }
  .faq {
    background-color: #fff;
  }
  .faq #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg03@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 88px;
    margin-top: 42px;
    padding-left: 12px;
  }
  .faq #pageheader .inner h2 {
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px;
  }
  .faq #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
  }
  .faq #pageheader {
    margin-bottom: 40px;
  }
  .faq .group01 {
    background-color: #F4F8FC;
    border-radius: 6px;
    margin: 0 12px 80px;
    width: calc(100% - 24px);
  }
  .faq .group01 h4 {
    align-items: center;
    background-color: #1A4899;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 53px;
    padding: 0 14px;
    width: 100%;
  }
  .faq .group01 .inner {
    padding: 22px 14px 0;
  }
  .faq .group01 .inner .block {
    padding-bottom: 36px;
  }
  .faq .group01 .inner .block h5 {
    color: #1A4899;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 14px;
  }
  .faq .group01 .inner .block .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 16px;
  }
  .faq .group01 .inner .block ul {
    position: relative;
  }
  .faq .group01 .inner .block ul li {
    margin-bottom: 10px;
    width: 100%;
  }
  .faq .group01 .inner .block ul li a {
    align-items: center;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 15px;
    display: flex;
    font-size: 16px;
    height: 30px;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .faq .group01 .inner .block ul li a:after {
    content: "＞";
    display: block;
    position: absolute;
    right: 7px;
    top: 5px;
  }
  .faq .group02 {
    background-color: #F4F8FC;
    padding-top: 80px;
  }
  .faq .group02 .header {
    margin: 0 auto;
    padding: 0 12px 50px;
    width: 100%;
  }
  .faq .group02 .header h4 {
    align-items: center;
    background-color: #1A4899;
    border-radius: 36px;
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    height: 36px;
    justify-content: center;
    margin-bottom: 32px;
    width: 100%;
  }
  .faq .group02 .header ul li {
    margin-bottom: 10px;
    width: 100%;
  }
  .faq .group02 .header ul li a {
    align-items: center;
    background-color: #fff;
    background-image: url(/files/user/lp/fanclub/images/arrow-down01@2x.png);
    background-position: calc(100% - 12px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    border: 1px solid #707070;
    border-radius: 15px;
    display: flex;
    font-size: 16px;
    height: 30px;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .faq .group02 .header ul li a:hover {
    background-color: #1A4899;
    background-image: url(/files/user/lp/fanclub/images/arrow-down02@2x.png);
    color: #fff;
  }
  .faq .group02 .group03 {
    margin: 0 auto;
    padding: 0 12px 60px;
    width: 100%;
  }
  .faq .group02 .group03 h5 {
    align-items: center;
    display: flex;
    font-weight: bold;
    font-size: 20px;
    color: #1a4899;
    padding-bottom: 16px;
  }
  .faq .group02 .group03 h5 span {
    font-size: 12px;
    margin-right: 3px;
  }
  .faq .group02 .group03 .block {
    background-color: #fff;
    margin-bottom: 10px;
  }
  .faq .group02 .group03 .block .question {
    background-image: url(/files/user/lp/fanclub/images/arrow-down01@2x.png);
    background-position: calc(100% - 12px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    cursor: pointer;
    display: flex;
    padding: 14px 36px 14px 14px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    color: #1a4899;
    position: relative;
  }
  .faq .group02 .group03 .block .question.open {
    background-image: url(/files/user/lp/fanclub/images/arrow-up01@2x.png);
  }
  .faq .group02 .group03 .block .question:before {
    content: "Q. ";
    width: 30px;
  }
  .faq .group02 .group03 .block .answer {
    display: none;
    font-size: 12px;
    line-height: 1.6666666667;
    padding: 10px 14px 18px;
  }
  .faq .group02 .group03 .block .answer > a {
    text-decoration: underline;
  }
  .faq .group02 .group03 .block .answer .link {
    margin-top: 10px;
  }
  .faq .group02 .group03 .block .answer .link a {
    align-items: center;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 30px;
    display: flex;
    font-size: 16px;
    height: 30px;
    justify-content: center;
    padding: 0 26px;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .faq .group02 .group03 .block .answer .link a:after {
    content: "＞";
    display: block;
    position: absolute;
    right: 7px;
    top: 2px;
  }
  .howto {
    background-color: #F4F8FC;
  }
  .howto #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg03@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 88px;
    margin-top: 42px;
    padding-left: 12px;
  }
  .howto #pageheader .inner h2 {
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px;
  }
  .howto #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
  }
  .howto #pageheader {
    margin-bottom: 45px;
  }
  .howto > .inner {
    padding: 0 12px;
  }
  .howto > .inner > .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 18px;
  }
  .howto > .inner > .about {
    align-items: center;
    border: 1px solid #004B9E;
    border-radius: 48px;
    color: #004B9E;
    display: flex;
    font-size: 18px;
    font-weight: bold;
    height: 48px;
    justify-content: center;
    margin-bottom: 100px;
    padding: 0 32px;
    width: 100%;
  }
  .howto > .inner > h4 {
    color: #004B9E;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 30px;
  }
  .howto > .inner .junbi {
    display: none;
    border-radius: 10px;
    margin-bottom: 110px;
    width: 100%;
  }
  .howto > .inner .junbi .left {
    align-items: center;
    background-color: #004B9E;
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: calc(100% - 14px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #fff;
    display: flex;
    height: 52px;
    padding: 0 0 0 12px;
    width: 100%;
  }
  .howto > .inner .junbi .left .mark {
    display: none;
  }
  .howto > .inner .junbi .left h5 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4375;
  }
  .howto > .inner .junbi .left h5 br {
    display: none;
  }
  .howto > .inner .junbi .right {
    font-size: 12px;
    line-height: 1.6666666667;
    background-color: #fff;
    height: 100%;
    padding: 14px;
    width: 100%;
  }
  .howto > .inner .flow {
    position: relative;
  }
  .howto > .inner .flow .block {
    margin-bottom: 38px;
    position: relative;
    width: 100%;
  }
  .howto > .inner .flow .block:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right02@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 19px;
    margin: auto auto 76px;
    position: relative;
    bottom: -30px;
    transform: rotate(90deg);
    width: 16px;
  }
  .howto > .inner .flow .block .header {
    background-color: #fff;
    height: 103px;
    padding: 0 20px;
  }
  .howto > .inner .flow .block .header .num {
    color: #004B9E;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 64px;
    font-weight: bold;
    padding: 0 0 10px;
    transform: translateY(-26px);
  }
  .howto > .inner .flow .block .header h6 {
    font-size: 20px;
    font-weight: bold;
    transform: translateY(-26px);
  }
  .howto > .inner .flow .block .image {
    text-align: center;
  }
  .howto > .inner .flow .block .image img {
    width: 100%;
  }
  .howto > .inner .flow .block.block01 .header {
    height: auto;
  }
  .howto > .inner .flow .block.block01 .header .numb {
    padding-bottom: 0;
  }
  .howto > .inner .flow .block.block01 .header .link01 {
    transform: translateY(-30px);
  }
  .howto > .inner .flow .block.block01 .header .link01 a {
    align-items: center;
    background-color: #1A4899;
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: calc(100% - 12px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    border: 1px solid #1A4899;
    border-radius: 6px;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 38px;
    margin-bottom: 10px;
    justify-content: center;
    width: 100%;
  }
  .howto > .inner .flow .block.block01 .header .link01 a:hover {
    background-color: rgba(26, 72, 153, 0.2);
    color: #1A4899;
  }
  .howto > .inner .flow .block.block01 .header .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    transform: translateY(-30px);
  }
  .howto > .inner .flow .block.block06 {
    margin-bottom: 16px;
  }
  .howto > .inner .flow .block.block06:after {
    display: none;
  }
  .howto > .inner .flow .notice {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 60px;
  }
  .howto > .inner .link {
    text-align: center;
  }
  .howto > .inner .link a {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #FFE100;
    color: #000;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    margin: 0 auto 100px;
    pointer-events: none;
    position: relative;
    width: 100%;
  }
  .howto > .inner .link a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right03@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    color: #fff;
    display: block;
    display: none;
    height: 100%;
    position: absolute;
    right: 17px;
    top: 0;
    width: 10px;
  }
  .howto > .inner .link a:hover {
    background-color: rgba(255, 225, 0, 0.2);
  }
  .sitepolicy {
    background-color: #F4F8FC;
  }
  .sitepolicy #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg03@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 88px;
    margin-top: 42px;
    padding-left: 12px;
  }
  .sitepolicy #pageheader .inner h2 {
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px;
  }
  .sitepolicy #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
  }
  .sitepolicy #pageheader {
    margin-bottom: 50px;
  }
  .sitepolicy > .inner {
    margin: 0;
  }
  .sitepolicy > .inner h4 {
    background-color: #004B9E;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2222222222;
    margin: 0 12px 36px;
    padding: 12px 14px;
  }
  .sitepolicy > .inner h4 span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .sitepolicy > .inner > .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding: 0 12px 45px;
  }
  .sitepolicy > .inner .block {
    padding: 0 12px 15px;
  }
  .sitepolicy > .inner .block h5 {
    border-bottom: 1px solid #004b9e;
    color: #004B9E;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 6px;
  }
  .sitepolicy > .inner .block h6 {
    color: #004B9E;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
  }
  .sitepolicy > .inner .block .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 35px;
  }
  .sitepolicy > .inner .notice {
    font-size: 12px;
    line-height: 1.6666666667;
    margin-top: 55px;
    padding: 0 12px 110px;
  }
  .privacypolicy {
    background-color: #F4F8FC;
  }
  .privacypolicy #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg03@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 88px;
    margin-top: 42px;
    padding-left: 12px;
  }
  .privacypolicy #pageheader .inner h2 {
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px;
  }
  .privacypolicy #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
  }
  .privacypolicy #pageheader {
    margin-bottom: 45px;
  }
  .privacypolicy > .inner {
    margin: 0 12px;
  }
  .privacypolicy > .inner > .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 35px;
  }
  .privacypolicy > .inner .block {
    padding-bottom: 35px;
  }
  .privacypolicy > .inner .block h5 {
    border-bottom: 1px solid #004b9e;
    color: #004B9E;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 6px;
  }
  .privacypolicy > .inner .block h6 {
    color: #004B9E;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
  }
  .privacypolicy > .inner .block .desc {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  header {
    align-items: center;
    display: flex;
    background-color: #00469B;
    height: 60px;
    justify-content: space-between;
    left: 0;
    padding: 0 36px 0 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
  }
  header h1 a {
    display: block;
    padding: 6px 0 0 24px;
  }
  header h1 a img {
    width: 100%;
  }
  header ul.nav {
    display: flex;
  }
  header ul.nav li a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding-left: 24px;
  }
  footer {
    background-image: url(/files/user/lp/fanclub/images/bg05@2x.jpg?1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 70px 0 65px;
  }
  footer .group {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 1110px;
  }
  footer .group .left {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.35;
  }
  footer .group .right .logo {
    margin: auto 0 40px auto;
    width: 210px;
  }
  footer .group .right .logo img {
    width: 100%;
  }
  footer .group .right .sns {
    align-items: start;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
  }
  footer .group .right .sns li a {
    font-size: 24px;
    margin-left: 10px;
  }
  footer .group .right .link {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 7px;
  }
  footer .group .right .link li a {
    border-left: 1px solid #fff;
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-left: 10px;
    padding-left: 10px;
  }
  footer .group .right .link li:first-child a {
    border: none;
  }
  footer .group .right .copyright {
    font-size: 12px;
    text-align: right;
  }
  .banner-boshu01 a {
    top: calc(100vh - 105px);
    pointer-events: none;
    position: fixed;
    left: -18px;
    overflow: hidden;
    z-index: 10;
    display: block;
  }
  .banner-boshu01 a img {
    width: 100%;
  }
  .banner-boshu01 a:hover {
    left: 0;
  }
  .home {
    position: relative;
  }
  .home #fv {
    background-color: #00469B;
    background-image: url(/files/user/lp/fanclub/images/fv01@2x.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    height: 100vh;
    margin: 60px auto 0;
    width: 100%;
  }
  .home #fv .catch {
    right: 70px;
    position: absolute;
    top: 117px;
  }
  .home #fv .mikawarium {
    height: 100vh;
    position: relative;
    width: 100%;
  }
  .home #fv .mikawarium .inner {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
  .home #fv .mikawarium .inner .image {
    position: relative;
    padding: 0 0 70px 70px;
    z-index: 51;
  }
  .home #fv .mikawarium .inner .image img {
    max-width: none;
  }
  .home #fv .mikawarium .inner .line {
    background-color: #fff;
    height: 63px;
    margin: 0 0 0 314px;
    width: 1px;
  }
  .home #fv .group {
    width: 100%;
  }
  .home #fv .group .left {
    background-color: #00469B;
    padding: 0;
    position: relative;
    width: 34%;
  }
  .home #fv .group .left .desc {
    font-size: 16px;
    font-weight: bold;
    line-height: 2.25;
    padding: 0 0 100px 70px;
    width: 463px;
  }
  .home #fv .joinus {
    display: none;
  }
  .home #about {
    background-color: #00469B;
    color: #fff;
    padding: 90px 20px 80px;
    text-align: center;
  }
  .home #about .header {
    padding-bottom: 40px;
  }
  .home #about .header h2 {
    margin: 0 auto 40px;
  }
  .home #about .header h3 {
    font-size: 16px;
    font-weight: bold;
  }
  .home #about .desc {
    font-size: 16px;
    font-weight: bold;
    line-height: 2.25;
  }
  .home .early {
    background-color: #F4F8FC;
    padding: 35px 0;
    text-align: center;
  }
  .home .early a {
    pointer-events: none;
  }
  .home .wrap01 {
    background-image: url(/files/user/lp/fanclub/images/bg01@2x.png?2);
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100%;
    padding-bottom: 120px;
    position: relative;
  }
  .home .wrap01 #campaign {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .home .wrap01 #campaign > .header {
    color: #fff;
    padding: 145px 0 75px;
    text-align: center;
  }
  .home .wrap01 #campaign > .header h2 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 64px;
    font-weight: 600;
    padding-bottom: 10px;
  }
  .home .wrap01 #campaign > .header h3 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.02em;
  }
  .home .wrap01 #campaign > .group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    width: 1200px;
  }
  .home .wrap01 #campaign > .group .block {
    background-color: #fff;
    border-radius: 10px;
    margin: 0 7px 40px;
    width: 360px;
  }
  .home .wrap01 #campaign > .group .block .header {
    align-items: center;
    display: flex;
    padding: 20px 17px 10px;
  }
  .home .wrap01 #campaign > .group .block .header .num {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #000;
    border-radius: 11px;
    display: flex;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 20px;
    font-weight: 600;
    height: 22px;
    justify-content: center;
    margin-right: 8px;
    width: 47px;
  }
  .home .wrap01 #campaign > .group .block .header h4 {
    font-size: 24px;
    font-weight: bold;
  }
  .home .wrap01 #campaign > .group .block .icon {
    border-bottom: 1px solid #000;
  }
  .home .wrap01 #campaign > .group .block .list {
    height: 145px;
    padding: 22px 26px;
  }
  .home .wrap01 #campaign > .group .block .list li {
    display: flex;
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 8px;
    text-align: left;
  }
  .home .wrap01 #campaign > .group .block .list li::before {
    content: "●";
    color: #FFE100;
    font-size: 12px;
    margin: 3px 12px 0 0;
  }
  .home .wrap01 #campaign > .group .block .link a {
    background-image: url(/files/user/lp/fanclub/images/arrow-left01.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 15px;
    color: #1A4899;
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin: 0 26px 16px auto;
    padding-right: 26px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .home .wrap01 #event {
    color: #fff;
  }
  .home .wrap01 #event .block {
    align-items: center;
    display: flex;
    margin: 0 auto 140px;
    overflow: hidden;
    width: 100%;
  }
  .home .wrap01 #event .block .txt {
    order: 1;
    margin-left: calc((100% - 1110px) / 2);
    width: 610px;
  }
  .home .wrap01 #event .block .txt .header {
    align-items: center;
    display: flex;
    margin-bottom: 25px;
  }
  .home .wrap01 #event .block .txt .header .num {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #000;
    border-radius: 15px;
    color: #000;
    display: flex;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 24px;
    font-weight: 600;
    height: 30px;
    justify-content: center;
    margin-right: 17px;
    width: 54px;
  }
  .home .wrap01 #event .block .txt .header h4 {
    font-size: 36px;
    font-weight: bold;
  }
  .home .wrap01 #event .block .txt .desc {
    font-size: 20px;
    line-height: 1.8;
  }
  .home .wrap01 #event .block .image {
    order: 2;
    width: calc(100% - 610px - (100% - 1110px) / 2);
  }
  .home .wrap01 #event .block .image img {
    border-radius: 10px;
    transform: translateX(37px);
    width: calc(100% + 37px);
  }
  .home .wrap01 #passport {
    color: #fff;
  }
  .home .wrap01 #passport .block {
    align-items: center;
    display: flex;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
  }
  .home .wrap01 #passport .block .txt {
    order: 2;
    margin-right: calc((100% - 1110px) / 2);
    padding-left: 40px;
    width: 610px;
  }
  .home .wrap01 #passport .block .txt .header {
    align-items: center;
    display: flex;
    margin-bottom: 25px;
  }
  .home .wrap01 #passport .block .txt .header .num {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #000;
    border-radius: 15px;
    color: #000;
    display: flex;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 24px;
    font-weight: 600;
    height: 30px;
    justify-content: center;
    margin-right: 17px;
    width: 54px;
  }
  .home .wrap01 #passport .block .txt .header h4 {
    font-size: 36px;
    font-weight: bold;
  }
  .home .wrap01 #passport .block .txt .desc {
    font-size: 20px;
    line-height: 1.8;
  }
  .home .wrap01 #passport .block .image {
    order: 1;
    width: calc(100% - 610px - (100% - 1110px) / 2);
  }
  .home .wrap01 #passport .block .image img {
    border-radius: 10px;
    transform: translateX(-10px);
    width: calc(100% + 10px);
  }
  .home .wrap01 #point {
    padding-bottom: 105px;
  }
  .home .wrap01 #point > .header {
    color: #fff;
    padding-bottom: 80px;
    text-align: center;
  }
  .home .wrap01 #point > .header h2 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 64px;
    font-weight: 600;
    padding-bottom: 10px;
  }
  .home .wrap01 #point > .header h3 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.02em;
  }
  .home #plan {
    background-color: #fff;
    padding: 160px 0 200px;
  }
  .home #plan .inner {
    display: flex;
    margin: 0 auto;
    width: 1110px;
  }
  .home #plan .inner .left {
    width: 185px;
  }
  .home #plan .inner .left .header h2 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 64px;
    font-weight: 600;
    padding-bottom: 10px;
  }
  .home #plan .inner .left .header h3 {
    color: #1A4899;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.02em;
  }
  .home #plan .inner .right {
    width: 925px;
  }
  .home #plan .inner .right .group {
    padding-bottom: 35px;
  }
  .home #plan .inner .right .group .block {
    border: 3px solid #1F6DB7;
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 0 0 37px;
  }
  .home #plan .inner .right .group .block .header a {
    align-items: center;
    border-bottom: 2px solid #1F6DB7;
    display: flex;
    padding: 37px 32px 30px;
  }
  .home #plan .inner .right .group .block .header a .catch {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #000;
    border-radius: 22px;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    height: 30px;
    justify-content: center;
    margin-right: 22px;
    padding: 0 15px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .home #plan .inner .right .group .block .header a h4 {
    font-size: 36px;
    font-weight: bold;
    margin-right: 10px;
  }
  .home #plan .inner .right .group .block .header a .notice {
    font-size: 14px;
    font-weight: bold;
  }
  .home #plan .inner .right .group .block .price {
    align-items: center;
    display: flex;
    padding: 32px 32px 35px;
  }
  .home #plan .inner .right .group .block .price dl {
    align-items: center;
    display: flex;
    margin-right: 50px;
  }
  .home #plan .inner .right .group .block .price dl dt {
    align-items: center;
    background-color: #1F6DB7;
    border-radius: 5px;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 26px;
    justify-content: center;
    padding: 0 5px;
    margin-right: 20px;
    width: 58px;
  }
  .home #plan .inner .right .group .block .price dl dd {
    font-size: 20px;
    font-weight: bold;
  }
  .home #plan .inner .right .group .block .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 32px;
  }
  .home #plan .inner .right .group .block .list li {
    margin-bottom: 18px;
    width: calc(50% - 14px);
  }
  .home #plan .inner .right .group .block .list li img {
    width: 100%;
  }
  .home #plan .inner .right .group .block .desc {
    font-size: 12px;
    line-height: 1.5;
    padding: 7px 32px 0;
  }
  .home #plan .inner .right .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .home #plan .inner .right .links .link a {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    position: relative;
  }
  .home #plan .inner .right .links .link a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    color: #fff;
    display: block;
    height: 100%;
    position: absolute;
    right: 17px;
    top: 0;
    width: 10px;
  }
  .home #plan .inner .right .links .link.link01 {
    margin-bottom: 29px;
    width: 30.9%;
  }
  .home #plan .inner .right .links .link.link01 a {
    background-color: #1A4899;
    border: 1px solid #1A4899;
    width: 100%;
  }
  .home #plan .inner .right .links .link.link01 a:hover {
    background-color: rgba(26, 72, 153, 0.2);
    color: #1A4899;
  }
  .home #plan .inner .right .links .link.link02 {
    margin: 0 auto;
    width: 612px;
  }
  .home #plan .inner .right .links .link.link02 a {
    background-color: #FFE100;
    border: 1px solid #FFE100;
    color: #000;
    pointer-events: none;
    width: 100%;
  }
  .home #plan .inner .right .links .link.link02 a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right03@2x.png);
    display: none;
  }
  .home #plan .inner .right .links .link.link02 a:hover {
    background-color: rgba(255, 225, 0, 0.2);
  }
  .home #option {
    padding-bottom: 60px;
  }
  .home #option .header {
    padding-bottom: 60px;
    text-align: center;
  }
  .home #option .header h2 {
    color: #1A4899;
    font-size: 48px;
    font-weight: 600;
    padding-bottom: 20px;
  }
  .home #option .header .desc {
    font-size: 16px;
    line-height: 1.5;
  }
  .home #option .group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding-bottom: 34px;
    width: 1110px;
  }
  .home #option .group .block {
    background-color: #F4F8FC;
    margin-bottom: 30px;
    width: 350px;
  }
  .home #option .group .block h5 {
    align-items: center;
    background-color: #1A4899;
    color: #fff;
    display: flex;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.4090909091;
    height: 96px;
    padding: 0 28px;
  }
  .home #option .group .block .desc {
    font-size: 16px;
    line-height: 1.625;
    padding: 25px 28px 10px;
  }
  .home #option .group .block .link {
    text-align: right;
  }
  .home #option .group .block .link a {
    align-items: center;
    background-color: #1A4899;
    border-top-left-radius: 10px;
    display: flex;
    height: 42px;
    justify-content: center;
    margin: 0 0 0 auto;
    width: 42px;
  }
  .home #option .group .block .link a img {
    width: 22px;
  }
  .home #option > .link a {
    align-items: center;
    background-color: #1A4899;
    border: 1px solid #1A4899;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    width: 460px;
  }
  .home #option > .link a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    color: #fff;
    display: block;
    height: 11px;
    position: absolute;
    right: 17px;
    top: 29px;
    width: 10px;
  }
  .home #option > .link a:hover {
    background-color: rgba(26, 72, 153, 0.2);
    color: #1A4899;
  }
  .home #membership {
    background-color: #fff;
    position: relative;
  }
  .home #membership:before {
    background-color: #F7F7F7;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    bottom: 0;
    content: "";
    display: block;
    height: 350px;
    left: 0;
    position: absolute;
    width: calc(100% - 86px);
    z-index: 0;
  }
  .home #membership .group {
    align-items: center;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    width: 1188px;
  }
  .home #membership .group .left {
    margin-right: 65px;
    width: 334px;
  }
  .home #membership .group .right {
    width: 580px;
  }
  .home #membership .group .right h4 {
    color: #1A4899;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 20px;
  }
  .home #membership .group .right .desc {
    font-size: 16px;
    line-height: 1.625;
    padding-bottom: 35px;
  }
  .home #membership .group .right .link {
    padding-bottom: 40px;
  }
  .home #membership .group .right .link a {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #FFE100;
    color: #000;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    position: relative;
    width: 460px;
  }
  .home #membership .group .right .link a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right03@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    color: #fff;
    display: block;
    height: 11px;
    position: absolute;
    right: 17px;
    top: 29px;
    width: 10px;
  }
  .home #membership .group .right .link a:hover {
    background-color: rgba(255, 225, 0, 0.2);
  }
  .home #faq {
    background-color: #fff;
    padding: 0 0 155px;
  }
  .home #faq .inner {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 1110px;
  }
  .home #faq .inner .left h4 {
    color: #1A4899;
    font-size: 48px;
    font-weight: bold;
    padding-bottom: 20px;
  }
  .home #faq .inner .left .desc {
    font-size: 18px;
    line-height: 1.5555555556;
  }
  .home #faq .inner .right {
    width: 460px;
  }
  .home #faq .inner .right .link {
    width: 100%;
  }
  .home #faq .inner .right .link a {
    align-items: center;
    background-color: #1A4899;
    border: 1px solid #1A4899;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    position: relative;
    width: 100%;
  }
  .home #faq .inner .right .link a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    color: #fff;
    display: block;
    height: 11px;
    position: absolute;
    right: 17px;
    top: 29px;
    width: 10px;
  }
  .home #faq .inner .right .link a:hover {
    background-color: rgba(26, 72, 153, 0.2);
    color: #1A4899;
  }
  .plan {
    background-color: #F4F8FC;
  }
  .plan #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg06@2x.jpg?1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 237px;
    margin-top: 64px;
    padding-left: 128px;
  }
  .plan #pageheader .inner h2 {
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 12px;
  }
  .plan #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em;
  }
  .plan #point {
    padding: 95px 0 0;
  }
  .plan #point > .desc {
    color: #004B9E;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 75px;
    text-align: center;
  }
  .plan #point > .group {
    width: 970px;
    margin: 0 auto 75px;
  }
  .plan #point > .group > .block {
    display: flex;
    margin: 0 auto 40px;
    width: 100%;
  }
  .plan #point > .group > .block .num {
    align-items: center;
    background-color: #004B9E;
    border-radius: 94px;
    color: #fff;
    display: flex;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 20px;
    height: 94px;
    justify-content: center;
    margin-right: 36px;
    width: 94px;
  }
  .plan #point > .group > .block .txt {
    width: calc(100% - 130px);
  }
  .plan #point > .group > .block .txt h4 {
    color: #004B9E;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 20px;
  }
  .plan #point > .group > .block .txt > .desc {
    font-size: 18px;
    line-height: 2.1111111111;
  }
  .plan #list {
    margin: 0 auto;
    padding-bottom: 160px;
    width: 970px;
  }
  .plan #list .tab-group .tab-area {
    border: 1px solid #707070;
    border-radius: 100px;
    display: flex;
    height: 65px;
    margin-bottom: 35px;
    padding: 4px;
  }
  .plan #list .tab-group .tab-area .tab {
    align-items: center;
    color: #707070;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: bold;
    justify-content: center;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.2;
    width: 25%;
  }
  .plan #list .tab-group .tab-area .tab.active {
    background-color: #004B9E;
    border-radius: 100px;
    color: #fff;
  }
  .plan #list .tab-group .content-area {
    margin-bottom: 75px;
  }
  .plan #list .tab-group .content-area .content {
    display: none;
  }
  .plan #list .tab-group .content-area .content.show {
    display: block;
  }
  .plan #list .tab-group .content-area .content.show .fukidashi {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 36px;
    border-radius: 57px;
    background-color: #004b9e;
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
    width: 100%;
  }
  .plan #list .tab-group .content-area .content.show .fukidashi:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 23px 26px 0 0;
    border-color: #004b9e transparent transparent;
    translate: -50% 100%;
  }
  .plan #list .tab-group .content-area .content.show .block {
    background-color: #fff;
    background-color: #fff;
    border: 2px solid #707070;
    border-radius: 10px;
    padding: 40px 40px 55px;
  }
  .plan #list .tab-group .content-area .content.show .block .header {
    align-items: center;
    border-bottom: 2px solid #707070;
    display: flex;
    padding: 0 0 30px;
  }
  .plan #list .tab-group .content-area .content.show .block .header .catch {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #000;
    border-radius: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 600;
    height: 43px;
    justify-content: center;
    margin-right: 10px;
    padding: 0 35px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .plan #list .tab-group .content-area .content.show .block .header h5 {
    font-size: 51px;
    font-weight: bold;
    text-box: trim-both cap alphabetic;
  }
  .plan #list .tab-group .content-area .content.show .block .price {
    align-items: center;
    display: flex;
    padding: 32px 0 35px;
  }
  .plan #list .tab-group .content-area .content.show .block .price dl {
    align-items: center;
    display: flex;
    margin-right: 50px;
  }
  .plan #list .tab-group .content-area .content.show .block .price dl dt {
    align-items: center;
    background-color: #1F6DB7;
    border-radius: 5px;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 26px;
    justify-content: center;
    padding: 0 5px;
    margin-right: 13px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .plan #list .tab-group .content-area .content.show .block .price dl dd {
    align-items: baseline;
    display: flex;
    font-size: 42px;
    font-weight: bold;
    text-box: trim-both cap alphabetic;
  }
  .plan #list .tab-group .content-area .content.show .block .price dl dd span {
    font-size: 20px;
    font-weight: 400;
    margin-left: 8px;
  }
  .plan #list .tab-group .content-area .content.show .block .plan01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 28px;
  }
  .plan #list .tab-group .content-area .content.show .block .plan01 li {
    margin-bottom: 18px;
    width: calc(50% - 9px);
  }
  .plan #list .tab-group .content-area .content.show .block .plan01 li img {
    width: 100%;
  }
  .plan #list .tab-group .content-area .content.show .block .plan01 li.long {
    width: 100%;
  }
  .plan #list .tab-group .content-area .content.show .block h6 {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 16px;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu {
    display: flex;
    justify-content: space-between;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 {
    width: calc(50% - 9px);
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 .header {
    align-items: center;
    border-bottom: none;
    display: flex;
    margin-bottom: 5px;
    padding: 0;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 .header .num {
    align-items: center;
    background-color: #004B9E;
    border-radius: 30px;
    color: #fff;
    display: flex;
    font-size: 24px;
    font-weight: bold;
    height: 30px;
    justify-content: center;
    margin-right: 4px;
    text-box: trim-both cap alphabetic;
    width: 30px;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 .header .item {
    color: #004B9E;
    font-size: 24px;
    font-weight: bold;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu .block01 .desc {
    font-size: 16px;
    line-height: 1.625;
    height: 70px;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu.eraberu01 {
    display: block;
    padding-bottom: 60px;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu.eraberu01 .block01 {
    width: 100%;
  }
  .plan #list .tab-group .content-area .content.show .block .eraberu.eraberu01 .block01 .desc {
    height: auto;
  }
  .plan #list .link {
    padding-bottom: 50px;
  }
  .plan #list .link a {
    align-items: center;
    background-color: #1A4899;
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: calc(100% - 24px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    border: 1px solid #1A4899;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    margin: 0 auto;
    width: 470px;
  }
  .plan #list .link a:hover {
    background-color: rgba(26, 72, 153, 0.2);
    color: #1A4899;
  }
  .plan #list .early a {
    pointer-events: none;
  }
  .benefits #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg06@2x.jpg?1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 237px;
    margin-top: 64px;
    padding-left: 128px;
  }
  .benefits #pageheader .inner h2 {
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 12px;
  }
  .benefits #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em;
  }
  .benefits #tokuten {
    margin: 120px auto 40px;
    width: 890px;
  }
  .benefits #tokuten h4 {
    align-items: center;
    background-color: #004B9E;
    height: 68px;
    border-radius: 68px;
    color: #fff;
    display: flex;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 36px;
    padding: 0 32px;
  }
  .benefits #tokuten > .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 75px;
  }
  .benefits #tokuten .block {
    padding-bottom: 40px;
  }
  .benefits #tokuten .block h5 {
    color: #004B9E;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 20px;
  }
  .benefits #tokuten .block h6 {
    color: #004B9E;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 8px;
  }
  .benefits #tokuten .block .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 36px;
  }
  .benefits #tokuten .block .desc.desc01 {
    line-height: 1.625;
  }
  .benefits #tokuten .block .image {
    padding-bottom: 36px;
  }
  .benefits #tokuten .block .image img {
    width: 100%;
  }
  .benefits #royalty {
    background-color: #F4F8FC;
    padding: 120px 0 40px;
  }
  .benefits #royalty > .inner {
    margin: 0 auto;
    width: 890px;
  }
  .benefits #royalty > .inner h4 {
    align-items: center;
    background-color: #004B9E;
    height: 68px;
    border-radius: 68px;
    color: #fff;
    display: flex;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 36px;
    padding: 0 32px;
  }
  .benefits #royalty > .inner > .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 75px;
  }
  .benefits #royalty > .inner > .desc span {
    color: #cc0000;
  }
  .benefits #royalty > .inner > .block {
    padding-bottom: 40px;
  }
  .benefits #royalty > .inner > .block h5 {
    color: #004B9E;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 55px;
  }
  .benefits #royalty > .inner > .block .flow {
    padding-bottom: 35px;
    width: 100%;
  }
  .benefits #royalty > .inner > .block .flow img {
    width: 100%;
  }
  .benefits #royalty > .inner > .block .step {
    padding-bottom: 35px;
    width: 100%;
  }
  .benefits #royalty > .inner > .block .step img {
    width: 100%;
  }
  .benefits #royalty > .inner > .block h6 {
    color: #1A4899;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 6px;
  }
  .benefits #royalty > .inner > .block .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 36px;
  }
  .benefits #royalty > .inner > .block .image {
    padding-bottom: 36px;
  }
  .benefits #royalty > .inner > .block .image img {
    width: 100%;
  }
  .benefits #royalty > .inner > .block.block02 h5 {
    padding-bottom: 24px;
  }
  .benefits #royalty > .inner > .block.block03 h5 {
    padding-bottom: 32px;
  }
  .benefits #royalty > .inner > .block.block04 h5 {
    padding-bottom: 24px;
  }
  .benefits #royalty > .inner > .block .block05 h5 {
    padding-bottom: 24px;
  }
  .benefits #event {
    margin: 125px auto 70px;
    width: 890px;
  }
  .benefits #event h4 {
    align-items: center;
    background-color: #004B9E;
    height: 68px;
    border-radius: 68px;
    color: #fff;
    display: flex;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 36px;
    padding: 0 32px;
  }
  .benefits #event > .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 90px;
  }
  .benefits #event .early {
    padding-bottom: 100px;
  }
  .benefits #event > .block .header {
    color: #004B9E;
  }
  .benefits #event > .block .header h6 {
    align-items: center;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .benefits #event > .block .header h6 span {
    align-items: center;
    background-color: #A99148;
    border-radius: 28px;
    color: #fff;
    display: flex;
    font-weight: 400;
    height: 28px;
    margin-right: 8px;
    padding: 0 8px;
  }
  .benefits #event > .block .header h5 {
    color: #004B9E;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 30px;
  }
  .benefits #event > .block .inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  .benefits #event > .block .inner .image {
    width: 410px;
  }
  .benefits #event > .block .inner .txt {
    font-size: 16px;
    line-height: 2;
    padding-left: 34px;
    width: calc(100% - 410px);
  }
  .benefits #event > .block .desc {
    font-size: 16px;
    line-height: 2;
  }
  .benefits #event .desc01 {
    font-size: 16px;
    padding-bottom: 80px;
  }
  .benefits #passport {
    background-color: #F4F8FC;
    padding: 160px 0 80px;
  }
  .benefits #passport > .inner {
    margin: 0 auto;
    width: 890px;
  }
  .benefits #passport > .inner h4 {
    align-items: center;
    background-color: #004B9E;
    height: 68px;
    border-radius: 68px;
    color: #fff;
    display: flex;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 36px;
    padding: 0 32px;
  }
  .benefits #passport > .inner > .block {
    padding-bottom: 40px;
  }
  .benefits #passport > .inner > .block h5 {
    color: #004B9E;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 20px;
  }
  .benefits #passport > .inner > .block .image {
    padding-bottom: 35px;
    width: 100%;
  }
  .benefits #passport > .inner > .block .image img {
    width: 100%;
  }
  .benefits #passport > .inner > .block .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 36px;
  }
  .benefits #passport > .inner > .block .desc span {
    color: #cc0000;
  }
  .faq {
    background-color: #fff;
  }
  .faq #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg06@2x.jpg?1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 237px;
    margin-top: 64px;
    padding-left: 128px;
  }
  .faq #pageheader .inner h2 {
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 12px;
  }
  .faq #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em;
  }
  .faq #pageheader {
    margin-bottom: 120px;
  }
  .faq .group01 {
    background-color: #F4F8FC;
    border-radius: 6px;
    margin: 0 auto 80px;
    width: 890px;
  }
  .faq .group01 h4 {
    align-items: center;
    background-color: #1A4899;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    height: 58px;
    padding: 0 24px;
    width: 100%;
  }
  .faq .group01 .inner {
    padding: 30px 24px 20px;
  }
  .faq .group01 .inner .block {
    padding-bottom: 20px;
  }
  .faq .group01 .inner .block h5 {
    color: #1A4899;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 14px;
  }
  .faq .group01 .inner .block .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 8px;
  }
  .faq .group01 .inner .block ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .faq .group01 .inner .block ul:after {
    content: "";
    display: block;
    height: 1px;
    width: 32.4%;
  }
  .faq .group01 .inner .block ul li {
    margin-bottom: 9px;
    width: 32.4%;
  }
  .faq .group01 .inner .block ul li a {
    align-items: center;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 15px;
    display: flex;
    font-size: 16px;
    height: 30px;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .faq .group01 .inner .block ul li a:after {
    content: "＞";
    display: block;
    position: absolute;
    right: 7px;
    top: 5px;
  }
  .faq .group02 {
    background-color: #F4F8FC;
    padding-top: 80px;
  }
  .faq .group02 .header {
    padding-bottom: 90px;
    margin: 0 auto;
    width: 890px;
  }
  .faq .group02 .header h4 {
    align-items: center;
    background-color: #1A4899;
    border-radius: 68px;
    color: #fff;
    display: flex;
    font-size: 32px;
    font-weight: bold;
    height: 68px;
    justify-content: center;
    margin-bottom: 64px;
    width: 100%;
  }
  .faq .group02 .header ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .faq .group02 .header ul li {
    margin-bottom: 10px;
    width: 48.3%;
  }
  .faq .group02 .header ul li a {
    align-items: center;
    background-color: #fff;
    background-image: url(/files/user/lp/fanclub/images/arrow-down01@2x.png);
    background-position: calc(100% - 16px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    border: 1px solid #707070;
    border-radius: 15px;
    display: flex;
    font-size: 16px;
    height: 30px;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .faq .group02 .header ul li a:hover {
    background-color: #1A4899;
    background-image: url(/files/user/lp/fanclub/images/arrow-down02@2x.png);
    color: #fff;
  }
  .faq .group02 .group03 {
    margin: 0 auto;
    padding-bottom: 85px;
    width: 890px;
  }
  .faq .group02 .group03 h5 {
    align-items: center;
    display: flex;
    font-weight: bold;
    font-size: 28px;
    color: #1a4899;
    padding-bottom: 20px;
  }
  .faq .group02 .group03 h5 span {
    font-size: 14px;
    margin-right: 5px;
  }
  .faq .group02 .group03 .block {
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 14px;
  }
  .faq .group02 .group03 .block .question {
    background-image: url(/files/user/lp/fanclub/images/arrow-down01@2x.png);
    background-position: calc(100% - 16px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    cursor: pointer;
    display: flex;
    padding: 18px 40px 18px 24px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
    color: #1a4899;
    position: relative;
  }
  .faq .group02 .group03 .block .question.open {
    background-image: url(/files/user/lp/fanclub/images/arrow-up01@2x.png);
  }
  .faq .group02 .group03 .block .question:before {
    content: "Q. ";
    width: 36px;
  }
  .faq .group02 .group03 .block .answer {
    display: none;
    font-size: 16px;
    line-height: 1.625;
    padding: 10px 24px 30px;
  }
  .faq .group02 .group03 .block .answer > a {
    text-decoration: underline;
  }
  .faq .group02 .group03 .block .answer > .link {
    margin-top: 9px;
  }
  .faq .group02 .group03 .block .answer > .link a {
    align-items: center;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 15px;
    display: flex;
    font-size: 16px;
    height: 30px;
    justify-content: center;
    padding: 0 26px;
    position: relative;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  .faq .group02 .group03 .block .answer > .link a:after {
    content: "＞";
    display: block;
    position: absolute;
    right: 7px;
    top: 2px;
  }
  .faq .group {
    margin: 0 auto 66px;
    width: 890px;
  }
  .faq .group h4 {
    align-items: center;
    background-color: #004B9E;
    color: #fff;
    display: flex;
    font-size: 32px;
    font-weight: bold;
    border-radius: 68px;
    height: 68px;
    margin-bottom: 32px;
    padding: 0 32px;
  }
  .faq .group .block {
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 14px;
  }
  .faq .group .block .question {
    background-image: url(/files/user/lp/fanclub/images/arrow-down01@2x.png);
    background-position: calc(100% - 16px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    color: #004B9E;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.9;
    padding: 15px 24px;
  }
  .faq .group .block .question.open {
    background-image: url(/files/user/lp/fanclub/images/arrow-up01@2x.png);
  }
  .faq .group .block .answer {
    display: none;
    font-size: 16px;
    line-height: 2;
    padding: 0px 24px 25px;
  }
  .faq .group .block .answer > a {
    text-decoration: underline;
  }
  .faq .group.last {
    margin-bottom: 146px;
  }
  .howto {
    background-color: #F4F8FC;
  }
  .howto #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg06@2x.jpg?1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 237px;
    margin-top: 64px;
    padding-left: 128px;
  }
  .howto #pageheader .inner h2 {
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 12px;
  }
  .howto #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em;
  }
  .howto #pageheader {
    margin-bottom: 120px;
  }
  .howto > .inner {
    margin: 0 auto;
    width: 890px;
  }
  .howto > .inner > .desc {
    font-size: 18px;
    line-height: 2.1111111111;
    padding-bottom: 20px;
  }
  .howto > .inner > .about {
    align-items: center;
    border: 1px solid #004B9E;
    border-radius: 48px;
    color: #004B9E;
    display: flex;
    font-size: 18px;
    font-weight: bold;
    height: 48px;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 32px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .howto > .inner > h4 {
    color: #004B9E;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 36px;
  }
  .howto > .inner .junbi {
    border-radius: 10px;
    display: flex;
    display: none;
    height: 77px;
    margin-bottom: 120px;
    width: 100%;
  }
  .howto > .inner .junbi .left {
    align-items: center;
    background-color: #004B9E;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    color: #fff;
    display: flex;
    height: 100%;
    padding: 0 0 0 12px;
    width: 268px;
  }
  .howto > .inner .junbi .left .mark {
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 50px;
    justify-content: center;
    margin-right: 30px;
    width: 50px;
  }
  .howto > .inner .junbi .left h5 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4375;
  }
  .howto > .inner .junbi .right {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/arrow-right03@2x.png);
    background-position: calc(100% - 14px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    background-color: #fff;
    display: flex;
    font-size: 16px;
    height: 100%;
    line-height: 1.625;
    padding: 0 35px;
    width: calc(100% - 268px);
  }
  .howto > .inner .flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .howto > .inner .flow:after {
    content: "";
    display: block;
    width: 276px;
  }
  .howto > .inner .flow .block {
    position: relative;
    margin-bottom: 70px;
    width: 276px;
  }
  .howto > .inner .flow .block:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right02@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 19px;
    position: absolute;
    right: -24px;
    top: 50px;
    width: 16px;
  }
  .howto > .inner .flow .block .header {
    background-color: #fff;
    height: 110px;
    padding: 0 20px;
  }
  .howto > .inner .flow .block .header .num {
    color: #004B9E;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 64px;
    font-weight: bold;
    padding: 0 0 10px;
    transform: translateY(-26px);
  }
  .howto > .inner .flow .block .header h6 {
    font-size: 20px;
    font-weight: bold;
    transform: translateY(-26px);
  }
  .howto > .inner .flow .block.block01 {
    display: flex;
    height: 236px;
    margin-bottom: 55px;
    width: 100%;
  }
  .howto > .inner .flow .block.block01 .header {
    background-color: #fff;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    height: 100%;
    padding: 0 68px 0 30px;
    width: calc(100% - 380px);
  }
  .howto > .inner .flow .block.block01 .header .num {
    color: #004B9E;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 64px;
    font-weight: bold;
    padding: 0;
    transform: translateY(-26px);
  }
  .howto > .inner .flow .block.block01 .header .link01 {
    transform: translateY(-10px);
  }
  .howto > .inner .flow .block.block01 .header .link01 a {
    align-items: center;
    background-color: #1A4899;
    background-image: url(/files/user/lp/fanclub/images/arrow-right01@2x.png);
    background-position: calc(100% - 14px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    border-radius: 6px;
    border: 1px solid #1A4899;
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    height: 38px;
    margin-bottom: 12px;
    padding-left: 40px;
    width: 340px;
  }
  .howto > .inner .flow .block.block01 .header .link01 a:hover {
    background-color: rgba(26, 72, 153, 0.2);
    color: #1A4899;
  }
  .howto > .inner .flow .block.block01 .header .desc {
    font-size: 16px;
    line-height: 1.625;
    transform: translateY(-10px);
    width: 100%;
  }
  .howto > .inner .flow .block.block01 .image {
    background-color: #E4E4E4;
    width: 380px;
  }
  .howto > .inner .flow .block.block01:after {
    display: none;
  }
  .howto > .inner .flow .block.block06:after {
    display: none;
  }
  .howto > .inner .flow .notice {
    font-size: 12px;
    width: 276px;
  }
  .howto > .inner .link {
    text-align: center;
  }
  .howto > .inner .link a {
    align-items: center;
    background-color: #FFE100;
    border: 1px solid #FFE100;
    color: #000;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    height: 65px;
    justify-content: center;
    margin: 0 auto 145px;
    pointer-events: none;
    position: relative;
    width: 460px;
  }
  .howto > .inner .link a:after {
    background-image: url(/files/user/lp/fanclub/images/arrow-right03@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    color: #fff;
    display: block;
    display: none;
    height: 11px;
    position: absolute;
    right: 17px;
    top: 0px;
    height: 100%;
    width: 10px;
  }
  .howto > .inner .link a:hover {
    background-color: rgba(255, 225, 0, 0.2);
  }
  .sitepolicy {
    background-color: #F4F8FC;
  }
  .sitepolicy #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg06@2x.jpg?1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 237px;
    margin-top: 64px;
    padding-left: 128px;
  }
  .sitepolicy #pageheader .inner h2 {
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 12px;
  }
  .sitepolicy #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em;
  }
  .sitepolicy #pageheader {
    margin-bottom: 120px;
  }
  .sitepolicy > .inner {
    margin: 0 auto 80px;
    width: 890px;
  }
  .sitepolicy > .inner h4 {
    background-color: #004B9E;
    border-radius: 8px;
    color: #fff;
    font-size: 23px;
    font-weight: bold;
    line-height: 1.1;
    margin: 0 0 75px;
    padding: 18px 26px;
  }
  .sitepolicy > .inner h4 span {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
  }
  .sitepolicy > .inner > .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 70px;
  }
  .sitepolicy > .inner .block {
    padding-bottom: 50px;
  }
  .sitepolicy > .inner .block h5 {
    border-bottom: 2px solid #004b9e;
    color: #004B9E;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 36px;
    padding-bottom: 6px;
  }
  .sitepolicy > .inner .block h6 {
    color: #004B9E;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 14px;
  }
  .sitepolicy > .inner .block .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 40px;
  }
  .sitepolicy > .inner .notice {
    font-size: 16px;
    margin-top: 130px;
    line-height: 2;
  }
  .privacypolicy {
    background-color: #F4F8FC;
  }
  .privacypolicy #pageheader {
    align-items: center;
    background-image: url(/files/user/lp/fanclub/images/bg06@2x.jpg?1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 237px;
    margin-top: 64px;
    padding-left: 128px;
  }
  .privacypolicy #pageheader .inner h2 {
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 12px;
  }
  .privacypolicy #pageheader .inner h3 {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em;
  }
  .privacypolicy #pageheader {
    margin-bottom: 120px;
  }
  .privacypolicy > .inner {
    margin: 0 auto 80px;
    width: 890px;
  }
  .privacypolicy > .inner > .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 70px;
  }
  .privacypolicy > .inner .block {
    padding-bottom: 40px;
  }
  .privacypolicy > .inner .block h5 {
    border-bottom: 1px solid #004b9e;
    color: #004B9E;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 36px;
    padding-bottom: 10px;
  }
  .privacypolicy > .inner .block h6 {
    color: #004B9E;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 14px;
  }
  .privacypolicy > .inner .block .desc {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 40px;
  }
}/*# sourceMappingURL=style.css.map */