@charset "UTF-8";



/*===================================================
  OP:LOADER
====================================================*/
.loader{
    position:fixed;
    height:100%;
    width:100%;
    background: #bcbcbc;
    z-index:99999;
}

/*===================================================
  NAVIGATION
====================================================*/

.hamSwitch {
    background: #4d4038;
    display: block;
    position: fixed;
    right: 40px;
    top: 40px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
    box-sizing: border-box;
    transition-delay: 3.5s;
    width: 56px;
    height: 56px;
    padding: 16px;
}
.hamSwitch .hamMenu{
    position: relative;
    width: 100%;
    height: 100%;
}
.hamSwitch span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #a5a5a5;
    transition: all .3s ease;
}
.hamSwitch .hamMenu span:nth-of-type(1) {
    top: 2px;
}
.hamSwitch .hamMenu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamSwitch .hamMenu span:nth-of-type(3) {
    bottom: 2px;
}
.hamSwitch.open{

}
.hamSwitch.open span {

}
.hamSwitch.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}
.hamSwitch.open span:nth-of-type(2) {
    opacity: 0;
}
.hamSwitch.open span:nth-of-type(3) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
}
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #bcbcbc;
    pointer-events: none;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navigation .navigationInner{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}
.navigation .gNav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.navigation .gNav li {
    padding: 0;
    position: relative;
    margin: 0 0 40px;
}
.navigation .gNav li:last-child{
    margin: 0;
}
.navigation .gNav li:after {
    content: none;
}
.navigation .gNav li a{
    font-size: 250%;
    font-weight: 800;
    font-family: "Baskervville", serif;
    color: #4d4038;
}
.navigation .gNav li a.blankBtn{
    opacity: 0.3;
    pointer-events: none;
}
.navigation .navTit{
    color: #FFF;
    width: 50%;
    max-width: 540px;
    margin: 0 auto 40px;
}
.navigation .navTit .subLogo{
    width: 50%;
    margin: 0 auto 16px;
}
.navigation .navTit .mainLogo{
    width: 80%;
    margin: 0 auto 16px;
}
.navigation .snsList {
    display: flex;
    justify-content: center;
    gap: 24px;
}
.navigation .snsList li {
    margin: 0;
}



/* NAVIGATION:PC-min-960 */
@media screen and (min-width: 960px){
/*
.navigationBlock.openNav .hamSwitch {
    display: none;
}
.navigationBlock.openNav .navigation {
    opacity: 1;
    background: transparent;
    width: auto;
    height: auto;
    left: auto;
    right: 0;
    pointer-events: auto;
}
.navigationBlock.openNav .gNav{
    display: flex;
    padding: 40px;
    gap: 16px
}
.navigationBlock.openNav .gNav li{
    margin: 0;
}
.navigationBlock.openNav .gNav li a{
    font-size: 110%;
}
.navigationBlock.openNav .navigation .navTit{
    display: none;
}
*/
}

/* NAVIGATION:SP-max-959 */
@media screen and (max-width: 959px){
.hamSwitch {
    width: 40px;
    height: 40px;
    padding: 10px;
    right: 24px;
    top: 24px;
}
.navigation .gNav {
    padding: 0 24px
}
.navigation .navTit {
    position: relative;
    bottom: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
}
.navigation .navTit .subLogo{
    width: 60%;
    margin: 0 auto;
}
.navigation .gNav li{
    margin: 0 0 20px;
}
.navigation .gNav li a{
    font-size: 150%;
}
}

/*===================================================
  sns
====================================================*/
.snsList {
    display: flex;
}
.snsList li {
    width: 32px;
    margin: 0 0 0 20px;
    line-height: 0;
}
.snsList li a {
    display: block;
}
.snsList li a img{
    transition:0.3s ease;
}

