/* Animations */
@keyframes slideinout {
    from {
        transform: translateX(-100vw);
    }
    40% {
        transform: translateX(50%);
    }
    50% {
        transform: translateX(-25%);
    }
    60% {
        transform: translateX(50%);
    }
    70% {
        transform: translateX(0%);
    }
    to {
        transform: translateX(100vw);
    }
}

#section01 {
    background-color: #EDEDED;
    background-image: url(./asset/images/bg/0101.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}
#section01 .bg0102 {
    background-image: url(./asset/images/bg/0102.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
}
#section01 .bg0102:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: calc(100% - 2px);
    width: 100%;
    height: 100%;
    background-image: url(./asset/images/bg/0103.webp);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: bottom right;
}
#section01 .bg0102:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: calc(100% - 2px);
    width: 100%;
    height: 100%;
    background-image: url(./asset/images/bg/0104.webp);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: bottom left;
    z-index: 0;
}

/* Arrows 0101 */
#arrows0101 {
    position:absolute;
    top: 18%;
    left: 0%;
    height: 10%;
    z-index: 1;
}
#arrows0101 .arrow {
    display: inline-block;
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1;
    transform: translateX(-100vw);
}
#arrows0101 .arrow > img {
    height: 100%;
    width: auto;
}
@media (min-width: 767px) {
    #arrows0101 .arrow {
        animation-timing-function: ease-in-out;
        animation-duration: 12s;
        animation-name: slideinout;
        animation-iteration-count: infinite;
    }
    /* #arrows0101 .arrow:nth-child(4) {
        animation-delay: 0s;
    } */
    #arrows0101 .arrow:nth-child(3) {
        animation-delay: .1s;
    }
    #arrows0101 .arrow:nth-child(2) {
        animation-delay: .2s;
    }
    #arrows0101 .arrow:nth-child(1) {
        animation-delay: .3s;
    }
}

/* Arrows 0102 */
#arrows0102 {
    position:absolute;
    bottom: 46%;
    right: 0%;
    height: 15%;
    z-index: 1;
}
#arrows0102 .arrow {
    display: inline-block;
    height: 100%;
    width: auto;
    transform: translateX(-100vw);
}
#arrows0102 .arrow > img {
    height: 100%;
    width: auto;
}
@media (min-width: 767px) {
    #arrows0102 .arrow {
        animation-timing-function: ease-in-out;
        animation-duration: 12s;
        animation-name: slideinout;
        animation-iteration-count: infinite;
    }
    #arrows0102 .arrow:nth-child(6) {
        animation-delay: 1s;
    }
    #arrows0102 .arrow:nth-child(5) {
        animation-delay: 1.1s;
    }
    #arrows0102 .arrow:nth-child(4) {
        animation-delay: 1.2s;
    }
    #arrows0102 .arrow:nth-child(3) {
        animation-delay: 1.3s;
    }
    #arrows0102 .arrow:nth-child(2) {
        animation-delay: 1.4s;
    }
    #arrows0102 .arrow:nth-child(1) {
        animation-delay: 1.5s;
    }
}

#section01 .title01 {
    position: relative;
    z-index: 1;
}
#section01 .title01 h1 {
    position: absolute;
    top: 0;
    left: 500%;
}
#section01 .cars {
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
}
#section01 .tag-slider {
    height: 11%;
    padding-left: calc(10% + 30px);
}
#section01 .tag-slider > .tag-slider-body, #section01 .tag-slider > .tag-slider-body > .uk-slider-items {
    height: 100%;
}
#section01 .tag-slider:before {
    content: '';
    position: absolute;
    top: 35%;
    right: 90%;
    transform: translateY(-50%);
    background-image: url(./asset/images/bg/arrow_red.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    height: 50%;
    width: 100%;
}
#section01 .tag-slider .uk-slider-items {
    font-family: 'DIN Pro Bold';
    font-weight: 700;
}
#section01 .tag-slider .uk-slider-items > li {
    display: flex;
    align-items: flex-end;
    padding-bottom: 1.5rem;
    font-size: 1.75rem;
    line-height: 1.75rem;
    padding-bottom: 3.25rem;
}
#section01 .tag-slider li.uk-active.uk-slide-active {
    font-size: 3rem;
    line-height: 3rem;
}
#section01 .tag-slider .uk-slider-items > li > .tag-slider-item {
    padding-right: 60px;
    background-image: url(./asset/images/bg/dot_red.svg);
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 90%;
    background-size: auto 1.5rem;
}
@media (max-width: 1200px) {
	#section01 .tag-slider .uk-slider-items > li {
		font-size: 2rem;
		line-height: 2rem;
		padding-bottom: 2.75rem;
	}
	#section01 .tag-slider li.uk-active.uk-slide-active {
		font-size: 2.75rem;
		line-height: 2.75rem;
	}
	#section01 .tag-slider .uk-slider-items > li > .tag-slider-item {
		padding-right: 60px;
		background-image: url(./asset/images/bg/dot_red.svg);
		background-repeat: no-repeat;
		background-position-x: 100%;
		background-position-y: 90%;
		background-size: auto 1.5rem;
	}
}
@media (max-width: 960px) {
	#section01 .tag-slider .uk-slider-items > li {
		font-size: 1.5rem;
		line-height: 1.5rem;
		padding-bottom: 2rem;
	}
	#section01 .tag-slider li.uk-active.uk-slide-active {
		font-size: 2rem;
		line-height: 2rem;
	}
	#section01 .tag-slider .uk-slider-items > li > .tag-slider-item {
		padding-right: 60px;
		background-image: url(./asset/images/bg/dot_red.svg);
		background-repeat: no-repeat;
		background-position-x: 100%;
		background-position-y: 90%;
		background-size: auto 1.5rem;
	}
}
@media (max-width: 640px) {
	#section01 .tag-slider .uk-slider-items > li {
		font-size: 1.5rem;
		line-height: 1.5rem;
		padding-bottom: 1rem;
	}
	#section01 .tag-slider li.uk-active.uk-slide-active {
		font-size: 1.5rem;
		line-height: 1.5rem;
	}
	#section01 .tag-slider .uk-slider-items > li > .tag-slider-item {
		padding-right: 60px;
		background-image: url(./asset/images/bg/dot_red.svg);
		background-repeat: no-repeat;
		background-position-x: 100%;
		background-position-y: 90%;
		background-size: auto 1.5rem;
	}
}

