@charset "utf-8";

:root {
    --color-white: #fff;
    --color-black: #222;
    --color-main: #EC3131;
    --color-sub: #FDF573;
    --color-brown: #634519;
    --color-bg: linear-gradient(0deg,rgba(255, 199, 199, 1) 0%, rgba(255, 161, 161, 1) 100%);

    --font-main: "Shippori Mincho", serif;
    --font-title: "Libre Baskerville", serif;
}



/*===================================================
    anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--color-main);
    z-index: 9999;
}

.action img {
    opacity:0;
    transition: .5s ease-out;
    transform: translateY(20px);
}
.loaded .action img {
    opacity:1;
    transform: translateY(0);
}
.loaded .action.act01 img {
    transition-delay: 0.75s;
}
.loaded .action.act02 img {
    transition-delay: 1.25s;
}
.loaded .action.act03 img {
    transition-delay: 1.5s;
}
.loaded .action.act04 img {
    transition-delay: 1.75s;
}

#heroView .heroInner .kvBox .topBtn:has(a.click) span {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(30deg, 
    transparent 0%, 
    transparent 60%, 
    rgb(255 255 255 / 10%) 61%, 
    rgb(255 255 255 / 100%) 64%, 
    rgb(255 255 255 / 10%) 67%, 
    transparent 68%
    );
    mix-blend-mode: overlay;
    background-size: 600% 200%;
    animation: btnAnim 16s linear forwards;
    -webkit-mask-image: url(/static/stu48/fansite/feature/liveTour2025_mvp/image/ph_btn_1e1y1M8g.png);
    mask-image: url(/static/stu48/fansite/feature/liveTour2025_mvp/image/ph_btn_1e1y1M8g.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}
@keyframes btnAnim {
  0%   { background-position: 600% 0; }
  100% { background-position: -600% 0; }
}

.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) {}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    z-index: -1;
    position: fixed;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-height: 600px;
    inset: 0;
    transform: translate3d(0, 0, -1px);
    background: var(--color-bg);
    overflow: hidden;
    pointer-events: none;
}
.bgBox .bg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.bgBox .bg01 {
    z-index: 1;
    background-image: url(/static/stu48/fansite/feature/liveTour2025_mvp/image/ph_bg_1e1y1M8g.png);
    background-repeat: repeat;
    background-size: 90px;
    opacity: 0.05;
}
.bgBox .bg02 {
    z-index: 2;
}
.bgBox .bg02 .loopBox {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    width: calc((1400px + 40px) * 8);
    gap: 40px;
}
.bgBox .bg02 .loopBox.top {
    top: -3px;
    animation: loopTop 120s linear infinite;
}
.bgBox .bg02 .loopBox.bottom {
    bottom: -3px;
    animation: loopBottom 120s linear infinite;
}
.bgBox .bg02 .loopBox span {
    position: relative;
    display: block;
    width: 1400px;
    aspect-ratio: 1679 / 160;
}
.bgBox .bg02 .loopBox span:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1679 / 160;
    background-image: url(/static/stu48/fansite/feature/liveTour2025_mvp/image/ph_bgTxt_1e1y1M8g.png);
    background-size: cover;
    background-repeat: no-repeat;
}
@keyframes loopTop {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes loopBottom {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}
.bgBox .bg03 {
    z-index: 3;
    opacity: 0.6;
}
.bgBox .bg03 .star {
    position: absolute;
    display: block;
    background-color: var(--color-white);
    border-radius: 100px;
    opacity: 0;
    animation: light 4s infinite;
    filter: blur(3px);
}
@keyframes light {
    0% {opacity: 0;}
    50% {opacity: 1;transform: scale(1.15);}
    100% {opacity: 0;transform: scale(1);}
}

@media screen and (max-width: 960px){

	.bgBox {
	    min-height: 450px
	}
	.bgBox .bg {}
    .bgBox .bg.bg01 {
        background-size: 60px;
    }
    .bgBox .bg02 {}
    .bgBox .bg02 .loopBox {
        width: calc((800px + 25px) * 8);
        gap: 25px;
    }
    .bgBox .bg02 .loopBox.top {
        top: -2px;
    }
    .bgBox .bg02 .loopBox.bottom {
        bottom: -2px;
    }
    .bgBox .bg02 .loopBox span {
        width: 800px;
    }
    .bgBox .bg02 .loopBox span:after {}
    .bgBox .bg03 {
        opacity: 0.4;
    }

}



/*===================================================
	all
====================================================*/
html, body {
    background: var(--color-main);
}

