@charset "utf-8";

:root {
    --mainColor: #F67319;
    --subColor: #F8DE19;
    --bgColor: #F2ECD2;
    --green: #46A355;
    --black: #000;
    --white: #fff;

    --commonFont:  "Roboto", "Noto Sans JP", sans-serif;
}



/*===================================================
    anim
====================================================*/

.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--bgColor);
    z-index: 9999;
}

.action img {
    opacity:0;
    transition: 1s ease-out;
}
.loaded .action img {
    opacity:1;
}
.action.act01 p:nth-child(2) img {}
.loaded .action.act01 p:nth-child(2) img {
    transition-delay: 1.25s;
}
.action.act01 p:nth-child(3) img {
    transform: scale(0.8);
}
.loaded .action.act01 p:nth-child(3) img {
    transform: scale(1);
    transition-delay: 1.75s;
}

.mainWrap .anim.fadeX,
.mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.mainWrap .anim.fadeX {
    transform: translateX(20px);
}
.mainWrap .anim.fadeY {
    transform: translateY(20px);
}
.mainWrap .anim.fadeX.on,
.mainWrap .anim.fadeY.on {
    opacity: 1;
}
.mainWrap .anim.fadeX.on {
    transform: translateX(0px);
}
.mainWrap .anim.fadeY.on {
    transform: translateY(0px);
}

@media screen and (max-width: 960px) {

    .action img {}
    .loaded .action img {}
    .action.act01 p:nth-child(2) img {}
    .loaded .action.act01 p:nth-child(2) img {}
    .action.act01 p:nth-child(3) img {}
    .loaded .action.act01 p:nth-child(3) img {}

}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    pointer-events: none;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    min-height: 600px;
    transform: translate3d(0, 0, -1px);
    overflow: hidden;
    background-color: var(--bgColor);
}
.bgBox .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.bgBox .bg01 {
    background: url(/static/monkichi/official-pc/feature/realMonFire/image/ph_bg_0d8t0N4k.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}
.bgBox .bgLogo {
    position: absolute;
    z-index: 2;
    width: 90%;
    max-width: 1720px;
    min-width: 1200px;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.05;
}
.bgBox .bgLogo img {}

@media screen and (max-width: 960px){

	.bgBox {
	    min-height: 450px;
        height: 100vh;
	}
	.bgBox .bg {
        height: 100vh;
    }
    .bgBox .bg.bg01 {
        background: url(/static/monkichi/official-pc/feature/realMonFire/image/ph_bg_sp_0d8t0N4k.jpg) no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .bgBox .bgLogo {
        min-width: 600px;
        width: 200%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .bgBox .bgLogo img {}

}



/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 30px;
    top: 30px;
    width: 45px;
    height: 45px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9997;
    background: var(--mainColor);
    border: 2px solid var(--black);
    border-radius: 100px;
    box-shadow: 2px 2px var(--black);
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 10px;
    width: 21px;
    height: 4px;
    border-radius: 2px;
    background: var(--black);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 13px;
}
.hamBtn :nth-of-type(2) {
    bottom: 13px;
}
.hamBtn.open span {}
.hamBtn.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}
.hamBtn.open span:nth-of-type(2) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
}

.navigation {
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9996;
    position: fixed;
	transition: all 0.5s ease-out;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}

.navigation .headerNavBox {
    background: var(--bgColor);
    margin: 0 auto;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    flex-direction: row;
}
.navigation .headerNavBox .headerNav {}

.navigation .heroNavLogo {
    width: 320px;
    margin: 0 90px 0 0;
}

