@charset "utf-8";

:root {
    
    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Noto Serif JP", serif;
    --font-title: "baskerville-display-pt", "Noto Serif JP", serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-black: #222222;
    --color-white: #ffffff;
    --color-gray: #EEF0F2;
    --color-brown: #331215;
    --color-primary: #B43729;

    /* Semantic (用途固定) */
    --color-bg-primary: var(--color-gray);
    --color-bg-inverse: var(--color-primary);
    --color-bg-light: var(--color-white);

	--color-text-primary: var(--color-primary);
	--color-text-inverse: var(--color-gray);

    --color-tag-primary: var(--color-primary);
    --color-tag-inverse: var(--color-gray);

	--color-btn-primary: var(--color-primary);
	--color-btn-inverse: var(--color-gray);

    /* ======================================================
       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-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-out;
    pointer-events: none;
    will-change: clip-path;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}
.js .loader .loaderLogo {
    width: 50%;
    max-width: 320px;
    animation-delay: 0.5s;
}
.js .loaded .loader {
    animation: clipAnim 1s cubic-bezier(0.77, 0, 0.175, 1) both;
}
@keyframes clipAnim {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}

.js #fv .heroInner .kv {
    transform: scale(1.25);
    filter: blur(8px);
    transition: transform 0.5s ease-out, filter 0.5s ease-out;
    transition-delay: 0.5s;
}
.js .loaded #fv .heroInner .kv {
    transform: scale(1);
    filter: blur(0);
}

.js #fv .heroInner .titBox .mainLogo,
.js #fv .heroInner .titBox .topTxt {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}
.js #fv .heroInner .titBox .mainLogo {transition-delay: 1s;}
.js #fv .heroInner .titBox .topTxt {transition-delay: 1.25s;}
.js .loaded #fv .heroInner .titBox .mainLogo,
.js .loaded #fv .heroInner .titBox .topTxt {
    opacity: 1;
    transform: translateY(0);
}

.js #fv .heroInner,
.js #fv .iconLogo,
.js #fv .scrollBox,
.js #fv .snsWrap {
    -webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.js .scrolled #fv .heroInner,
.js .scrolled #fv .iconLogo {
    opacity: 0.05;
}
.js .scrolled #fv .scrollBox,
.js .scrolled #fv .snsWrap {
    opacity: 0;
}

.anim.fadeX,
.anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.anim.fadeX {
    transform: translateX(30px);
}
.anim.fadeX.revers {
    transform: translateX(-30px);
}
.anim.fadeY {
    transform: translateY(30px);
}
.anim.fadeX.on,
.anim.fadeY.on {
    opacity: 1;
}
.anim.fadeX.on,
.anim.fadeX.revers.on {
    transform: translateX(0px);
}
.anim.fadeY.on {
    transform: translateY(0px);
}

@media screen and (max-width: 960px) {

    .anim.fadeX,
    .anim.fadeY {
        opacity: 0;
        transition: all .5s ease-out;
    }
    .anim.fadeX {
        transform: translateX(30px);
    }
    .anim.fadeX.revers {
        transform: translateX(30px);
    }
    .anim.fadeY {
        transform: translateY(30px);
    }
    .anim.fadeX.on,
    .anim.fadeY.on {
        opacity: 1;
    }
    .anim.fadeX.on,
    .anim.fadeX.revers.on {
        transform: translateX(0px);
    }
    .anim.fadeY.on {
        transform: translateY(0px);
    }

    
}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    position: fixed;
    z-index: var(--z-background);
    inset: 0;
    min-height: 600px;
    background-color: var(--color-bg-primary);
    pointer-events: none;
    overflow: hidden;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    .bgBox {
        min-height: 450px;
	}
    
}



/*===================================================
	nav
====================================================*/

.navList {
    position: fixed;
    z-index: var(--z-nav);
    top: var(--space-6);
    right: var(--space-6);
    background: var(--color-tag-primary);
    color: var(--color-tag-inverse);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-m);
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-4);
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.03em;
}

