@charset "utf-8";

:root {
    
    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Roboto", "Noto Sans JP", sans-serif;
    --font-title: "chalky", "Noto Sans JP", sans-serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-black: #222222;
    --color-white: #ffffff;
    --color-gray: #EEF0F2;

    --color-blue: #4080B0;
    --color-green-light: #9A9D86;
    --color-green: #6C7446;

    /* Semantic (用途固定) */
    --color-bg-loader: var(--color-green);
    --color-bg-primary: var(--color-green-light);
    --color-bg-box: var(--color-white);

    --color-text-primary: var(--color-white);
    --color-text-box: var(--color-blue);

    --color-nav-text: var(--color-white);
    --color-nav-bg: var(--color-blue);

    --color-tag-bg: var(--color-blue);
    --color-tag-text: var(--color-gray);

    --color-btn-text: var(--color-white);
    --color-btn-bg: var(--color-blue);

    /* ======================================================
       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: 2;  
    --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-l: 16px;
    --radius-full: 9999px;

    /* ======================================================
       Z-index - 基本レイヤー
    ====================================================== */
    --z-background: -1;  /* 背景 */
    --z-base: 1;         /* 通常コンテンツ */
    --z-fv: 2;           /* ファーストビュー */
    --z-content: 10;     /* メインコンテンツ */
    --z-footer: 20;      /* フッター */
    --z-nav: 30;         /* ナビゲーション */
    --z-nav-btn: 31;     /* ナビゲーションボタン */
    --z-loader: 100;     /* ローダー */

}



/*===================================================
	anim
====================================================== */
.js .loader {
    position: fixed;
    z-index: var(--z-loader);
    height: 100%;
    width: 100%;
    background: var(--color-bg-loader);
    transition: opacity 1s ease-out;
    pointer-events: none;
}
.js .loaded .loader {
    opacity: 0;
    transition-delay: 0.5s;
}

.js .fvInner .kv img,
.js .fvInner .kv:after {
    opacity: 0;
    transition: opacity 1s ease-out;
    transition-delay: 1s;
}
.js .fvInner .topTit img,
.js .fvInner .topTxt img {
    opacity: 0;
    transition: opacity 1s ease-out;
    transition-delay: 1.5s;
}
.js .loaded .fvInner .kv img,
.js .loaded .fvInner .topTit img,
.js .loaded .fvInner .topTxt img {
    opacity: 1;
}
.js .loaded .fvInner .kv:after {
    opacity: 0.2;
}

.anim.fadeX,
.anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.anim.fadeX {
    transform: translateX(20px);
}
.anim.fadeX.revers {
    transform: translateX(-20px);
}
.anim.fadeY {
    transform: translateY(20px);
}
.anim.fadeX.on,
.anim.fadeY.on {
    opacity: 1;
}
.anim.fadeX.on,
.anim.fadeX.revers.on {
    transform: translateX(0px);
}
.anim.fadeY.on {
    transform: translateY(0px);
} 

.productBox:nth-child(odd) .productDetail.anim:after,
.productBox:nth-child(even) .productDetail.anim:after {
    opacity: 0;
    transition: all .5s ease-out;
}
.productBox:nth-child(odd) .productDetail.anim:after {
    transform: translateX(20px);
}
.productBox:nth-child(even) .productDetail.anim:after {
    transform: translateX(-20px);
}
.productBox:nth-child(odd) .productDetail.anim.on:after,
.productBox:nth-child(even) .productDetail.anim.on:after {
    opacity: 1;
    transform: translateX(0px);
}

@media screen and (min-width: 961px) {

    .js #fv .scrollBox {
        -webkit-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }
    .js .scrolled #fv .scrollBox {
        opacity: 0;
    }

}

