@charset "utf-8";
/*-------------------
    common
--------------------*/
body{
    overflow: auto;
}
.wrap{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
h2{
    margin-bottom: 56px;
    font-size: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.fanonly h2{
    position: relative;
}
.fanonly h2::before{
    content: "FAN CLUB ONLY";
    position: absolute;
    top: -16px;
    left: 0;
    font-family: var(--en);
    font-size: var(--font-size-lg);
    color: var(--accent);
}
/* no-event-message */
#no-event-message {
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 320px) / 1120)), 18px);
    color: #ccc;
}
@media screen and (max-width: 1250px) {
    .wrap{
        width: 90%;
    }
}
@media screen and (max-width: 1000px) {
    h2 {
        margin-bottom: 32px;
    }
}
@media screen and (max-width: 350px) {
    h2{
        font-size: 3.2rem;
    }
    .fanonly h2::before{
        font-size: 1.2rem;
    }
}

/*-------------------
    header
--------------------*/
@media screen and (min-width: 1000px) {
header{
    width: 100%;
    height: auto;
    display: flex;
    border-bottom: 2px solid var(--font);
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
header .headerLogo{
    margin: 24px 0 24px 24px;
    padding: 0;
}
header .headerLogo img{
    width: 200px;
}
header .nav{
    display: flex;
    gap: 6px 24px;
    flex-wrap: wrap;
    justify-content: end;
    margin: 0 0 16px auto;
    padding: 0;
    width: 70%;
}
header .nav li{
    margin-bottom: 0;
}
header .cvBtn{
    display: flex;
    gap: 8px;
    margin: 16px 40px 16px 0;
    padding: 0;
}
header .cvBtn li:first-child{
    margin-bottom: 0;
}
header .sns{
    display: flex;
    flex-wrap: nowrap;
    width: 20%;
    margin: 0 0 0 auto;
    padding: 0;
}
header .sns li{
    width: 100%;
}
header .navflex{
    margin: 24px 0;
}
header .subflex{
    display: flex;
    gap: 32px;
}
}
@media screen and (min-width: 1500px) {
    header .nav{
        width: 100%;
    }
}
/*==============
    pagination
===============*/
.pagination {
    text-align: center;
}
.pagination1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
    padding-bottom: 100px;
    background: var(--base);
    font-family: var(--ja);
}
.pagination1 a{
    color: var(--font);
    font-size: 2.1rem;
}
.pagination1 a.arrow{
    font-size: 1.6rem;
}
.pagination2 {
    display: flex;
    justify-content: center;
    gap: 3%;
}
.pagination content{
    font-size: initial;
    font-family: var(--ja);
    margin-right: 3%;
}
.pagination content a{
    color: var(--font);
}
.pagination.text-center a,
.pagination.text-center span{
    font-size: 1.6rem;
    transition: 0.4s all;
    color: var(--font);
}
.material-icons.md-24 { 
    font-size: 1.4rem;
}
.pagination a:hover{
    opacity: 0.5;
}
.pagination content:last-child{
    margin-right: 0;
}
.pagination a.arrow{
    position: relative;
    z-index: -1;
}
.pagination a.arrow.left{
    padding-left: 20px;
}
.pagination a.arrow .material-icons {
    position: absolute;
    bottom: 2px;
}
.pagination a.arrow.left .material-icons{
    left: 0;
}
.pagination1 span.current {
    color: var(--accent);
    font-family: var(--ja);
    font-size: 2.1rem;
}
@media screen and (max-width: 500px) {
    .pagination1{
        gap: 6%;
        padding-bottom: 80px;
    }
}
/*==============
    accordion
===============*/
.accordion-content {
  display: none;
}
.accordion-header {
  color: var(--font);
  border: 1px solid var(--font);
  padding: 14px 24px 14px 24px;
  margin: 16px 0 0;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
  font-size: var(--font-size-xs);
}
.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #fff;
}
.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.accordion-header.active::after {
  transform: rotate(0deg);
}
.accordion-content {
  padding: 16px;
  line-height: 1.8;
  /* border: 1px solid var(--font); */
  font-size: var(--font-size-xs);
  /* margin: -1px 0 0 0; */
}
.accordion-header span,
.accordion-content span {
  padding-left: 24px;
  position: relative;
  display: inline-block;
}
.accordion-content span.aq {
  padding-left: 0;
}
.accordion-header span::before {
  position: absolute;
  content: "Q.";
  font-size: var(--font-size-xs);
  font-family: "Open Sans", sans-serif;
  top: 45%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
/*-------------------
    footer
--------------------*/
footer{
    width: 100%;
}

/*==============
    form
===============*/
form [type="text"],
form [type="email"],
form [type="password"],
form [type="tel"],
form [type="date"],
form textarea {
    size: initial !important;
    width: 100%;
    padding: 1em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: var(--font);
    background: var(--base);
}
form input[type="submit"] {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--base);
    padding: 24px 0;
    width: 80%;
    cursor: pointer;
    margin: 16px auto 0;
    display: block;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: 0.4s all;
    font-weight: bold;
}
form input[type="submit"]:hover {
    color: var(--accent);
    background: var(--base);
    border: 1px solid var(--accent);
    /* opacity: 1; */
}
#joinus form .agree-scroll input[type="submit"] {
    background: var(--sub-color);
    color: var(--base);
    pointer-events: none;
}
#joinus form .agree-scroll input[type="submit"].btn-on {
    background: #fff;
    color: var(--base);
    pointer-events: auto;
    border: 1px solid var(--sub-color);
}
input[type="checkbox"], input[type="radio"] {
    margin: 0 5px 0 0;
}
form select {
    size: initial !important;
    width: 100%;
    /* padding: 1em; */
    height: 48px;
    padding: 0 1em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.3rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    font-weight: initial;
    color: var(--font);
    background: var(--base);
    font-family: var(--jp);
}
.wpcf7c-elm-step2.text-center {
    padding-top: 56px;
}
::placeholder {
    color: #aaa;
    font-size: 1.3rem;
}
.custom-select {
    font-size: 1.4rem;
    color: #aaa;
}
.entry-message {
    text-align: right;
    margin-bottom: 24px;
    font-size: 1.4rem;
}
span.reference {
    color: red;
}
form .middle {
    width: 80% !important;
}
form .half-width {
    width: 50% !important;
}
form .entry-message {
    text-align: right;
    margin-bottom: 24px;
}
form .entry-message.text-center {
    text-align: center;
}
form button {
    background: #bfbfbf;
    border: none;
    color: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 4px;
    margin-left: 10px;
    width: 130px;
}
/* .form-wrap {
    width: 70%;
    margin: 0 auto;
} */
form ul li {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
form ul li.block {
    display: block;
}
form ul li .myTitle {
    width: 200px;
    font-weight: bold;
}
form ul li .myTitle.wide {
    width: 100%;
}
form ul li .detail {
    width: calc(100% - 200px);
}
form .detail ul {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
#modify form .detail ul {
  flex-wrap: nowrap;
  align-items: center;
}
form ul li .detail.half {
    width: calc(70% - 200px);
}
.cmn-status-msg {
    color: red;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
#notfound{
    background: var(--base);
    padding: 200px 0 100px;
}
.text-center {
    text-align: center;
}
@media screen and (max-width: 1200px) {
    form#entry-form,
    form#ums-form {
        width: 100%;
    }
    .form-wrap {
        width: 100%;
    }
}
@media screen and (max-width: 1000px) {
    #notfound {
        padding: 100px 0 40px;
    }
}
@media screen and (max-width: 768px) {
    form#entry-form {
        width: 100%;
    }
    form input[type="submit"] {
        width: 80%;
        /* padding: 16px 0; */
    }
    .form half {
        width: 80% !important;
    }
    form ul li {
        display: block;
    }
    form ul li .myTitle,
    form ul li .detail {
        width: 100%;
    }
    form ul li .myTitle {
        margin-bottom: 8px;
    }
    form ul li .detail.half {
        width: 80%;
    }
    form .detail ul {
        gap: 16px;
    }
}
@media screen and (max-width: 420px) {
    form input[type="submit"] {
        width: 100%;
    }
}
/* insetBox */
.insetBox {
    width: 100%;
    height: 200px;
    overflow: scroll;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2rem;
}
.insetBox #pp .boxWrap h3,
.insetBox #ma .boxWrap h3 {
    font-family: var(--ja);
    color: var(--black);
    font-size: 1.4rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.insetBox #pp .boxWrap,
