@charset "utf-8";

:root {
    --black: #000;
    --white: #fff;
    --whiteOpc: #ffffff25;
    --main: #79B9BA;

    --titleFont: "itc-benguiat-condensed", sans-serif;
    --commonFont: "Noto Serif JP", serif;
}



/*===================================================
	ani
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    height: 100dvh;
    width: 100%;
    background: var(--black);
    z-index: 9999;
}

.action {
    opacity: 0;
    transition: 1s ease;
}
.action.act01,
.action.act02,
.action.act03 {
    transform: translateY(20px);
}
.loaded .action {
    opacity: 1;
    transform: translateY(0);
}
.loaded .action.act01 {
    transition-delay: 1s;
}
.loaded .action.act02 {
    transition-delay: 1.25s;
}
.loaded .action.act03 {
    transition-delay: 1.5s;
}

.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 (min-width: 961px){}

@media screen and (max-width: 960px){}



/*===================================================
	ALL
====================================================*/
html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
}

.floater {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10;
    transition: 0.5s ease;
    pointer-events: none;
    opacity: 0;
    transform: translateX(100%);
}
.scrolled .floater {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}
.floater a {
    display: block;
    font-size: 24px;
    font-family: var(--titleFont);
    letter-spacing: 0.03em;
    color: var(--black);
    background: var(--main);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px 0 0 0;
}

.mainWrap {
    position: relative;
    z-index: 1;
    font-family: var(--commonFont);
    font-size: 16px;
    line-height: 1.5;
    color: var(--main);
    width: calc(100% - 60px);
    border-left: solid var(--main);
    border-right: solid var(--main);
    border-width: 1px;
    margin: 0 auto;
    padding: 30px 0 90px;
}

.border {
    position: absolute;
    z-index: 2;
    width: calc(100% + 60px);
    height: 1px;
    background: var(--main);
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.border:before,
.border:after {
    content: "";
    display: block;
    position: absolute;
    width: 60px;
    aspect-ratio: 41 / 50;
    background-image: url(/static/issue/fanclub/feature/phase/image/ph_frame_1f0v2J8x.svg);
    background-size: cover;
    background-repeat: no-repeat;
    top: -36.5px;
}
.border:before {
    left: 0x;
}
.border:after {
    right: 0px;
}
.border.borderTop {
    top: 0;
}
.border.borderBottom {
    bottom: 0;
}

.container {}

.container section {
    position: relative;
    padding: 160px 0;
}

.container section h3 {
    width: 50%;
    max-width: 600px;
    margin: 0 auto 120px;
}

.container section .inBox {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    backdrop-filter: blur(5px);
    background: var(--whiteOpc);
}

.container section .inBox .soon {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    padding: 80px 0;
}

/* loop */
#loop {
    padding: 40px 0;
}
#loop .loopWrap {
    overflow: hidden;
}
#loop .loopWrap .loopBox {
    display: flex;
    align-items: center;
    width: calc((280px + 40px) * 24);
    gap: 40px;
    animation: slide01 60s linear infinite;
}
#loop .loopWrap .loopBox.loopBoxRe {
    animation: slide02 60s linear infinite;
}
#loop .loopWrap .loopBox span {
    position: relative;
    display: block;
    width: 280px;
    aspect-ratio: 150 / 41;
}
#loop .loopWrap .loopBox span:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 150 / 41;
    background-image: url(/static/issue/fanclub/feature/phase/image/ph_mainLogo_1f0v2J8x.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
@keyframes slide01 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes slide02 {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@media screen and (min-width:961px) {
    
    .sp {
        display: none;
    }

    a, img, i {
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
    }

}

@media screen and (max-width:960px) {
    
    .pc {
        display: none;
    }

    .floater {}
    .floater a {
        font-size: 20px;
    }

	.mainWrap {
        font-size: 14px;
        padding: 20px 0 60px;
        width: calc(100% - 40px);
    }

    .border {
        width: calc(100% + 40px);
    }
    .border:before,
    .border:after {
        width: 40px;
        top: -24.5px;
    }
    .border:before {}
    .border:after {}
    .border.borderTop {}
    .border.borderBottom {}

	.container {}

	.container section {
        padding: 80px 0;
    }

    .container section h3 {
        width: 75%;
        max-width: 450px;
        margin: 0 auto 40px;
    }

	.container section .inBox {
        padding: 20px;
    }

    .container section .inBox .soon {
        padding: 20px 0;
        font-size: 20px;
    }

    /* loop */
    #loop {
        padding: 20px 0;
    }
    #loop .loopWrap {}
    #loop .loopWrap .loopBox {
        width: calc((120px + 20px) * 24);
        gap: 20px;
    }
    #loop .loopWrap .loopBox.loopBoxRe {}
    #loop .loopWrap .loopBox span {
        width: 120px;
    }
    #loop .loopWrap .loopBox span:after {}

}


