@charset "UTF-8";

/* CSS Document */

/*------------------------------
google fonts
------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Sedan:ital@0;1&display=swap');
/* company */
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap');
/* @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap"); */
/* @import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap"); */

/*------------------------------
	初期設定
------------------------------*/
/* 2023/10/24 ver.1.11.1 GitHub */
html,body{background-color:#fff}*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;tab-size:2;scrollbar-gutter:stable}:where(html:has(dialog:modal[open])){overflow:clip}:where(body){line-height:1.5;font-family: "Noto Sans JP","sans-serif"; -webkit-font-smoothing:antialiased}:where(button){all:unset}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(a){color:inherit;text-underline-offset:.2ex;text-decoration:none}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg,video){width:100%;max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word;font-size:1.6rem}:where(h2,h3,h4,h5,h6){font-weight:400}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(dialog,[popover]){border:none;background:none;color:inherit;inset:unset;max-width:unset;max-height:unset}:where(dialog:not([open],[popover]),[popover]:not(:popover-open)){display:none!important}:where(:focus-visible){outline:3px solid CanvasText;box-shadow:0 0 0 5px Canvas;outline-offset:1px}:where(:focus-visible,:target){scroll-margin-block:8vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important;user-select:none!important}

/*------------------------------
	ブラウザ対応
------------------------------*/
/* 2023/9/18(A (more) Modern CSS Reset) */
html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin-block-end:0}ul[role='list'],ol[role='list']{list-style:none}body{min-height:100dvh;line-height:1.5}h1,h2,h3,h4,button,input,label{line-height:1.1}a:not([class]){text-decoration-skip-ink:auto;color:currentColor}img,picture{max-width:100%;width:100%;display:block;font-size:1.6rem}input,button,textarea,select{font-family:inherit;font-size:inherit}textarea:not([rows]){min-height:10em}:target{scroll-margin-block:5ex}@media print{body{background-color:#fff!important}a,a:link,a:visited,a:hover{text-decoration:none!important}#tabLink{display:none!important}}

/*------------------------------
	ブレイクポイント
------------------------------*/
html {
	font-size: calc(100vw / 150);
  }
  @media screen and (max-width: 768px) {
	html { font-size: calc(100vw / 37.5); }
  }

/*------------------------------
Safari用のハック
------------------------------*/
@supports (-webkit-touch-callout: none) {
	body { /* Safari用のハック */ height: -webkit-fill-available; }
}

/*------------------------------
全体設定
------------------------------*/
body {
	font-size: 1.6rem;
	line-height: 1.1;
	font-family: "Noto Serif JP", "Sedan", "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "Verdana", "ＭＳ Ｐゴシック", serif;
	color: var(--black);
	text-align: left;
	position: relative;
	overflow-x: hidden;
}

.spmask { display: block; }
.sponly { display: none; }
br.spmask { display: inline; }

@media screen and (max-width: 768px) {
	br.spmask,.spmask { display: none; }
	.sponly { display: block; }
	br.sponly { display: inline; }
}

/*------------------------------*/
:root {
	--black: #0f0f0f;
	--bg-black: #050505;
	--font-sedan: "Sedan";
    --gnav-margin: 90px;
}
/*------------------------------
MARK:COMMON
------------------------------*/
.inner{
	width: 110rem;
    margin-inline: auto;
	&.narrow{
		width: 90rem;
		@media (max-width: 768px) {
			width: 92vw;
		}
	}
	&.wide{
		width: 120rem;
		@media (max-width: 768px) {
			width: 92vw;
		}
	}
	@media (max-width: 768px) {
		width: 92vw;
	}
}
/*------------------------------*/
.readText{
    font-kerning: normal;
    line-height: 2.1;
    margin-block: calc((1em - 1lh) / 2);
	font-size: 1.6rem;
    font-weight: 400;
    text-align: justify;
    @media (max-width: 768px) {
		font-size: 1.35rem;
		text-align: left;
		line-height: 1.9;
    }
    &.center{
        text-align: center;
    }
}
/*------------------------------*/
.font-sedan{
	font-family: var(--font-sedan);
}
/*------------------------------*/
.name-aside{
    position: fixed;
    z-index: 5;
    font-size: 2.4rem;
    writing-mode: vertical-lr;
    color: #fff;
    right: 1rem;
    top: 50%;
    mix-blend-mode: difference;
    transform: translateY(-50%);
    @media (max-width: 768px) {
        display: none;
    }
}
/*------------------------------*/
.deal-mv,
.mvv-mv{
    .video{
        width: 100%;
        aspect-ratio: 1920 / 648;
        position: relative;
        z-index: 0;
        overflow: hidden;
        background-color: var(--bg-black);
        @media (max-width: 768px) {
            aspect-ratio: 2 / 1;
        }
        video{
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(-50%);
            min-width: 100%;
            min-height: 100%;
            height: 100%;
            width: 100%;
            opacity: 0.8;
        }
    }
}
/*------------------------------*/
.section-hd{
	border-bottom: #000 0.1rem solid;
	padding-bottom: 1.5rem;
	padding-inline: 4rem;
	width: fit-content;
	margin-inline: auto;
	display: block;
	text-align: center;
	@media (max-width: 768px) {
		padding-inline: 1rem;
		padding-bottom: 1.4rem;
	}
	h2{
		margin-bottom: 0.6rem;
		font-size: 1.2rem;
	}
	p{
		font-size: 2rem;
		font-weight: 500;
	}
	&.white{
		color: #fff;
		border-bottom: #fff 0.1rem solid;
	}
}
/*------------------------------*/
.page-link{
	margin-inline: auto;
	display: grid;
	place-content: center;
	width: 37rem;
	height: 7.8rem;
	border: 0.1rem solid #000;
	font-size: 1.8rem;
	margin-top: 6rem;
    @media (max-width: 768px) {
        width: 100%;
        height: 5.4rem;
        margin-top: 4rem;
        font-size: 1.4rem;
    }
    @media (any-hover:hover) {
        &:hover{
            opacity: 0.5;
        }
    }
}
/*------------------------------*/
.anchor{
    position: absolute;
    top: calc(-20px - 5.4rem - 2rem);
    @media (max-width: 768px) {
        top: -4.4rem;
    }
}
/*------------------------------
MARK:HEADER
------------------------------*/
.header{
	display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: var(--bg-black);
	@media (max-width: 768px) {
		display: flex;
	}
    .header_inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: calc(100% - 2rem);
        height: 4.4rem;
        padding: 0 2rem;
        position: relative;
        z-index: 1001;
        background-color: var(--bg-black);
    }
    .header_logo{
        z-index: 1001;
        a{
            width: 12rem;
            display: inline-block;
            img{
                width: 100%;
                opacity: 1 !important;
            }
        }
    }
    .header_link{
        display: flex;
        align-items: center;
        a{
            text-decoration: none;
            color: #000;
            font-size: 1.8rem;
            font-family: "Noto Serif JP", serif;
            font-weight: 400;
            margin: 0 15px;
            padding-top: 12px;
            padding-bottom: 2px;
            @media (hover: hover) and (pointer: fine) {
                &:hover{
                    border-bottom: #000 solid 1px;
                }
            }
        }
    }
    #nav_btn {
        display: block;
        width: 4.4rem;
        height: 4.4rem;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1005;
        border:none;
        background-color: var(--bg-black);
        .bar {
            width: 44%;
            min-width: 24px;
            height: 2px;
            display: block;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 1px;
            margin-bottom: -1px;
            background-color: #fff;
            &.bar_top{
                top: 32%;
                transition: all .3s;
            }
            &.bar_mid{
                top: calc(50% + 1px);
                transform: translate(-50%,-50%);
                transition: all .2s;
            }
            &.bar_bottom {
                bottom: 32%;
                transition: all .3s;
            }
        }
        &.close {
            .bar {
            &.bar_top{
                transform: translate(-50%,-1px) rotate(45deg);
                transition: all .3s;
                top: 50%;
            }
            &.bar_mid {
                opacity: 0;
                transition: all .2s;
            }
            &.bar_bottom {
                transform: translate(-50%,0) rotate(-45deg);
                transition: all .3s;
                bottom: 50%;
            }
        }
        }
}
    
}
/*------------------------------
MARK:MENU
------------------------------*/
.menu{
    display: none;
    height: 100dvh;
    height: -webkit-fill-available;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    transition: all 0.4s ease-out;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: #fff;
    isolation: isolate;
    &::before{
        content: "";
        position: fixed;
        inset: 0;
        background: url(/public/images/company/bg_logo.png) no-repeat center;
        background-size: 50%;
        z-index: -1;
        pointer-events: none;
    }
    .menu_inner{
        position: relative;
        z-index: 1;
        display: block;
        width: calc(100% - 2rem);
        height: 100%;
        margin: 0 auto;
        padding: 0 2rem;
        margin-top: 100px;
    }
	.menu_link{
		li{
			border-bottom: 1px solid #333;
		}
		a{
			position: relative;
			display: flex;
			align-items: center;
			text-decoration: none;
			line-height: 1.5;
			padding-top: 2rem;
			padding-bottom: 1.8rem;
			color: #000;
			font-size: 1.4rem;
			span{
				display: inline-block;
				font-weight: 400;
			}
		}
	}
    .other{
        margin-top: 4rem;
        p{
            font-family: var(--font-sedan);
            font-size: 1.4rem;
            text-align: center;
        }
        .sns-wrap{
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 1.5rem;
            margin-block: 1rem 2rem;
            a{
                width: 4rem;
                aspect-ratio: 1;
                display: grid;
                place-content: center;
                flex-shrink: 0;
                @media (hover: hover) and (pointer: fine) {
                    &:hover{
                        img{
                            opacity: 0.6;
                        }
                    }
                }
                img{
                    transition: opacity 0.1s ease;
                }
                
            }
        }
    }
    .menu_copyright{
        width: 100%;
        padding-block: 3rem 1rem;
        text-align: center;
        span{
            font-size: 1.2rem;
            color: #050505;
        }
    }
	&.open{
		overflow: auto;
		opacity: 1;
		z-index: 998;
		pointer-events: auto;
	}
}
/*------------------------------
MARK:GLOBAL NAV
------------------------------*/
.gNav{
	position: sticky;
	z-index: 10000;
	top: 20px;
	text-align: center;
	margin-bottom: var(--gnav-margin);
	@media (max-width: 768px) {
		display: none;
	}
	.gNav-box{
		display: inline-block;
		background-color: #33333330;
		backdrop-filter: blur(2px);
	}
	.gNav-wrap{
		display: flex;
		width: auto;
		/* column-gap: 2rem; */
		height: 5.4rem;
		border-bottom: #fff 0.1rem solid;
		/* padding-inline: 2rem; */
	}
	.gNav-item{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 10rem;
	}
	.gNav-item > .gNav-link{
		height: 100%;
	}
	a{
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		padding-inline: 1.2rem;
		text-decoration: none;
		transition: 0.1s;
        min-width: 12rem;
		@media (hover: hover) and (pointer: fine) {
			&:hover{
				opacity: 0.5;
			}
		}
	}
	.gNav-sub{
		position: absolute;
		top: calc(100% + 0.1rem);
		left: 0;
		transform: translateY(0);
		display: flex;
		flex-direction: column;
		gap: 0;
		min-width: 100%;
		width: 100%;
		background-color: #33333330;
		backdrop-filter: blur(2px);
		z-index: 2;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s ease, transform 0.2s ease;
        li{
            border-bottom: #fff 0.1rem solid;
        }
		a{
			width: 100%;
            height: 28px;
			white-space: nowrap;
            font-size: 1.2rem;
            line-height: 1;
		}
	}
	.gNav-item:hover .gNav-sub,
	.gNav-item:focus-within .gNav-sub{
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
}
/*------------------------------
MARK:FOOTER
------------------------------*/
.footer{
    padding-top: 6.4rem;
    background-color: var(--bg-black);
    position: relative;
    overflow: hidden;
    &#subInfo{
        background-color: #fff;
        .footer_wrap{
            background-color: #fff;
            color: #000;
        }
        .phone::before{
            background-image: url(/public/images/common/phone_b.png);
        }
        .fax::before{
            background-image: url(/public/images/common/fax_b.png);
        }
        .mail::before{
            background-image: url(/public/images/common/mail_b.png);
        }
    }
    @media (max-width: 768px) {
        padding-top: 3rem;
    }
    .footer_logo{
        display: inline-block;
        width: 28rem;
        margin-bottom: 4rem;
        @media (max-width: 768px) {
            width: 14rem;
            margin-bottom: 3rem;
        }
        img{
            width: 100%;
            opacity: 1 !important;
        }
    }
    .footer_wrap{
        display: flex;
        column-gap: 8rem;
        color: #fff;
        background-color: var(--bg-black);
        @media (max-width: 768px) {
            display: block;
        }
        &.split{
            justify-content: space-between;
        }
    }
	.footer_column-01{
		.map{
			margin-bottom: 3rem;
			display: block;
			cursor: pointer;
			position: relative;
			overflow: hidden;
			transition: all 0.4s;
			width: 40rem;
			aspect-ratio: 3/1;
			img{
				-o-object-fit: cover;
				object-fit: cover;
				transform-origin: top left;
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translateX(-50%) translateY(-50%);
				min-width: 100%;
				min-height: 100%;
				width: 100%;
				height: 100%;
				transition: all 0.4s;
			}
			@media (max-width: 768px) {
				max-width: none;
				width: 100%;
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover{
					opacity: 0.6;
					img{
						scale: 1.05;
					}
				}
			}
		}
		> p{
			line-height: 1.9;
			margin-bottom: 3rem;
			@media (max-width: 768px) {
				margin-bottom: 4rem;
				font-size: 1.4rem;
			}
		}
	}
	.footer_column-02{
		> p{
			line-height: 1.9;
			@media (max-width: 768px) {
				font-size: 1.4rem;
			}
		}
		@media (max-width: 768px) {
			margin-top: 4rem;
		}
	}
	.footer_column-03{
		> p{
			line-height: 1.9;
			@media (max-width: 768px) {
				font-size: 1.4rem;
			}
		}
		@media (max-width: 768px) {
			margin-top: 4rem;
		}
	}
    .footer_contact{
        .contactBox{
            display: flex;
            align-items: center;
            @media (max-width: 768px) {
                font-size: 1.4rem;
            }
            & + .contactBox{
                margin-top: 2rem;
            }
            &::before{
                width: 1.6rem;
                height: 1.6rem;
                display: inline-block;
                margin-right: 1.2rem;
                content: "";
                background-size: contain;
            }
            &.phone::before{
                background-image: url(/public/images/common/phone.png);
            }
            &.fax::before{
                background-image: url(/public/images/common/fax.png);
            }
            &.mail::before{
                background-image: url(/public/images/common/mail.png);
            }
        }
    }
    .footer_nav{
        margin-top: 6rem;
        padding-top: 2rem;
        padding-bottom: 3rem;
        background-color: var(--bg-black);
        @media (max-width: 768px) {
            margin-top: 2rem;
            padding-top: 3rem;
            padding-bottom: 2rem;
        }
        .sns-wrap{
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 1.8rem;
            margin-block: 2rem 4rem;
            @media (max-width: 768px) {
                display: none;
            }
            a{
                width: 4rem;
                aspect-ratio: 1;
                display: grid;
                place-content: center;
                flex-shrink: 0;
                @media (hover: hover) and (pointer: fine) {
                    &:hover{
                        img{
                            opacity: 0.6;
                        }
                    }
                }
                img{
                    transition: opacity 0.1s ease;
                }
                
            }
        }
        ul{
            display: flex;
            justify-content: center;
            column-gap: 2rem;
            @media (max-width: 768px) {
                display: block;
                text-align: right;
                margin-right: 2rem;
            }
            li{
                a{
                    color: #fff;
                    display: block;
                    text-decoration: none;
                    font-weight: 500;
					font-size: 1.4rem;
                    @media (max-width: 768px) {
                        font-size: 1.2rem;
                        padding-block: 1rem;
                    }
                    @media (hover: hover) and (pointer: fine) {
                        &:hover{
                            text-decoration: underline;
                        }
                    }
                }
            }
        }
    }
}
.footer_copyright{
	background-color: var(--bg-black);
	padding-bottom: 6rem;
	position: relative;
	z-index: 1;
	@media (max-width: 768px) {
		padding-bottom: 2rem;
	}
	.footer_copyright-inner{
		width: 100%;
		padding: 0.8rem 0;
		text-align: center;
		span{
			font-size: 1.3rem;
			color: #fff;
			@media (max-width: 768px) {
				font-size: 1.2rem;
			}
		}
	}
}
/*------------------------------
MARK:LINE BANNER
------------------------------*/
#lineBanner{
    /* 一時的に非表示 */
    display: none;

    position: fixed;
    z-index: 199999;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--bg-black);
    opacity: 0;
    transform: translateY(2rem);
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(.5,.14,.12,.93), opacity 0.4s ease;
    @media (max-width: 768px) {
        bottom: auto;
        right: 1.5rem;
        top: calc(100dvh - 1.5rem - (496 / 872 * 16rem));
    }
    &.is-visible{
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    &.is-closing{
        opacity: 0;
        transform: translateY(2rem);
        pointer-events: none;
    }
    .line-banner-close{
        position: absolute;
        top: -0.8rem;
        right: -0.8rem;
        width: 2.6rem;
        height: 2.6rem;
        border-radius: 50%;
        background-color: #fff;
        display: grid;
        place-items: center;
        z-index: 2;
        &::before,
        &::after{
            content: "";
            width: 1.2rem;
            height: 0.2rem;
            background-color: #111;
            position: absolute;
        }
        &::before{
            transform: rotate(45deg);
        }
        &::after{
            transform: rotate(-45deg);
        }
    }
    a{
        width: 24rem;
        display: block;
        transition: opacity 0.1s ease;
        @media (any-hover: hover) {
            &:hover{
                opacity: 0.8;
            }
        }
        @media (max-width: 768px) {
            width: 16rem;
        }
    }
}
/*------------------------------
MARK:ANIMATE
------------------------------*/
[data-animate="fadeUp"]{
    transform: translateY(2rem);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(.5,.14,.12,.93), opacity 1.5s 0.3s;
    &.shown{
        transform: translateY(0);
        opacity: 1;
    }
}
[data-animate="fadeIn"]{
    filter: blur(5px);
    will-change: filter;
    opacity: 0;
    transition: filter 1.8s cubic-bezier(.5,.14,.12,.93), opacity 1.6s;
    &.shown{
        filter: blur(0px);
        opacity: 1;
    }
}