@media screen and (min-width: 961px) {

	.navList li a:hover {
		opacity: 0.7;
	}

    .hamBtn,
    .navigation {
        display: none;
    }

}

@media screen and (max-width: 960px) {

.navList {
    display: none;
}

.hamBtn {
    position: fixed;
    z-index: var(--z-nav-btn);
    right: var(--space-4);
    top: var(--space-4);
    display: block;
    width: 40px;
    height: 40px;
    background: var(--color-btn-primary);
    transition: all .3s ease;
    border-radius: var(--radius-s);
}
.hamBtn.open {
    background: var(--color-btn-inverse);
}
.hamBtn span {
    position: absolute;
    display: block;
    right: 20%;
    width: 60%;
    height: 2px;
    background: var(--color-btn-inverse);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 10px;
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: 10px;
}
.hamBtn.open span {
    background: var(--color-btn-primary);
}
.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-inverse);
	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-inverse);
    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 .headerNavBox .headerNav {}

.navigation .heroNavLogo {
    margin: 0 0 var(--space-12);
    width: 50%;
    max-width: 240px;
}
.navigation .heroNavLogo a {
    display: block;
}

.navigation .headerNav li {
    position: relative;
    padding: 0;
    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: 28px;
    text-decoration: none;
    line-height: 1;
    font-weight: bold;
    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{
    margin-right: var(--space-4);
    font-size: 16px;
    font-family: var(--font-title);
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
}
.navigation .snsList .navListTit.snsTit {
        margin-right: 28px;
}
.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-btn-inverse);
    color: var(--color-btn-primary);
}
.navigation .snsList .menuList .menu_icon a i,
.navigation .shareList .menu_icon a i {
    font-size: 14px;
}
.navigation .shareList .menu_icon a img {
	height: 16px;
}

}



/*===================================================
	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: clamp(80px, 8vw, 104px);
    font-weight: 600;
    text-align: center;
    line-height: 0.8;
    margin: 0 auto var(--space-12);
}

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-primary);
    border: 1px solid var(--color-btn-primary);
    color: var(--color-btn-inverse);
    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-primary);
        background: transparent;
	}

}

@media screen and (max-width: 960px){

	.pc {
		display: none !important;
	}

	html {
	    scroll-padding-top: var(--space-20);
	}

	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-8);
	}

    section .inBox .btn a {
        padding: var(--space-4);
    }

}



/*===================================================
    fv
====================================================*/
#fv {
    position: relative;
    z-index: var(--z-fv);
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fv .heroInner {
    position: fixed;
    z-index: 1;
    width: 88%;
    max-width: 1440px;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 6%;
    min-height: 600px;
}
#fv .heroInner .kv {
    position: relative;
    width: 64%;
    top: 4%;
}
#fv .heroInner .titBox {
    width: 36%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4%;
}
#fv .heroInner .titBox .mainLogo {width: 100%;}
#fv .heroInner .titBox .topTxt {width: 100%;}

#fv .iconLogo {
    position: fixed;
    z-index: 1;
    top: var(--space-4);
    left: var(--space-6);
    color: var(--color-brown);
    fill: var(--color-brown);
    width: 60px;
    aspect-ratio: 100 / 122;
}