@media screen and (min-width: 961px) and (max-width: 1920px) {

    .js #fv .fvInner {
        -webkit-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }
    .js .scrolled #fv .fvInner {
        opacity: 0;
    }

}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    position: absolute;
    z-index: var(--z-background);
    inset: 0;
    min-height: 600px;
    background-color: var(--color-bg-primary);
    pointer-events: none;
    overflow: hidden;
}
.bgBox .bg {
    position: absolute;
    inset: 0;
}
.bgBox .bg01 {
    z-index: 1;
    background: url(/static/equallove/official/feature/single21th/image/bg_WrDUwfLS.jpg);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
    mix-blend-mode: overlay;
    opacity: 0.4;
}
.bgBox .bg02 {
    z-index: 1;
    background: url(/static/equallove/official/feature/single21th/image/bg_sub_01_WrDUwfLS.png);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
    mix-blend-mode: screen;
    will-change: transform;
    top: 100vh;
    height: 200%;
    opacity: 0.6;
}
.bgBox .bg03 {
    z-index: 1;
    background: url(/static/equallove/official/feature/single21th/image/bg_sub_02_WrDUwfLS.png);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
    mix-blend-mode: screen;
    will-change: transform;
    top: 100vh;
    height: 200%;
    opacity: 0.6;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    .bgBox {
        min-height: 450px;
	}
    .bgBox .bg {}
    .bgBox .bg01 {
        background: url(/static/equallove/official/feature/single21th/image/bg_sp_WrDUwfLS.jpg);
        background-position: top center;
        background-size: 100% auto;
        background-repeat: repeat-y;
    }
    .bgBox .bg02 {
        background: url(/static/equallove/official/feature/single21th/image/bg_sub_sp_01_WrDUwfLS.png);
        background-position: top center;
        background-size: 100% auto;
        background-repeat: repeat-y;
        top: 0;
    }
    .bgBox .bg03 {
        z-index: 1;
        background: url(/static/equallove/official/feature/single21th/image/bg_sub_sp_02_WrDUwfLS.png);
        background-position: top center;
        background-size: 100% auto;
        background-repeat: repeat-y;
        mix-blend-mode: screen;
        top: 0;
    } 
}



/*===================================================
	nav
====================================================*/
.hamBtn {
    position: fixed;
    z-index: var(--z-nav-btn);
    display: block;
    right: var(--space-6);
    top: var(--space-6);
    width: 52px;
    height: 52px;
    background: var(--color-nav-bg);
    transition: all .3s ease;
    border-radius: var(--radius-full);
    cursor: pointer;
}
.hamBtn.open {
    background: var(--color-nav-text);
}
.hamBtn span {
    position: absolute;
    display: block;
    right: 22.5%;
    width: 55%;
    height: 2px;
    background: var(--color-nav-text);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 14px;
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: 14px;
}
.hamBtn.open span {
    background: var(--color-nav-bg);
}
.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);
    inset: 0;
    color: var(--color-nav-text);
    transition: opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}
.navigation.active {
    opacity:1;
    pointer-events:auto;
}

.navigation .headerNavBox {
    position: fixed;
    inset: 0;
    background: var(--color-nav-bg);
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.navigation .heroNavLogo {
    margin: 0 0 var(--space-12);
    width: 50%;
    max-width: 320px;
}
.navigation .heroNavLogo a {
    display: block;
}

.navigation .headerNav li {
    margin: 0 0 var(--space-4);
}
.navigation .headerNav li:nth-last-child(2) {
    margin-bottom: var(--space-8);
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li a {
    display: block;
    font-family: var(--font-title);
    font-size: 36px;
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.03em;
}

.navigation .snsList {
    display: flex;
    margin-bottom: var(--space-3);
    align-items: center;
}
.navigation .snsList:last-child {
    margin-bottom: 0;
}
.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .navListTit {
    display: flex;
    align-items: center;
    font-family: var(--font-title);
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.03em;
    padding: 6px 0 0 0;
    margin-right: var(--space-4);
}
.navigation .snsList .navListTit.snsTit {
    margin-right: 22px;
}
.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;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 16px;
    color: var(--color-nav-bg);
    background: var(--color-nav-text);
}

@media screen and (min-width: 961px) {

    .navigation .headerNav li a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px) {

    .hamBtn {
        right: var(--space-4);
        top: var(--space-4);
        width: 48px;
        height: 48px;
    }
    .hamBtn span {
        right: 20%;
        width: 60%;
    }
    .hamBtn :nth-of-type(1) {
        top: 12px;
    }
    .hamBtn :nth-of-type(3) {
        bottom: 12px;
    }

    .navigation .heroNavLogo {
        width: 70%;
    }

    .navigation .snsList .navListTit {
        font-size: 18px;
        padding: 5px 0 0 0;
    }

}



/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--space-20) * 1.5);
    background: var(--color-bg-primary);
}