/*===================================================
    heroView
====================================================*/
#heroView {
    z-index: 2;
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
    min-height: 540px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#heroView .heroInner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1920px;
    height: 100%;
    overflow: hidden;
}
#heroView .heroInner .kvBox {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0%, -50%);
    width: 80%;
    max-width: calc(1920px * 0.8);
    min-width: 980px;
    height: 100%;
}
#heroView .heroInner .kvBox .kv {
    width: 100%;
    height: 100%;
    position: relative;
    right: 5%;
}
#heroView .heroInner .kvBox .kv img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 30%;
}

#heroView .heroInner .titleBox {
    position: absolute;
    z-index: 2;
    width: 27.5%;
    max-width: calc(1920px * 0.275);
    top: 50%;
    right: 5%;
    transform: translate(5%, -50%);
    -webkit-transform: translate(5%, -50%);
}
#heroView .heroInner .titleBox .mainTit {
    margin: 0 auto 5%;
}
#heroView .heroInner .titleBox .subTitBox {
    width: 65%;
    margin: 0 auto;
}
#heroView .heroInner .titleBox .subTitBox p {
    line-height: 1;
}
#heroView .heroInner .titleBox .subTitBox p:nth-child(1) {
    width: 57%;
    margin: 0 auto 5%;
}
#heroView .heroInner .titleBox .subTitBox p:nth-child(2) {}

#heroView .menulist {
    display: flex;
    position: absolute;
    top: 30px;
    right: 30px;
    flex-direction: column;
    align-items: flex-end;
}
#heroView .menulist li {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 400;
    font-family: var(--titleFont);
    line-height: 1;
}
#heroView .menulist li:last-child {
    margin: 0;
}
#heroView .menulist li a {}

#heroView .snsWrap {
    position: absolute;
    bottom: 30px;
    left: 30px;
}
#heroView .snsWrap .menuList {
    display: flex;
    align-items: center;
}
#heroView .snsWrap .menuList li {
    margin: 0 20px 0 0;
    line-height: 1;
}
#heroView .snsWrap .menuList li:last-child {
	margin: 0;
}
#heroView .snsWrap .menuList li a {
	font-size: 20px;
}
#heroView .snsWrap .menuList li a i {}

#heroView .scrollBox {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
#heroView .scrollBox .scrollArrow {
    width: 1px;
    height: 90px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: var(--main);
}
#heroView .scrollBox .scrollArrow:after {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    aspect-ratio: 41 / 50;
    background-image: url(/static/issue/fanclub/feature/phase/image/ph_frame_1f0v2J8x.svg);
    background-size: cover;
    background-repeat: no-repeat;
    top: -15px;
    left: -15px;
    animation: scrollArrow 3s ease-in-out 0.5s infinite;
}
@keyframes scrollArrow {
    0% {opacity: 0; top: -15px;}
    25% {opacity: 100%;}
    75% {opacity: 100%;}
    100% {opacity: 0; top: calc(100% - 15px);}
}

