
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*body.lock {
  overflow: hidden;
}*/

.join_overlay {
  width: 100%;
  max-width: 820px;
  /*background: #fffae8;
  border: 5px solid #395c02;
  border-radius: 24px;*/
  padding: 50px 30px 30px;
  font-family: "Noto Serif TC", serif;
  font-size: 1rem;
  font-weight: 300;
	letter-spacing: 1px;
}
.join_overlay * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.join_overlay .head {
  margin-bottom: 30px;
}
.join_overlay .head h3 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2em;
  color: #395c02;
}
.join_overlay .head p {
  font-size: 22px;
}

.join_overlay .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.join_overlay .btn_wrap a {
  display: inline-block;
  width: 48%;
  padding: 20px;
  margin-right: 4%;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 24px;
}
.join_overlay .btn_wrap a:last-child {
  margin-right: 0;
}
.join_overlay .btn_wrap a.send_btn {
  background: #0f9cd7;
}
.join_overlay .btn_wrap a.reset_btn {
  background: #636364;
}
.join_overlay .btn_wrap a svg {
  margin-right: 10px;
}
.join_overlay .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.join_overlay .close_window_btn {
  display: inline-block;
  margin: 1.5rem auto 0;
  padding: 10px 20px;
  color: #682403;
  font-size: 1rem;
  font-weight: 500;
  background: #fff;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width:1200px) {
.join_overlay {
	width: 85%;}	
}
@media screen and (max-width: 750px) {
  
}
@media screen and (max-width: 600px) {
  
}
@media screen and (max-width: 450px) {
  
  .join_overlay .btn_wrap {
    padding-top: 20px;
  }
  .join_overlay .btn_wrap a {
    padding: 15px 0;
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  
  .join_overlay .btn_wrap {
    padding-top: 20px;
  }
  .join_overlay .btn_wrap a {
    width: 100%;
    margin: 0;
  }
  .join_overlay .btn_wrap a.send_btn {
    margin-bottom: 15px;
  }
}
/* overlay.css ==============================================*/
.overlay_item {
  cursor: pointer;
}

.overlay_wrap {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(81, 45, 27, 0.95);
  cursor: url(../img/mouse_icon_w.png), auto;
}
.overlay_wrap.trans {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.overlay_wrap.trans .overlay_content {
  opacity: 1;
}
.overlay_wrap.full > .overlay_close_btn {
  display: block;
  width: 50px;
  height: 50px;
}
.overlay_wrap.full > .overlay_close_btn:before, .overlay_wrap.full > .overlay_close_btn:after {
  background: #fff;
}
.overlay_wrap.in_close > .overlay_close_btn {
  display: none;
}

.overlay_content {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  pointer-events: none;
  cursor: default;
}

.overlay_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.overlay_box {
  display: none;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.overlay_box.trans {
  display: block;
}

.overlay_close_btn {
  position: absolute;
  right: 20px;
  top: 12px;
  z-index: 30;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -webkit-transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/close_btn.png") no-repeat center center;
  background-size: contain;
}
.overlay_close_btn:hover {
  -webkit-transform: rotateZ(180deg) scale(1.2);
          transform: rotateZ(180deg) scale(1.2);
}


/*2025market*/
.mkt{display: block; overflow: hidden; width: 100%;}
.mkt h3 {
  display: block;
  overflow: hidden;
  width: fit-content;
  line-height: 2;
  font-size: 1.35rem;
  background: #3c0000;
  text-align: center;
  font-weight: 600;
  color: #fff;
  border-radius: 1.5rem;
  margin: 1rem auto;
  padding: 0 1.25rem;
}
.mkt h4 {
  display: block;
  overflow: hidden;
  line-height: 1.5;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
  color: #f0eab5;
  margin: 1.25rem auto .5rem auto;
  border-bottom: 2px dotted rgba(242, 186, 121, 0.9);
  padding-bottom: .5rem;
}
.mkt h4 span{
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 600;
  color: #3c0000;
	border-radius: 2rem;
	background: #f0eab5;
	padding: 0 .4rem;
}
.item{ display: block; overflow: hidden; width: 90%; margin: 1.5rem auto 0;}
.item-name{display: block;line-height: 2;color: #8ebd49;font-weight: 700;text-align: center;font-size: 1.25rem; background: #fff; width: fit-content; padding: 0 1rem; margin: 0 auto; border-radius: 1.5rem; border: 1px solid #8ebd49;}
.item-cnt{
	display: block;
	overflow: hidden;
	width: 100%; 
	margin: 15px 0; 
	border-bottom: 1px solid rgba(148,147,147,.2); 	
	padding-bottom: 1rem;
}
.item-cnt-L{display: block; float: left; width: 42%; margin-right: 20px;}
.item-cnt-L img{max-width: 100%; border-radius: .7rem;}
.item-cnt-R{display: block; float: left; width: calc( 57.999% - 20px);}
.item-cnt-R p{display: block;  padding-bottom: .75rem; font-size: 1rem; color: #000;font-weight: 500; text-align: justify; line-height: 1.7; }
.item-cnt-R b{display: block;   font-size: 1.125rem; color: #aa805a;font-weight: 700; text-align: justify; line-height: 1.5; }

/*市集夥伴介紹*/
.mkt p{
	display: block; 
	overflow: hidden;
	line-height: 2;
	font-size: 1.12rem;
	text-align: justify;
	font-weight: 500;
	color: rgba(255,255,255,.95);
	padding-bottom: 1.5rem;
}
.mkt p a,.mkt p a:hover{
	color: #fff9c6;
	text-decoration: underline;
}
.mkt h6{
	display: block; 
	overflow: hidden;
	line-height: 2;
	font-size: 1.5rem;
	text-align: center;
	font-weight: 800;
	color: #c43c08;
}
.mkt strong{ font-weight: 700;}
.toline{
	display: block; 
	overflow: hidden;
	width: 220px;
	margin: 1.5rem auto;
	border: 1px solid #c43c08;
}
.toline img{max-width: 100%;}
.wrtr{
	display: block; 
	overflow: hidden;
	line-height: 1.7;
	font-size: 1rem;
	font-weight: 500;
	color: #f0eab5;
}
.mkt p img{
	max-width: 100%;
	margin: 1.25rem auto;
}

.mkt h2{
	display: block; 
	overflow: hidden;
	line-height: 2;
	font-size: 1.65rem;
	text-align: center;
	font-weight: 800;
	color: #f0eab5;
}
.mkt h2 small{ display: block;  font-weight: 700;font-size: 1.25rem; line-height: 1.5; color: #fff;}






@media screen and (max-width: 820px) {
.item-cnt-L {
  display: block;
  float: none;
  width: 80%;
  margin-right: 0;
  margin: 0 auto;
}
.item-cnt-R {
  display: block;
  float: none;
  width: 100%;
  text-align: justify;
  margin-top: 1rem;
}
.role-w {
  display: block;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
}
@media screen and (max-width: 492px) {
  .overlay_close_btn {
    right: 10px;
    top: 10px;
    width: 35px;
    height: 35px;
  }
.join_overlay {
  width: 90%;
	padding: 30px 15px;
}
.item {
  display: block;
  overflow: hidden;
  width: 95%;
  margin: 1rem auto 0;
}
.item-cnt {
  margin: 5px 0;
}
.item-cnt-R p {
  display: block;
  padding-bottom: .75rem;
	font-size: .9rem;}
.item-name {
  display: block;
  line-height: 1.7;
  color: #8daf59;
  font-weight: 700;
  text-align: center;
  font-size: 1.125rem;
}
.mkt h2 {
  display: block;
  overflow: hidden;
  line-height: 1.6;
	font-size: 1.5rem;}
.mkt h2 small {
  display: block;
  font-weight: 700;
  font-size: 1.125rem;
	margin-bottom: 1rem;
}
}