#fv .scrollBox {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100svh;
    top: 0;
    pointer-events: none;
    transition: 0.5s ease-out;
}
#fv .scrollBox .scrollArrow {
    position: absolute;
    width: 2px;
    height: 80px;
    left: var(--space-6);
    bottom: var(--space-6);
    background: var(--color-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 .snsWrap {
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    top: 0;
    display: flex;
    gap: var(--space-2);
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: var(--space-6);
}
#fv .snsWrap .snsBox {
    background: var(--color-tag-primary);
    color: var(--color-tag-inverse);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-s);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    line-height: 1;
}
#fv .snsWrap .snsBox .snsTit {
    position: relative;
    font-family: var(--font-title);
    font-weight: bold;
    letter-spacing: 0.03em;
    padding-right: var(--space-4);
    margin-right: var(--space-4);
}
#fv .snsWrap .snsBox .snsTit:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background: var(--color-tag-inverse);
}
#fv .snsWrap .snsBox .snsList {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-3);
    font-size: 18px;
}
@media (min-width: 961px) and (max-width: 1400px) and (min-height: 720px) {

    #fv .heroInner {
        height: auto;
        gap: 4%;
    }
    #fv .heroInner .kv {
        top: initial;
    }
    #fv .heroInner .titBox {
        width: 38%;
    }

}

@media screen and (min-width: 961px) {

    #fv .snsWrap .snsBox .snsList li a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px) {

	#fv {
        min-height: 450px;
    }

    #fv .heroInner {        
        width: auto;
        max-width: 110%;
        aspect-ratio: 100 / 151.83;
        height: 85vh;
        min-height: calc(450px * 0.85);
        display: flex;
        gap: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #fv .heroInner .kv {
        width: 100%;
        top: initial;
        margin: 0 auto 4%;
    }
    #fv .heroInner .titBox {
        width: 50%;
        gap: 0;
    }
    #fv .heroInner .titBox .mainLogo {
        margin-bottom: 4%;
    }
    #fv .heroInner .titBox .topTxt {}

    #fv .iconLogo {
        width: 40px;
        top: var(--space-3);
        left: var(--space-4);
    }

    #fv .scrollBox .scrollArrow {
        left: var(--space-4);
        bottom: var(--space-4);
    }

    #fv .snsWrap {
        display: none;
    }
	
}



/*===================================================
    Music Video
====================================================*/
#musicVideo {}
#musicVideo .inBox {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

#musicVideo .inBox h3 {}

#musicVideo .inBox .mov {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-m);
    border: 1px solid;
    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: var(--space-12);
        align-items: flex-start;
    }
    #musicVideo .inBox h3 {
        writing-mode: vertical-lr;
        margin: 0 auto;
    }

}

@media screen and (max-width: 960px){

    #musicVideo {}

    #musicVideo h3 {
        width: 90%;
        max-width: 1200px;
        text-align: left;
        padding-bottom: var(--space-4);
    }
    #musicVideo h3:after {
        position: absolute;
        content: "";
        display: block;
        height: 2px;
        width: 80px;
        background: var(--color-primary);
        left: 0;
        bottom: 0;
    }

    #musicVideo .inBox {
        gap: var(--space-4);
    }

    #musicVideo .inBox .mov {}
    #musicVideo .inBox .mov iframe {}

}



/*===================================================
	product
====================================================*/
#product {}
#product h3 {
    width: 90%;
    max-width: 1200px;
    text-align: right;
    padding-bottom: var(--space-6);
}
#product h3:after {
    position: absolute;
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: var(--color-primary);
    right: 0;
    bottom: 0;
}

#product .inBox {}
#product .inBox .productBox {
    position: relative;
    width: 90%;
    max-width: 1200px;
    display: flex;
    gap: var(--space-12);
    margin: 0 auto calc(var(--space-20) * 1.5);
}
#product .inBox .productBox:nth-child(even)  {
	flex-flow: row-reverse;
}
#product .inBox .productBox:last-child {
    margin: 0 auto;
}

