@charset "utf-8";

:root {

    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Kaisei Tokumin", serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-white: #ffffff;

    --color-blue: #0086CD;
    --color-blue-grd: linear-gradient(180deg,rgba(13, 115, 205, 1) 0%, rgba(41, 148, 214, 1) 100%);;
    --color-blue-dark: #3278DB;
    --color-yellow: #FFF41F;
    
    /* Semantic (用途固定) */
    --color-bg-primary: var(--color-blue);
    --color-bg-primary-grd: var(--color-blue-grd);
    --color-bg-slide: var(--color-white);
    --color-bg-container: var(--color-white);
    --color-bg-contact: var(--color-blue-dark);

    --color-text-primary: var(--color-white);
    --color-text-container: var(--color-blue);
    --color-text-contact: var(--color-white);
    --color-text-accent: var(--color-yellow);

    /* ======================================================
       4px Grid (spacing)
    ====================================================== */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-18: 72px;
    --space-20: 80px;

    /* ======================================================
       Section専用スケール (ページレイアウト用)
    ====================================================== */ 
    --section-base-pc: calc(var(--space-16) * 3);
    --section-base-sp: calc(var(--space-16) * 1.5);
    --section-base-last-pc: calc(var(--section-base-pc) * 1.5);
    --section-base-last-sp: calc(var(--section-base-sp) * 2);

    /* ======================================================
       Radius
    ====================================================== */
    --radius-s: 4px;
    --radius-m: 8px;
    --radius-x: 16px;
    --radius-full: 9999px; /* 完全円形用 */

    /* ======================================================
       Z-index - 基本レイヤー
    ====================================================== */
    --z-background: -1;     /* 背景 */
    --z-base: 1;            /* 通常コンテンツ */
    --z-content: 10;        /* メインコンテンツ */
    --z-footer: 20;         /* フッター */
    --z-loader: 100;        /* ローダー */

}




/*===================================================
    AOP
====================================================*/
body header,
body .header--bg,
body .drawer__fc,
body .block--sns,
body .logo--area,
body .drawer__btn,
body .block--video__bg,
body footer {
    display: none;
}

body .wrap {
    padding: 0;
}

@media screen and (max-width: 960px){}



/*===================================================
  anim
====================================================*/
.loader {
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--color-white);
    z-index: var(--z-loader);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.loader #logo_main {
    width: 60%;
    max-width: 480px;
}

.mainWrap .anim.fadeX,
.mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.mainWrap .anim.fadeX {
    transform: translateX(20px);
}
.mainWrap .anim.fadeY {
    transform: translateY(20px);
}
.mainWrap .anim.fadeX.on,
.mainWrap .anim.fadeY.on {
    opacity: 1;
}
.mainWrap .anim.fadeX.on {
    transform: translateX(0px);
}
.mainWrap .anim.fadeY.on {
    transform: translateY(0px);
}

#fv .fvSubTit,
#fv .fvMainTit,
#fv .fvTxt {
    opacity:0;
    transform: translateX(20px);
    transition: all 0.5s ease-out;
}
.loaded #fv .fvSubTit,
.loaded #fv .fvMainTit,
.loaded #fv .fvTxt {
    opacity: 1;
    transform: translateX(0px);
}
.loaded #fv .fvSubTit { transition-delay: 1.5s; }
.loaded #fv .fvMainTit { transition-delay: 2s; }
.loaded #fv .fvTxt { transition-delay: 2.5s; }

@media screen and (max-width: 960px){}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    position: fixed;
    z-index: var(--z-background);
    inset: 0;
    min-height: 600px;
    background: var(--color-bg-primary);
    background: var(--color-bg-primary-grd);
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bgBox .inBg {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: url(/static/ligareaz/fanclub/feature/sponsor/image/bg_wxiyscqk.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: soft-light;
    opacity: 0.4;
}
.bgBox .bgSlide {
    position: absolute;
    z-index: 2;
    width: 40%;
    height: 100%;
    background: var(--color-bg-slide);
    top: 0;
    right: 0;
    clip-path: polygon(0% 0%, 75% 100%, 100% 100%, 100% 0%);
    opacity: 0.1;
}
.bgBox .bgTxt {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: -2.5%;
    width: 70%;
    max-width: 1100px;
    opacity: 0.15;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    .bgBox {
        min-height: 450px;
    }
    .bgBox .inBg {
        background: url(/static/ligareaz/fanclub/feature/sponsor/image/bg_sp_wxiyscqk.png);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .bgBox .bgSlide {
        width: 88%;
        height: 20%;
        clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 100% 0%);
    }
    .bgBox .bgTxt {
        width: 100%;
        max-width: 640px;
    }

}



/*===================================================
	all
====================================================*/
html,
body {
    background: var(--color-bg-primary);
}

.mainWrap {
    position: relative;
    z-index: var(--z-base);
    font-family: var(--font-base);
	font-size: 16px;
    color: var(--color-text-primary);
    line-height: 1.5;
    overflow: hidden;
}
.mainWrap img {
	display: block;
}

#fv {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

#fv .fvInner {
    width: 90%;
    height: 100%;
    letter-spacing: 0.05em;
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}
#fv .fvSubTit {
    position: relative;
    width: 100%;
    font-size: clamp(28px, 2.2vw, 40px);
    letter-spacing: 0.08em;
    color: var(--color-text-accent);
    padding: 0 0 var(--space-3);
}
#fv .fvSubTit:after {
    position: absolute;
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--color-text-accent);
    left: 0;
    bottom: 0;
}
#fv .fvMainTit {
    width: 100%;
    font-size: clamp(48px, 3.8vw, 72px);
    letter-spacing: 0.08em;
}
#fv .fvTxt {
    font-size: clamp(16px, 1.6vw, 28px);
    letter-spacing: 0.08em;
    line-height: 1.8;
}