.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);
    padding-top: var(--section-base-pc);
}

section {
    position: relative;
    z-index: 1;
    padding-bottom: var(--section-base-pc);
}
section:last-of-type {
    padding-bottom: var(--section-base-last-pc);
}
#product {
    padding-top: var(--section-base-pc);
    margin-bottom: var(--section-base-pc);
}
#product:after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 80px;
    background: var(--color-white);
    opacity: 0.2;
}

section h3 {
    position: relative;
    z-index: 1;
    line-height: 1;
    margin: 0 auto var(--space-12);
}
#product h3,
#special h3 {
    width: 90%;
    max-width: 1240px;
}
#product h3 img {
    width: 40%;
    margin: 0 0 0 auto;
}
#special h3 img {
    width: 30%;
}

section .inBox .btn a {
	display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-4);
    background: var(--color-btn-bg);
    border: 1px solid var(--color-btn-bg);
    color: var(--color-btn-text);
    text-align: center;
    font-weight: bold;
    border-radius: var(--radius-full);
    text-decoration: none;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

    section .inBox .btn a:hover {
        color: var(--color-btn-bg);
        background: transparent;
	}

}

@media screen and (max-width: 960px){

	.pc {
		display: none !important;
	}

	html {
	    scroll-padding-top: var(--space-20);
	}

	.mainWrap {
        overflow: hidden;
    }

	.container {
        padding-top: var(--section-base-sp);
    }

	section {
		padding: 0 0 var(--section-base-sp);
	}
    section:last-of-type {
        padding: 0 0 var(--section-base-last-sp);
    }
    #product {
        padding-top: var(--section-base-sp);
        margin-bottom: var(--section-base-sp);
    }
    #product:after {
        border-radius: 40px;
    }

	section h3 {
        width: 90%;
        margin: 0 auto var(--space-8);
	}
    #musicVideo h3 img {
        width: 80%;
        max-width: 360px;
        margin: 0 auto;
    }
    #product h3 img {
        width: 60%;
        max-width: calc(360px);
        max-width: 300px;
        margin: 0 auto;
    }
    #special h3 img {
        width: 50%;
        max-width: 240px;
        margin: 0 auto;
    }

    section .inBox .btn a {
        padding: var(--space-5) var(--space-4);
    }

}



/*===================================================
    fv
====================================================*/
#fv {
    position: relative;
    z-index: var(--z-fv);
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fvInner {
    position: fixed;
    z-index: 1;
    inset: 0;
    min-height: 600px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.scrollBox {
    position: fixed;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    transition: 0.5s ease-out;
}
.scrollBox .scrollArrow {
    position: absolute;
    width: 2px;
    height: 80px;
    left: var(--space-6);
    bottom: var(--space-6);
    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); }
}

@media screen and (min-width: 1921px) {

    #fv {
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .fvInner {
        position: absolute;
    }
    body .fvInner .kv img {
        object-position: 50% 100%;
    }

}

@media screen and (min-width: 961px) {

    .fvInner .kv {
        position: absolute;
        z-index: 1;
        inset: 0;
        overflow: clip;
    }
    .fvInner .kv img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% clamp(75%, calc(75% - (600px - 100vh) * 0.2), 85%);
    }
    .fvInner .topTit {
        position: absolute;
        z-index: 2;
        top: 8%;
        left: 5%;
        max-width: 22.5%;
        min-width: 416px;
        max-height: 40svh;
        min-height: calc(600px * 0.4);
        aspect-ratio: 600 / 237;
    }
    .fvInner .topTxt {
        position: absolute;
        z-index: 2;
        right: var(--space-6);
        bottom: var(--space-6);
        width: 35%;
        max-width: 420px;
    }

}

