@charset "utf-8";

/***************************************************************************
Media Queries
****************************************************************************/

@media print, screen and (max-width: 1280px) {
}
@media only screen and (max-width: 767px) {
}

/***************************************************************************
top_sld
****************************************************************************/

#top_sld {
	height: 80vh;
    overflow: hidden;
}

@media print {
#top_sld {
	height: 30vh;
}
}

#top_sld .loading {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #CCCCCC;
    font-size: 14px;
    z-index: 99;
}
#top_sld .loading span {
	width: 60px;
	height: 60px;
	border: 5px solid rgba(204,204,204,0.6);
	border-top-color: rgba(204,204,204,1);
	border-radius: 50%;
	animation: spin 1.2s linear 0s infinite;
    margin-bottom: 15px;
}
@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

#move_on,#move_off {
	position: absolute;
	left: 0;
	top: 0;
    height: 100%;
    width: 100%;
}
#move_on {
    z-index: 2;
}
#move_off {
    z-index: 1;
}

@media print {
#move_on {
    display: none;
}
}

/***************************************************************************
control_btn
****************************************************************************/

.control_btn > div {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #FFFFFF;
    font-size: 12px;
    width: 6em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    background-color: black;
}
.control_btn > div a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    background-color: black;
}
.control_btn > div a:hover {
    opacity: 1 !important;
}
.control_btn .play_btn {
    z-index: 99;
}
.control_btn .skip_btn {
    z-index: 98;
}
.control_btn .replay_btn {
    z-index: 97;
}

/***************************************************************************
sld 基本設定
****************************************************************************/

#top_sld li .wrap {
	padding-top: 80vh;
	display: block;
}

@media print {
#top_sld li .wrap {
	padding-top: 30vh;
}
}
#top_sld li .inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.sld_01 .inner {
    background-image: url(../../img/index/sld/bg_top_sld_01.jpg);
}

.sld_02 .inner {
	background-image: url(../../img/index/sld/bg_top_sld_02.jpg);
}

.sld_03 .inner {
	background-image: url(../../img/index/sld/bg_top_sld_03.jpg);
}

.sld_04 .inner {
	background-image: url(../../img/index/sld/bg_top_sld_04.jpg);
}

.anime {
    opacity: 0;
    position: absolute;
	top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
	width: 50%;
    background-color: rgba(255,0,93,0.5);
    color: #FFFFFF;
    text-align: center;
    padding: 10px 0px 10px 0px;
}
.move .anime {
    animation: opacity_100 2s forwards;
	animation-delay: 1.5s;
}
.start_block {
    position: absolute;
	top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
	width: 50%;
    background-color: rgba(200,200,93,0.5);
    color: #FFFFFF;
    text-align: center;
    padding: 10px 0px 10px 0px;
}
#move_off .anime {
    opacity: 1;
}

@keyframes opacity_100 {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