/*===================================================
  sns
====================================================*/
.scrollDown{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.scrollDown .scrollTxt {
    font-size: 70%;
    transition: 0.5s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #4D4038;
    writing-mode: vertical-rl;
}
.scrollDown .scrollarrow {
    width: 1px;
    height: 60px;
    background: #4D4038;
    animation: scrollarrow 3s cubic-bezier(.19,1,.22,1) 0.5s infinite;
}
@keyframes scrollarrow{
  0% {clip-path: inset(0 0 100% 0);}
  25% {clip-path: inset(0 0 0 0);}
  75% {clip-path: inset(0 0 0 0);}
  100% {clip-path: inset(100% 0 0 0);}
}

/*===================================================
  wovn
====================================================*/
header {
    position: relative;
    z-index: 10001;
}
header .header-inner {
    display: block;
    position: fixed;
    top: 40px;
    left: 40px;
}
header .wovn--wrap {
    height: 30px;
}
.wovn-languages,
.drawer-visible .wovn-languages {
    font-size: 10px;
    cursor: pointer;
    z-index: 999;
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    line-height: 1;
    border: none;
    border-radius: 40px;
    padding: 6px 10px;
    width: 88px;
    height: inherit;
    background: #4d4038;
    color: #a5a5a5;
}
.wovn-languages::before,
.drawer-visible .wovn-languages::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  top: 50%;
  right: 10px;
  border: 0px;
  border-bottom: solid 2px #a5a5a5;
  border-right: solid 2px #a5a5a5;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  z-index: 10;
}
.wovn-languages .nav-switch_btn,
.drawer-visible .wovn-languages {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    line-height: 1;
    border: none;
    border-radius: 40px;
    padding: 6px 10px;
    width: 74px;
    height: inherit;
    background: #4d4038;
    color: #a5a5a5;
}
.wovn-languages .langIcon,
.drawer-visible .wovn-languages .langIcon {
  display: block;
  width: 14px;
  height: 14px;
}
.wovn-languages .langIcon svg,
.drawer-visible .wovn-languages .langIcon svg {
  fill: #a5a5a5;
  width: inherit;
  height: inherit;
}
.wovn-languages .nav-current,
.drawer-visible .wovn-languages .nav-current {
  margin-left: 6px;
  text-transform: uppercase;
  font-size: 12px;
}
.wovn-languages .nav-current:empty,
.drawer-visible .wovn-languages .nav-current:empty {
  margin-left: initial;
}
.wovn-languages .nav-dropdown,
.drawer-visible .wovn-languages .nav-dropdown {
  position: absolute;
  top: 50%;
  right: 10px;
  line-height: 1.4;
  text-align: left;
  font-size: 10px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wovn-languages .nav-dropdown .list--language,
.drawer-visible .wovn-languages .nav-dropdown .list--language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #a5a5a5;
}
.wovn-languages .nav-dropdown .list--language li,
.drawer-visible .wovn-languages .nav-dropdown .list--language li {
  width: 100%;
  display: none;
  cursor: pointer;
  padding-bottom: 0;
  line-height: 1.4;
  padding: 0;
  white-space: nowrap;
}
.wovn-languages .nav-dropdown .list--language li::after,
.drawer-visible .wovn-languages .nav-dropdown .list--language li::after {
  content: none;
}

.wovn-languages.visible::before,
.drawer-visible .wovn-languages.visible::before {
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
.wovn-languages.visible .nav-dropdown,
.drawer-visible .wovn-languages.visible .nav-dropdown {
  opacity: 1;
  pointer-events: visible;
  z-index: 1;
  border: none;
  color: #a5a5a5;
  top: 32px;
  left: 50%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: transparent;
  background: #4D4038;
  overflow: hidden;
  border-radius: 8px;
}
.wovn-languages.visible .nav-dropdown .list--language li,
.drawer-visible .wovn-languages.visible .nav-dropdown .list--language li {
  position: relative;
  display: block;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  padding: 8px 8px 8px 24px;
}
.wovn-languages.visible .nav-dropdown .list--language li.selected,
.drawer-visible .wovn-languages.visible .nav-dropdown .list--language li.selected {
  pointer-events: none;
  background: #4d4d4d;
  -webkit-transition: none;
  transition: none;
}
.wovn-languages.visible .nav-dropdown .list--language li.selected::after,
.drawer-visible .wovn-languages.visible .nav-dropdown .list--language li.selected::after {
  content: "";
  position: absolute;
  background-image: url("/static/novelbright/fanclub/common/icon_check.svg");
  display: block;
  background-repeat: no-repeat;
  background-position: 0 center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 8px;
  width: 10px;
  height: 10px;
}

.drawer .wovn--wrap {
  margin-top: 1em;
  position: static;
}
.drawer .wovn--wrap p {
  color: #777;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-family: "mr-eaves-modern", sans-serif;
  padding-bottom: 3px;
}

.body--app .wovn-languages,
.body--app .drawer-visible .wovn-languages {
  top: 3vw;
  right: 3vw;
}

.wovn-languages.white {
  border-color: #ffffff;
}
.wovn-languages.white::before {
  border-color: #ffffff;
}
.wovn-languages.white .langIcon svg {
  fill: #ffffff;
}
.wovn-languages.white {
  border-color: #ffffff;
}
.wovn-languages.white .nav-current {
  color: #ffffff;
}

/* SP-max-959 */
@media screen and (max-width: 959px){
header .header-inner {
    top: 24px;
    left: 24px;
}
}
/*===================================================
  bg
====================================================*/
.bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/static/novelbright/fanclub/feature/yudai_takenaka_solo_tour/images/bg.jpg);
    background-size: cover;
}

