@charset "utf-8";

:root {
    
    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Noto Serif JP", serif;
    --font-title: "Cormorant Garamond", "Noto Serif JP", serif;
    --font-title-sub:  "dreamboat", "Noto Serif JP", serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-black: #333333;
    --color-white: #ffffff;
    --color-gray: #EEF0F2;
    --color-blue-light: #dcf6ff;
    --color-blue: #ABD4E8;
    --color-green: #6DBD60;
    --color-primary: #FFE012;

    /* Semantic (用途固定) */
    --color-bg-primary: var(--color-blue-light);
    --color-bg-box: var(--color-white);

	--color-text-primary: var(--color-black);
    --color-text-box: var(--color-blue);
    --color-text-title: var(--color-primary);
    --color-text-accent: var(--color-green);

    --color-tag-text: var(--color-white);
    --color-tag-bg: var(--color-blue);

    --color-nav-text: var(--color-white);
    --color-nav-bg: var(--color-blue);

	--color-btn-text: var(--color-white);
	--color-btn-bg: var(--color-green);

    /* ======================================================
       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: 3;  
    --section-ratio-last-sp: 6;  
    --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-sp));

    /* ======================================================
       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-footer: 20;      /* フッター */
    --z-nav: 30;         /* ナビゲーション */
    --z-nav-btn: 31;     /* ナビゲーションボタン */
    --z-loader: 100;     /* ローダー */

}



/*===================================================
	ani
====================================================== */

.loader {
    display: none;
}
.js .loader {
    position: fixed;
    z-index: var(--z-loader);
    height: 100%;
    width: 100%;
    background: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-out;
    pointer-events: none;
}
.js .loader .loaderLogo {
    width: 75%;
    max-width: 420px;
}
.js .loaded .loader {
    opacity: 0;
    transition-delay: 0.5s;
}

.js #fv .fvInner .topTxt img {
    opacity: 0;
    transition: all 0.5s ease-out;
}
.js .loaded #fv .fvInner .topTxt img {
    opacity: 1;
    transition-delay: 1s;
}

.js #fv .fvInner .kv,
.js #fv .fvInner .topTxt,
.js #fv .scrollBox {
    -webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.js .scrolled #fv .fvInner .kv {
    opacity: 0.15;
}
.js .scrolled.end #fv .fvInner .kv {
    opacity: 1;
}
.js .scrolled #fv .fvInner .topTxt,
.js .scrolled #fv .scrollBox {
    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) {}



/*===================================================
    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
====================================================*/
.hamBtn {
    position: fixed;
    z-index: var(--z-nav-btn);
    display: block;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: var(--color-btn-bg);
    border-radius: 0 0 0 var(--radius-m);
    transition: all .3s ease;
    cursor: pointer;
}
.hamBtn.open {}
.hamBtn span {
    position: absolute;
    display: block;
    right: 20%;
    width: 60%;
    height: 2px;
    background: var(--color-btn-text);
    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 {}
.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-nav-text);
	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-nav-bg);
    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 {
    max-width: 360px;
    margin: 0 0 var(--space-12);
}
.navigation .heroNavLogo a {
    display: block;
}

.navigation .headerNav li {
    margin-bottom: var(--space-6);
}
.navigation .headerNav li:nth-last-child(3) {
    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: 32px;
    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;
    justify-content: center;
}
.navigation .snsList:last-child {
    margin-bottom: 0;
}
.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .navListTit {
    font-size: 20px;
    font-family: var(--font-title);
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.03em;
    margin-right: var(--space-4);
}
.navigation .snsList .navListTit.snsTit {
    margin-right: 24px;
}
.navigation .snsList .menuList li {
    margin: 0px var(--space-3) 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: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--color-btn-bg);
    color: var(--color-btn-text);
}
.navigation .snsList .menuList .menu_icon a i {
    font-size: 16px;
}

@media screen and (min-width: 961px) {

    .navigation .headerNav li a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px) {

    .navigation .heroNavLogo {
        width: 75%;
        max-width: 360px;
        margin: 0 0 var(--space-8);
    }

    .navigation .headerNav li {
        margin-bottom: var(--space-4);
    }
    .navigation .headerNav li:nth-last-child(3) {
        margin-bottom: var(--space-8);
    }

    .navigation .snsList .navListTit {
        font-size: 18px;
    }
    .navigation .snsList .navListTit.snsTit {
        margin-right: 26px;
    }
    .navigation .snsList .menuList li {
        margin: 0px var(--space-3) 0 0;
    }
    .navigation .snsList .menuList li a {
        font-size: 24px;
    }
    
}



