@charset "utf-8";

:root {
    /* font - 通常 / 見出し */
    --font-common: "Zen Kaku Gothic New", sans-serif;
    --font-title: "ah-hakushu-handwritten-font", sans-serif;

    /* color - primitive (数値そのもの) */
    --color-black: #333;
    --color-white: #fff;
    --color-green: #00A29A;

    /* alpha - 共通透明度 */
    --alpha-25: 0.25;
    --alpha-50: 0.50;
    --alpha-75: 0.75;
    --alpha-90: 0.90;

    /* color - semantic (用途固定) */
    --color-main: var(--color-green);
    --color-overlay-white: rgb(255 255 255 / var(--alpha-75));

    /* space - レイアウト基礎スケール margin / padding 用 */
    --space-xs: 4px;
    --space-s: 8px;
    --space-m: 16px;
    --space-l: 32px;
    --space-xl: 64px;

    /* space custom - 基本スケールで表現できない場合のみ xs基準で算出 */
    --space-custom-20: calc(var(--space-xs) * 5);
    --space-custom-24: calc(var(--space-xs) * 6);
    --space-custom-40: calc(var(--space-xs) * 10);

    /* stack - コンポーネント内部の要素間隔専用 */
    --stack-xs: var(--space-xs);
    --stack-s: var(--space-s);
    --stack-m: var(--space-m);
    --stack-l: var(--space-l);
    --stack-xl: var(--space-xl);

    /* stack custom - 基本スケールで表現できない場合のみ xs基準で算出 */
    --stack-custom-24: calc(var(--space-xs) * 6);

    /* section - ページ構造専用スケール (※コンポーネント内では使用しない) */
    --section-ratio-last: 1.5;  /* 最終セクション用の余白倍率 */
    --section-base-pc: calc(var(--space-xl) * 2.5);
    --section-base-sp: var(--space-xl);
    --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-xs: 4px;
    --radius-s: 8px;
    --radius-m: 16px;
    --radius-l: 24px;
    --radius-max: 100vmax; /* 完全円形用 */
}