.navigation .headerNav li {
	padding: 0;
    position: relative;
    margin: 0 0 30px;
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li a {
    text-decoration: none;
    line-height: 1;
    font-weight: bold;
}
.navigation .headerNav li a img {
    height: 35px;
    width: auto;
}

@media screen and (min-width: 961px) {

	.navigation .headerNav a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

    .hamBtn {
        right: 20px;
        top: 20px;
        width: 35px;
        height: 35px;
        box-shadow: 1px 1px
    }
    .hamBtn span {
        right: 8px;
        width: 15px;
        height: 3px;
    }
    .hamBtn :nth-of-type(1) {
        top: 10px;
    }
    .hamBtn :nth-of-type(2) {
        bottom: 10px;
    }

	.navigation .headerNav {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: top center;
	    overflow: hidden;
	    object-fit: cover;
	}

    .navigation .headerNavBox {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .navigation .heroNavLogo {
        width: 50%;
        max-width: 225px;
        margin: 0px 0 45px;
    }
    .navigation .headerNav li {
        position: relative;
        margin-bottom: 25px;
    }
    .navigation .headerNav li a {
        display: block;
        margin: 0;
    }
    .navigation .headerNav li a img {
        margin: 0 auto;
        max-height: 35px;
        height: 6.4vw;
    }

}



/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    background: var(--bgColor);   
}

body {
    background: var(--bgColor);
}

.mainWrap {
	position: relative;
    z-index: 1;
	line-height: 1.5;
	font-size: 16px;
    letter-spacing: 0.03em;
	color: var(--black);
    font-family: var(--commonFont);
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
    z-index: 1;
    background: var(--green);
    padding: 160px 0 240px;
}

section {
	margin: 0 auto 160px;
    text-align: center;
}
section:last-of-type {
	margin: 0 auto;  
}

section h3 {
    position: relative;
    margin: 0 auto 60px;
    line-height: 1;
}
section h3 img {
    height: 70px;
    width: auto;
    margin: 0 auto;
}

section .inBox {
    padding: 40px;
    background: var(--bgColor);
    border: 1px solid var(--commonColor);
    box-shadow: 5px 5px var(--commonColorLight);
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    border-radius: 20px;
    border: 2px solid var(--black);
    box-shadow: 5px 5px var(--black);
}

/*
section .inBox .btn {}
section .inBox .btn a {
    display: block;
    padding: 15px 20px;
    color: var(--red);
    width: 90%;
    max-width: 300px;
    text-align: center;
    background: var(--red);
    border: 1px solid var(--red);
    margin: 0 auto;
    text-decoration: none;
    font-weight: bold;
    border-radius: 100px;
}
section#ticket .inBox .btn a {
    background: var(--red);
    color: var(--red);
    border: 1px solid var(--red);
}
section#ticket .inBox .btn.finBtn a {
    background: var(--glay);
    border: 1px solid var(--glay);
    pointer-events: none;
    color: var(--red);
}
*/

section .inBox .soon {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    padding: 40px 0;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a,img,i {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

    /*
    section .inBox .btn a:hover {
        background: var(--white);
        color: var(--red);
    }
    section#ticket .inBox .btn a:hover {
        background: var(--red);
        color: var(--white);
        border: 1px solid var(--white);
    }
    */

}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {
	    scroll-padding-top: 45px;
	}

    .mainWrap {
        font-size: 14px;
    }

    .container {
        padding: 80px 0 160px;
    }

	section {
	    margin: 0 auto 80px;
	}
    section:last-of-type {}

	section h3 {
        margin: 0 auto 30px;
	}
    section h3 img {
        max-height: 70px;
        height: 8vw;
    }

	section .inBox {
        padding: 20px;
        width: calc(90% - 10px);
        border-radius: 10px;
	}

    section .inBox .btn {}
    section .inBox .btn a {}
    section .inBox .btn.finBtn a {}

    section .inBox .soon {
        font-size: 20px;
        padding: 20px 0;
    }

}



/*===================================================
	hero
====================================================*/
#heroView {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
}
		
#heroView .heroInner {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    height: 75svh;
    min-height: 430px;
    aspect-ratio: 1598 / 1655;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#heroView .heroInner .mainLogo {
    position: relative;
}
#heroView .heroInner .mainLogo p {
    position: absolute;
    top: 0;
}
#heroView .heroInner .mainLogo p:nth-child(1) {
    position: inherit;
    opacity: 0 !important;
}
#heroView .heroInner .mainLogo p:nth-child(2) {}
#heroView .heroInner .mainLogo p:nth-child(3) {}