.mainWrap {
	position: relative;
    z-index: 1;
	line-height: 1.5;
	font-size: 16px;
    letter-spacing: 0.03em;
	color: var(--color-black);
    font-family: var(--font-main);
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
}

section {
	margin: 0 auto 160px;
}
section:last-of-type {
	margin: 0 auto 240px;  
}

section .inBox {
    position: relative;
    padding: 60px;
    background: var(--color-white);
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 5px 5px var(--color-sub);
}

section .inBox h3 {
    position: relative;
    width: 60%;
    margin: 0 auto 60px;
    line-height: 1;
}
section .inBox h3 img {}

section .inBox .btn {}
section .inBox .btn a {
    display: block;
    padding: 15px 20px;
    color: var(--color-white);
    width: 90%;
    max-width: 300px;
    text-align: center;
    background: var(--color-main);
    border: 1px solid var(--color-main);
    margin: 0 auto;
    text-decoration: none;
    font-weight: bold;
    border-radius: 100px;
}

.op_accord {
    margin-bottom: 10px;
}
.op_accord:last-child {
    margin-bottom: 0;
}
.op_accord .accordionList {}
.op_accord .accordionList .accordionTit{
    background: var(--color-sub);
    padding: 30px 65px 30px 40px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 10px;
}
.op_accord .accordionList .accordionTit.open {
    border-radius: 10px 10px 0 0;
}
.op_accord .accordionList .accordionTit span {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 15px;
    height: 15px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
.op_accord .accordionList .accordionTit.open span {
    transform: translateY(-50%);
}
.op_accord .accordionList .accordionTit span:before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 100%;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
}
.op_accord .accordionList .accordionDetail{
    display: none;
    padding: 0 40px 40px;
    background: var(--color-sub);
    border-radius: 0 0 10px 10px;
}

section .inBox .mov {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
section .inBox .mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

section .inBox .soon {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 90px 0;
    border: 1px solid;
}

@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(--color-white);
        color: var(--color-main);
    }

    .op_accord .accordionList .accordionTit:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {}

    .mainWrap {
        font-size: 14px;
    }

	section {
	    margin: 0 auto 90px;
	}
    section:last-of-type {
        margin: 0 auto 150px;
    }

	section .inBox {
        padding: 30px 20px 20px;
	}

    section .inBox h3 {
        margin: 0 auto 30px;
        width: 100%;
        max-width: 450px;
	}
    section .inBox h3 img {}

    section .inBox .btn {}
    section .inBox .btn a {}
    section .inBox .btn.finBtn a {}

    .op_accord .accordionList {}
    .op_accord .accordionList .accordionTit {
        padding: 20px 40px 20px 20px;
        font-size: 16px;
        border-radius: 5px;
    }
    .op_accord .accordionList .accordionTit.open {
        border-radius: 5px 5px 0 0;
    }
    .op_accord .accordionList .accordionTit span {
        right: 20px;
        width: 10px;
        height: 10px;
    }
    .op_accord .accordionList .accordionDetail {
        padding: 0 20px 20px;
        border-radius: 0 0 5px 5px;
    }

    section .inBox .mov {}
    section .inBox .mov iframe {}

    section .inBox .soon {
        padding: 60px 0;
        font-size: 16px;
    }

}