/*===================================================
    anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--color-main);
    z-index: 9999;
}

.clip {will-change: clip-path;}
.clipT {clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);}
.clipB {clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);}
.clipL {clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);}
.clipR {clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);}
.clipV {clip-path: polygon(50% 0,50% 0,50% 100%,50% 100%);}
.clipH {clip-path: polygon(0 50%,100% 50%,100% 50%,0 50%);}

.loaded .clipT,
.loaded .clipB,
.loaded .clipL,
.loaded .clipR,
.loaded .clipV,
.loaded .clipH {animation: clipAnim 1s cubic-bezier(0.77, 0, 0.175, 1) both;}

@keyframes clipAnim {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.loaded .clip01 {animation-delay: 1s;}
.loaded .clip02 {animation-delay: 1.75s;}
.loaded .clip03 {animation-delay: 2.5s;}

.mainWrap .anim.fadeX,
.mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.mainWrap .anim.fadeX {
    transform: translateX(30px);
}
.mainWrap .anim.fadeX.revers {
    transform: translateX(-30px); 
}
.mainWrap .anim.fadeY {
    transform: translateY(30px);
}
.mainWrap .anim.fadeX.on,
.mainWrap .anim.fadeY.on {
    opacity: 1;
}
.mainWrap .anim.fadeX.on,
.mainWrap .anim.fadeX.revers.on {
    transform: translateX(0px);
}
.mainWrap .anim.fadeY.on {
    transform: translateY(0px);
}



/*===================================================
	memu
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: var(--stack-l);
    top: var(--stack-l);
    width: 48px;
    height: 48px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9998;
    background: var(--color-main);
    padding: var(--stack-s);
    touch-action: manipulation;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 20%;
    width: 60%;
    height: 2px;
    background: var(--color-white);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 12px;
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: 12px;
}
.hamBtn.open span {}
.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 {
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9997;
    position: fixed;
	transition: all 0.5s ease-out;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}

.navigation .headerNavBox {
    background: var(--color-white);
    color: var(--color-main);
    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 {
    margin-right: 120px;
    aspect-ratio: 86 / 471;
    height: 50%;
}

.navigation .headerNav li {
	padding: 0;
    position: relative;
    margin: 0 0 var(--stack-m);
    line-height: 1;
    font-family: var(--font-title);
}
.navigation .headerNav li:nth-last-child(3) {
    margin-bottom: var(--stack-l);
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a {
    font-size: 32px;
    letter-spacing: -0.03em;
    font-weight: 700;
    text-decoration: none;
}

.navigation .snsList{
	display: flex;
}
.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .navListTit {
    margin-right: var(--stack-custom-24);
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.navigation .headerNav li:nth-last-child(2) .navListTit {
    margin-right: 40px;
}
.navigation .snsList .menuList li {
    margin: 0px var(--stack-s) 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: 35px;
    height: 35px;
    border-radius: 100px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background: var(--color-main);
    color: var(--color-white);
}
.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 a:hover {
		opacity: 0.7;
	}
}

@media screen and (max-width: 960px) {

    .hamBtn {
        right: var(--stack-m);
        top: var(--stack-m);
        width: 40px;
        height: 40px;
        transition: all 0.3s ease-out;
    }

    .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 {
        margin: 0px 0 var(--stack-l);
        height: auto;
        width: 10%;
        max-width: 40px;
    }
    .navigation .headerNav li {
        margin-bottom: var(--stack-m);
    }
    .navigation .headerNav li a {
        font-size: 24px;
    }

}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    min-height: 600px;
    inset: 0;
    background-color: var(--color-white);
    box-sizing: border-box;
    pointer-events: none;
    overflow: hidden;
}
.bgBox .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}
.bgBox .bg01 {
    z-index: 1;
    background: url(/static/yoani3rd/official/feature/4thSingle/image/bg_0e1V2t7k.png);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
    opacity: 0.5;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    .bgBox {
        min-height: 450px;
	}
    .bgBox .bg {}
    .bgBox .bg01 {
        background: url(/static/yoani3rd/official/feature/4thSingle/image/bg_sp_0e1V2t7k.png);
        background-position: top center;
        background-size: 100% auto;
        background-repeat: repeat-y;
    }

}



/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--space-l);
    font-size: 16px;
}

body {
    background: var(--color-white);
}

.mainWrap {
	position: relative;
    z-index: 1;
    color: var(--color-main);
    font-family: var(--font-common);
    font-size: 16px;
	line-height: 1.5;
}

.container {
    position: relative;
    z-index: 1;
}

.container section {
    padding-bottom: var(--section-base-pc);
}
.container section:last-of-type {
    padding-bottom: var(--section-base-last-pc);
}

section .inBox {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl);
    padding-top: 144px;
    background: var(--color-white);
    border: 1px solid var(--color-main);
    box-shadow: var(--space-xs) var(--space-xs) var(--color-main);
}
section .inBox h3 {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    font-family: var(--font-title);
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    background: var(--color-main);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
}
section .inBox .frame {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: calc(100% - var(--space-l));
    height: calc(100% - var(--space-l));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
section .inBox .frame:before,
section .inBox .frame:after {
    position: absolute;
    z-index: 1;
    content: "";
    display: block;
    width: 80px;
    aspect-ratio: 1 / 1;
    border: 2px solid var(--color-main);
}
section .inBox .frame:before {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}
section .inBox .frame:after {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}

	html {
	    scroll-padding-top: var(--space-custom-24);
	}

	body {}

	.mainWrap {}

	.container {}

    .container section {
        padding-bottom: var(--section-base-sp);
    }
    .container section:last-of-type {
        padding-bottom: var(--section-base-last-sp);
    }

    section .inBox {
        padding: var(--space-custom-24);
        padding-top: 72px;
    }
    section .inBox h3 {
        font-size: 40px;
        padding: 0.25rem 1rem;
    }
    section .inBox .frame {
        width: calc(100% - var(--space-custom-20));
        height: calc(100% - var(--space-custom-20));
    }
    section .inBox .frame:before, section .inBox .frame:after {
        width: var(--space-custom-20);
    }

}



/*===================================================
    heroView
====================================================*/
#heroView {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    margin-bottom: var(--space-xl);
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

#heroView .heroInner {
    position: absolute;
    width: calc(100% - var(--space-xl));
    height: calc(100% - var(--space-xl));
}
#heroView .heroInner .kvBox {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    inset: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
#heroView .heroInner .kv {
    position: relative;
    z-index: 1;
    width: 100%;
}
#heroView .heroInner .kv img {}
#heroView .heroInner .kvBg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    inset: 0;
}
#heroView .heroInner .kvBg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: blur(24px);
    transform: scale(1.1);
}
#heroView .heroInner .mainTit {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: var(--color-white);
    width: 7.5%;
    max-width: 96px;
    min-width: 64px;
    padding: 0 var(--stack-custom-24) var(--stack-custom-24) 0;
}
#heroView .heroInner .subTit {
    position: absolute;
    z-index: 2;
    top: 12%;
    right: 21%;
    transform: translate(50%, -50%);
    aspect-ratio: 317 / 90;
    height: 11%;
}
#heroView .heroInner .subTxtBox {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 25%;
    max-width: calc(1920px * 0.25);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#heroView .heroInner .subTxtBox .subTxt {
    position: relative;
    background: var(--color-white);
    padding: var(--stack-m) 0 0 var(--stack-custom-24);
}
#heroView .heroInner .subTxtBox .subTxt.subTxt01 {
    width: 52.5%;
}
#heroView .heroInner .subTxtBox .subTxt.subTxt02 {
    width: 100%;
}

