@charset "UTF-8";
/* index_main 主視覺 */

.index_main {
    position: relative;
	padding: 70px 0 40px;
	margin: 0;
	z-index:0;
}

.index_main .pic {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 60%;
    max-height: none;
    max-width: 900px;
    z-index: 1;
    pointer-events: none
}

.index_main .content {
   position: relative; 
   height: 600px;
}

/* 公告 */
.index_main .bulletin {
    position: absolute;
    width: 40%;
    background: #c51720;
    color: #fff;
    top: 50px;
    left: 10%;
    padding: 40px 40px 150px;
    line-height: 1.5;
    letter-spacing: 2px;
}
/* 主標 */
.index_main .title01 {
    display: block;
    line-height: 1.3;
    font-size: 2.8vw;
    font-weight: bold;
    padding-bottom: 10px;
}

/* 副標 */
.index_main .sub {
    display: block;
    line-height: 1.2;
    font-size: 1.5rem;
    padding-bottom: 20px;
}

/*  編輯器 */
.index_main .editor p {
    position: relative;
    font-size: 1rem;
    line-height: 1.3;
}

.index_main .btn-area {
    position: absolute;
    text-align: center;
    width: 100%;
    left: 0;
    bottom: 40px;
}

.index_main .btn-area a {
    position: relative;
    display: inline-block;
    width: 40%;
    height: 50px;
    line-height: 42px;
    background: #f6dd42;
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    border: 4px solid #fff;
    border-radius: 50px;
    padding-left: 20px;
    transition: .3s;
}

.index_main .btn-area a:hover {
    color: #c51720;
    transition: .3s;
    transform: scale(1.1);
}

.index_main .btn-area a:first-child {
    margin-right: 20px;
}

.index_main .btn-area a:before {
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    left: 10%;
        bottom: 0;
    background-image: url(/upload/home/blocks/btn-icon.png);
    background-size: 100% 100%;
}
@media only screen and (max-width: 1500px) {
    .index_main .pic {
        width: 55%;
    }
    
	.index_main .btn-area a:before {
        width: 30px;
        height: 30px;
        left: 5%;
        bottom: 6px;
    }
}
@media only screen and (max-width: 1200px) {
	.index_main .btn-area a:before {
        left: -10%;
    }
}
@media only screen and (max-width: 1000px) {
    .index_main .content {
        height: auto;
    }
	.index_main .bulletin {
        position: relative;
        width: 90%;
        top: 30px;
        left: 5%;
        padding: 20px 20px 100px;
        min-height: 370px;
    }
    
    .index_main .title01 {
        font-size: 6vw;
        font-weight: bold;
    }
    
    /* 副標 */
    .index_main .sub {
        display: block;
        line-height: 1.2;
        font-size: 1.1rem;
        padding-bottom: 20px;
    }
    
    .index_main .editor p {
        font-size: 1rem;
    }
    
    .index_main .btn-area a {
       width: 40%;
        height: 40px;
        line-height: 32px;
        font-weight: bold;
        font-size: 1.2rem;
        border: 4px solid #fff;
        border-radius: 50px;
        padding-left: 10px;
    }
    
    .index_main .btn-area a:before {
        bottom: 0px;
    }
    
    .index_main .btn-area {
        bottom: 20px;
    }
    
    .index_main .pic {
        position: relative;
        margin-top: -100px;
        width: 100%;
        z-index: 1;
    }
    
}