@media screen and (max-width: 960px) {

	#fv {
        height: 100svh;
        min-height: 450px;
    }

    .fvInner {
        position: absolute;
        inset: inherit;
        width: 85%;
        max-width: 420px;
        min-height: initial;
        align-items: center;
        flex-direction: column;
    }
    .fvInner .kv {
        position: relative;
        z-index: 1;
        margin: 0 auto 10%;
    }
    .fvInner .kv:after {
        content: "";
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 8px;
        left: 8px;
        border-radius: var(--radius-l);
        background: var(--color-white);
        opacity: 0.2;
    }
    .fvInner .kv img {
        border-radius: var(--radius-l);
    }
    .fvInner .topTit {
        width: 80%;
        margin: 0 auto 5%;
    }
    .fvInner .topTxt {
        width: 80%;
        margin: 0 auto;
    }

    .scrollBox {
        position: absolute;
    }
    .scrollBox .scrollArrow {
        left: var(--space-4);
        bottom: var(--space-4);
    }
	
}



/*===================================================
    Music Video
====================================================*/
#musicVideo .inBox {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

#musicVideo .inBox .mov {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-l);
    overflow: hidden;
}
#musicVideo .inBox .mov iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media screen and (min-width: 961px){

    #musicVideo .inBox {
        display: flex;
        gap: 4%;
        align-items: flex-start;
    }
    #musicVideo .inBox h3 {
        width: 35%;
        margin: 0 auto;
    }

}

@media screen and (max-width: 960px){

    #musicVideo {}

    #musicVideo .inBox {
        gap: var(--space-4);
    }

    #musicVideo .inBox .mov {}
    #musicVideo .inBox .mov iframe {}

}



/*===================================================
	product
====================================================*/
.productBox {
    position: relative;
    width: 90%;
    max-width: 1240px;
    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;
}

.productImg {
    z-index: 2;
    width: 50%;
}
.productImg img {
    border: 1px solid;
    border-radius: var(--radius-l);
}

.productDetail {
    position: relative;
    width: 50%;
    z-index: 1;
    margin-top: 10%;
    margin-bottom: 5%;
    padding: 5%;
    color: var(--color-text-box);
}
.productBox:nth-child(odd) .productDetail {
    padding-left: 0;
}
.productBox:nth-child(even) .productDetail {
    padding-right: 0;
}
.productBox .productDetail:after {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    width: 120%;
    height: 100%;
    top: 0px;
    background: var(--color-bg-box);
    border-radius: var(--radius-l);
    overflow: hidden;
}
.productBox:nth-child(odd) .productDetail:after {
    left: -20%;
}
.productBox:nth-child(even) .productDetail:after {
    right: -20%;
}

.productDetail .detailInner {}
.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;
    margin-bottom: var(--space-6);
}
.productDetail .detailInner .code .tag {
    font-size: 14px;
    font-weight: bold;
    border: 1px solid;
    padding: 0 var(--space-2) 2px; 
    margin-right: var(--space-2);
    border-radius: var(--radius-s);
}
.productDetail .detailInner .code .subTag {
    display: block;
    line-height: 1.5;
    padding: var(--space-2) 0 0;
}
.productDetail .detailInner .detailListBox {
    margin: 0 0 var(--space-6);
}
.productDetail .detailInner .detailListBox:last-child {
    margin: 0;
}
.productDetail .detailInner .detailListBox .listTit {
    display: inline-block;
    margin: 0 0 var(--space-3);
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
}
.productDetail .detailInner .detailListBox .listTit span {
    font-size: 80%;
    padding: 0 0 0 var(--space-1);
}
.productDetail .detailInner .detailListBox .txtBox p {
    margin-bottom: var(--space-1);    
}
.productDetail .detailInner .detailListBox .txtBox p:last-child {
    margin-bottom: 0;
}
.productDetail .detailInner .detailListBox .listTxt {
    display: flex;
    font-size: 14px;
    align-items: center;
    background: var(--color-tag-bg);
    color: var(--color-tag-text);
    padding: var(--space-2) var(--space-4);
    margin: 0 0 var(--space-1);
    border-radius: var(--radius-s);
}
.productDetail .detailInner .detailListBox ul li {
    font-size: 14px;
    background: var(--color-tag-bg);
    color: var(--color-tag-text);
    padding: var(--space-2) var(--space-4);
    margin: 0 0 var(--space-1);
    border-radius: var(--radius-s);
    display: flex;
    align-items: center;
}
.productDetail .detailInner .detailListBox ul li:last-child {
    margin: 0;
}
.productDetail .detailInner .detailListBox ul li span.num {
    padding: 0 var(--space-2) 0 0;
}