#heroView .scrollArrow {
    position: absolute;
    z-index: 10;
    width: 2px;
    height: 60px;
    left: var(--stack-xl);
    bottom: var(--stack-xl);
    background: var(--color-white);
    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: 1921px){

    #heroView .heroInner .kv {
        width: auto;
    }

    #heroView .heroInner .subTit {
        top: initial;
        bottom: 15%;
        right: 30%;
        transform: translate(50%, 50%);
    }

}

@media screen and (min-width: 1400px) and (max-height: 700px) {
    #heroView .heroInner .subTit {
        top: 40%;
        right: 10%;
        transform: translate(50%, 50%);
    }
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

	#heroView {
	    margin-bottom: var(--section-base-sp);
	    min-height: 450px;
	}

    #heroView .heroInner {
        width: calc(100% - var(--space-l));
        height: calc(100% - var(--space-l));
    }
    #heroView .heroInner .kvBox {}
    #heroView .heroInner .kvBox .kv {}
    #heroView .heroInner .kvBox .kv img {}
    #heroView .heroInner .kvBox .kvBg {}
    #heroView .heroInner .kvBox .kvBg img {}
    #heroView .heroInner .mainTit {
        width: 17%;
        max-width: 60px;
        min-width: 0;
        padding: 0 var(--stack-m) var(--stack-m) 0;
    }
    #heroView .heroInner .subTit {
        top: 20%;
        right: 40%;
        transform: translate(50%, -50%);
        max-width: 240px;
        width: 65%;
        height: auto;
    }
    #heroView .heroInner .subTxtBox {
        width: 80%;
        max-width: 320px;
        min-width: initial;
    }
    #heroView .heroInner .subTxtBox .subTxt {
        padding: var(--stack-s) 0 0 var(--stack-m);
    }
    #heroView .heroInner .subTxtBox .subTxt.subTxt01 {}
    #heroView .heroInner .subTxtBox .subTxt.subTxt02 {}

	#heroView .scrollArrow {
        left: var(--stack-l);
        bottom: var(--stack-l);
	}
	
}



/*===================================================
    Music Video
====================================================*/
#MusicVideo {}
#MusicVideo h3 {}
#MusicVideo .inBox {}

#MusicVideo .inBox .mov {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
#MusicVideo .inBox .mov iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media screen and (max-width: 960px){

	#MusicVideo {}
	#MusicVideo h3 {}
	#MusicVideo .inBox {}

	#MusicVideo .inBox .mov {}
	#MusicVideo .inBox .mov iframe {}
}



/*===================================================
	Product
====================================================*/
#Product {}
#Product h3 {}
#Product .inBox {}

#Product .inBox .productBox {
    position: relative;
    display: flex;
    margin-bottom: 80px;
}
#Product .inBox .productBox:nth-child(even)  {
	flex-flow: row-reverse;
}
#Product .inBox .productBox:last-of-type {
    margin: 0 auto;
}
#Product .inBox .productBox .productImg {
    width: 45%;
    position: sticky;
    top: 120px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#Product .inBox .productBox .productImg p {
    border: 1px solid;
}

#Product .inBox .productBox .productDetail {
    position: relative;
    width: 56%;
    padding: 0 0 0 4%;
    z-index: 1;
}
#Product .inBox .productBox:nth-child(even) .productDetail {
    padding: 0 4% 0 0;
}