/*===================================================
	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);
}

.sectionTit {
    width: 90%;
    margin: 0 auto var(--space-16);
    text-align: center;
}
.sectionTit h3 {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: var(--color-text-title);
    font-family: var(--font-title);
    font-size: 96px;
    text-align: center;
    line-height: 0.7;
}
.sectionTit h3 span {
    position: absolute;
    z-index: 2;
    color: var(--color-text-accent);
    font-family: var(--font-title-sub);
    font-size: 32px;
    font-weight: 400;
    right: -5%;
    bottom: -10%;
    transform: rotate(-10deg);
}

.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;
	}

    .btn a:hover {
        background: var(--color-btn-text);
        color: var(--color-btn-bg);
	}

}

@media screen and (max-width: 960px){

	.pc {
		display: none !important;
	}

	html {
	    scroll-padding-top: var(--space-20);
	}

	.mainWrap {
        overflow: hidden;
    }

	section {
		padding: 0 0 var(--section-base-sp);
	}
    section:last-of-type {
        padding: 0 0 var(--section-base-last-sp);
    }

    .sectionTit {
        margin: 0 auto var(--space-6);
    }
    .sectionTit h3 {
        font-size: 44px;
    }
    .sectionTit h3 span {
        font-size: 20px;
        right: -5%;
        bottom: -20%;
    }

    .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 .fvInner {
    position: fixed;
    z-index: 1;
    inset: 0;
    min-height: 600px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
#fv .fvInner .topTxt {
    position: absolute;
    z-index: 2;
    max-width: 90%;
    max-height: 18vh;
    min-height: calc(600px * 0.18);
    aspect-ratio: 1600 / 218;
    top: calc(19vh + (1920px - 100vw) * 0.1);
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
#fv .fvInner .kv {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: clip;
}
#fv .fvInner .kv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 82.5%;
}

#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-8);
    bottom: var(--space-8);
    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); }
}

@media screen and (min-width: 961px) and (max-height: 720px) {
    #fv .fvInner .kv img {
        object-position: 50% 75%;
    }
}

@media screen and (max-width: 1540px) and (min-width: 961px) and (max-height: 720px) {
    #fv .fvInner .topTxt {
        top: calc(19vh + (1540px - 100vw) * 0.1);
    }
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #fv .fvInner .topTxt {
        aspect-ratio: 1000 / 626;
        max-width: 80%;
        max-height: 30vh;
        min-height: initial;
        top: 27svh;
    }
    #fv .fvInner .kv {
        inset: initial;
        bottom: 0;
    }
    #fv .fvInner .kv img {
        object-fit: initial;
        object-position: initial;
    }

    #fv .scrollBox .scrollArrow {
        height: 64px;
    }
    #fv .scrollBox .scrollArrow {
        left: var(--space-4);
        bottom: var(--space-4);
    }
	
}

@media screen and (max-width: 600px) {

    #fv {
        min-height: 450px;
    }

    #fv .fvInner {
        min-height: 450px;
    }

    #fv .fvInner .topTxt {
        max-height: 35vh;
        top: calc(30svh + (960px - 100vw) * 0.1);
    }
	
}


@media screen and (min-width: 1921px) {
    #fv .fvInner .topTxt {
        top: 28.5%;
    }
    #fv .fvInner .kv img {
        object-position: 50% 60%;
    }
}



/*===================================================
    Music Video
====================================================*/
#musicVideo .inBox {
    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 (min-width: 961px) {}

@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);
}
#product .productBox:nth-child(even)  {
	flex-flow: row-reverse;
}
#product .productBox:last-child {
    margin: 0 auto;
}

#product .productBox .productImg {
    z-index: 2;
    width: 50%;
}
#product .productBox .productImg p {
    border: 1px solid var(--color-white);
}
#product .productBox .productDetail {
    position: relative;
    width: 50%;
    z-index: 1;
    margin-top: 10%;
    margin-bottom: 5%;
    padding: 5%;
    color: var(--color-text-box);
}
#product .productBox:nth-child(odd) .productDetail {
    padding-left: 0;
}
#product .productBox:nth-child(even) .productDetail {
    padding-right: 0;
}
#product .productBox .productDetail:after {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    width: 120%;
    height: 100%;
    top: 0px;
    background: var(--color-bg-box);
    overflow: hidden;
}
#product .productBox:nth-child(odd) .productDetail:after {
    left: -20%;
}
#product .productBox:nth-child(even) .productDetail:after {
    right: -20%;
}