#product .inBox .productBox .productImg {
    z-index: 2;
    width: 50%;
}
#product .inBox .productBox .productImg p {
    border: 1px solid;
}
#product .inBox .productBox .productImg img {}
#product .inBox .productBox .productDetail {
    position: relative;
    width: 50%;
    z-index: 1;
    padding-top: var(--space-12);
}
#product .inBox .productBox:nth-child(even) .productDetail {}
#product .inBox .productBox .productDetail .detailInner {}
#product .inBox .productBox .productDetail .detailInner .detailTit {
    font-size: 48px;
    margin-bottom: var(--space-8);
    line-height: 1;
    font-weight: bold;
}
#product .inBox .productBox .productDetail .detailInner .detailTit span {
	font-size: 24px;
    padding: 0 0 0 var(--space-2);
    font-weight: 400;
}
#product .inBox .productBox .productDetail .detailInner .price {
	font-size: 24px;
    line-height: 1;
    margin-bottom: var(--space-4);
}
#product .inBox .productBox .productDetail .detailInner .price .tax {
    font-size: 14px;
    padding-left: var(--space-1);
}
#product .inBox .productBox .productDetail .detailInner .code {
    font-size: 14px;
    margin-bottom: var(--space-6);
}
#product .inBox .productBox .productDetail .detailInner .code .tag {
    font-size: 14px;
    border: 1px solid;
    padding: 0 var(--space-2) 2px; 
    margin-right: var(--space-2);
    font-weight: bold;
}
#product .inBox .productBox .productDetail .detailInner .code .subTag {
    display: block;
    line-height: 1.5;
    padding: var(--space-2) 0 0;
}
#product .inBox .productBox .productDetail .detailInner .detailListBox {
    margin: 0 0 var(--space-6);
}
#product .inBox .productBox .productDetail .detailInner .detailListBox:last-child {
    margin: 0;
}
#product .inBox .productBox .productDetail .detailInner .detailListBox .listTit {
    display: inline-block;
    margin: 0 0 var(--space-3);
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
}
#product .inBox .productBox .productDetail .detailInner .detailListBox .listTit span {
    font-size: 80%;
    padding: 0 0 0 var(--space-1);
}
#product .inBox .productBox .productDetail .detailInner .detailListBox .txtBox {}
#product .inBox .productBox .productDetail .detailInner .detailListBox .txtBox p {
    margin-bottom: var(--space-1);    
}
#product .inBox .productBox .productDetail .detailInner .detailListBox .txtBox p:last-child {
    margin-bottom: 0;
}
#product .inBox .productBox .productDetail .detailInner .detailListBox .listTxt {
    margin: 0 0 var(--space-1);
    padding: var(--space-2) var(--space-4);
    background: var(--color-tag-primary);
    color: var(--color-tag-inverse);
    display: flex;
    font-size: 14px;
    align-items: center;
}
#product .inBox .productBox .productDetail .detailInner .detailListBox ul {}
#product .inBox .productBox .productDetail .detailInner .detailListBox ul li {
    margin: 0 0 var(--space-1);
    padding: var(--space-2) var(--space-4);
    background: var(--color-tag-primary);
    color: var(--color-tag-inverse);
    display: flex;
    font-size: 14px;
    align-items: center;
}
#product .inBox .productBox .productDetail .detailInner .detailListBox ul li:last-child {
    margin: 0;
}
#product .inBox .productBox .productDetail .detailInner .detailListBox ul li span.num {
    padding: 0 var(--space-2) 0 0;
}

@media screen and (min-width: 961px){

    #product .inBox .productBox .productImg {
        position: sticky;
        top: 120px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

}