#Product .inBox .productBox .productDetail .detailInner {}
#Product .inBox .productBox .productDetail .detailInner .detailTit {
    font-size: 48px;
    margin-bottom: var(--stack-l);
    line-height: 1;
    font-weight: bold;
}
#Product .inBox .productBox .productDetail .detailInner .detailTit span {
    font-size: 24px;
    padding-left: var(--stack-s);
}
#Product .inBox .productBox .productDetail .detailInner .price {
	font-size: 32px;
    line-height: 1;
    margin-bottom:var(--stack-s);
    font-weight: bold;
}
#Product .inBox .productBox .productDetail .detailInner .price .yen {
    font-size: 16px;
    padding-right: var(--stack-xs);
}
#Product .inBox .productBox .productDetail .detailInner .price .tax {
    font-size: 16px;
    padding-left: var(--stack-xs);
    font-weight: 400;
}
#Product .inBox .productBox .productDetail .detailInner .code {
    font-size: 14px;
    line-height: 1;
    margin-bottom: var(--stack-m);
}
#Product .inBox .productBox .productDetail .detailInner .tagBox {
    margin-bottom: var(--stack-l);
}
#Product .inBox .productBox .productDetail .detailInner .tagBox .tag  {
    font-size: 14px;
    margin-right: var(--stack-s);
    font-weight: bold;
    border: 1px solid;
    padding: 0.2em 0.8em;
}
#Product .inBox .productBox .productDetail .detailInner .tagBox .tag.tagMain {
    background: var(--color-main);
    color: var(--color-white);
    display: inline-block;
    border: none;
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox {
    position: relative;
    margin-bottom: var(--stack-s);
    background: var(--color-main);
    padding: var(--stack-custom-24);
    color: var(--color-white);
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox:last-child {
    margin: 0;
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox:before {
    content: "";
    position: absolute;
    inset: 2px;
    border: 2px solid var(--color-white);
    pointer-events: none;
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox .listTit {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-main);
    font-weight: bold;
    line-height: 1;
    padding: 0.5em 1em;
    margin-bottom: var(--stack-m);
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox .listTxt {}
#Product .inBox .productBox .productDetail .detailInner .detailListBox ul {
    border-top: 1px dashed var(--color-overlay-white);
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox ul li {
    padding: var(--stack-s) 0;
    border-bottom: 1px dashed var(--color-overlay-white);
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox ul li:last-child {
    margin: 0;
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox ul.cdList li {
    text-indent: -1.5em;
    padding: var(--stack-s) 0 var(--stack-s) 1.5em;
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox ul.dvdList li {
    text-indent: 0;
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox ul li span {
    margin-right: 0.5em;
}
#Product .inBox .productBox .productDetail .detailInner .detailListBox ul li span.note {
    display: block;
    font-size: 14px;
    text-indent: -1em;
    padding: var(--stack-xs) 0 0 1em;
}

@media screen and (max-width: 960px){

	#Product {}
	#Product h3{}
	#Product .inBox {}

    #Product .inBox .productBox {
        flex-wrap: wrap;
        margin-bottom: var(--stack-l);
	}
	#Product .inBox .productBox:nth-child(even)  {
		flex-flow: wrap;
	}
	#Product .inBox .productBox .productImg {
        width: 100%;
        max-width: 450px;
        margin: 0 auto var(--stack-m);
        position: relative;
        top: 0;
    }
    #Product .inBox .productBox .productImg img {}
	#Product .inBox .productBox .productDetail {
	    margin-top: 0;
	    width: 100%;
	}
    #Product .inBox .productBox:nth-child(odd) .productDetail,
    #Product .inBox .productBox:nth-child(even) .productDetail {
        padding: 0;
    }
	#Product .inBox .productBox .productDetail .detailInner {}
	#Product .inBox .productBox .productDetail .detailInner .detailTit {
	    font-size: 32px;
	    margin-bottom: var(--stack-m);
	}
	#Product .inBox .productBox .productDetail .detailInner .detailTit span {
	    font-size: 14px;
	}
	#Product .inBox .productBox .productDetail .detailInner .price {
	    font-size: 24px;
	}
	#Product .inBox .productBox .productDetail .detailInner .price .tax {
	    font-size: 12px;
	}
	#Product .inBox .productBox .productDetail .detailInner .code {
    	font-size: 12px;
	}
    #Product .inBox .productBox .productDetail .detailInner .tagBox {
        margin-bottom: 20px;
    }
    #Product .inBox .productBox .productDetail .detailInner .tagBox .tag  {}
    #Product .inBox .productBox .productDetail .detailInner .tagBox .tag.tagMb {
        margin-bottom: 5px;
        display: inline-block;
        padding: 0px 10px;
    }
    #Product .inBox .productBox .productDetail .detailInner .tagBox .tag.tagMain {
        margin-bottom: var(--stack-xs);
    }
	#Product .inBox .productBox .productDetail .detailInner .code .productNote {
	    line-height: 1.5;
	}
	#Product .inBox .productBox .productDetail .detailInner .detailListBox {
        margin-bottom: var(--stack-s);
    }
	#Product .inBox .productBox .productDetail .detailInner .detailListBox:last-child {}
	#Product .inBox .productBox .productDetail .detailInner .detailListBox .listTit {
	    font-size: 14px;
        margin-bottom: var(--stack-m);
    }
	#Product .inBox .productBox .productDetail .detailInner .detailListBox .listTxt {
	    font-size: 14px;
	}
	#Product .inBox .productBox .productDetail .detailInner .detailListBox ul {}
	#Product .inBox .productBox .productDetail .detailInner .detailListBox ul li {
	    font-size: 14px;
	}
	#Product .inBox .productBox .productDetail .detailInner .detailListBox ul li:last-child {}
	#Product .inBox .productBox .productDetail .detailInner .detailListBox ul li span {}
	#Product .inBox .productBox .productDetail .detailInner .detailListBox ul li span.dvdNote {}

    #Product .inBox .productFcBox .productDetail .detailInner .detailListBox  {
        margin-bottom: var(--stack-s);
        padding: 20px;
    }
    #Product .inBox .productFcBox .productDetail .detailInner .detailListBox .listTit {
        font-size: 14px;
        margin-bottom: var(--stack-m);
    }
    #Product .inBox .productFcBox .productDetail .detailInner .detailListBox ul {}
    #Product .inBox .productFcBox .productDetail .detailInner .detailListBox ul li {
        font-size: 14px;
    }
    #Product .inBox .productFcBox .productDetail .detailInner .detailListBox ul li:last-child {}
    #Product .inBox .productFcBox .productDetail .detailInner .detailListBox ul li span {}

}