.insetBox #ma .boxWrap {
    margin-bottom: 40px;
}
.insetBox section {
    margin: 30px;
}
.insetBox section h2 {
    display: none;
}
/* conf */
.conf form ul {
    margin-bottom: 80px;
}
.conf .submit-wrap {
    display: flex;
    justify-content: space-between;
}
.conf .submit-wrap input {
    width: calc(50% - 24px);
}
input.back {
    border: 1px solid #9f9f9f !important;
    background: #9f9f9f !important;
    color: #eee !important;
    padding: 10px 0;
}
input.back:hover {
    opacity: 0.5;
}
/* comp */
.comp .ums-message p {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: 7%;
    display: block !important;
}
.comp .topBack {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.comp .topBack .btn {
    text-align: center;
    display: block;
    border: 1px solid #7c7c7c;
    padding: 15px 0;
    width: 80%;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #7c7c7c;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
.comp .topBack .btn:hover {
    opacity: 0.5;
}
@media screen and (max-width: 500px) {
    /* conf */
    .conf .submit-wrap {
        display: block;
    }
    .conf .submit-wrap input {
        width: 100%;
    }
    /* comp */
    .comp .ums-message p {
        font-size: 1.6rem;
        text-align: left;
    }
    .comp .topBack .btn {
        width: 100%;
    }
}
/*==============
    comingsoon
===============*/
.comingsoonwrap {
    padding: 80px 0;
}
.comingsoon {
    font-size: 4rem;
    font-family: var(--en);
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
}
.comingsoonSub {
    font-size: 1.8rem;
    font-family: var(--jp);
    color: #ccc;
    text-align: center;
}
@media screen and (max-width: 420px) {
    .comingsoon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    .comingsoonSub {
        font-size: 1.6rem;
    }
}