/* SP-max-959 */
@media screen and (max-width: 959px){

.bg{
    background-image: url(/static/novelbright/fanclub/feature/yudai_takenaka_solo_tour/images/bg_sp.jpg);
}
}

/*===================================================
  visual
====================================================*/
.visual{

}
.visual .heroView{
    position: relative;
    overflow: hidden;
}

/* actNav */
.actNav{
    position: relative;
}

/* actSns */
.visual .actSns{
    position: fixed;
    top: 88px;
    right: 40px;
    transition: 0.5s ease;
}

/* actScroll */
.visual .actScroll{
    position: fixed;
    bottom: 40px;
    right: 40px;
    pointer-events: none;
    transition: 0.5s ease;
}

/* actMainlogo */
.visual .actMainlogo{
    position: fixed;
    left: 60px;
    bottom: 60px;
    width: 53%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    pointer-events: none;
    z-index: 1;
}

.visual .actMainlogo .subLogo{
    width: 24%;
}
.visual .act4.actMainlogo .subLogo{
    opacity: 0;
}

.visual .actMainlogo .subLogo img{
    transition: 0.5s ease;
}
.visual .actMainlogo h1{
    width: 60%;
    position: relative;
}
.visual .actMainlogo h1 img{
    transition: 0.5s ease;
}
.visual .actMainlogo .logoTit img{
    transition: 0.5s ease;
}
.visual .act4.actMainlogo h1 img{
    opacity: 0;
}

.visual .actJacket{
    aspect-ratio: 1000 / 667;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 880px;
    max-height: 75vh;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}
.visual .actJacket .fvJacket{

}
.visual .actJacket .fvJacket .jacketBg{
    position: absolute;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
}
.visual .actJacket .fvJacket .jacketBg img{
    height: 100%;
    width: auto;
}
.visual .actJacket .fvJacket figure{
    position: relative;
    z-index: 1;
}
.visual .actJacket .line{
    width: 400vw;
    position: absolute;
    height: 1px;
    background: #4d4038;
    transition: 0.5s ease;
}
.visual .actJacket .line1{
    left: 50%;
    bottom: -1px;
    transform: translate(-50%);
}
.visual .actJacket .line2{
    left: 50%;
    top: -1px;
    transform: translate(-50%);
}
.visual .actJacket .line3{
    right: -1px;
    left: auto;
    top: 50%;
    transform: translate(0, -50%);
    width: 1px;
    height: 0;
}
.visual .actJacket .line4{
    left: 65.5%;
    top: 0;
    transform: translate(-50%) rotate(45deg);
}
.visual .actJacket .line5{
    left: -1px;
    top: 50%;
    transform: translate(0, -50%);
    width: 1px;
    height: 0;
}
.visual .actJacket .line6{
    left: 50%;
    top: 50%;
    transform: translate(0, -50%);
    width: 1px;
    height: 0;
}
.visual .actJacket .line7{
    left: -155%;
    top: 0;
    transform: translate(-50%) rotate(45deg);
}
.visual .actJacket .line8{
    left: -106%;
    top: 0;
    transform: translate(-50%) rotate(45deg);
}


/* PC-min-960 */
@media screen and (min-width: 960px){
.heroView .item1 .snsList li a:hover img {
    filter: invert(0.7);
}
}