@media screen and (min-width: 961px){

    .productImg {
        position: sticky;
        top: 120px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

}

@media screen and (max-width: 960px){

	.productBox {
	    margin: 0 auto var(--space-16);
	    flex-wrap: wrap;
        gap: 0;
	}
	.productBox:nth-child(even)  {
		flex-flow: wrap;
	}

	.productImg {
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
	}

    .productBox .productDetail {
        width: 100%;
        padding: 5%;
        margin-top: 0;
        margin-bottom: 0;
	}
    .productBox:nth-child(odd) .productDetail {
        padding-left: 5%;
        padding-right: 0;
    }
    .productBox:nth-child(even) .productDetail {
        padding-right: 5%;
        padding-left: 0;
    }
    #product .inBox .productBox .productDetail:after {
        width: 110%;
        height: 105%;
        top: -5%;
    }
    .productBox:nth-child(odd) .productDetail:after {
        left: 0%;
    }
    .productBox:nth-child(even) .productDetail:after {
        right: 0%;
    }

	.productDetail .detailInner .detailTit {
        font-size: 32px;
        margin-bottom: var(--space-4);
	}
	.productDetail .detailInner .detailTit span {
        font-size: 16px;
    }
	.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-4);
    	font-size: 12px;
	}
	.productDetail .detailInner .code .tag {
	    font-size: 12px;
	}
    .productDetail .detailInner .code .subTag {
        padding: var(--space-1) 0 0;
    }
	.productDetail .detailInner .detailListBox {
        margin-bottom: var(--space-4);
    }
	.productDetail .detailInner .detailListBox .listTit {
        font-size: 16px;
        margin: 0 0 var(--space-2);
    }
	.productDetail .detailInner .detailListBox .listTxt {
        padding: var(--space-2) var(--space-4);
	}
    .productDetail .detailInner .detailListBox .txtBox p {
        margin-bottom: 2px;
    }
	.productDetail .detailInner .detailListBox ul li {
        padding: var(--space-3) var(--space-4);
        align-items: flex-start;
        margin-bottom: 2px;
	}
	.productDetail .detailInner .detailListBox ul li span.note {
        font-size: 12px;
    }

}



/*===================================================
    special
====================================================*/
#special .inBox {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-12);
}

.specialBox {
    width: calc(100% / 2 - 48px / 2);
    background: var(--color-bg-box);
    padding: var(--space-12) var(--space-6);
    border-radius: var(--radius-l);
}
.specialBox:last-child {
    margin: 0 auto;
}

.specialBox .specialBoxTit {
    color: var(--color-text-box);
    font-size: 24px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
    margin: 0 0 var(--space-10);
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #special .inBox {
        display: block;
    }

	#special .inBox .specialBox {
        max-width: 600px;
        width: 100%;
        padding: var(--space-8) var(--space-6);
        margin: 0px auto var(--space-4);
	}
	#special .inBox .specialBox:last-child {}

	#special .inBox .specialBox .specialBoxTit {
        margin: 0 0 var(--space-6);
        font-size: 16px;
	}

}



/*===================================================
	footer
====================================================*/
#footer {
    width: 100%;
    padding: 0 0 var(--space-12);
    position: relative;
    z-index: var(--z-content);
}
#footer dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-12);
}
#footer dl dt a {
    height: 74px;
    display: block;
}
#footer dl dt svg {
    width: 150px;
    height: 74px;
    fill: var(--color-white);
}
#footer dl dd .yoani {
	display: block;
    width: 180px;
    margin: 0 auto 10px;
    line-height: 0;
}
#footer .copy {
    display: inline-block;
    font-size: 10px;
    color: var(--color-white);
}

@media screen and (min-width: 961px){

	#footer dl dt svg,
	#footer dl dd .yoani img {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	#footer dl dt a:hover svg,
	#footer dl dd .yoani:hover img {
	    opacity: 0.7;
	}
	
}

@media screen and (max-width: 960px){

	#footer {
        padding: 0 0 var(--space-8);
        text-align: center;
    }
	#footer dl {
		display: flex;
	    align-items: center;
	    padding: 0;
	    flex-direction: column;
	    justify-content: inherit;
	}
	#footer dl dt a {
		margin: 0 0 var(--space-8);
	    height: 54px;
	}
	#footer dl dt svg {
	    width: 110px;
	    height: 54px;
	}

}