@charset "utf-8";

:root {
    
    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Shippori Mincho", serif;
    --font-title: "baskerville-display-pt", "Shippori Mincho", serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-black: #222222;
    --color-white: #ffffff;

    --color-green: #87ADA9;
    --color-pink: #f47b96;
    --color-pink-grd: linear-gradient(180deg,rgba(244, 123, 150, 1) 0%, rgba(245, 163, 182, 1) 50%, rgba(244, 123, 150, 1) 100%);;

    /* Semantic (用途固定) */
	--color-text-primary: var(--color-white);
	--color-text-accent: var(--color-pink);

    --color-bg-primary: var(--color-green);
    --color-bg-primary-grd: linear-gradient(90deg,rgba(164, 137, 109, 1) 0%, rgba(229, 211, 155, 1) 35%, rgba(214, 226, 181, 1) 60%, rgba(209, 232, 185, 1) 80%, rgba(135, 173, 169, 1) 100%);
    --color-bg-secondary: var(--color-white);

    --color-text-tag: var(--color-pink);
    --color-bg-tag: var(--color-white);

    --color-text-btn: var(--color-white);
    --color-bg-btn: var(--color-pink);
    --color-bg-btn-grd: var(--color-pink-grd);

    /* ======================================================
       4px Grid (spacing)
    ====================================================== */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;
    --space-9: 36px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    /* ======================================================
       Section専用スケール (ページレイアウト用)
    ====================================================== */
    --section-ratio-last: 1.5;  
    --section-base-pc: calc(var(--space-20) * 2);
    --section-base-sp: var(--space-20);
    --section-base-last-pc: calc(var(--section-base-pc) * var(--section-ratio-last));
    --section-base-last-sp: calc(var(--section-base-sp) * var(--section-ratio-last));

    /* ======================================================
       Radius
    ====================================================== */
    --radius-s: 4px;
    --radius-m: 8px;
    --radius-full: 9999px;

    /* ======================================================
       Z-index - 基本レイヤー
    ====================================================== */
    --z-background: -1;  /* 背景 */
    --z-base: 1;         /* 通常コンテンツ */
    --z-fv: 2;           /* ファーストビュー */
    --z-content: 10;     /* メインコンテンツ */
    --z-nav: 20;         /* ナビゲーション */
    --z-nav-btn: 21;     /* ナビゲーションボタン */
    --z-loader: 100;     /* ローダー */

}



/*===================================================
	ani
====================================================== */
.js .loader {
    position: fixed;
    z-index: var(--z-loader);
    height: 100%;
    width: 100%;
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-out;
    pointer-events: none;
    will-change: clip-path;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}
.loader .loaderLogo {
    display: none;
}
.js .loader .loaderLogo {
    display: block;
    width: 60%;
    max-width: 360px;
}
.js .loaded .loader {
    opacity: 0;
    transition-delay: 0.5s;
}


.js #fv .mainLogo img,
.js #fv .fvTxt01 img,
.js #fv .fvTxt02 img {
    opacity: 0;
    transition: all 0.5s ease-out;
}
.js #fv .mainLogo img {
    transform: translateX(20px);
}
.js #fv .fvTxt01 img,
.js #fv .fvTxt02 img {
    transform: translateX(-20px);
}
.js #fv .mainLogo img {transition-delay: 1s;}
.js #fv .fvTxt01 img {transition-delay: 1.5s;}
.js #fv .fvTxt02 img {transition-delay: 1.75s;}
.js .loaded #fv .mainLogo img,
.js .loaded #fv .fvTxt01 img,
.js .loaded #fv .fvTxt02 img {
    opacity: 1;
    transform: translateX(0);
}

.js .anim.fadeX,
.js .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.js .anim.fadeX {
    transform: translateX(30px);
}
.js .anim.fadeX.revers {
    transform: translateX(-30px);
}
.js .anim.fadeY {
    transform: translateY(30px);
}
.js .anim.fadeX.on,
.js .anim.fadeY.on {
    opacity: 1;
}
.js .anim.fadeX.on,
.js .anim.fadeX.revers.on {
    transform: translateX(0px);
}
.js .anim.fadeY.on {
    transform: translateY(0px);
}