#heroView .translateBox {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 12px;
}
.wovn-languages {
    width: 100px;
    height: 20px;
    cursor: pointer;
}
.wovn-languages::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 3px;
    right: 10px;
    border: 1px solid var(--main);
    border-color: transparent transparent var(--main) var(--main);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.wovn-languages .language-name {
    cursor: pointer;
}
.wovn-languages .nav-dropdown {
    position: absolute;
    top: 0;
    line-height: 1.3;
    border-bottom: 1px solid;
    text-align: left;
    z-index: 2;
    width: 100px;
    height: 25px;
}
.wovn-languages .nav-dropdown .list--language {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
}
.wovn-languages .nav-dropdown .list--language li {
    width: 100%;
    display: none;
    cursor: pointer;
    padding-bottom: 10px;
}
.wovn-languages .nav-dropdown .list--language li:last-child {
    padding-bottom: 0; 
}
.wovn-languages .nav-dropdown .list--language li.selected {
    display: block;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
            order: -1;
}
.wovn-languages.visible::before {
    content: none;
}
.wovn-languages.visible .nav-dropdown {
    opacity: 1;
    pointer-events: visible;
    z-index: 1;
    border: none;
    padding: 10px;
    background: var(--black);
    height: auto;
}
.wovn-languages.visible .nav-dropdown .list--language li {
    display: block;
}
.wovn-languages.visible .nav-dropdown .list--language li.selected {
    opacity: 0.4;
    pointer-events: none;
}

@media screen and (min-width:1921px) {

    #heroView .heroInner .kvBox .kv {
        right: 0;
    }

}

@media screen and (max-width: 1100px) and (min-width: 961px) {

    #heroView .heroInner .titleBox {
        width: 25%;
        right: 3%;
        transform: translate(3%, -50%);
        -webkit-transform: translate(3%, -50%);
    }

}

@media screen and (max-width: 1100px) and (min-width: 961px) and (max-height: 750px) {

    #heroView .heroInner .kvBox {
        width: 85%;
        min-width: 900px;
    }

    #heroView .heroInner .kvBox .kv {
        right: 10%;
    }

    #heroView .heroInner .titleBox {}

}

@media screen and (max-width: 1100px) and (min-width: 960px) and (max-height: 599px) {

}

@media screen and (min-width: 961px) {

    #heroView .menulist li a:hover,
    #heroView .snsWrap .menuList li a:hover i {
	    opacity: 0.7;
	}

}

@media screen and (max-width: 960px) {

	#heroView {
	    min-height: 410px;
        height: calc(100svh - 40px);
	}

	#heroView .heroInner {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        width: 100%;
        height: 50%;
        overflow: initial;
    }
    #heroView .heroInner .kvBox {
        width: 100%;
        min-width: initial;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        overflow: hidden;
    }
    #heroView .heroInner .kvBox .kv {
        right: 0;
    }
    #heroView .heroInner .kvBox .kv img {
        object-position: 50% 30%;
    }

    #heroView .heroInner .titleBox {
        position: relative;
        width: 50%;
        max-width: 300px;
        top: 50%;
        right: initial;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    #heroView .heroInner .titleBox .mainTit {
        margin: 0;
        position: absolute;
        bottom: calc(100% + 20px);
    }
    #heroView .heroInner .titleBox .subTitBox {
        position: absolute;
        top: calc(100% + 20px);
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
    #heroView .heroInner .titleBox .subTitBox p {}
    #heroView .heroInner .titleBox .subTitBox p:nth-child(1) {}
    #heroView .heroInner .titleBox .subTitBox p:nth-child(2) {}
    
    #heroView .menulist {
        top: 20px;
        right: 20px;
    }
    #heroView .menulist li {
        margin-bottom: 15px;
        font-size: 16px;
    }
    
    #heroView .snsWrap {
        bottom: 20px;
        left: 20px;
    }
    
    #heroView .scrollBox {}
    #heroView .scrollBox .scrollArrow {
        right: 20px;
        bottom: 20px;
    }

    #heroView .translateBox {
        top: 15px;
        left: 20px;
    }

}


/*===================================================
    PRODUCT
====================================================*/
#product {}
#product h3 {}

#product .productBox {
    width: 90%;
    margin: 0 auto 160px;
    position: relative;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
}
#product .productBox:nth-child(odd) {
	flex-flow: row-reverse;
}
#product .productBox:last-child {
    margin: 0 auto;
}

#product .productBox .productImg {
    width: 40%;
    z-index: 2;
    position: sticky;
    top: 120px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#product .productBox .productImg img {}