#heroView .artistLogo {
    position: absolute;
    width: 120px;
    top: 30px;
    left: 30px;
}

#heroView .scrollBox {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
#heroView .scrollBox .scrollArrow {
    width: 1px;
    height: 60px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 1;
    background: var(--black);
    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);}
}

#heroView .bgItem {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    min-width: 1400px;
    mask-image: url(/static/monkichi/official-pc/feature/realMonFire/image/ph_bgItem_0d8t0N4k.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(/static/monkichi/official-pc/feature/realMonFire/image/ph_bgItem_0d8t0N4k.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: var(--green);
    aspect-ratio: 320 / 31;
}

@media screen and (min-width: 961px) {

	#heroView .artistLogo a:hover img {
        opacity: 0.7;
	}

}

@media screen and (max-width: 960px) {

	#heroView {
		height: calc(100svh - 40px);
	    min-height: 450px;
	}
			
	#heroView .heroInner {
        width: 80%;
        max-width: 420px;
        height: initial;
        min-height: initial;
        display: flex;
        flex-direction: column;
        top: 47.5%;
        left: 50%;
        transform: translate(-50%, -47.5%);
    }
    #heroView .heroInner .mainLogo {}
    #heroView .heroInner .mainLogo p {}
    #heroView .heroInner .mainLogo p:nth-child(1) {}
    #heroView .heroInner .mainLogo p:nth-child(2) {}
    #heroView .heroInner .mainLogo p:nth-child(3) {}

	#heroView .artistLogo {
        width: 80px;
        top: 20px;
        left: 20px;
	}
			
    #heroView .scrollBox {
		height: calc(100svh - 40px);
    }
	#heroView .scrollBox .scrollArrow {
	    right: 20px;
	    bottom: 20px;
        background: var(--main);
	}

    #heroView .bgItem {
        width: 100vw;
        min-width: 750px;
    }
    
}



/*===================================================
	comment
====================================================*/
#comment {}
#comment h3 {}
#comment .inBox {
    padding: 40px 40px 20px;
}

#comment .inBox .lead {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
#comment .inBox .lead p {
    margin-bottom: 15px;
}
#comment .inBox .lead p:last-child {
    font-size: 90%;
    margin-bottom: 0;
    text-align: right;
}

@media screen and (max-width: 960px){

    #comment {}
    #comment h3 {}
    #comment .inBox {
        padding: 20px 20px 10px;
    }

    #comment .inBox .lead {
        font-size: 16px;
        text-align: left;
    }
    #comment .inBox .lead p {
        margin-bottom: 10px;
    }
    #comment .inBox .lead p:last-child {}

}



/*===================================================
	schedule
====================================================*/
#schedule {}
#schedule h3 {}
#schedule .inBox {}

#schedule .inBox .detailList {}
#schedule .inBox .detailList li {
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 35px 40px 30px;
    background: var(--white);
}
#schedule .inBox .detailList li:last-child {
    margin-bottom: 0;
}
#schedule .inBox .detailList .listTit {
    margin: 0 0 10px;
    border-left: 3px solid;
    padding: 0 0 0 10px;
    font-weight: bold;
}
#schedule .inBox .detailList .detailBox {}
#schedule .inBox .detailList .detailBox .date {
    font-weight: bold;
    font-size: 24px;
    margin: 0px 0 5px;
    line-height: 1;
}
#schedule .inBox .detailList .detailBox .date span {
    font-size: 14px;
    padding: 0 3px;
}
#schedule .inBox .detailList .detailBox .date span:nth-child(3) {
    padding: 0 10px 0 3px;
}
#schedule .inBox .detailList .detailBox .date span:last-child {
    padding: 0 0 0 3px;
}
#schedule .inBox .detailList .detailBox .note {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}
#schedule .inBox .detailList .detailBox .price {}
#schedule .inBox .detailList .detailBox .price span {
    font-size: 12px;
    padding: 0 0 0 5px;
}