@media screen and (max-width: 960px) {}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    position: absolute;
    z-index: var(--z-background);
    inset: 0;
    background: var(--color-bg-primary);
    background: var(--color-bg-primary-grd);
    pointer-events: none;
    overflow: hidden;
}
.bgBox > * {
    position: absolute;
}
.bgBox .bg {
    inset: 0;
    top: 0;
    left: 0;
}
.bgBox .bg01 {
    z-index: 1;
    background: url(/static/notequalme/official/feature/12th_single/image/bg_shadow_01_vaxsjydk.png);
    background-position: center top;
    background-size: contain;
    background-repeat: repeat-y;
    will-change: transform;
    opacity: 0.4;
}
.bgBox .bg02 {
    z-index: 2;
    background: url(/static/notequalme/official/feature/12th_single/image/bg_shadow_02_vaxsjydk.png);
    background-position: center top;
    background-size: contain;
    background-repeat: repeat-y;
    will-change: transform;
    opacity: 0.4;
}
.bgBox .bg03 {
    z-index: 3;
    background: var(--color-black);
    opacity: 0.2;
}
.bgBox .bg04 {
    z-index: 4;
    background: url(/static/notequalme/official/feature/12th_single/image/noise.webp);
    background-size: 800px;
    background-position: center center;
    background-repeat: repeat;
    opacity: 0.05;
    mix-blend-mode: hard-light;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    .bgBox .bg01,
    .bgBox .bg02 {
        opacity: 0.2;
    }

}



/*===================================================
	nav
====================================================*/

.hamBtn {
    position: fixed;
    z-index: var(--z-nav-btn);
    right: var(--space-8);
    top: var(--space-8);
    display: block;
    width: 48px;
    height: 48px;
    background: var(--color-bg-btn);
    background: var(--color-bg-btn-grd);
    transition: all .3s ease;
    border-radius: var(--radius-s);
    cursor: pointer;
}
.hamBtn span {
    position: absolute;
    display: block;
    right: 20%;
    width: 60%;
    height: 2px;
    background: var(--color-text-btn);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: var(--space-3);
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: var(--space-3);
}
.hamBtn.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}
.hamBtn.open span:nth-of-type(2) {
    opacity: 0;
}
.hamBtn.open span:nth-of-type(3) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
}

.navigation {
    position: fixed;
    z-index: var(--z-nav);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--color-text-accent);
	transition: all 0.5s ease-out;
    opacity: 0;
    pointer-events: none;
}
.navigation.active {
    transition: opacity 0.5s ease;
    opacity:1;
    pointer-events:auto;
}

.navigation .headerNavBox {
    background: var(--color-bg-secondary);
    margin: 0 auto;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.navigation .heroNavLogo {
    margin: 0 0 var(--space-12);
    width: 60%;
    max-width: 320px;
}
.navigation .heroNavLogo a {
    display: block;
}

.navigation .headerNav li {
    position: relative;
    padding: 0;
    margin: 0 0 var(--space-6);
}
.navigation .headerNav li:nth-last-child(2) {
    margin-bottom: var(--space-10);
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li a {
    display: block;
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 32px;
    text-decoration: none;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.03em;
}

.navigation .snsList {
    display: flex;
    margin-bottom: var(--space-4);
    align-items: center;
}
.navigation .snsList:last-child {
    margin-bottom: 0;
}
.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .navListTit {
    margin-right: var(--space-4);
    font-size: 16px;
    font-family: var(--font-title);
    font-weight: 400;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
}
.navigation .snsList .navListTit.snsTit {
    margin-right: 32px;
}
.navigation .snsList .menuList li {
    margin: 0px var(--space-2) 0 0;
}
.navigation .snsList .menuList li:nth-last-child(2) {
    margin: 0px var(--space-2) 0 0;
}
.navigation .snsList .menuList li:last-child {
	margin-right: 0;
}
.navigation .snsList .menuList li a {
	font-size: 24px;
}
.navigation .snsList .menuList .menu_icon a {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: var(--color-bg-btn);
    background: var(--color-bg-btn-grd);
    color: var(--color-text-btn);
}
.navigation .snsList .menuList .menu_icon a i,
.navigation .shareList .menu_icon a i {
    font-size: 14px;
}
.navigation .shareList .menu_icon a img {
	height: 16px;
}

@media screen and (min-width: 961px) {

    .navigation .headerNav li a:hover,
    .navigation .snsList .menuList .menu_icon a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px) {

    .hamBtn {
        right: var(--space-4);
        top: var(--space-4);
        width: 40px;
        height: 40px;
    }
    .hamBtn :nth-of-type(1) {
        top: 10px;
    }
    .hamBtn :nth-of-type(3) {
        bottom: 10px;
    }

    .navigation .heroNavLogo {
        width: 70%;
        margin: 0 0 var(--space-10);
    }

    .navigation .headerNav li a {
        font-size: 28px;
    }

}



/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--space-20) * 1.5);
    background: var(--color-bg-primary);
}