#product .productBox .productImg img:last-child {}

#product .productBox .productDetail {
    position: relative;
    width: 55%;
    z-index: 1;
}
#product .productBox:nth-child(odd) .productDetail {}
#product .productBox:nth-child(odd) .productDetail:after {}

#product .productBox .productDetail .detailInner {}

#product .productBox .productDetail .detailInner .detailTit {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1;
    font-weight: bold;
}
#product .productBox .productDetail .detailInner .detailTit span {
    font-size: 20px;
    font-weight: 500;
    padding: 0 0 0 15px;
}

#product .productBox .productDetail .detailInner .price {
	font-size: 24px;
    line-height: 1;
    margin-bottom: 15px;
}
#product .productBox .productDetail .detailInner .price .yen {
    font-size: 18px;
    padding-right: 5px;
}
#product .productBox .productDetail .detailInner .price .tax {
    font-size: 14px;
    padding-left: 10px;
}
#product .productBox .productDetail .detailInner .code {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 35px;
}
#product .productBox .productDetail .detailInner .code .tag {
    font-size: 14px;
    border: 1px solid;
    padding: 0 10px;
    margin-right: 10px;
    font-weight: bold;
    background: var(--black);
}
#product .productBox .productDetail .detailInner .code .productNote {
    display: block;
    text-indent: -1em;
    padding: 15px 0 0 1em;
    line-height: 1.3;
}

#product .productBox .productDetail .detailInner .detailListBox {
    margin: 0px 0 20px;
    padding: 30px;
    backdrop-filter: blur(5px);
    background: var(--whiteOpc);
}
#product .productBox .productDetail .detailInner .detailListBox:last-child {
    margin: 0;
}

#product .productBox .productDetail .detailInner .detailListBox .listTit {
    font-size: 16px;
    margin: 0px 0 15px;
    font-weight: bold;
    padding: 0 0 15px;
    line-height: 1.3;
    border-bottom: 1px solid;
}
#product .productBox .productDetail .detailInner .detailListBox .listTxt {}
#product .productBox .productDetail .detailInner .detailListBox ul {}
#product .productBox .productDetail .detailInner .detailListBox ul li {
    margin: 0 0 5px;
}
#product .productBox .productDetail .detailInner .detailListBox ul li:last-child {
    margin: 0;
}
#product .productBox .productDetail .detailInner .detailListBox ul.txtList li {}
#product .productBox .productDetail .detailInner .detailListBox ul.numList li {
    display: flex;
}
#product .productBox .productDetail .detailInner .detailListBox ul.numList li span {
    display: flex;
    width: 23px;
    height: 23px;
    font-size: 14px;
    background: var(--main);
    color: var(--black);
    align-items: center;
    justify-content: center;
    margin: 0 5px 0 0;
    font-weight: bold;
    line-height: 1;
}
#product .productBox .productDetail .detailInner .detailListBox ul.numList li p {
    width: calc(100% - 28px);
}

