* {
	box-sizing: border-box;
	margin:0;
	padding:0;
}
body{
	background-image: url("../img/bedge-grunge.png");
	background-repeat: repeat;
	font-family:"Noto Sans TC","SF Pro TC","SF Pro Text","PingFang TC","Arial","sans-serif";
	font-size: 18px;
	line-height: 1.4;
}
a{
    text-decoration: none;
	display: block;
	font-size: 18px;
	color: #2A3731;
}
img{
	display: block;
	margin: 0 auto;
	margin-bottom: 40px;
}
p{
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 1px;
	width: 750px;
	margin: 0 auto;
	margin-bottom: 16px;
}
h1{
	margin: 0 auto;
}

h2{
	font-size: 24px;
	font-weight: 400;
	color:#232323;
	text-align: center;
	margin-bottom: 16px;
}
h3{
	font-size: 32px;
	font-weight: 400;
	color: #232323;
	width: 800px;
	margin: 0 auto;
	margin-bottom: 40px;
	text-align: center;
}
.btn{
	cursor: pointer;
}
.fullscreen{
	width: 100%;
	margin-bottom: 80px;
}
.fullscreen img{
	width: 100%;
}
.wrapper{
	width: 1200px;
	height: auto;
	margin: 0 auto;
	margin-bottom: 80px;
}
.wrapper img{
	width: 900px;
}
/*--排遺圖片、玉山雪霸圖表--*/
.resize img{
	width: 600px;
}
/*--header分享--*/
.wrapper1{
	margin-bottom: 0px;
	margin-top: 40px;
}
header .left{
	float: left;
}
header .right{
	float: right;
}
header a{
	font-size: 30px;
	float: left;
	padding-left: 16px;
}
.keyvisual{
	background-image: url("../img/img1-L.png");
	background-size: cover;
	background-repeat:no-repeat;
	display: block;
	height: 1920px;
	width: auto;
	margin: 0 auto;
}
.keyvisual img{
	width: 26%;
	padding-top: 10%;
}
.keyvisual p{
	text-align: center;
	color: #202321;
}
/*scroll down*/
.keyvisual .scroll-downs {
  position:relative;
  margin: auto;
  width :34px;
  height: 55px;
}
.keyvisual .mousey {
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #2A3731;
  border-radius: 25px;
  opacity: 0.95;
  box-sizing: content-box;
}
.keyvisual .scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #2A3731;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}
/*scroll down*/