/*===================================================
	hero
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    margin: 0 0 160px;
}
		
#heroView .heroInner {
    position: absolute;
    width: 85%;
    max-width: 1400px;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 7.5%;
}
#heroView .heroInner .txtBox {
    width: 57.5%;
}
#heroView .heroInner .txtBox .goldTxt {
    margin: 0 auto 6%;
}
#heroView .heroInner .txtBox .goldTxt .subTxt {
    width: 75%;
    margin: 0 auto 3%;
}
#heroView .heroInner .txtBox .goldTxt .mainTxt {}
#heroView .heroInner .txtBox .name {}
#heroView .heroInner .kvBox {
    position: relative;
    width: 35%;
}
#heroView .heroInner .kvBox .visual {}
#heroView .heroInner .kvBox .topBtn {
    position: absolute;
    z-index: 2;
    width: 30%;
    right: -6%;
    bottom: -9%;
}
#heroView .heroInner .kvBox .topBtn a {}

#heroView .scrollBox {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
}
#heroView .scrollBox .scrollArrow {
    position: absolute;
    width: 1px;
    height: 90px;
    left: 30px;
    bottom: 30px;
    background: var(--color-brown);
    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);}
}

@media screen and (min-width: 961px) {
    #heroView .heroInner .kvBox .topBtn a:hover {
        opacity: 0.7;
    }
}

@media screen and (max-width: 960px) {

	#heroView {
		height: 100svh;
	    min-height: 450px;
	    margin: 0 0 90px;
	}
			
    #heroView .heroInner {
        max-width: 400px;
        width: 80%;
        height: auto;
    }
    #heroView .heroInner .txtBox {
        width: 80%;
        position: absolute;
        z-index: 2;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    #heroView .heroInner .txtBox .goldTxt {
        position: absolute;
        bottom: 100%;
        margin: 0 auto 20px;
    }
    #heroView .heroInner .txtBox .goldTxt .subTxt {
        margin: 0 auto 2%;
    }
    #heroView .heroInner .txtBox .goldTxt .mainTxt {}
    #heroView .heroInner .txtBox .name {
        position: absolute;
        top: 100%;
        margin: 25px 0 0;
    }
    #heroView .heroInner .kvBox {
        width: 100%;
        aspect-ratio: 305 / 369;
        max-width: 40vh;
        margin: 0 auto;
    }
    #heroView .heroInner .kvBox .visual {}
    #heroView .heroInner .kvBox .topBtn {
        position: absolute;
        z-index: 2;
        width: 27.5%;
        right: -5%;
        bottom: -5%;
    }
    #heroView .heroInner .kvBox .topBtn a {}
	
    #heroView .scrollBox {
        height: 100svh;
    }
	#heroView .scrollBox .scrollArrow {
        height: 60px;
	    left: 20px;
	    bottom: 20px;
	}

}



/*===================================================
	profile
====================================================*/
#profile {}
#profile h3 {}
#profile .inBox {}

#profile .profileList {
    margin-bottom: 40px;
}
#profile .profileList li {
    display: flex;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid;
}
#profile .profileList li:first-of-type {
    padding: 20px 0;
    border-top: 1px solid;
}
#profile .profileList li:last-of-type {
    margin-bottom: 0;
}
#profile .profileList li .question {
    width: 25%;
}
#profile .profileList li .answer {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid;
    padding: 0 0 0 40px;
}
#profile .profileList li .answer span {
    width: 50%;
    display: block;
    margin-bottom: 5px;
    text-indent: -1em;
    padding: 0 0 0 1em;    
}
#profile .profileList li .answer span:last-child {
    margin-bottom: 0;
}

#profile .btn {}
#profile .btn a {}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #profile {}
    #profile h3 {}
    #profile .inBox {}

    #profile .profileList {
        margin-bottom: 20px;
    }
    #profile .profileList li {
        display: block;
    }
    #profile .profileList li:first-of-type {}
    #profile .profileList li:last-of-type {}
    #profile .profileList li .question {
        width: initial;
        display: inline-block;
        background: var(--color-sub);
        padding: 5px 15px;
        line-height: 1;
        font-weight: bold;
        margin: 0 0 10px;
    }
    #profile .profileList li .answer {
        padding: 0;
        border-left: none;
    }
    #profile .profileList li .answer span {
        width: 100%;
    }
    #profile .profileList li .answer span:last-child {}

    #profile .btn {}
    #profile .btn a {}

}



/*===================================================
	memory
====================================================*/
#memory {}
#memory h3 {}
#memory .inBox {}

#memory .inBox .op_accord {}
#memory .inBox .op_accord:last-child {}
#memory .inBox .op_accord .accordionList {}
#memory .inBox .op_accord .accordionList .accordionTit {}
#memory .inBox .op_accord .accordionList .accordionTit span  {}
#memory .inBox .op_accord .accordionList .accordionTit.open span  {}
#memory .inBox .op_accord .accordionList .accordionTit span:before  {}
#memory .inBox .op_accord .accordionList .accordionDetail {}
#memory .inBox .op_accord .accordionList .accordionDetail .comment {
    margin: 0 auto;
}
#memory .inBox .op_accord:nth-of-type(1) .accordionList .accordionDetail .comment {
    width: 80%;
}
#memory .inBox .op_accord:nth-of-type(2) .accordionList .accordionDetail .comment {
    width: 75%;
}
#memory .inBox .op_accord:nth-of-type(3) .accordionList .accordionDetail .comment {}
#memory .inBox .op_accord:nth-of-type(4) .accordionList .accordionDetail .comment {
    width: 75%;
}
#memory .inBox .op_accord:nth-of-type(5) .accordionList .accordionDetail .comment {
    width: 50%;
}