/* productFcBox */
#product .productBox.productFcBox {
    flex-direction: column;
    margin: 0 auto;
}
#product .productBox.productFcBox .productImg {
    position: relative;
    top: 0;
    width: 100%;
    display: flex;
    margin: 0 auto 40px;
    flex-direction: row;
    justify-content: space-between;
}
#product .productBox.productFcBox .productImg .fcPhoto {
    width: calc(100% / 3 - 40px / 3);
}
#product .productBox.productFcBox .productImg .fcPhoto:last-child {}
#product .productBox.productFcBox .productImg .fcPhoto .photo {
    margin: 0 0 5px;
}
#product .productBox.productFcBox .productImg .fcPhoto .name {
    font-weight: bold;
}
#product .productBox.productFcBox .productImg .fcPhoto .name span {
    font-size: 14px;
    padding: 0 0 0 5px;
}
#product .productBox.productFcBox .productDetail {
    width: 100%;
    position: relative;
}
#product .productBox.productFcBox .productDetail:after {
    position: absolute;
    content: "※今作は3人体制でのリリースとなり、RINは不参加となります。";
    color: var(--main);
    font-size: 14px;
    bottom: -35px;
    right: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

	#product {}
    #product h3 {}

	#product .sectionTit {}

    #product .productBox {
	    margin: 0 auto 80px;
	    flex-wrap: wrap;
	}
	#product .productBox:nth-child(odd)  {
		flex-flow: wrap;
	}

	#product .productBox .productImg {
        position: relative;
        top: 0;
        width: 80%;
        margin: 0 auto 25px;
	}
    #product .productBox .productImg img {}
    #product .productBox .productImg img:last-child {
        margin: 0;
    }

	#product .productBox .productDetail {
	    margin-top: 0;
	    width: 100%;
	}
	#product .productBox .productDetail:after {}
	#product .productBox:nth-child(odd) .productDetail:after {}

	#product .productBox .productDetail .detailInner {}
	#product .productBox .productDetail .detailInner .detailTit {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.3;
	}
	#product .productBox .productDetail .detailInner .detailTit span {
		display: block;
	    padding: 15px 0 0;
	    font-size: 14px;
	}
	#product .productBox .productDetail .detailInner .price {
	    font-size: 20px;
	    margin-bottom: 15px;
	}
	#product .productBox .productDetail .detailInner .price .tax {
	    font-size: 12px;
	}
	#product .productBox .productDetail .detailInner .code {
	    margin-bottom: 30px;
    	font-size: 12px;
	}
    #product .productBox .productDetail .detailInner .price .yen {
        font-size: 16px;
    }
	#product .productBox .productDetail .detailInner .code .tag {
        font-size: 12px;
        padding: 2px 10px;
	}
	#product .productBox .productDetail .detailInner .code .productNote {
	    line-height: 1.5;
	}
	#product .productBox .productDetail .detailInner .detailListBox {
        padding: 20px;
        margin-bottom: 5px;
    }
	#product .productBox .productDetail .detailInner .detailListBox:last-child {}
	#product .productBox .productDetail .detailInner .detailListBox .listTit {}
	#product .productBox .productDetail .detailInner .detailListBox .listTxt {
	    font-size: 12px;
	}
	#product .productBox .productDetail .detailInner .detailListBox ul {}
	#product .productBox .productDetail .detailInner .detailListBox ul li {
	    font-size: 14px;
	}
	#product .productBox .productDetail .detailInner .detailListBox ul li:last-child {}
	#product .productBox .productDetail .detailInner .detailListBox ul.numList li span {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    #product .productBox .productDetail .detailInner .detailListBox ul.numList li p {
        width: calc(100% - 25px);
    }


    /* productFcBox */
    #product .productBox.productFcBox {}
    #product .productBox.productFcBox .productImg {
        margin: 0 auto 20px;
    }
    #product .productBox.productFcBox .productImg .fcPhoto {
        width: calc(100% / 3 - 15px / 3);
    }
    #product .productBox.productFcBox .productImg .fcPhoto:last-child {}
    #product .productBox.productFcBox .productImg .fcPhoto .photo {}
    #product .productBox.productFcBox .productImg .fcPhoto .name {}
    #product .productBox.productFcBox .productImg .fcPhoto .name span {
        padding: 0;
        display: block;
        font-size: 12px;
        font-weight: 400;
    }
    #product .productBox.productFcBox .productDetail:after {
        display: none;
    }
    #product .productBox.productFcBox .productDetail .detailInner {
        position: relative;
    }
    #product .productBox.productFcBox .productDetail .detailInner:after {
        position: absolute;
        content: "※今作は3人体制でのリリースとなり、RINは不参加となります。";
        font-size: 12px;
        bottom: -30px;
        right: 0;
    }

}



/*===================================================
    PHOTO
====================================================*/
#photo {}
#photo h3 {}

#photo .photo_inner{
    line-height: 0;
}

#photo .photo_inner .slider li {
    padding: 0 10px;
}
#photo .photo_inner .slider .slick-slide {
    filter: grayscale(100%);
}
#photo .photo_inner .slider .slick-slide.slick-center {
    filter: grayscale(0);
}