/*P最後一格段落*/
.last p {
	margin-bottom: 40px;
}
.flexlist{
	display: flex;
	flex-wrap: wrap;/*超出範圍時是否換行的屬性nowrap換行 | wrap不換行 | wrap-reverse換行時反轉*/
	justify-content: center;/*主軸對齊，水平或垂直依主軸的方向置中對齊flex-start | flex-end | center | space-between | space-around	*/
}
.flex-container{
	display: flex;
	flex-direction: row;/*軸線方向row 水平| row-reverse 水平反轉| column 垂直| column-reverse垂直反轉;*/
	justify-content: space-between;
	align-items: center;/*交錯軸對齊flex-start | flex-end | center | baseline | stretch;*/
}
.flex {
  display: flex;
  width: 872px;
}
/*7原則 佔1格*/
.flexlist .item{
	flex: 0 0 30%;
	background-color: #E9EAD9;
	margin: 8px;
	padding: 20px;
	justify-content: center;
	align-items: stretch;
	color: #232323;
}
/*7原則 佔2格*/
.flexlist .flex-2{
	display: flex;
	flex-grow: 2;
	flex-shrink: 1;
	flex-basis: 60%;
	background-color: #BFC6B8;
}
/*7原則 佔3格*/
.flexlist .flex-3{
	display: flex;
}
.flexlist .left{
	justify-content:space-between;
	width: 50%;
	float: left;
}
.flexlist .right{
	float:right;
}
.flexlist h4{
	font-size: 20px;
	color: #3A725E;
}
.flexlist p{
	width: 230px;
	margin: 0;
}
.flexlist img{
	float:right;
	width: 150px;
	margin-bottom: 0px;
}
.flexlist .flex-2 .right{
	float:left;
}
.flexlist .flex-2 img{
	width: 272px;
}
.flexlist .flex-3{
	flex-grow: 3;
	flex-shrink: 1;
	flex-basis: 60%;
	background-color: #E9EAD9;
}
.flexlist .flex-3 .left{
	width: 40%;
}
.flexlist .flex-3 img{
	width: 272px;
	float: left;
}
footer{
	width: 100%;
	background-image:url("../img/img4-L.png");
	background-size: cover;
	position: relative;
	height: 580px;
}
footer p{
	width: 100%;
	height: auto;
	color:#232323;
	margin-bottom: 0;
	text-align: center;
	position: absolute;
	bottom: 32px;
	font-size: 16px;
}
.source{
	text-align: center;
}
/*go to top*/
#myBtn {
  display: none;
  position: fixed;
  bottom: 64px;
  right: 50px;
  z-index: 5;
  font-size: 18px;
  outline: none;
  background-color:#2A3731;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 60px;
  border: 0px solid #000000;
}
#myBtn:hover {
  background-color: #3A725E;
}
@media screen and (min-width: 1024px) and (max-width: 1488px) {
p{
	width: 80%;
	margin-bottom: 20px;
}
h2{
	font-size: 28px;
}
h3{
	width: 100%;
	font-size: 32px;
	margin-bottom: 16px;
}
.wrapper{
	width: 100%;
	margin-bottom: 64px;
	padding: 0 15px;
}
.keyvisual{
	background-image: url("../img/img1-M.png");
	height: 1300px;
}
.keyvisual img{
	width: 50%;
}
/*--排遺圖片、玉山雪霸圖表--*/
.resize img{
	width: 60%;
}
footer{
	height: 300px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
p{
	width: 80%;
	margin-bottom: 20px;
}
/*P最後一格段落*/
.last p {
	margin-bottom: 20px;
}
h2{
	font-size: 28px;
}
h3{
	width: 100%;
	font-size: 28px;
	margin-bottom: 10px;
}
.wrapper{
	width: 100%;
	margin-bottom: 64px;
	padding: 0 15px;
}
.wrapper img{
	width: 80%;
}
/*--header分享--*/
.wrapper1{
	margin-top: 16px;
}
.keyvisual{
	background-image: url("../img/img1-M.png");
	height: 1020px;
}
.keyvisual img{
	width: 50%;
}
.flex {
  width: 100%;
}
.flexlist p{
	width: 80%;
	margin: 0;
}
footer{
	background-image:url("../img/img4-L.png");
	height: 280px;
	}
}
@media screen and (max-width: 767px) {
body{
	line-height: 1.5;
}
img{
	margin-bottom: 20px;
}
p{
	width: 100%;
	margin-bottom: 20px;
}	
h2{
	font-size: 20px;
	padding: 0 15px;
}
h3{
	width: 100%;
	font-size: 23px;
	font-weight: 600;
	margin-bottom: 10px;
}

#myBtn {
  bottom: 40px;
  right: 15px;
  padding: 9px 10px;
}
.fullscreen{
	margin-bottom: 64px;
}
.wrapper{
	width: 100%;
	height: auto;
	margin: 0 auto;
	margin-bottom: 40px;
	padding: 0 15px;
}
.wrapper img{
	width: 100%;
}
.resize img{
	width: 100%;
}
.wrapper1{
	margin-bottom: 20px;
}
header a{
	font-size: 24px;
	margin-right: 16px;
}
.keyvisual{
	background-image: url("../img/img1-S.png");
	width: 100%;
	height: 680px;
}
.keyvisual img{
	width: 60%;
	}
.keyvisual p{
	font-size: 16px;
}
/*scroll down*/
.keyvisual .scroll-downs {
  width :24px;
  height: 45px;
}
.keyvisual .mousey {
  padding: 4px 8px;
  height: 24px;
}
.flex {
  width: 100%;
  display: grid;
}
.flex-container{
	flex-direction: column;
}
/*7原則 佔1格*/
.flexlist .item{
	flex: 0 0 90%;
	margin: 4px;
	padding: 16px;
	height: auto;
}
.flexlist .items{
	background-color: #BFC6B8;	
	}
/*7原則 佔2格*/
.flexlist .flex-2{
	display:block;
	flex-grow: 1;
}
.flexlist .left{
	width: 100%;
	float: left;
}
.flexlist .right{
	float: left;
}
.flexlist h4{
	font-weight: 100%;
	text-align: center;
	padding-bottom: 8px;
}
.flexlist p{
	width: 100%;
	margin: 0;
}
.flexlist img{
	float:left;
	width: 100%;
	padding-top: 16px;
}
.flexlist .flex-2 img{
	width: 100%;
	padding-top: 16px;
}
.flexlist .flex-2s{
	background-color: #E9EAD9;
}
/*7原則 佔3格*/
.flexlist .flex-3{
	display: block;
	background-color: #BFC6B8;
}
.flexlist .flex-3 .left{
	width: 100%;
}
.flexlist .flex-3 img{
	width: 100%;
	padding-top: 16px;
}
footer{
	background-image:url("../img/img4-S.png");
	height: 270px;
}
footer p{
	color:#FFFFFF;
}	
}
@media screen and (max-width: 320px){
p{
	font-size: 16px;
}
.keyvisual{
	height: 650px;
}
footer p {
    font-size: 14px;
}
}
/*go to top*/