@media screen and (max-width: 960px){

    #product {}
    #product h3 {
        padding-bottom: var(--space-4);
    }
    #product h3:after {
        height: 2px;
        width: 80px;
    }

    #product .inBox {}

	#product .inBox .productBox {
	    margin: 0 auto var(--space-16);
	    flex-wrap: wrap;
        gap: var(--space-6);
	}
	#product .inBox .productBox:nth-child(even)  {
		flex-flow: wrap;
	}

	#product .inBox .productBox .productImg {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
	}
    #product .inBox .productBox .productImg img {}

	#product .inBox .productBox .productDetail {
        width: 100%;
        padding: 0;
	}
    #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(--space-4);
	}
	#product .inBox .productBox .productDetail .detailInner .detailTit span {
        font-size: 16px;
    }
	#product .inBox .productBox .productDetail .detailInner .price {
	    font-size: 20px;
        margin-bottom: var(--space-3);
	}
	#product .inBox .productBox .productDetail .detailInner .price .tax {
	    font-size: 12px;
	}
	#product .inBox .productBox .productDetail .detailInner .code {
	    margin-bottom: var(--space-4);
    	font-size: 12px;
	}
	#product .inBox .productBox .productDetail .detailInner .code .tag {
	    font-size: 12px;
	}
    #product .inBox .productBox .productDetail .detailInner .code .subTag {
        padding: var(--space-1) 0 0;
    }
	#product .inBox .productBox .productDetail .detailInner .detailListBox {
        margin-bottom: var(--space-4);
    }
	#product .inBox .productBox .productDetail .detailInner .detailListBox:last-child {}
	#product .inBox .productBox .productDetail .detailInner .detailListBox .listTit {
        font-size: 16px;
        margin: 0 0 var(--space-2);
    }
	#product .inBox .productBox .productDetail .detailInner .detailListBox .listTit span {}
	#product .inBox .productBox .productDetail .detailInner .detailListBox .listTxt {
        padding: var(--space-2) var(--space-4);
	}
    #product .inBox .productBox .productDetail .detailInner .detailListBox .txtBox {}
    #product .inBox .productBox .productDetail .detailInner .detailListBox .txtBox p {
        margin-bottom: 2px;
    }
	#product .inBox .productBox .productDetail .detailInner .detailListBox ul {}
	#product .inBox .productBox .productDetail .detailInner .detailListBox ul li {
        padding: var(--space-2) var(--space-4);
        align-items: flex-start;
        margin-bottom: 2px;
	}
	#product .inBox .productBox:nth-of-type(4) .productDetail .detailInner .detailListBox:nth-of-type(2) ul li:nth-of-type(1) {}
	#product .inBox .productBox .productDetail .detailInner .detailListBox ul li span.note {
        font-size: 12px;
    }
	#product .inBox .productBox .productDetail .detailInner .detailListBox ul li span.num {}
	#product .inBox .productBox .productDetail .detailInner .detailListBox ul li span.inst {}

}



/*===================================================
    special
====================================================*/
#special {}
#special h3 {
    width: 90%;
    max-width: 1200px;
    text-align: left;
    padding-bottom: var(--space-6);
}
#special h3:after {
    position: absolute;
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    bottom: 0;
}

#special .inBox {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: var(--space-12);
}

#special .inBox .specialBox {
    width: 50%;
    background: var(--color-bg-light);
    padding: var(--space-12) var(--space-8);
    border: 1px solid;
}
#special .inBox .specialBox:last-child {
    margin: 0 auto;
}

#special .inBox .specialBox .specialBoxTit {
    text-align: center;
    font-weight: bold;
    margin: 0 0 var(--space-12);
    font-size: 24px;
    line-height: 1;
}

#special .inBox .specialBox .btn {}
#special .inBox .specialBox .btn a {}

@media screen and (min-width: 961px){
	
	#special .inBox .specialBox .btn a:hover {}
	
}

@media screen and (max-width: 960px){

    #special {}
    #special h3 {
        padding-bottom: var(--space-4);
    }
    #special h3:after {
        height: 2px;
        width: 80px;
    }
    
    #special .inBox {
        display: block;
    }

	#special .inBox .specialBox {
        max-width: 600px;
        width: 100%;
        padding: var(--space-6) var(--space-4) var(--space-8);
        margin: 0px auto var(--space-4);
	}
	#special .inBox .specialBox:last-child {}

	#special .inBox .specialBox .specialBoxTit {
        margin: 0 0 var(--space-6);
        font-size: 16px;
	}

	#special .inBox .specialBox .btn {}
	#special .inBox .specialBox .btn a {}

}


/*===================================================
	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-black);
}
#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-black);
}

@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 {}
	#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;
	}
	#footer dl dd .yoani {}
	#footer .copy {}

}