@charset "UTF-8";

/*===================================================
  delighter
====================================================*/
.delighter .contentBox{
    transition: 0.5s ease;
    opacity: 0;
    transform: translateY(40px);
}
.delighter.started .contentBox{
    opacity: 1;
    transform: translateY(0);
}
/*===================================================
  OP:LOADER
====================================================*/
.loader{
    position:fixed;
    height:100%;
    width:100%;
    background:#000;
    z-index:99999;
}

/*===================================================
  NAVIGATION
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
    box-sizing: border-box;
    transition-delay: 3.5s;
}
.hamSwitch {
    background: #7d2929;
    padding: 10px;
}
.hamBtn .hamMenu{
    position: relative;
    width: 30px;
    height: 30px;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #FFF;
    transition: all .3s ease;
}
.hamBtn .hamMenu span:nth-of-type(1) {
    top: 2px;
}
.hamBtn .hamMenu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn .hamMenu span:nth-of-type(3) {
    bottom: 2px;
}
.hamSwitch.open{

}
.hamSwitch.open span {
    background: #FFF;
}
.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%;
    background: #DDD;
    z-index: 10;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}
.navigation .headerNav {
    display: block;
    padding: 60px;
}
.navigation .headerNav li {
    padding: 0;
    position: relative;
    margin: 0 0 40px;
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a{
    font-size: 250%;
    font-weight: 800;
}
.navigation .headerNav li a.blankBtn{
    opacity: 0.3;
    pointer-events: none;
}
.navigation .navTit{
    color: #FFF;
    position: absolute;
    right: 60px;
    bottom: 60px;
    text-align: right;
    font-family: "Roboto", sans-serif;
    max-width: 200px;
}



/* NAVIGATION:PC-min-770 */
@media screen and (min-width: 770px){
.hamBtn {

}
.navigation {
    pointer-events: none;
    opacity: 0;
}

.navigation .headerNav {
    display: block;
    padding: 100px
}
.navigation .headerNav li {
    margin: 0 0 32px;
    line-height: 1em;
}
.navigation .headerNav li a {
    font-size: 160%;
}
}

/* NAVIGATION:SP-max-769 */
@media screen and (max-width: 769px){
.hamBtn .hamMenu {
    width: 25px;
    height: 25px;
}
.navigationBlock{
    position: fixed;
    z-index: 9999;
}
.navigation {
    pointer-events: none;
    opacity: 0;
}
.navigation .headerNav {
    padding: 80px 40px;
}
.navigation .headerNav {
    padding: 80px 40px;
}
.navigation .navTit {
    right: 40px;
    bottom: 40px;
    max-width: 120px;
}
.navigation .headerNav li{
    margin: 0 0 20px;
}
.navigation .headerNav li a{
    font-size: 150%;
}
}



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

}
.visual .heroView{
    background: #012B46;
    position: relative;
    height: auto !important;
}
.visual .action{

}

/* item1 */
.visual .item1{
    position: absolute;
    bottom: 40px;
    left: 40px;
}
.heroView .item1 .snsList {
    display: none;
}
.heroView .item1 .snsList li {
    width: 25px;
}
.heroView .item1 .snsList li a {
    display: block;
}
.heroView .item1 .snsList li a img{
    filter: invert(1);
    transition:0.3s ease;
}

/* item2 */
.visual .item2{
    position: absolute;
    right: 16px;
    bottom: 20px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.visual .scrollTxt {
    font-size: 70%;
    transition: 0.5s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #FFF;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-bottom: 16px;
}
.visual .scrollarrow {
    width: 1px;
    height: 60px;
    z-index: 1;
    background: #FFF;
    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);}
}

/* item3 */
.visual .item3{
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
}
.visual .item3:before{
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(/static/pedro/official/feature/shallwepedro/images/ph_main_H4hxswuL.png);
    transform: scale(1.2);
    background-size: cover;
    background-position: center;
    filter: blur(40px);
}
.visual .item3 img{
    width: 100%;
    position: relative;
}
/* PC-min-770 */
@media screen and (min-width: 770px){
.heroView .item1 .snsList li a:hover img {
    filter: invert(0.7);
}
}
/* SP-max-769 */
@media screen and (max-width: 769px){
.visual .heroView {

}
.visual .item2{
    display: none;
}
}



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

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

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

/* act2 */
.act2{
    opacity: 0;
    transition: 1s ease 2s;
}
.loaded .act2{
    opacity: 1;
}

/* act3 */
.act3{
    opacity: 0;
    transition: 1s ease 2.5s;
}
.loaded .act3{
    opacity: 1;
}

/* act4 */
.act4{
    opacity: 0;
    transition: 1s ease 3s;
}
.loaded .act4{
    opacity: 1;
}

