@charset "utf-8";

/*背景色設定*/
body{
    background-color: #fbf9cc;
    background-image: url(../img/f001bdf05ea51390bb1fe92a24226544_t.jpeg);
    background-repeat: repeat-x;
    background-size: 160px 130px;
}

/*連結*/
a{
    color: #df4839;
}
a:hover{
    color: #ff705b;
    text-decoration: none;
}

/*頁面標題*/
h1{
     width: 300px;
    margin: 40px auto;
    padding: 30px;
    border: 5px solid #95dbbd;
    background-color: #6fbb9a;
    color: #fff;
    font-size: 300%;
    text-align: center;
    line-height: 1;
    border-radius: 50%;
    text-shadow: 1px 1px 2px #307657;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(to bottom,#6fbb9a,#4a9b79);
    font-family: 'Limelight', cursive;
}

/*次標題*/
.h{
    padding: 10px;
    margin-bottom: 30px;
    border: 1px dotted #94c8b1;
    border-left: 10px solid #d0e35b;
    color: #6fbb9a;
    border-radius: 5px 0 0 5px;
}

/*小標題*/
.h-sub {
    padding: 10px;
    background-color: #fbf9cc;
    color: #ff705b;
    border-radius: 10px;
    box-shadow: 0 0 5px 2px #ffd0ad inset;
}

/*內容區塊邊框*/
#contents{
    width: 798px;
    margin: 40px auto;
    padding: 40px 80px;
    border: 1px solid #f6bb9e;
    background-color: #fff;
}

/*更多介紹*/
.more{
    text-align: right;
}
.more::after{
    content: url(../img/ico_arrow.png);
    margin-left: 3px;
    vertical-align: middle;
}

/*區塊間分隔*/
#contents > section + section{
    margin-top: 80px;
}

/*頁首導覽頁尾*/
header,nav,footer{
    text-align: center;
}

.fixed{
    position: fixed;
    width: 200px;
    height: 150px;
    top: 0;
    right: 0;
}

/*連結圖示*/
a[target="_blank"]::after{
    content: url(../img/ico_blank.png);
    margin-left: 5px;
    vertical-align: middle;
}
a[href^="mailto:"]::after{
    content: url(../img/ico_mail.png);
    margin-left: 5px;
    vertical-align: middle;
}

/*導覽樣式*/
.menu li{
    list-style-type: none;
    display: inline-block;
    width: 180px;
    margin: 0 10px;
}
.menu a{
    display: block;
    padding: 10px;
    background: #6fbb9a;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}
.menu a:hover{
    background: #90ddbb;
}

/*文繞圖*/
.imgL{
    float: left;
    margin-left: 20px;
}
.imgR{
    float: right;
    margin-left: 20px;
}
.clear{
    clear: both;
}
.img-round{
    border-radius: 50%;
}
.clearfix::after{
    content: "";
    display: block;
    clear: both;
}
#pagetop{
    margin: 0;
    margin-left: 480px;
    position: fixed;
    left: 50%;
    bottom: 42px;
}
#pagetop a{
    display: inline-block;
    padding: 10px;
    background: #000;
    color: #fff;
    text-decoration: none;
}