@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bellefair&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&family=Oswald:wght@200..700&family=Oxygen:wght@300;400;700&family=Russo+One&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-slide img { height:auto;}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}

#content{    background: #f5f5f5;}

/*上面顏色*/
.main_header_area {
    background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);    transition: .3s;
}
.nav-brand{width:85px;}
.pageIndex .main_header_area {
    background: linear-gradient(180deg, #6b381294, transparent);
    position: relative;
    box-shadow: none;
}
.pageIndex .header_area {
    position: fixed;
	width: 100%;}
.pageIndex .nav-brand {
    width: 100%;
    max-width: 180px;
    filter: drop-shadow(0px 0px 2px #fff);
}
.main_header_area .container {
    max-width: 95%;
}
.pageIndex .stellarnav > ul > li > a {
    color: #fff;
    padding: 0 15px;
    letter-spacing: 0.107em;}
	
.stellarnav > ul > li > a{font-weight: bold;}
.pageIndex .sticky .main_header_area {
    background: #fff;box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);    transition: .3s;}
.pageIndex .sticky .stellarnav > ul > li > a {
    color: #343a40;
}
.header_area.sticky .nav-brand {
    max-width: 85px;
}
.header_area .nav-brand {
    transition: all 0.3s;
    margin-top: 10px;
}
.stellarnav li.has-sub > a:after{display:none;}
.stellarnav > ul > li > a:hover, .stellarnav > ul > li:hover > a {
    color: rgb(255 189 4);
}
.pageIndex .sticky .stellarnav > ul > li:hover > a {
   color: rgb(255 189 4);
}
.me_tp_features{    padding-right: 15px;}
.pageIndex .me_tp_features a{    color: #fff;}
.tp_links{display:none;}
.pageIndex .sticky .me_tp_features a{ color:#000;}

/*第二層*/
.stellarnav li li {    border: none;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 7px 5px;
    transition: all 0.3s;
    background: #f9dc72;
    color: #000;
    font-weight: bold;
}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    background: #ea8445;
    padding-left: 10px;
    color: #fff;
}



/* = = = 球飛 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.pageIndex .swiper-slide:before {
    content: "";
    background: url(https://pic03.eapple.com.tw/lionfootball/football-index.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 10vw; /* 寬度改為 10vw */
    height: 10vw; /* 高度改為 10vw */
    top: 38%;
    left: -100%;
    z-index: 999;
    pointer-events: none;
    aspect-ratio: 353 / 381;
    animation: bounceAndSpin 3s infinite ease-in-out;
}

/* 殘影效果 */
.pageIndex .swiper-slide:before::after,
.pageIndex .swiper-slide:before::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    filter: blur(100px); /* 加強模糊效果 */
    animation: shadowTrail 3s infinite ease-in-out;
}
.element {
    animation: bounceAndSpin 3s cubic-bezier(0.25, 1, 0.5, 1); /* 曲線 */
}

/* 第二層殘影 */
.pageIndex .swiper-slide:before::before {
    animation-delay: 0.2s; /* 延遲出現，讓殘影更明顯 */
}

@keyframes bounceAndSpin {
	0% {
        left: -100%; /* 球從畫面左邊外部開始 */
        top: 100%; /* 垂直居中底部 */
        transform: rotate(0deg) scale(1); /* 初始大小 */
    }
    40% {
        left: 40%; /* 移動到畫面中間稍微偏左 */
        top: 30%; /* 向上移動一點，增加曲線感 */
        transform: rotate(90deg) scale(1.2); /* 旋轉並放大 */
    }

    100% {
        left: 100%; /* 完全移動到畫面外右側 */
        top: -50%; /* 向上飛出畫面 */
        transform: rotate(360deg) scale(0.2); /* 完成旋轉並縮小 */
    }
}

@keyframes shadowTrail {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }
    25%, 50%, 60%, 75% {
        opacity: 0.8; /* 殘影透明度更高 */
        transform: translate(-55%, 55%) scale(0.8); /* 殘影偏移和縮放 */
    }
}

/*footer*/
.footer{    background: #d56b2d;}
.box_link {
    display: flex;
    left: 0;
    top: 63%;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
}
.footer_info li:nth-child(1), .footer_info li:nth-child(2) {
    width: 100%;
    text-align: center;
}
.footer_info {
    display: flex
;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    padding-bottom: 20px;
    padding-right: 0;
    flex-direction: column;
}
.footer_logo img{width:160px;}
.footer_logo{width:160px;}
.box_link a {
    transition: all 0.3s;
    border: 1px solid transparent;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #a46541;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 7px;
}
.footer_info li p{color: #fff;}
.footer_info li p a{color: #fff;}
.footer_menu a{width: 100px;
    text-align: center;
    color: #ffffff;
    background: #a46541;
	border: 0px #ccc solid;}
.footer_menu a:hover {
    background: #fdd13a;
    color: #000000;
}
.copy{font-size: 12px;
    color: #fff;
    background: #f08600;
    border-top: 1px #d56b2d solid;}
	
.copy a{ color: #fff;}

/*購物車*/
.products-list .more {
    border: 1px solid #d26937;
    color: #d26937;}
.products-list .item a:hover .more {
    background: #d26937;}
.products-list .price b {
    color: #d26937;}
.sidebarBtn{border: 5px #e8c23a solid;}
.nextaction{    background-color: #d26937;}
.lastaction {
    color: #cf673f;
    background-color: #f1e1ca;}
.lastPage{    background: #cf673f;}
.prod_related h6 span:before{    font-size: 20px;
    letter-spacing: 2px;    color: #cf673f;}
	
/*購物車列表*/
.products-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.products-list .item a {
    padding-bottom: 50px;
}

.products-list .pic img, .related_list li figure img {
    transition: .5s;
    transform: scale(1);
}

.products-list a:hover .pic img, .related_list li:hover figure img {
    transform: scale(1.05);
}

.products-list .pic::before, .related_list li figure::before {
    content: "+";
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    z-index: 999;
    text-align: center;
    line-height: 1.2;
	letter-spacing: 0px;
    border-radius: 50%;
    color: #FFFFFF;
    border: 2px #FFFFFF solid;
    opacity: 0;
    transition: .5s;
}

.products-list .pic::after, .related_list li figure::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: .5s;
}

.products-list a:hover .pic::before, .products-list a:hover .pic::after, .related_list li:hover figure::before, .related_list li:hover figure::after  {
    opacity: 1;
}


/*購物車詳細*/
.sidebarBtn {
    border: unset;
}

.inquiry_a1, .inquiry_a2, .inquiry_a3, .lastPage {
    background: #912e2d;
	transition: all .5s;
}

.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover, .lastPage:hover {
    background: #465169;
}

.prod_related {
    background: unset;
}

.related_list li figure {
    position: relative;
}

.related_list li a p {
    margin-top: 15px;
	text-align: left;
}


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}


.product-layer-two li a {
    line-height: 200%;
	background: unset;
	color: #222;
	border: unset;
	transition:.5s;
}

.product-layer-two li i {
    top: 5px;
	color: #222;
	transition:.5s;
}
.product-layer-two li > a, .product-layer-two li.active > a {
	border: unset;
}
.product-layer-two li:hover > a, .product-layer-two li.active > a {
    color: #FFF;
    background:#d26937;
    padding-left: 25px;
}

.product-layer-two li:hover i, .product-layer-two li.active i {
	color: #FFF;
}

.product-layer-two li ul { position:static; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#1e8a46;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; }
.product-layer-two > li ul > li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li > a:before { content: ""; position: absolute; width: 8px; height: 8px; background: transparent; left: 10px; margin-left: 0px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);transition:.5s;}
.product-layer-two li li:hover > a:before { background:#1e8a46;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}


.product_info_page .edit {
    margin: auto;
    padding: 20px 0;
    font-size: 16px;
    line-height: 33px;
}
@media screen and (max-width: 1200px) {
	.related_list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-gap: 10px;
    }
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); /*grid-gap: 5px;*/}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;font-size: 20px;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
.stellarnav.mobile > ul > li > a {
    padding: 15px;
}
.stellarnav.mobile > ul > li > a.dd-toggle{padding: 10px}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{    background: #ec8426;    color: #fff;}
.stellarnav .icon-close:after{    border-bottom: solid 3px #ffffff;}
.stellarnav .icon-close:before{    border-bottom: solid 3px #ffffff;}

@media screen and (max-width: 600px) {
	/*手機版購物車-首頁、列表頁、相關產品排列統一*/
	.pageIndex .products-list, .products-list, .related_list {
		grid-template-columns: 1fr;
		grid-gap: 20px;
		max-width: 500px;
		margin: auto;
	}
            
}

/*文章*/
.blog_list_le{width: 100%;}
.blog_list_ri{width: 100%;}
.subbox_item{width: 33%;
background: #fff;
    border-radius: 1rem;
    box-shadow: rgb(145 107 89 / 23%) 0px 7px 29px 0px;
    padding: 10px;}
.subbox_item a:after{    border: 0px #ddd solid;    background: rgb(255 255 255 / 0%);}
.i_blog_le, .blog_list_le {
    position: relative;
    padding-bottom: 100%;
    height: 0;
    z-index: 0;
    aspect-ratio: 1 / 1;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
}
.subbox_item a:before {
    bottom: 50%;
    right: 0;
    color: #ffffff;
    text-align: center;
    width: 100%;
    font-weight: bold;
    font-family: "Russo One", sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    text-shadow: 0 0 8px black;
}
.blog_back a.article_btn_next {
    background: #f08600;
}
.blog_back a.article_btn_prev {
    background: #f08600;
}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {
    color: #fff !important;
    background: #f08600;
}

/*相簿*/
.show-list .show_pic{padding-bottom: 67%;}
.other_album_choice li {
    background: #f08600;}


	

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    font-size: 40px;
    padding: 20px;
    text-align: center;
    background: repeat center center #f5f5f5;
    background-position: bottom center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    min-height: 450px;
}
.banner h5 {
    font-weight: 600;
    color: #fff;
    text-shadow: 4px 2px 5px black;
    font-size: 35px;
    letter-spacing: 1px;
}
.banner.banblog h5:before {
    content: 'NEWS';
    display: block;
    font-size: 25px;
}
.banner.banE h5:before {
    content: 'PHOTO';
    display: block;
    font-size: 25px;
}
.banner.banF h5:before {
    content: 'PRODUCT';
    display: block;
    font-size: 25px;
}
.banner.banD h5:before {
    content: 'REMITTANCE';
    display: block;
    font-size: 25px;
}

.banner.banA {}
/* .banner.banB {display:none;} */
.banner.banD {background-image: url(https://pic03.eapple.com.tw/lionfootball/banner_bg001.png);
    min-height: 450px;
    background-repeat: no-repeat;}
.banner.banF {background-image: url(https://pic03.eapple.com.tw/lionfootball/banner_bg003.png);
    min-height: 450px;
    background-repeat: no-repeat;}
.banner.banE {background-image: url(https://pic03.eapple.com.tw/lionfootball/banner_bg002.png);
    min-height: 450px;
    background-repeat: no-repeat;}
	
.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/lionfootball/banner_bg001.png);
    min-height: 450px;
    background-repeat: no-repeat;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media screen and (max-width: 1024px) {
.banner{height: 35vw; min-height: 200px;}

.pageIndex .header_area {position: sticky;}
.pageIndex .main_header_area{background: #fff;}
.pageIndex .nav-brand{max-width:110px;}
.pageIndex .stellarnav > ul > li > a{color: #444;}
.pageIndex .me_tp_features a {color: #444;}
}


@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: block; }
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
.subbox_item {
    width: 49%;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{background: #f08600;}
.stellarnav.mobile > ul > li > a {
    padding: 15px;
}
.stellarnav.mobile > ul > li > a.dd-toggle{padding: 10px}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{    background: #ec8426;    color: #fff;}
.stellarnav .icon-close:after{    border-bottom: solid 3px #ffffff;}
.stellarnav .icon-close:before{    border-bottom: solid 3px #ffffff;}
}

@media screen and (max-width: 500px) { 
.subbox_item {
    width: 100%;}
}




/*會員*/

@keyframes ro{
	100%{transform: rotate(360deg);}
}
@-webkit-keyframes ro{
	100%{-webkit-transform: rotate(360deg);}
}

.memb{
    background: url(https://pic03.eapple.com.tw/lionfootball/mbg_02.png) #f5f5f5 bottom center no-repeat !important;
    padding-bottom: 50px;
}
.memb .banner{
    background: url(https://pic03.eapple.com.tw/lionfootball/mbg_01.png) no-repeat bottom center;
    min-height: 450px;
    background-size: cover;
}
.memb .banner h5:before{
    content: 'SEARCH';
    display: block;
    font-size: 25px;
}
.memb .path{
    display: none;
}
.mem_regist_title_s{
    background: #EC9D68;
    color: #fff;
    font-size: 16px;
    padding: 10px;
}
.member_title h2{
    display: flex;
    justify-content: center;
    align-items: center;
}
.member_title p{
    border-color: #CBCBCB;
}
.member_title h2:before{
    content: '';
    background: url(https://pic03.eapple.com.tw/lionfootball/mbg_00.png) no-repeat center;
    width: 27px;
    height: 27px;
    display: block;
    margin-right: 10px;
    animation: ro 10s linear infinite;
	-webkit-animation: ro 10s linear infinite;
}
.member_login tr td:nth-child(1),
.member_regist tr td:nth-child(1){
    width: unset;
}
.member_login_regist{
    background: #FFF7EA;
    padding: 40px 5% 50px;
}
.member_login_regist p{
    margin: 15px auto 25px;
}
.member_login_regist a{
    background: #ED8539;
}
.login_mem_submit{
    background: #932F29;
}
.mem_box2 input.bbtn01{
    background: #CBCBCB;
}

.rwd_tab {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
}
.mem_tab{
    width: 100%;
    background: #fff;
    text-align: center;
    font-size: 16px;
}
.mem_tab th{
    background: #EEEEEE;
    border: 1px solid #EC9D68;
    padding: 15px 5px;
    white-space: nowrap;
    width: 16.66%;
}
.mem_tab td{
    border: 1px solid #EC9D68;
    padding: 15px 5px;
}
.mem_tab tr:nth-child(even) td{
    background: #F3DFD3;
}
.mem_tab td span{
    display: inline-block;
}
.mem_tab td a{
    display: block;
    color: #000;
}
.mem_tab td a:hover{
    color: #E97D33;
}
.mem_menu{
    max-width: 767px;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
    text-align: center;
}
.mem_menu li{
    border-bottom: 1px solid #E97D33;
    padding: 0 5px;
}
.mem_menu li a{
    width: 100%;
    height: 100%;
    max-width: 220px;
    padding: 15px 10px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-content: center;
    background: #E97D33;
    color: #fff;
    border-radius: 10px 10px 0 0;
    transition: all .4s;
}
/* .mem_menu li a:hover{
    transform: translateY(-10px);
    height: calc(100% + 10px);
} */

.rwd_tab0{
    margin-bottom: 50px;
}
.pay_tab{
    width: 100%;
    font-size: 16px;
    text-align: center;
}
.pay_tab th{
    background: #6C6C6B;
    color: #fff;
    padding: 10px 5px;
}
.pay_tab td{
    padding: 15px 5px;
    border-top: 1px solid #6C6C6B;
}

.tab__line{
    display: block;
    width: 100%;
    height: 1px;
    background: #6C6C6B;
    margin-bottom: 40px;
}

.m_bbtn03{
    display: inline-block;
    width: 160px;
    margin: 20px;
    text-align: center;
    padding: 15px 20px;
    color: #fff;
    background: #7AA354;
}

@media screen and (max-width: 1024px) {
    .memb .banner{height: 35vw; min-height: 200px;}
}

@media screen and (max-width: 768px) {
    .rwd_tab {overflow: scroll;}
    .mem_tab{width: 740px;}
    
}

@media screen and (max-width: 700px) {
    .rwd_tab0{overflow: scroll;}
    .pay_tab{width: 650px;}
}

@media screen and (max-width: 600px) {
    .mem_tab{width: 650px; font-size: 15px;}
    .mem_tab th{width: 17%;}
    .mem_tab th:first-child{width: 15%;}
    .mem_menu{grid-template-columns: 1fr 1fr; margin-top: 70px;}
    .mem_menu li a{padding: 15px 0;}

    .pay_tab{font-size: 15px; width: 600px;}

}


/*報名表*/
.memb0 .main_part{
    max-width: 100%;
    padding: 50px 0 0 0;
    margin: 0;
}
.memb0 .show_content{
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.memb0{
    background: none !important;
    padding-bottom: 0;
}
.apply_inf{
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}
.apply_inf h3{
    font-size: 20px;
    color: #000;
    font-weight: normal;
}
.apply_inf .a_f01{
    font-size: 15px;
    color: #5D5D5D;
    margin: 20px 0;
}
.apply_inf .a_f02{
    max-width: 306px;
    text-align: center;
    background: #E97D33;
    color: #fff;
    padding: 10px;
    font-size: 20px;
}
.apply_inf .edit{
    border: 1px solid #E97D33;
    padding: 20px 5%;
}

.apply_con{
    padding: 100px 5%;
    margin-top: 100px;
    background: url(https://pic03.eapple.com.tw/lionfootball/mbg_02.png) #F3DFD3 bottom center no-repeat !important;
}
.apply_con section{
    max-width: 1334px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 5%;
    border-radius: 10px;
}
.apply_con section .member_title{
    margin-bottom: 15px;
}
.apply_con u{
    display: block;
    text-align: center;
    font-size: 15px;
    color: #000;
    line-height: 150%;
    margin: 0 aut 50px;
}
.apply_con ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px 3%;
    max-width: 940px;
    margin: 50px auto 20px;
}
.apply_con ul h6{
    font-size: 16px;
    margin-bottom: 7px;
    font-weight: normal;
}
.apply_con ul h6 span{
    color: #EA241F;
}
.apply_con ul input,
.apply_con ul textarea,
.apply_con ul select{
    width: 100%;
    padding: 5px 7px;
}
.apply_con ul figure{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15px, 15px) minmax(30px, 1fr));
    gap: 3px 5px;
    justify-content: flex-start;
}
@media screen and (max-width: 768px) {
    .apply_con{padding: 70px 5%; margin-top: 70px;}
    .apply_con ul{grid-template-columns: 1fr 1fr;}
}
@media screen and (max-width: 500px) {
    .apply_con ul{grid-template-columns: 1fr; margin: 35px auto 10px;}
}

/* 課程列表 */
.game_list{
    max-width: 1215px;
    margin: 0 auto;
}
.game_list i{
    display: block;
    background: #5C5C5C;
    width: 100%;
    height: 1px;
    margin-bottom: 30px;
}
.game_list a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 5%;
    color: #000;
    background: #EEEEEE;
    border-top: 1px solid #888;
    transition: all .4s;
}
.game_list section{
    margin-bottom: 20px;
}
.game_list section a:first-child{
    border-top: none;
}
.game_list a p{
    width: calc(100% - 80px);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.game_list a b{
    display: inline-block;
    margin-right: 20px;
    color: #444;
    font-weight: normal;
}
.game_list a em{
    display: inline-block;
    font-style: normal;
    color: #666;
    transition: all .4s;
}
.game_list a:hover{
    background: #F3DFD3;
}
.game_list a:hover em{
    transform: translateX(10px);
}
@media screen and (max-width: 600px) {
    .game_list a p{flex-direction: column;}
    .game_list a b{margin-bottom: 5px;}
}

@media screen and (max-width: 450px) {
    .game_list a p{width: calc(100% - 40px);}
    .game_list a em{font-size: 15px;}
    .game_list a em span{display: none;}
}