/*===================================================
    Special
====================================================*/
#Special {}
#Special h3 {}
#Special .inBox {
    display: flex;
    flex-wrap: wrap;
    gap: var(--stack-custom-24);
    justify-content: center;
}

#Special .inBox .specialBox {
    position: relative;
    width: 100%;
    max-width: 640px;
    color: var(--color-white);
    background: var(--color-main);
    padding: 48px;
    flex: 0 1 calc(50% - var(--stack-custom-24)/2);
}

#Special .inBox .specialBox:before {
    content: "";
    position: absolute;
    inset: 2px;
    border: 2px solid var(--color-white);
    pointer-events: none;
}

#Special .inBox .specialBox .specialBoxTit {
    text-align: center;
    font-weight: bold;
    margin-bottom: var(--stack-l);
    font-size: 20px;
    line-height: 1;
}

#Special .inBox .specialBox .mainBtn {}
#Special .inBox .specialBox .mainBtn a {
    display: block;
    padding: var(--stack-m);
    font-weight: bold;
    color: var(--color-main);
    width: 90%;
    max-width: 300px;
    text-align: center;
    background: var(--color-white);
    border: 1px solid var(--color-white);
    margin: 0 auto;
    text-decoration: none;
    border-radius: var(--radius-max);
}

@media screen and (min-width: 961px){
	
	#Special .inBox .specialBox .mainBtn a:hover {
	    background: none;
        color: var(--color-white);
        border: 1px solid var(--color-white);    
	}
	
}

@media screen and (max-width: 960px){

	#Special {}
	#Special h3 {}
	#Special .inBox {
        gap: var(--stack-m);
    }

	#Special .inBox .specialBox {
        padding: var(--stack-l) var(--stack-m);
        flex-basis: 100%;
	}
	#Special .inBox .specialBox:last-child {}
	#Special .inBox .specialBox .specialBoxTit {
        margin-bottom: var(--stack-m);
        font-size: 16px;
	}

	#Special .inBox .specialBox .mainBtn {}
	#Special .inBox .specialBox .mainBtn a {
        padding: var(--stack-m);
    }

}



/*===================================================
	footer
====================================================*/
footer {
    position: relative;
}

footer .inner {
    padding: 0 3%;
    position: relative;
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo_official {}
footer .logo_official svg {
    fill: var(--color-black);
    width: 150px;
    display: block;
}

footer .logo_yoani {
    width: 250px;
}
footer .logo_yoani a {
    display: block;
    margin: 0 0 10px;
}

footer .copyright {
    display: block;
    font-size: 10px;
    text-align: right;
    color: var(--color-black);
}

@media screen and (min-width: 961px){

    footer {
        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%;
    }
    
    footer .inner {
    	padding: 0;
    }

    footer .inner .logo_official {
        margin: 0;
    }
    footer .logo_official svg {
        max-width: 125px;
    }

    footer .inner .logo_yoani {
        width: 45vw;
        max-width: 250px;
    }

    footer .copyright {
        font-size: 10px;
        zoom: 0.8;
    }

}