#photo .photo_inner .slider .slick-next {
    right: 51%;
    top: auto;
    bottom: 30px;
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    z-index: 1;
    border-radius: 100px;
}
#photo .photo_inner .slider .slick-next {
    right: 51%;
    top: auto;
    bottom: 30px;
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    z-index: 1;
    border-radius: 100px;
}
#photo .photo_inner .slider .slick-prev {
    left: 51%;
    top: auto;
    bottom: 30px;
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    z-index: 1;
    border-radius: 100px;
}
#photo .photo_inner .slider .slick-prev:before, 
#photo .photo_inner .slider .slick-next:before {
    content: '';
    width: 30%;
    height: 30%;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #ffffff;
    display: block;
    opacity: 1;
    bottom: auto;
    top: 50%;
    right: 50%;
    position: absolute;
    transform: rotate(-45deg) translate(50%, -15%);
    background: none;
    border-radius: 0;
    line-height: 0;
}
#photo .photo_inner .slider .slick-next:before {
    transform: rotate(135deg) translate(-15%, 50%);
    right: auto;
    left: 50%;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #photo {}
    #photo h3 {}
    #photo .inBox {}
    
    #photo .photo_inner .slider li {
        padding: 0 5px;
    }

    #photo .photo_inner .slider .slick-prev {
        left: 55%;
        bottom: -30px;
    }
    #photo .photo_inner .slider .slick-next {
        right: 55%;
        bottom: -30px;
    }

}


/*===================================================
    SHOP
====================================================*/
#shop {}
#shop h3 {}
#shop .inBox {}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #shop {}
    #shop h3 {}
    #shop .inBox {}

}


/*===================================================
    SPECIAL
====================================================*/
#special {}
#special h3 {}
#special .inBox {}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #special {}
    #special h3 {}
    #special .inBox {}

}


/*===================================================
    FOOTER
====================================================*/
.copyBox {
    position: relative;
    padding: 120px 0 40px;
}

.copyBox .footerLogo {
    line-height: 1;
    display: flex;
    justify-content: center;
    margin: 0 auto 40px;
}
.copyBox .footerLogo a {}
.copyBox .footerLogo a img {
    width: 150px;
}

.copyBox .sns_wrap {
    display: flex;
    justify-content: center;
    margin: 0 auto 120px;

}
.copyBox .sns_wrap .menuList {
	display: flex;
}
.copyBox .sns_wrap .menuList li {
	margin: 0 20px 0 0;
}
.copyBox .sns_wrap .menuList li:last-child {
	margin: 0;
}
.copyBox .sns_wrap .menuList li a {
	font-size: 20px;
}
.copyBox .sns_wrap .menuList li a i {}

.copyBox .copy {
    font-size: 12px;
    text-align: center;
}

@media screen and (min-width: 961px) {

	.copyBox .footerLogo a:hover img,
	.copyBox .sns_wrap .menuList li a:hover i {
	    opacity: 0.7;
	}

}

@media screen and (max-width: 960px) {
	.copyBox {
        padding: 60px 0 20px;
    }

	.copyBox .footerLogo {
        margin: 0 auto 25px;
    }
	.copyBox .footerLogo a {}
    .copyBox .footerLogo a img {
        width: 90px;
    }

    .copyBox .sns_wrap {
        margin: 0 auto 55px;
    }

	.copyBox .copy {}

}


/*===================================================
    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;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.op_modal .modPop.popActive {
    display:block;
}
.op_modal .modPop .popupShade{
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    background: var(--black);
    z-index: 0;
}

.op_modal .modPop .close {
    width: 45px;
    height: 45px;
    position: fixed;
    right: 45px;
    top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    transform: rotate(45deg);
    background: var(--main);
    border-radius: 100px;
}
.op_modal .modPop .close::before,
.op_modal .modPop .close::after {
    content: '';
    display: inline-block;
    width: 60%;
    height: 2px;
    background: var(--black);
    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 {
    width: 90%;
    max-width: 800px;
    margin: 100px auto;
    padding: 0;
}

@media screen and (max-width: 960px){

    .op_modal .modPop .close {
        width: 30px;
        height: 30px;
        right: 15px;
        top: 15px;
    }

    .op_modal .modPop .popInBox {
        margin: 60px auto;
    }

}