#section02 {
    background-color: #FAFAFA;
    background-image: url(./asset/images/bg/0201.webp);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: top right;
}

#section03 {
    background-color: #2e2e2e;
}
#section03 .uk-container {
    position: relative;
}
.sec03-title {
    background-image: url(./asset/images/bg/sec_03_title.svg);
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 0%;
    background-size: auto 100%;
    padding: 20px 40px 20px 0;
    position: relative;
}
.sec03-title:before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100vw;
    background-image: url(./asset/images/bg/sec_03_title_before.svg);
    background-repeat: repeat-x;
    background-position-x: 100%;
    background-position-y: 0%;
    background-size: auto 100%;
}
.sec03-title:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 105%;
    height: calc(100% - 60px);
    width: 100vw;
    background-image: url(./asset/images/bg/arrow_white.svg);
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 0%;
    background-size: auto 100%;
}
@media (max-width: 960px) {
	.sec03-title {
		display: inline-block;
		padding-right: 100px;
	}
}
@media (max-width: 640px) {
	.sec03-title {
		padding-right: 60px;
	}
}

#group_section {
    /* min-height: 300vh; */
    background-image: url(./asset/images/bg/group.svg);
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 0;
    background-size: 100% 100%;
}

#form_container:before {
    content: '';
    position: relative;
    top: 50px;
    left: -10%;
    display: block;
    width: 100%;
    height: 60px;
    background-image: url(./asset/images/bg/arrow_grey.svg);
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 0;
    background-size: contain;
}
#form_container:after {
    content: '';
    position: relative;
    top: 20px;
    right: -10%;
    display: block;
    width: 100%;
    height: 60px;
    background-image: url(./asset/images/bg/arrow_white.svg);
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 0;
    background-size: contain;
}

.form_title_01 {
    background-image: url(./asset/images/bg/form_title_bg.svg);
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 100%;
    background-size: 100% auto;
}
.uk-modal-full .uk-modal-dialog {
    background-color: #FAFAFA;
    background-image: url(./asset/images/bg/0201.webp);
    background-repeat: repeat-y;
    background-size: contain;
    background-position: top right;
}
.uk-modal-full.turnir-modal .uk-modal-dialog {
    background-color: transparent;
    background-image: none;
    position: relative;
}
.uk-modal-full.turnir-modal .uk-modal-dialog-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FAFAFA;
    background-image: url(./asset/images/bg/turnir_modal_bg.svg);
    background-repeat: no-repeat;
    background-size: 100vw auto;
    background-position: 0;
}
.detail-bg {
    color: #555558;
    margin-top: 10px;
    padding-right: 50px;
    background-image: url(./asset/images/bg/detail_bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
}
#turtable_container .uk-card {
    aspect-ratio: 720 / 475;
    transition: all ease 0.3s;
    cursor: pointer;
}
#turtable_container .uk-card:hover {
	transform: scale(1.025);
}
#turtable_container .card-01 {
    background-image: url(./asset/images/bg/arrow_grey_3.svg);
    background-repeat: no-repeat;
    background-position-x: 15%;
    background-position-y: 15%;
    background-size: auto 15%;
}
#turtable_container  .card-04 {
    background-image: url(./asset/images/bg/arrow_grey_3.svg);
    background-repeat: no-repeat;
    background-position-x: 55%;
    background-position-y: 85%;
    background-size: auto 15%;
}
#turtable_container .card-02, #turtable_container  .card-03 {
    background-image: url(./asset/images/bg/form_title_bg.svg);
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 10%;
    background-size: 60% auto;
}
#turtable_container .card-02 h3, #turtable_container  .card-03 h3 {
    background-image: url(./asset/images/bg/form_title_bg.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 100% auto;
}
#partner .uk-flex {
    gap: 40px;
}