body {}

.mainWrap {
    position: relative;
    z-index: var(--z-base);
    font-family: var(--font-base);
	font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-primary);
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
    z-index: var(--z-content);
}

section {
    padding-bottom: var(--section-base-pc);
}
section:last-of-type {
    padding-bottom: var(--section-base-last-pc);
}

section h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-title);
    font-size: 112px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto var(--space-16);
}
section:nth-child(2n) h3 {
    text-align: right;
}

section .inBox .btn a {
	display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-4);
    background: var(--color-bg-btn);
    background: var(--color-bg-btn-grd);
    color: var(--color-text-btn);
    text-align: center;
    font-weight: bold;
    border-radius: var(--radius-full);
    text-decoration: none;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a, img {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

    section .inBox .btn a:hover {
        opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

	.pc {
		display: none !important;
	}

	html {
	    scroll-padding-top: var(--space-12);
	}

	body {}

	.mainWrap {
        overflow: hidden;
    }

	.container {}

	section {
		padding: 0 0 var(--section-base-sp);
	}
    section:last-of-type {
        padding: 0 0 var(--section-base-last-sp);
    }

	section h3 {
        font-size: 48px;
        margin: 0 auto var(--space-6);
	}

    section .inBox .btn a {
        padding: var(--space-5);
        font-size: 14px;
    }

}



/*===================================================
    fv
====================================================*/
#fv {
    position: relative;
    z-index: var(--z-fv);
    width: 100%;
    height: 100svh;
    min-height: 600px;
    margin-bottom: var(--section-base-pc);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#fv .kvInner {
    position: absolute;
    z-index: 1;
    inset: 0;
}
#fv .kvInner .kv {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: clip;
}

#fv .artistLogo {
    position: absolute;
    z-index: 2;
    width: 80px;
    top: var(--space-8);
    left: var(--space-8);
}

#fv .scrollBox {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100svh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: 0.5s ease-out;
}
#fv .scrollBox .scrollArrow {
    position: absolute;
    right: var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#fv .scrollBox .scrollArrow .txt {
    color: var(--color-text-primary);
    font-weight: bold;
    line-height: 1;
    writing-mode: sideways-lr;
    padding: 0 0 var(--space-3) 0;
}
#fv .scrollBox .scrollArrow span {
    display: block;
    z-index: 1;
    width: 1px;
    height: 64px;
    background: var(--color-text-primary);
    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);}
}

#fv .mainLogo {
    position: absolute;
    z-index: 2;
    left: var(--space-8);
    bottom: var(--space-8);
    width: 30%;
    max-width: 420px;
}

#fv .txtBox {
    position: absolute;
    z-index: 2;
    right: var(--space-8);
    bottom: var(--space-8);
    width: 30%;
    max-width: 420px;
    display: flex;
    align-items: flex-end;
    gap: var(--space-4);
    flex-direction: column;
}
#fv .txtBox .fvTxt.fvTxt01 {
    width: 60%;
}

@media screen and (min-width: 1921px) {

#fv {
    width: 100%;
    height: auto;
    min-height: initial;
    aspect-ratio: 16 / 9;
}

}

@media screen and (min-width: 961px) {

    #fv .kvInner .kv img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 27.5%;
    }

    #fv .artistLogo a:hover {
        opacity: 0.7;
    }
    
}