#fv .scrollBox {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
#fv .scrollBox .scrollArrow {
    position: absolute;
    right: var(--space-8);
    bottom: var(--space-8);
    width: 2px;
    height: 80px;
    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); }
}

.frameContainer {
    position: relative;
    width: 100%;
    min-width: 640px;
    margin: 0 auto;
    top: 1px;
}
.container {
    position: relative;
    z-index: var(--z-content);
    color: var(--color-text-container);
    background: var(--color-bg-container);
}

section {
    position: relative;
    z-index: 2;
    padding: var(--section-base-pc) 0;
    text-align: center;
}
section:last-of-type {
    padding-bottom: var(--section-base-last-pc);
}
#contact {
    color: var(--color-text-contact);
    background: var(--color-blue-dark);
}

.sectionTit {
    position: relative;
    width: 100%;
    font-size: 48px;
    letter-spacing: 0.08em;
    padding: 0 0 var(--space-3);
    margin: 0 auto var(--space-12);
}
.sectionTit:after {
    position: absolute;
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--color-text-container);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
#contact .sectionTit:after {
    background-color: var(--color-text-contact);
}

.sectionLead {
    font-size: 28px;
    font-weight: bold;
    line-height: 2;
    margin: 0 auto var(--space-12);
}

.sectionTxt {
    font-size: 18px;
    margin: 0 auto var(--space-12);
}
.sectionTxt:last-child {
    margin-bottom: 0;
}

.companyList {
    width: 90%;
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    gap: var(--space-18) var(--space-12);
    flex-wrap: wrap;
}
.companyList li {
    width: calc((100% - var(--space-12)) / 2);
}
.companyList li:first-child {
    flex-basis: 100%;
    max-width: 50%;
    margin-inline: auto;
}

.contactBtn {
    margin: 0 auto;
    width: 90%;
    max-width: 360px;
}
.contactBtn a img {
    border-radius: var(--radius-x);
}

.copy {
    position: relative;
    z-index: 2;
    font-size: 10px;
    text-align: center;
    color: var(--color-text-contact);
    background: var(--color-blue-dark);
    padding: 0 0 var(--space-6);
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a, img {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

    .contactBtn a:hover {
        opacity: 0.7;
    }
	
}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}

    .mainWrap {
        font-size: 14px;
    }

    #fv {
	    min-height: 450px;
	}

    #fv .fvInner {}
    #fv .fvSubTit {
        font-size: clamp(18px, 4vw, 28px);             
    }
    #fv .fvMainTit {
        font-size: clamp(20px, 6.6vw, 48px);   
    }
    #fv .fvTxt {
        font-size: clamp(16px, 2.8vw, 24px);
        line-height: 1.8;
    }

    #fv .scrollBox .scrollArrow  {
        right: var(--space-4);
        bottom: var(--space-4);
        width: 1px;
        height: 64px;
    }

    .container {}

    section {
        padding: var(--section-base-sp) 5%;
    }
    section:last-of-type {
        padding-bottom: var(--section-base-last-sp);
    }
    
    .sectionTit {
        font-size: 32px;
        padding: 0 0 var(--space-6);
        margin: 0 auto var(--space-8);
        line-height: 1.2;
    }
    .sectionTit:after {
        width: 64px;
    }

    .sectionLead {
        font-size: 18px;
        line-height: 1.5;
        margin: 0 auto var(--space-8);
    }

    .sectionTxt {
        font-size: 14px;
        margin: 0 auto var(--space-8);
    }

    .companyList {
        width: 100%;
        gap: var(--space-6) var(--space-2);
    }
    .companyList li {
        width: calc((100% - var(--space-2)) / 2);
    }
    .companyList li:first-child {
        max-width: 60%;
    }

    .contactBtn {}
    .contactBtn a {}
    .contactBtn a img {
        border-radius: var(--radius-m);
    }

    .copy {}

}