/*-------------------------------------------------
目錄

1F: iPad					1024px
2F: iPad					768px
3F: Iphone 5s				640px
4F: Iphone 6 Plus			414px
5F: Nexus 5X，Nexus 6P		412px
6F: Iphone 6				375px
7F: Galaxy S5				360px
8F:	Iphone 5				320px
-------------------------------------------------*/
/*-------------------------------------------------
使用過的class
.ClassName : 作用
-------------------------------------------------*/

/*1F*/
/*-------------------------------------------------
GC_Leisure
iPad - 1024px
-------------------------------------------------*/
@media only screen and (max-width: 1024px) and (min-width: 769px){
}
/*2F*/
/*-------------------------------------------------
GC_Leisure
iPad - 768px
-------------------------------------------------*/
@media only screen and (max-width: 768px) and (min-width: 641px){
}
/*3F*/
/*-------------------------------------------------
GC_Leisure
Iphone 5s - 640px
-------------------------------------------------*/
@media only screen and (max-width: 640px) and (min-width: 414px){
}
/*4F*/
/*-------------------------------------------------
GC_Leisure
Iphone 6 Plus - 414px
-------------------------------------------------*/
@media only screen and (max-width: 414px) and (min-width: 413px){
}
/*5F*/
/*-------------------------------------------------
GC_Leisure
Nexus 5X，Nexus 6P - 412px
-------------------------------------------------*/
@media only screen and (max-width: 412px) and (min-width: 376px){
}
/*6F*/
/*-------------------------------------------------
GC_Leisure
Iphone 6 - 375px
-------------------------------------------------*/
@media only screen and (max-width: 375px) and (min-width: 361px){
}
/*7F*/
/*-------------------------------------------------
GC_Leisure
Galaxy S5 - 360px
-------------------------------------------------*/
@media only screen and (max-width: 360px) and (min-width: 321px){
}
/*8F*/
/*-------------------------------------------------
GC_Leisure
Iphone 5 - 320px
-------------------------------------------------*/
@media only screen and (max-width: 320px) and (min-width: 1px){
}