@media screen and (max-width: 960px) {

	#fv {
        min-height: 450px;
        margin-bottom: var(--section-base-sp);
    }

    #fv .kvInner {}
    #fv .kvInner .kv {}
    #fv .kvInner .kv img {
        width: 125%;
        max-width: 960px;
    }
    #fv .kvInner .innerBg {
        position: absolute;
        z-index: 1;
        width: calc(100% + 48px);
        height: calc(100% + 48px);
        filter: blur(24px);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: url(/static/notequalme/official/feature/12th_single/image/ph_kv_vaxsjydk.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        pointer-events: none;
    }
    #fv .kvInner .innerBg:before {
        position: absolute;
        z-index: 2;
        content: "";
        display: block;
        inset: 0;
        background: var(--color-black);
        opacity: 0.4;
    }

    #fv .artistLogo {
        width: 60px;
        top: var(--space-4);
        left: var(--space-4);
    }

    #fv .scrollBox .scrollArrow {
        right: var(--space-4);
    }
    #fv .scrollBox .scrollArrow .txt {
        display: none;
    }

    #fv .mainLogo {
        left: var(--space-4);
        bottom: var(--space-4);
        width: 40%;
        max-width: 320px;
    }

    #fv .txtBox {
        right: var(--space-4);
        bottom: var(--space-4);
        width: 47.5%;
        max-width: 320px;
        gap: var(--space-3);
    }
    #fv .txtBox .fvTxt {}
    #fv .txtBox .fvTxt.fvTxt01 {
        width: 65%;
    }
	
}



/*===================================================
    Music Video
====================================================*/
#musicvideo {}

#musicvideo .inBox {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.mov {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.mov iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media screen and (max-width: 960px){}



/*===================================================
	product
====================================================*/
#product {}

.productBox {
    position: relative;
    width: 90%;
    max-width: 1200px;
    display: flex;
    gap: var(--space-12);
    margin: 0 auto calc(var(--space-20) * 1.5);
}
.productBox:nth-child(even)  {
	flex-flow: row-reverse;
}
.productBox:last-child {
    margin: 0 auto;
}

.productBox .productImg {
    z-index: 2;
    width: 50%;
}
.productDetail {
    position: relative;
    width: 50%;
    z-index: 1;
    padding-top: var(--space-12);
}
.productDetail .detailInner .detailTit {
    font-size: 48px;
    margin-bottom: var(--space-8);
    line-height: 1;
    font-weight: bold;
}
.productDetail .detailInner .detailTit span {
	font-size: 24px;
    padding: 0 0 0 var(--space-2);
    font-weight: 400;
}
.productDetail .detailInner .price {
	font-size: 24px;
    line-height: 1;
    margin-bottom: var(--space-4);
}
.productDetail .detailInner .price .tax {
    font-size: 14px;
    padding-left: var(--space-1);
}
.productDetail .detailInner .code {
    font-size: 14px;
    line-height: 1;
    margin-bottom: var(--space-8);
}
.productDetail .detailInner .code .tag {
    font-size: 14px;
    border: 1px solid;
    padding: 0 var(--space-2) 2px;
    margin-right: var(--space-2);
    font-weight: bold;
}
.productDetail .detailInner .detailListBox {
    margin: 0 0 var(--space-6);
}
.productDetail .detailInner .detailListBox:last-child {
    margin: 0;
}
.productDetail .detailInner .detailListBox .listTit {
    display: inline-block;
    font-weight: bold;
    background: var(--color-text-tag);
    color: var(--color-bg-tag);
    padding: var(--space-1) var(--space-3)
}
.productDetail .detailInner .detailListBox .listTit span {
    font-size: 80%;
    padding: 0 0 0 var(--space-1);
}
.productDetail .detailInner .detailListBox ul,
.productDetail .detailInner .detailListBox .txtBox {
    color: var(--color-text-accent);
    background: var(--color-bg-secondary);
    padding: var(--space-6);
}
.productDetail .detailInner .detailListBox ul li,
.productDetail .detailInner .detailListBox .listTxt {
    padding: 0 0 var(--space-2);
    margin: 0 0 var(--space-2);
    border-bottom: 1px dashed;
    display: flex;
    flex-wrap: nowrap;
}
.productDetail .detailInner .detailListBox ul li:last-child,
.productDetail .detailInner .detailListBox .listTxt:last-child {
    padding: 0;
    margin: 0;
    border: none;
}
.productDetail .detailInner .detailListBox ul li span.num {
    padding: 0 var(--space-2) 0 0;
}