/* SP-max-959 */
@media screen and (max-width: 959px){

/* actSns */
.visual .actSns{
    bottom: 24px;
    left: 24px;
}

/* actScroll */
.visual .actScroll{
    bottom: 24px;
    right: 24px;
}

/* actArtistlogo */
.visual .actArtistlogo{
    top: 24px;
    left: 24px;
    bottom: 40px;
}
/* actMainlogo */
.visual .actMainlogo{
    gap: 16px;
    left: 24px;
    width: 65%;
    bottom: 24px;
}
.visual .actMainlogo .subLogo {
    width: 45%;
}
.visual .actJacket {
    width: 90%;
    top: 45%;
}
.visual .actJacket .fvJacket .jacketBg {
    transform: translateX(-50%) rotate(90deg);
}
.visual .actJacket .line8 {
    left: 101%;
}
}


/*===================================================
  visual animation
====================================================*/


.scrolled .visual .action{
    transition-delay: 0s;
}

/* act1 */
.action{
    transition: 1s ease 2s;
}
.loaded .action{
    opacity: 1;
}
.headerFix .action{

}

/* act1 */
.act1{}
.loaded .act1{}
.headerFix .act1{}

/* act2 */
.act2{}
.loaded .act2{}
.headerFix .act2{}

/* act3 */
.act3{}
.loaded .act3{}
.headerFix .act3{}

/* act4 */
.act4{}
.loaded .act4{}
.headerFix .act4{}




.visual .actJacket .jacketBg {
    opacity: 0;
}
.loaded .visual .actJacket .jacketBg {
    opacity: 1;
    transition: 1s ease 2s;
}
.scrolled .visual .actJacket .jacketBg {
    transition: 1s ease;
}

.visual .actMainlogo .subLogo img {
    opacity: 0;
}
.loaded .visual .actMainlogo .subLogo img {
    opacity: 1;
    transition: 1s ease 2s;
}
.scrolled .visual .actMainlogo .subLogo img {
    transition: 1s ease;
}



.visual .actMainlogo h1 img {
    opacity: 0;
}
.loaded .visual .actMainlogo h1 img {
    opacity: 1;
    transition: 1s ease 2s;
}
.scrolled .visual .actMainlogo h1 img {
    transition: 1s ease;
}

.visual .actMainlogo .logoTit img {
    opacity: 0;
}
.loaded .visual .actMainlogo .logoTit img {
    opacity: 1;
    transition: 1s ease 2s;
}
.scrolled .visual .actMainlogo .logoTit img {
    transition: 1s ease;
}



.visual .actMainlogo h1 .line {
    width: 0;
}
.loaded .visual .actMainlogo h1 .line {
    width: 200vw;
    transition: 1s ease 2s;
}
.scrolled .visual .actMainlogo h1 .line {
    transition: 1s ease;
}

.headerFix .visual .actMainlogo .subLogo img{
    opacity: 0;
}
.headerFix .visual .actMainlogo h1 img{
    opacity: 0;
}
.headerFix .visual .actMainlogo .logoTit img{
    opacity: 0;
}
.headerFix .visual .actJacket .jacketBg{
    opacity: 0;
}


.headerFix .visual .actMainlogo h1 .line{
    width: 0;
}




.visual .actJacket .line{
    width: 0;
}
.loaded .visual .actJacket .line{
    width: 400vw;
    transition: 1s ease 2s;
}
.scrolled .visual .actJacket .line{
    width: 400vw;
    transition: 1s ease;
}
.headerFix .visual .actJacket .line{
    width: 0;
}

.visual .actJacket .line3,
.visual .actJacket .line5,
.visual .actJacket .line6{
    height: 0;
    width: 1px;
}
.loaded .visual .actJacket .line3,
.loaded .visual .actJacket .line5,
.loaded .visual .actJacket .line6{
    height: 400vw;
    width: 1px;
    transition: 1s ease 2s;
}
.scrolled .visual .actJacket .line3,
.scrolled .visual .actJacket .line5,
.scrolled .visual .actJacket .line6{
    height: 400vw;
    width: 1px;
    transition: 1s ease;
}
.headerFix .visual .actJacket .line3,
.headerFix .visual .actJacket .line5,
.headerFix .visual .actJacket .line6{
    height: 0;
    width: 1px;
}






.visual .actJacket  figure img {
    opacity: 0;
}
.loaded .visual .actJacket  figure img {
    opacity: 1;
    transition: 1s ease 2s;
}
.scrolled .visual .actJacket  figure img {
    transition: 1s ease;
}
.headerFix .visual .actJacket  figure img{
    opacity: 0;
}