/*===================================================
	.INFORMATION
====================================================*/
.informationBox{
    background-color: transparent;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.informationBox .light{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 80%;
    mix-blend-mode: hard-light;
    opacity: 0.6;
}
.informationBox .light img{

}
.informationBox .contentBox{
    background: transparent;
    padding: 0;
}
.informationBox .txtArea{
    font-family: "Libre Baskerville", serif;
    text-align: center;
    line-height: 1.6em;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #FFF;
    font-size: clamp(1vw, 20px, 2vw);
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}
.informationBox .txtArea .subTit{
    font-size: 160%;
    font-weight: 600;
    line-height: 1em;
}
.informationBox .txtArea .tit{
    font-size: 360%;
    line-height: 1em;
    font-weight: 600;
    letter-spacing: 0;
    padding: 20px 0;
}
.informationBox .txtArea .date{
    line-height: 1em;
    font-size: 120%;
    font-weight: 600;
}
.informationBox .txtArea .date span{
    font-size: 60%;
    display: inline-block;
    margin: 0 0 0 8px;
}
.informationBox .txtArea .time{
    line-height: 1em;
    font-size: 130%;
}
.informationBox .txtArea .venue{
    font-size: 160%;
    line-height: 1em;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.informationBox .txtArea .venue a{
    color: #b9b9b9;
    font-size: 80%;
    vertical-align: 3px; 
}

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

.informationBox{
    height: auto;
    padding: 120px 20px;
}
.informationBox .light {
    width: 140%;
}
.informationBox .txtArea {
    gap: 16px;
}
.informationBox .txtArea .subTit {
    font-size: 200%;
}
.informationBox .txtArea .tit {
    font-size: 400%;
    padding: 16px 0;
}
.informationBox .txtArea .date {
    font-size: 240%;
}
.informationBox .txtArea .time {
    font-size: 180%;
}
.informationBox .txtArea .venue {
    font-size: 240%;
}
}

/*===================================================
	Song Voting
====================================================*/
.votingBox{
    background: #4a3931;
    color: #FFF;
}
.votingBox:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(/static/pedro/official/feature/shallwepedro/images/bg_dia.png);
    background-size: cover;
    opacity: 0.2;
}
.votingBox .contentBox{
    background: transparent;
    padding: 100px 0;
}
.votingBox h2{
    display:inline-block ;
    font-family: "Libre Baskerville", serif;
    font-size: 460%;
    text-align: center;
    position: relative;
}
.votingBox h2:before{
    position: absolute;
    bottom: -24px;
    left: 50%;
    display: block;
    content: "";
    width: 120%;
    max-width: 80vw;
    height: 1px;
    background-color: #FFF;
    transform: translate(-50%, 0);
}
.votingBox .contentInner{
    max-width: 700px;
    margin: 0 auto;
}

/* SP-max-769 */
@media screen and (max-width: 769px){
.votingBox h2 {
    font-size: 300%;
}
.votingBox h2:before {
    position: absolute;
    bottom: -16px;
}
}

/*===================================================
	.TICKET
====================================================*/
.ticketBox{
    background: transparent;
}
.ticketBox .contentBox{
    background: transparent;
    padding: 100px 0;
}
.ticketBox .innerContent {

}
.ticketBox .titBox{
    color: #FFF;
    text-align: center;
    font-family: "Libre Baskerville", serif;
}
.ticketBox .titBox h2{
    display:inline-block ;
    font-family: "Libre Baskerville", serif;
    font-size: 460%;
}
.ticketBox .price{
    color: #FFF;
    text-align: center;
    font-size: 140%;
    font-weight: 500;
}
.ticketBox .price span{
    font-size: 70%;
    display: inline-block;
    margin: 0 0 0 8px;
}
.ticketBox .ticketBlock{
    position: relative;
}

.ticketBox .ticketList {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.ticketBox .ticketList:last-child {
    margin-bottom: 0;
}
.ticketBox .price .seat{
    font-size: 80%;
}
.ticketBox .price .tax{
    font-size: 50%;
    margin: 0 0 0 8px;
}
.ticketBox .tikcetTit {
    background: #28292a;
    color: #FFF;
    padding: 40px;
    font-size: 140%;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
.ticketBox .tikcetTit span{
    position: absolute;
    top: calc(50% - 6px);
    right: 40px;
    width: 12px;
    height: 12px;
    transform: rotate(135deg);
    transition: 0.3s ease;
}
.ticketBox .end .tikcetTit span{
    transform: rotate(135deg);
}
.end .tikcetTit:after {
    content: "受付終了";
    font-size: 55%;
    background: #d797ff;
    color: #28292a;
    padding: 5px 12px 4px;
    vertical-align: 2px;
    display: inline-block;
    line-height: 1em;
    margin: 0 0 0 8px;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    border-radius: 100px;
}
.ticketBox .tikcetTit span:before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 100%;
    border-top: 1px solid;
    border-right: 1px solid;
}
.ticketBox .tikcetTit.open span {
    transform: rotate(-45deg);
}
.ticketBox .end .tikcetTit.open span {
    transform: rotate(-45deg);
}

.ticketBox .tikcetDetail {
    background: #313131;
    color: #FFF;
    padding: 40px;
}
.ticketBox .detailList {
    display: block;
    border-bottom: 1px dashed #0e0e0e;
    padding: 0 0 15px;
    margin: 0 0 15px;
}
.ticketBox .detailList:last-of-type{
	margin-bottom: 40px;
}
.ticketBox .detailList dt {
    width: 100%;
    padding: 0;
    font-size: 80%;
    margin: 0 0 10px;
    font-weight: 400;
    line-height: 1.6em;
    opacity: 0.5;
}
.ticketBox .detailList dd .detailInner{
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* SP-max-900 */
@media screen and (max-width: 900px){
.ticketBox {

}
.ticketBox .innerContent {

}
.ticketBox .titBox {

}
.ticketBox .titBox h2 {
    font-size: 320%;
}
.ticketBox .titBox h3{

}
.ticketBox .ticketBlock {
    width: 100%;
}
.ticketBox .price {
    font-size: 140%;
}
.ticketBox .tikcetTit {
    font-size: 120%;
    padding: 20px 64px 20px 20px;
}
.ticketBox .tikcetDetail {
    padding: 20px;
}
.ticketBox .detailList:last-of-type {
    margin-bottom: 15px;
}
.fixed-class .flowTxt {
    opacity: 0.4;
}

}



