.moreInfo-box{
    width: 1100px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    position: relative;
    min-height: calc(100vh - 60px);
    margin-top: 60px;
    background-image: url(../img/front/7555.jpg);
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
}
.moreInfo-all-box{
    width: 900px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    padding: 20px 0;
}
.moreInfo-title-box{
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}
.moreInfo-title-box span{
    display: inline-block;
    width: initial;
    height: initial;
    background-image: url(../img/front/7555.jpg);
    background-repeat: repeat;
    background-size: 130%;
    background-position: center;
    z-index: 1;
    position: relative;
}
.moreInfo-title{
    display: block;
    width: 100%;
    font-size: 46px;
    font-family:  'Noto Sans TC','Open Sans';
    color: #595757;
    letter-spacing: 10px;
    font-weight: 700;
    box-sizing: border-box;
    padding-left: 10px;
}
/* .moreInfo-title-dashed-box{
    width: 100%;
    position: absolute;
    top: calc(50% - 1px);
    left: 0px;
    z-index: 0;
}
.moreInfo-title-dashed{
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    height: 3px;
}
.moreInfo-title-dashed:after{
    content: '';
    width: 100%;
    border-top: 6px dashed #595757;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
} */
.moreInfo-info-box{
    width: 100%;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 50px;
}
.moreInfo-info-message-box{
    position: absolute;
    top: -40px;
    left: 0px;
    z-index: 1;
}
.moreInfo-info{
    width: calc((50% - 10px));
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    padding: 20px 0;
    padding-left: 20px;
    padding-right: 80px;
    position: relative;
    margin-right: 20px;
    background-color: #fff;
    border-radius: 20px;
    border: 2px solid #8ec31e;
    transition: all .3s linear;
}
.moreInfo-info:nth-child(even){
    margin-right: 0;
}
.moreInfo-info:nth-child(n + 3){
    margin-top: 20px;
}
.moreInfo-name{
    font-size: 20px;
    color: #000;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: 'Open Sans', 'Noto Sans TC';
}
.moreInfo-tel{
    font-size: 16px;
    color: #595757;
    letter-spacing: 1px;
    line-height: 2;
    font-family:  'Noto Sans TC','Open Sans';
    transition: all .3s linear;
}
.moreInfo-map{
    font-size: 40px;
    line-height: 40px;
    color: #595757;
    letter-spacing: 4px;
    font-weight: 600;
    font-family: 'Open Sans', 'Noto Sans TC';
    position: absolute;
    right: 20px;
    bottom: calc(50% - 20px);
    transition: all .3s linear;
}


@media only screen and (max-width: 1100px){
    .moreInfo-box{
        width: 1000px;
    }
}
@media only screen and (max-width: 1000px){
    .moreInfo-box{
        width: 750px;
    }
    .moreInfo-all-box{
        width: 650px;
    }
}
@media only screen and (max-width: 750px){
    .moreInfo-box{
        width: 100%;
    }
    .moreInfo-all-box{
        width: 550px;
    }
}
@media only screen and (max-width: 550px){
    .moreInfo-all-box{
        width: 400px;
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .moreInfo-title{
        font-size: 34px;
        letter-spacing: 5px;
    }
    .moreInfo-info:nth-child(n){
        width: 100%;
        margin-right: 0;
        margin-top: 20px;
        padding: 10px 0;
        padding-left: 15px;
        padding-right: 60px;
        border-radius: 10px;
    }
    .moreInfo-name{
        font-size: 18px;
    }
    .moreInfo-tel{
        font-size: 14px;
    }
    .moreInfo-map{
        font-size: 30px;
        line-height: 30px;
        right: 10px;
        bottom: calc(50% - 15px);
    }
    .moreInfo-title-box{
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 400px){
    .moreInfo-all-box{
        width: 300px;
    }
    .moreInfo-title{
        font-size: 24px;
        letter-spacing: 2px;
        padding-left: 2px;
    }
    .moreInfo-title-box{
        margin-bottom: 10px;
    }
}

/*hover*/
.moreInfo-info:hover{
    border-color: #ee858c;
}
.moreInfo-tel:hover {
    color: #ee858c;
}
.moreInfo-map:hover {
    color: #ee858c;
}




/*<-------------動畫------------->*/

@media only screen and (min-width: 1001px){
    .moreInfo-title-box span,
    .moreInfo-title-dashed-box,
    .moreInfo-info,
    .moreInfo-info-message-box{
        opacity: 0;
    }
    .moreInfo-title-box span.anima{
        animation: fadeInDown 1s ease 0s 1 both;
    }
    .moreInfo-title-dashed-box.anima{
        animation: line 1s ease .5s 1 both;
        opacity: 1;
    }
    .moreInfo-info-box.anima .moreInfo-info{
        animation: fadeInUp 1s ease 0s 1 both;
    }
    .moreInfo-info-box.anima .moreInfo-info-message-box{
        animation: fadeInDown 1s ease .5s 1 both;
    }
}