/*------------------------------*/
/*------------------------------
MARK:LOADING
------------------------------*/
#loadingLayer{
    position: fixed;
    z-index: 200000;
    inset: 0;
    width: 100%;
    height: 100lvh;
    background-color: transparent;
    opacity: 1;
    transition: opacity 0.3s ease;
    &.is-transparent{
        opacity: 0;
        pointer-events: none;
    }
    .loading-inner{
        display: grid;
        place-items: center;
        height: 100svh;
        width: 100%;
        position: relative;
        overflow: hidden;
        .logo{
            width: 160px;
            aspect-ratio: 387 / 67;
            clip-path: polygon(0 var(--loading-clip-start), 100% var(--loading-clip-start), 100% var(--loading-clip-end), 0 var(--loading-clip-end));
            grid-area: 1 / 1;
            position: relative;
            z-index: 3;
            @media (max-width: 768px) {
                width: 140px;
            }
            &.start{
                animation: 
                loading-clip-start 0.45s forwards cubic-bezier(0,.3,.3,1),
                loading-clip-end 0.8s forwards 0.3s ease;
            }
        }
        .loading-line{
            position: absolute;
            left: 0;
            /* top: 50%; */
            width: 100%;
            height: 0.5px;
            background: #fff;
            transform: scaleX(0);
            transform-origin: left center;
            grid-area: 1 / 1;
            z-index: 2;
            &.top{
                bottom: 0;
            }
            &.bottom{
                top: 0;
            }
        }
        .loading-split{
            position: absolute;
            inset: 0;
            grid-area: 1 / 1;
            pointer-events: none;
            z-index: 1;
            .split-top,
            .split-bottom{
                position: absolute;
                left: 0;
                width: 100%;
                height: 50%;
                background: var(--bg-black);
            }
            .split-top{
                top: 0;
            }
            .split-bottom{
                bottom: 0;
            }
        }
    }
    &.is-animating{
        .loading-inner{
            .loading-line{
                animation: 
                    loading-line-sweep 0.4s forwards 0.9s cubic-bezier(.31,.09,.04,.97),
                    loading-line-fade 0.5s forwards 1.35s ease;
            }
            .loading-split{
                .split-top{
                    animation: loading-split-top 0.9s forwards 1.35s cubic-bezier(.57,.27,.2,.99);
                }
                .split-bottom{
                    animation: loading-split-bottom 0.9s forwards 1.35s cubic-bezier(.57,.27,.2,.99);
                }
            }
        }
    }
}
@keyframes loading-clip-start {
    0%{
        transform: translateY(50%);
        --loading-clip-start: 110%;
        opacity: 0;
    }
    40%{
        --loading-clip-start: -10%;
        opacity: 1;
    }
    100%{
        transform: translateY(0%);
        --loading-clip-start: -10%;
        opacity: 1;
    }
}
@keyframes loading-clip-end {
    0%{
        transform: translateY(0%);
        --loading-clip-end: 110%;
    }
    100%{
        transform: translateY(-50%);
        --loading-clip-end: -10%;
    }
}
@keyframes loading-line-sweep {
    0%{ transform: scaleX(0); }
    90%,100%{ transform: scaleX(1); }
}
@keyframes loading-split-top {
    0%{ transform: translateY(0%); }
    100%{ transform: translateY(-100%); }
}
@keyframes loading-split-bottom {
    0%{ transform: translateY(0%); }
    100%{ transform: translateY(100%); }
}
@keyframes loading-line-fade {
    0%{ opacity: 1; }
    100%{ opacity: 0; }
}
@property --loading-clip-start {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 110%;
}
@property --loading-clip-end {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 110%;
}
