/*
 * top - fv 
 */

.top-fv {
    position: relative;
    padding: 0;
    background: #000;
}

@media(max-width:992px) {
    .top-fv {
        padding-top: 40px;
    }
}

.fv-img-content {
    width: 100%;
}

.top-fv-banners {
    position: absolute;
    bottom: 10px;
    right: 100px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 25px;
}

@media(max-width:992px) {
    .top-fv-banners {
        bottom: -35px;
        right: initial;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
	
	.top-fv-banners.top {
        bottom: -50px;
		width: 100%;
    }
}

.top-fv-reserve-btn {
    display: block;
    text-align: center;
    width: fit-content;
    background: var(--bg-color-1);
    color: #FFF;
    border-radius: 30px;
    padding: 20px 60px 20px 40px;
    position: relative;
    line-height: 30px;
}

.top-fv-reserve-btn.top {
	padding: 5px 45px 5px 40px;
	border-radius: 20px;
}

@media(max-width:992px){
	.top-fv-reserve-btn.top {
		padding: 5px 35px 5px 15px;
	}
}

.top-fv-reserve-btn.top p{
	letter-spacing: 5px;
}

@media(max-width:992px){
	.top-fv-reserve-btn.top p{
		font-size: 18px;
	}
}

.top-fv-reserve-btn.top.store {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 25px;
}

.top-fv-reserve-btn.top.store.detail {
	margin: 15px auto 0px;
	width: 350px;
	padding: 10px 45px 10px 40px;
}

@media(max-width:992px){
	.top-fv-reserve-btn.top.store.detail {
		width: 80%;
		font-size: 18px;
		padding: 5px 45px 5px 40px;
	}
}

.top-fv-reserve-btn.top.store.detail span {
    margin-bottom: 0;
}

@media(max-width:992px){
	.top-fv-reserve-btn.top.store.detail span {
		padding: 5px 0;
	}
}

.top-fv-reserve-btn.top.store.detail span::after{
	right: -5px;
	top: 50%;
	width: 15px;
}

.top-fv-reserve-btn.for-sp {
    width: 265px;
    margin: 50px auto 0;
}

@media(max-width:992px) {
    .top-fv-reserve-btn {
        padding: 5px 20px 5px 5px;
        width: 100%;
        line-height: 20px;
        border-radius: 16px;
    }
}

.top-fv-reserve-btn::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url(../../img/common/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.top-fv-reserve-btn.top::after {
    display:none;
}

@media(max-width:992px) {
    .top-fv-reserve-btn::after {
        width: 20px;
        height: 20px;
    }
}

.top-fv-reserve-btn span {
    display: block;
    margin-bottom: 10px;
}

.top-fv-reserve-btn-txt {
    letter-spacing: 15px;
}

.top-fv-reserve-btn-txt.top {
    display: block;
    color: #FFF;
    font-weight: 500;
	position: relative;
	padding: 0;
}

@media(max-width:992px){
	.top-fv-reserve-btn-txt.top {
		padding: 5px 0 10px;
	}
	
	.top-fv-reserve-btn-txt.top:last-of-type {
		padding: 5px 0;
		margin-bottom: 5px;
	}
}

.top-fv-reserve-btn-txt.top:nth-of-type(2)::before {
	content: "";
	position: absolute;
	left: 55%;
	top: 0;
	transform: translateX(-50%);
	width: 120%;
	height: 3px;
	display: block;
	background: #FFF;
}

.top-fv-reserve-btn-txt.top::after {
	content: "";
	position: absolute;
	right: -25px;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	background-image: url(../../img/common/arrow2.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.top-fv-reserve-btn-txt.top.store::after {
	right: -5px;
	top: 65%;
}



@media(max-width:992px) {
    .top-fv-reserve-btn-txt {
        letter-spacing: 5px;
    }
}

.top-fv-reserve-btn:hover {
    color: #FFF;
}

.top-fv-banner {
    width: 40%;
}

.top-fv-reserve-btn-wrapper {
	display: flex;
	gap: 20px;
}

@media(max-width:992px) {
	.top-fv-reserve-btn-wrapper.top {
		width: 100%;
	}
}

.top-fixed-banner-wrapper {
	position: fixed;
    bottom: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8);
    width: 100%;
    left: 0;
    padding: 15px 0;
    transition: transform .5s ease, opacity .5s ease;
}

.top-fixed-banner-wrapper.is-hidden{
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
}