#product .productBox .detailTit {
    font-size: 48px;
    margin-bottom: var(--space-8);
    line-height: 1;
    font-weight: bold;
}
#product .productBox .detailTit span {
	font-size: 24px;
    padding: 0 0 0 var(--space-2);
    font-weight: 400;
}
#product .productBox .price {
	font-size: 24px;
    line-height: 1;
    margin-bottom: var(--space-4);
}
#product .productBox .price .tax {
    font-size: 14px;
    padding-left: var(--space-1);
}
#product .productBox .code {
    font-size: 14px;
    margin-bottom: var(--space-6);
}
#product .productBox .code .tag {
    font-size: 14px;
    border: 1px solid;
    padding: 0 var(--space-2) 2px; 
    margin-right: var(--space-2);
}
#product .productBox .code .subTag {
    display: block;
    line-height: 1.5;
    padding: var(--space-2) 0 0;
}
#product .productBox .detailListBox {
    margin: 0 0 var(--space-6);
}
#product .productBox .detailListBox:last-child {
    margin: 0;
}
#product .productBox .detailListBox .listTit {
    display: inline-block;
    margin: 0 0 var(--space-3);
    font-size: 16px;
    border-left: 4px solid;
    padding: 0 0 0 var(--space-2);
    font-weight: bold;
}
#product .productBox .detailListBox .listTit span {
    font-size: 80%;
    padding: 0 0 0 var(--space-1);
}
#product .productBox .detailListBox .txtBox p {
    margin-bottom: var(--space-1);    
}
#product .productBox .detailListBox .txtBox p:last-child {
    margin-bottom: 0;
}
#product .productBox .detailListBox .listTxt {
    margin: 0 0 var(--space-1);
    padding: var(--space-2) var(--space-4);
    background: var(--color-tag-bg);
    color: var(--color-tag-text);
    display: flex;
    font-size: 14px;
    align-items: center;
}
#product .productBox .detailListBox ul li {
    margin: 0 0 var(--space-1);
    padding: var(--space-2) var(--space-4);
    background: var(--color-tag-bg);
    color: var(--color-tag-text);
    display: flex;
    font-size: 14px;
    align-items: center;
}
#product .productBox .detailListBox ul li:last-child {
    margin: 0;
}
#product .productBox .detailListBox ul li span.num {
    padding: 0 var(--space-2) 0 0;
}

@media screen and (min-width: 961px){

    #product .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: 0;
	}
	#product .productBox:nth-child(even)  {
		flex-flow: wrap;
	}

	#product .productBox .productImg {
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
	}

	#product .productBox .productDetail {
        width: 100%;
        padding: 5%;
        margin-top: 0;
        margin-bottom: 0;
	}
    #product .productBox:nth-child(odd) .productDetail {
        padding-left: 5%;
        padding-right: 0;
    }
    #product .productBox:nth-child(even) .productDetail {
        padding-right: 5%;
        padding-left: 0;
    }
    #product .inBox .productBox .productDetail:after {
        width: 110%;
        height: 105%;
        top: -5%;
    }
    #product .productBox:nth-child(odd) .productDetail:after {
        left: 0%;
    }
    #product .productBox:nth-child(even) .productDetail:after {
        right: 0%;
    }

	#product .productBox .detailTit {
        font-size: 32px;
        margin-bottom: var(--space-4);
	}
	#product .productBox .detailTit span {
        font-size: 16px;
    }
	#product .productBox .price {
	    font-size: 20px;
        margin-bottom: var(--space-3);
	}
	#product .productBox .price .tax {
	    font-size: 12px;
	}
	#product .productBox .code {
	    margin-bottom: var(--space-4);
    	font-size: 12px;
	}
	#product .productBox .code .tag {
	    font-size: 12px;
	}
    #product .productBox .code .subTag {
        padding: var(--space-1) 0 0;
    }
	#product .productBox .detailListBox {
        margin-bottom: var(--space-4);
    }
	#product .productBox .detailListBox:last-child {}
	#product .productBox .detailListBox .listTit {
        font-size: 16px;
        margin: 0 0 var(--space-2);
    }
	#product .productBox .detailListBox .listTit span {}
	#product .productBox .detailListBox .listTxt {
        padding: var(--space-2) var(--space-4);
	}
    #product .productBox .detailListBox .txtBox {}
    #product .productBox .detailListBox .txtBox p {
        margin-bottom: 2px;
    }
	#product .productBox .detailListBox ul {}
	#product .productBox .detailListBox ul li {
        padding: var(--space-2) var(--space-4);
        align-items: flex-start;
        margin-bottom: 2px;
	}
	#product .productBox:nth-of-type(4) .detailListBox:nth-of-type(2) ul li:nth-of-type(1) {}
	#product .productBox .detailListBox ul li span.note {
        font-size: 12px;
    }
	#product .productBox .detailListBox ul li span.num {}
	#product .productBox .detailListBox ul li span.inst {}

}



/*===================================================
    special
====================================================*/
#special .inBox {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-12);
}

#special .inBox .specialBox {
    width: calc(50% - 48px / 2);
    padding: var(--space-12) var(--space-8);
    background: var(--color-bg-box);
    color: var(--color-text-box);
}
#special .inBox .specialBox:last-child {
    margin: 0 auto;
}

#special .inBox .specialBox .specialBoxTit {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 var(--space-12);
}

@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-6) var(--space-4);
        margin: 0px auto var(--space-4);
	}
	#special .inBox .specialBox:last-child {}

	#special .inBox .specialBox .specialBoxTit {
        margin: 0 0 var(--space-6);
        font-size: 16px;
        list-style: 1.5;
	}

}


/*===================================================
	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 {}
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 12px;
}

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% var(--space-5);
    }
    
    footer .inner {
    	padding: 0;
    }

    footer .inner .logo_official {
        margin: 0;
    }
    footer .logo_official svg {
        width: 80px;
        height: 45px;
    }

    footer .inner .logo_yoani {
        width: 45vw;
        max-width: 200px;
    }

    footer .copyright {
        font-size: 10px;
    }

}