@media screen and (min-width: 961px){

    .productBox .productImg {
        position: sticky;
        top: 120px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

}

@media screen and (max-width: 960px){

    #product {}
    
	.productBox {
	    margin: 0 auto var(--space-16);
	    flex-wrap: wrap;
        gap: var(--space-6);
	}
	.productBox:nth-child(even)  {
		flex-flow: wrap;
	}

	.productBox .productImg {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
	}
    .productBox .productImg img {}

	.productDetail {
        width: 100%;
        padding: 0;
	}
    .productBox:nth-child(even) .productDetail {
        padding: 0;
    }
	.productDetail .detailInner .detailTit {
        font-size: 32px;
        margin-bottom: var(--space-4);
	}
	.productDetail .detailInner .detailTit span {
        font-size: 14px;
        display: block;
        padding: 12px 0 0 0;
    }
	.productDetail .detailInner .price {
	    font-size: 20px;
        margin-bottom: var(--space-3);
	}
	.productDetail .detailInner .price .tax {
	    font-size: 12px;
	}
	.productDetail .detailInner .code {
	    margin-bottom: var(--space-6);
    	font-size: 12px;
	}
	.productDetail .detailInner .code .tag {
	    font-size: 12px;
	}
	.productDetail .detailInner .detailListBox {
        margin-bottom: var(--space-4);
    }
	.productDetail .detailInner .detailListBox .listTit {
        font-size: 14px;
    }
    .productDetail .detailInner .detailListBox ul,
    .productDetail .detailInner .detailListBox .txtBox {
        font-size: 14px;
        padding: var(--space-4);
    }
	.productDetail .detailInner .detailListBox ul li span.note {
        font-size: 12px;
    }

}



/*===================================================
    special
====================================================*/
#special {}

#special .inBox {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
}

.specialBox {
    width: calc(50% - 32px / 2);
    color: var(--color-text-accent);
    background: var(--color-bg-secondary);
    padding: var(--space-12) var(--space-8);
    border-left: 8px solid;
}
.specialBox:last-child {
    margin: 0 auto;
}

.specialBox .specialBoxTit {
    margin: 0 0 var(--space-10);
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}

.specialBox.specialBtnBox {
    width: 100%;
}
.specialBox .btnBox {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: var(--space-6);
}
.specialBox .btnBox .btn {
    width: 100%;
    max-width: 300px;
}
.specialBox .btnBox .btn a span {
    padding-right: var(--space-2);
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #special {}

    #special .inBox {
        display: block;
    }

	.specialBox {
        width: 100%;
        padding: var(--space-6) var(--space-4) var(--space-6);
        margin: 0px auto var(--space-4);
        border-left: 4px solid;
	}

	.specialBox .specialBoxTit {
        margin: 0 0 var(--space-4);
        font-size: 16px;
	}

    .specialBox .btnBox {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }
    .specialBox .btnBox .btn {}
    .specialBox .btnBox .btn a {}

}


/*===================================================
	footer
====================================================*/
footer {
    position: relative;
    z-index: var(--z-footer);
}
footer .inner {
    padding: 0 3%;
    position: relative;
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .logo_official {
    width: 10vw;
}
footer .logo_yoani {
    width: 17vw;
}
footer .logo_yoani a {
    display: block;
    margin: 0 0 5px;
}
footer .copyright {
    display: block;
    font-size: 12px;
    text-align: right;
    color: var(--color-black);
}

@media screen and (min-width: 961px){

    footer {
        padding: 0 0 80px;
        height: auto !important;
        position: relative;
        color: var(--color-black);
    }
    footer .logo_official a, footer .logo_yoani a {
        cursor: pointer;
    }
    footer .logo_official a:hover, footer .logo_yoani a:hover {
        opacity: 0.4;
    }
	
}

@media screen and (max-width: 960px){

    footer {
	    padding: 0 5% 60px;
    }
    footer .inner {
        padding: 0;
    }
    footer .inner .logo_official {
        width: 24vw;
        margin: 0;
    }
    footer .inner .logo_yoani {
        width: 45vw;
    }
    footer .copyright {
        font-size: 10px;
        zoom: 0.8;
    }

}