@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #memory {}
    #memory h3 {}
    #memory .inBox {}

    #memory .inBox .op_accord {}
    #memory .inBox .op_accord:last-child {}
    #memory .inBox .op_accord .accordionList {}
    #memory .inBox .op_accord .accordionList .accordionTit {}
    #memory .inBox .op_accord .accordionList .accordionTit span  {}
    #memory .inBox .op_accord .accordionList .accordionTit.open span  {}
    #memory .inBox .op_accord .accordionList .accordionTit span:before  {}
    #memory .inBox .op_accord .accordionList .accordionDetail {}
    #memory .inBox .op_accord .accordionList .accordionDetail .comment {}
    #memory .inBox .op_accord:nth-of-type(1) .accordionList .accordionDetail .comment {}
    #memory .inBox .op_accord:nth-of-type(2) .accordionList .accordionDetail .comment {}
    #memory .inBox .op_accord:nth-of-type(3) .accordionList .accordionDetail .comment {}
    #memory .inBox .op_accord:nth-of-type(4) .accordionList .accordionDetail .comment {}
    #memory .inBox .op_accord:nth-of-type(5) .accordionList .accordionDetail .comment {}

}



/*===================================================
	comment
====================================================*/
#comment {}
#comment h3 {}
#comment .inBox {}

#comment .inBox .op_accord {}
#comment .inBox .op_accord:last-child {}
#comment .inBox .op_accord .accordionList {}
#comment .inBox .op_accord .accordionList .accordionTit {}
#comment .inBox .op_accord .accordionList .accordionTit span  {}
#comment .inBox .op_accord .accordionList .accordionTit.open span  {}
#comment .inBox .op_accord .accordionList .accordionTit span:before  {}
#comment .inBox .op_accord .accordionList .accordionDetail {}
#comment .inBox .op_accord .accordionList .accordionDetail .commentList {}
#comment .inBox .op_accord .accordionList .accordionDetail .commentList li {
    margin-bottom: 10px;
}
#comment .inBox .op_accord .accordionList .accordionDetail .commentList li:last-child {
    margin-bottom: 0;
}
#comment .inBox .op_accord .accordionList .accordionDetail .commentList li .tit {
    display: inline-block;
    background: var(--color-black);
    border-radius: 5px 5px 0 0;
    padding: 5px 15px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: bold;
}
#comment .inBox .op_accord .accordionList .accordionDetail .commentList li .tit span {
    font-size: 10px;
    padding: 0 3px;
}
#comment .inBox .op_accord .accordionList .accordionDetail .commentList li .txtBox {
    padding: 20px;
    background: var(--color-white);
    border-radius: 0 5px 5px 5px;
}
#comment .inBox .op_accord .accordionList .accordionDetail .commentList li .txtBox .txt {
    margin-bottom: 5px;
}
#comment .inBox .op_accord .accordionList .accordionDetail .commentList li .txtBox .how {
    text-align: right;
    font-size: 14px;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #comment {}
    #comment h3 {}
    #comment .inBox {}

    #comment .inBox .op_accord {}
    #comment .inBox .op_accord:last-child {}
    #comment .inBox .op_accord .accordionList {}
    #comment .inBox .op_accord .accordionList .accordionTit {}
    #comment .inBox .op_accord .accordionList .accordionTit span  {}
    #comment .inBox .op_accord .accordionList .accordionTit.open span  {}
    #comment .inBox .op_accord .accordionList .accordionTit span:before  {}
    #comment .inBox .op_accord .accordionList .accordionDetail {}
    #comment .inBox .op_accord .accordionList .accordionDetail .commentList {}
    #comment .inBox .op_accord .accordionList .accordionDetail .commentList li {}
    #comment .inBox .op_accord .accordionList .accordionDetail .commentList li:last-child {}
    #comment .inBox .op_accord .accordionList .accordionDetail .commentList li .tit {}
    #comment .inBox .op_accord .accordionList .accordionDetail .commentList li .tit span {}
    #comment .inBox .op_accord .accordionList .accordionDetail .commentList li .txtBox {
        padding: 15px;
    }
    #comment .inBox .op_accord .accordionList .accordionDetail .commentList li .txtBox .txt {}
    #comment .inBox .op_accord .accordionList .accordionDetail .commentList li .txtBox .how {
        font-size: 12px;
    }

}



/*===================================================
	photo
====================================================*/
#photo {}
#photo h3 {}
#photo .inBox {}

#photo .inBox .photoList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#photo .inBox .photoList li {
    width: calc(100% / 3 - 20px / 3);
}
#photo .inBox .photoList li:last-child {}
#photo .inBox .photoList li a {}