.headerFix .visual .actSns{
    opacity: 0;
    pointer-events: none;
}
.headerFix .visual .actScroll{
    opacity: 0;
}

/* SP-max-959 */
@media screen and (max-width: 959px){
.loaded .visual .actMainlogo h1 .line {
    width: 200vh;
}
.headerFix .visual .actMainlogo h1 .line{
    width: 0;
}
}

/*===================================================
  SCHEDLE
====================================================*/
#schedule .contentBox{
    background: #e1ded9;
    max-width: 1500px;
    padding: 100px;
}

/* SP 959 */
@media screen and (max-width: 959px){
#schedule .contentBox{
    padding: 32px 24px;
}
}

/*===================================================
  ticket
====================================================*/
#ticket{

}
#ticket .contentInner.clm{
    display: flex;
    flex-direction: row;
    gap: 60px;
}
#ticket .op_ticket{
    width: 70%;
}
.ticketPrice{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ticketPrice .ticletType{
    font-weight: 600;
    font-size: 24px;
}
.ticketPrice .price{
    font-size: 40px;
    font-weight: 600;
}
.ticketPrice .price span{
    font-size: 60%;
}
.ticketPrice .cap{
    font-weight: 600;
    font-size: 18px;
}
.ticketPrice .cautionList {
    text-align: left;
    border-top: 1px dashed;
    padding-top: 16px;
    font-weight: 600;
}
.ticketPrice .cautionList li{
    font-size: 90%;
}

@media screen and (max-width: 959px){
#ticket .contentInner.clm {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.ticketPrice {
    width: 100%;
    text-align: center;
}
.ticketPrice .cautionList {
    width: max-content;
    margin: 0 auto;
}
#ticket .op_ticket {
    width: 100%;
}
.ticketPrice {
    gap: 12px;
}
.ticketPrice .price {
    font-size: 32px;
}
.ticketPrice .ticletType {
    font-size: 16px;
}
.ticketPrice .cap {
    font-size: 14px;
}
}

/*===================================================
  DISC
====================================================*/
#disc{
    background: #95918b;
    padding: 100px 60px;
}
#disc .advance{
    border-top: 1px solid;
    padding-top: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px;
}
#disc .advance .advanceTit{
    min-width: 200px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}
#disc .advance .songs{
    min-width: max-content;
    width: 100%;
    max-width: calc(100% - 200px);
    border-left: 1px solid;
    padding-left: 50px;
}
#disc .advance .advanceList{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    border-bottom: 1px dashed;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
#disc .advance .advanceList:last-child{
    border-bottom:none;
    padding-bottom: 0;
    margin-bottom: 0;
}
#disc .advance .advanceList dt{
    font-weight: 800;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}
#disc .advance .advanceList dt span{
    font-size: 50%;
    font-weight: 800;
    border: 1px solid;
    line-height: 1em;
    display: flex;
    border-radius: 100px;
    align-items: anchor-center;
    justify-content: center;
    padding: 8px 16px;
}
#disc .advance .advanceList dd{
    display: flex;
    flex-direction: row;
    gap: 16px;
}
#disc .advance .advanceList dd .advanceBtn{

}
#disc .advance .advanceList dd .advanceBtn a{
display: flex;
    align-items: anchor-center;
    background: #FFF;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1em;
    gap: 8px;
}
#disc .advance .advanceList dd .advanceBtn a i{
    font-size: 90%;
}
@media screen and (max-width: 959px){
#disc{
    padding: 80px 16px;
}

#disc .advance {
    flex-direction: column;
    gap: 48px;
}
#disc .advance .songs {
    min-width: max-content;
    width: 100%;
    max-width: 100%;
    border-left: none;
    padding-left: 0;
}
#disc .advance .advanceList{
    flex-direction: column;
}
#disc .advance .advanceList dd .advanceBtn a {
    font-size: 16px;
}


}




/*===================================================
  CONTACT
====================================================*/


#contact{
    border-top: 1px solid;
    padding: 100px 60px 100px;
    margin-bottom: 0;
}
#contact .contactList{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
#contact .contactList .btn a{
    font-size: 90%;
    line-height: 1.4em;
}
@media screen and (max-width: 959px){
#contact {
    padding: 40px;
}
}