@media screen and (max-width: 960px){

    #schedule {}
    #schedule h3 {}
    #schedule .inBox {}

    #schedule .inBox .detailList {}
    #schedule .inBox .detailList li {
        border-radius: 5px;
        margin-bottom: 10px;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }
    #schedule .inBox .detailList li:last-child {}
    #schedule .inBox .detailList .listTit {}
    #schedule .inBox .detailList .detailBox {
        padding: 0;
        border: none;
        width: 100%;
    }
    #schedule .inBox .detailList .detailBox .date {
        font-size: 20px;
        line-height: 1.2;
    }
    #schedule .inBox .detailList .detailBox .date span {}
    #schedule .inBox .detailList .detailBox .date span:last-child {}
    #schedule .inBox .detailList .detailBox .note {
        font-size: 12px;
    }
    #schedule .inBox .detailList .detailBox .price {}
    #schedule .inBox .detailList .detailBox .price span {
        font-size: 10px;
    }

}



/*===================================================
	event
====================================================*/
#event {}
#event h3 {}
#event .inBox {
    padding: 50px 40px 40px;
}

#event .inBox .eventBox {
    position: relative;
    margin-bottom: 40px;
    padding: 40px 40px 20px;
    background: var(--white);
    border-radius: 15px;
}
#event .inBox .eventBox:last-of-type {
    margin-bottom: 20px;
}
#event .inBox .eventBox .eventTit {
    margin: -60px 0 20px;
}
#event .inBox .eventBox .eventTit span {
    padding: 10px 20px;
    line-height: 1;
    font-weight: bold;
    box-shadow: 2px 2px var(--black);
    background: var(--subColor);
    border: 2px solid;
    border-radius: 100px;
    display: inline-block;
}
#event .inBox .eventBox .eventTxt {}
#event .inBox .eventBox .eventTxt p {
    margin-bottom: 5px;
}
#event .inBox .eventBox .eventTxt p:last-child {
    margin-bottom: 0;
}
#event .inBox .attList li {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin-bottom: 5px;
}
#event .inBox .attList li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 960px){

    #event {}
    #event h3 {}
    #event .inBox {
        padding: 40px 20px 20px;
    }

    #event .inBox .eventBox {
        padding: 30px 20px 20px;
        margin-bottom: 30px;
        border-radius: 5px;
    }
    #event .inBox .eventBox:last-child {}
    #event .inBox .eventBox .eventTit {
        margin: -50px 0 15px;
    }
    #event .inBox .eventBox .eventTit span {
        padding: 8px 16px;
        border: 1px solid;
        line-height: 1.3;
    }
    #event .inBox .eventBox .eventTxt {}
    #event .inBox .eventBox .eventTxt p {}
    #event .inBox .eventBox .eventTxt p:last-child {}
    #event .inBox .attList li {
        font-size: 12px;
    }

}



/*===================================================
	attention
====================================================*/
#attention {}
#attention h3 {}
#attention .inBox {}

@media screen and (max-width: 960px){

    #attention {}
    #attention h3 {}
    #attention .inBox {}

}



/*===================================================
	attention
====================================================*/
#attention {}
#attention h3 {}
#attention .inBox {}

@media screen and (max-width: 960px){

    #attention {}
    #attention h3 {}
    #attention .inBox {}

}



/*===================================================
	attention
====================================================*/
#attention {}
#attention h3 {}
#attention .inBox {}

@media screen and (max-width: 960px){

    #attention {}
    #attention h3 {}
    #attention .inBox {}

}



/*===================================================
	footer
====================================================*/
footer {
    padding: 0 0 20px;
    position: relative;
    z-index: 1;
    background: var(--green);
}

footer .footerLogo {
    width: 150px;
	margin: 0 auto 40px;
    display: flex;
    justify-content: center;
}

footer .copyright {
	text-align: center;
    font-size: 10px;
    line-height: 1;
}

@media screen and (min-width: 961px){

	footer .bnrList li a:hover img,
	footer .footerLogo a:hover img {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

	footer {}

	footer .footerLogo {
    	margin: 0 auto 30px;
    }
    footer .footerLogo a {}
    footer .footerLogo a img {
        width: 120px;
    }

	footer .copyright {}

}