@media screen and (min-width: 961px) {

    #photo .inBox .photoList li a:hover {
        opacity: 0.7;
    }

    #photo .inBox .photoList li:last-child {
        display: flex;
        align-items: center;
    }

}

@media screen and (max-width: 960px) {

    #photo {}
    #photo h3 {}
    #photo .inBox {}

    #photo .inBox .photoList {
        gap: 5px;
    }
    #photo .inBox .photoList li {
        width: calc(100% / 2 - 5px / 2);
    }
    #photo .inBox .photoList li:last-child {
        width: 100%;
    }
    #photo .inBox .photoList li a {}

}



/*===================================================
	movie
====================================================*/
#movie {}
#movie h3 {}
#movie .inBox {}


#movie .inBox .movWrap {
    width: 100%;
    max-width: 740px;
    margin: 0 auto 60px;
}
#movie .inBox .mov {
    position: relative;
    width: 100%;
    padding-top: 75.4%;
}
#movie .inBox .mov video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

#movie .inBox .thanks {
    width: 70%;
    max-width: 600px;
    margin: 0 auto;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #movie {}
    #movie h3 {}
    #movie .inBox {}

    #movie .inBox .movWrap {
        margin: 0 auto 40px;
    }

    #movie .inBox .thanks {
        max-width: 600px;
        width: 75%;
        margin: 0 auto 20px;
    }

}



/*===================================================
	footer
====================================================*/
#footer {
    width: 100%;
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
    background: var(--color-main);
    color: var(--color-white);
}

#footer .footerLogo {
    width: 150px;
    margin: 0 auto 30px;
}

#footer .snsWrap {}
#footer .snsWrap ul {
    display: flex;
    justify-content: center;
    margin: 0 0 50px;
}
#footer .snsWrap ul li {
	margin: 0 20px 0 0;
}
#footer .snsWrap ul li:last-child {
	margin: 0;
}
#footer .snsWrap ul li a {
	font-size: 20px;
}
#footer .snsWrap ul li a i {}

#footer .copyLight {
	line-height: 1;
    text-align: center;
    font-size: 12px;
}

@media screen and (min-width: 961px){

	#footer .footerLogo a:hover img,
	#footer .snsWrap ul li a:hover i {
	    opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

	#footer {
		padding: 40px 0 20px;
	}

	#footer .footerLogo {
		width: 100px;
		margin: 0 auto 25px;
	}

	#footer .snsWrap {}
	
	#footer .snsWrap ul {
		margin: 0 0 30px;
	}
	#footer .snsWrap ul li {}
	#footer .snsWrap ul li:last-child {}
	#footer .snsWrap ul li a {}
	#footer .snsWrap ul li a i {}

	#footer .copylight {}

}



/*===================================================
  OP:MODAL
====================================================*/
.op_modal{}
.op_modal .modPop {
  display:none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.op_modal .modPop.popActive {
  display:block;
}
.op_modal .modPop .popupShade{
  position: absolute;
  display: flex;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  background: rgb(0 0 0 / 0.75);
  z-index: 0;
  align-items: center;
  justify-content: center;
}

.op_modal .modPop .close {
  z-index: 100;
  width: 45px;
  height: 45px;
  position: fixed;
  right: 30px;
  top: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  transform: rotate(45deg);
  background: var(--black);
  border-radius: 100px;
}
.op_modal .modPop .close::before,
.op_modal .modPop .close::after {
  content: '';
  display: inline-block;
  width: 60%;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  left: 50%;
  top: 50%;
}
.op_modal .modPop .close::before {
  transform: translate(-50%,-50%);
}
.op_modal .modPop .close::after {
  transform: translate(-50%,-50%) rotate(90deg);
}
.op_modal .modPop .popInBox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    aspect-ratio: 3 / 4;
}
.op_modal .modPop.yoko .popInBox {
    width: 80%;
    max-width: 800px;
    height: auto;
    aspect-ratio: initial;
}
.op_modal .modPop .popInBox .photo {
    position: relative;
    line-height: 0;
}
.op_modal .modPop .popInBox .photo img {
    pointer-events: none;
    user-select: none;  
}

@media screen and (min-width:961px) {}

@media screen and (max-width:960px) {

  .op_modal .modPop .close {
    right: 20px;
    top: 20px;
  }

  .op_modal .modPop .popInBox {
        max-width: 90%;
  }
  .op_modal .modPop.yoko .popInBox {
    height: initial;
    aspect-ratio: initial;
    width: 90%;
    max-width: 600px;
  }

}