:root{
    --color: #283a60;  
	--color_hover: #006eb2;
	--color_lang: #216aa3;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: 400

.noto-sans-<uniquifier> {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

input[type='number'] {-moz-appearance:textfield; }
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {-webkit-appearance: none;}


body{
	padding: 50px 0 50px;
	margin: 0;
	font-size: 16px;
	font-family: 'Noto Sans TC', sans-serif;
	font-optical-sizing: auto;
	font-variation-settings:  "wdth" 100;
	background-color: #E6EDF2;
	font-weight: 400;
	line-height: 1.4;
}

.top_logo_area{
	background: var(--color);
	width: 85%;
	max-width: 1000px;
	margin: auto;	
}
.top_logo_area .container{
	width: initial;
	max-width: inherit;
	padding: 20px 25px;
}
.top_logo{
	width: 160px;
	display: inline-block;
}
.top_logo img{
	vertical-align: middle;
}
a{
	color:#278ed6; 
	text-decoration: underline;
	transition: .5s;
}
a:hover{
	text-decoration: none;
}

hr{
	border-top: 1px dotted #006ABE;
	border-bottom: none;
	border-left: none;
	border-right: none;
	margin: 30px 0;
}

ul{
	padding-left: 24px;
}

img{
	width: 100%;
}

.lang_b{
	position: absolute;
	top: 50%;
	right: 25px;
	color: #fff;
	font-size: .9rem;
	line-height: .9rem;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
}
.lang_b a{
	color: rgba(255,255,255,0.5);
}
.lang_b a:hover{
	color: rgba(255,255,255,1);
}
.lang_b .lang_divd{
	border-left: 1px solid #fff;
	margin: 0px 6px;
}

.lang_b span{ background: var(--color_lang); padding: 6px 8px; color: #fff;}
.lang_b .lang_divd{ border: none; padding: 0; margin: 0 2px;}
.lang_b a{padding: 2px 6px; text-decoration: none;}

.headtop{
	width: 85%;
	max-width: 1000px;
	margin: auto;
	display: flex;
}

.container{
	position: relative;
	width: 85%;
	max-width: 1000px;
	margin: auto;
}
.form_box{
	background: #fff;
	padding: 30px 50px 10px;
	margin: 0px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
	border-radius: 0px;
}

.form_box H1{
	color: var(--color);
	text-align: center;
	margin: 20px 0px;
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: -0.5px;
}
.form_box H3{	
	text-align: left;
	border-bottom: 1px dotted var(--color);
	margin-bottom: 25px;
	font-size: 1.4rem;
	padding-bottom: 12px;
	color: var(--color);
	line-height: 1.2;
	letter-spacing: -.5px;
}
.form_row{
	margin: 30px 0;
	display: flex;
}

.form_row .for_s_checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: normal;
	line-height: 1.6;
}

.f_col_l{
	display: inline-block;
	width: 32%;
	vertical-align: top;
	line-height: 50px;
}
.f_col_r{
	display: flex;
	width: 68%;
	flex-wrap: wrap;
}
.half_col{
	display: inline-block;
	flex: 1;
	margin-right: 10px;
}
.half_col:last-of-type{
	margin-right: 0;
}
.f_inn_row{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 10px;
}
.t_col{
	width: 30%;
}
.t_col:last-of-type{
	margin-right: 0;
}
.alert{
	width: 100%;
	font-size: .85rem;
	color: red;
}
.alert i{
	margin-right: 5px;
}
.remark{
	font-size: .85rem;
	color: #666;
	width: 100%;
}
.footnote{
	font-size: .85rem;
	color: #666;
	width: 100%;
}


/* Style the input fields */
input {
  padding: 10px 1%;
  width: 100%;
  font-size: .9rem;
  border: 1px solid #ccc;
  background-color: #fff;
	transition: .5s;
	border-radius: 3px;
	margin: 8px 0;
	font-family: 'Noto Sans TC', sans-serif;
}
input:focus{
	background-color: #F9F9F9;
}
::placeholder {
  color: #666; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #666;
}

::-ms-input-placeholder { /* Microsoft Edge */
 color: #666;
}

/* checkbox - radio button */
.sele-toggle-label span{
	padding-top: 4px;
}
.sele-toggle-label .checkmark{
	margin: inherit;
    right: inherit;
    bottom: inherit;
	position: relative;
	display: inline-block;
	width: 25px;
	height: 25px;
	background-color: #eee;
	border-radius: 50%;
	border: 3px solid #fff;
	transition: 0.5s;
	margin-right: 5px;
	padding: 0;
	flex: 0 0 25px;
}
.sele-toggle-label input{
	display: block;
	opacity: 0;
	position: absolute;
	width: 0;
	height: 0;
	cursor: pointer;
}
.sele-toggle-label input:checked ~ .checkmark{
	background-color: #75D337;
}
.checkmark:after{
	content: "";
	position: absolute;
	display: none;
}
.sele-toggle-label .checkmark:after{
	background: #fff;
	border-radius: 50%;
	width: 13px;
	height: 13px;
	top: 6px;
	left: 6px;
}

.sele-toggle-label input:checked ~ .checkmark:after{
	display: block;
}

.sele-toggle-label{
	cursor: pointer;
	margin: 0;
	display: flex;
	align-items: flex-start;
	position: relative;
	  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
	padding:5px 15px 5px 0;
	justify-content: flex-start;
	flex: 0 0 100%;
}
.sele-toggle-label.close{
	float: none;
	opacity: 1;
	text-shadow: none;
}

.for_s_checkbox .checkmark {
    width: 25px;
    height: 25px;
    margin: 0px 10px 0 0;
    border-radius: 5px;
    flex: 0 0 25px;
}
.for_s_checkbox .checkmark::after {
    left: 8px;
    top: 3px;
    width: 7px;
    height: 13px;
    border: solid white;
        border-top-width: medium;
        border-right-width: medium;
        border-bottom-width: medium;
        border-left-width: medium;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
	background: none;
	border-radius: 0;
}

.for_s_checkbox input {
    display: block;
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    cursor: pointer;
}
.checkmark{
	margin: 0 10px 0 0;
}
.checkmark:after{
	content: "";
	position: absolute;
	display: none;
}
.for_s_checkbox input:checked ~ .checkmark {
    background-color: #75D337;
}

.f_col_r_f {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
}
.f_col_r_f .row_item{
	flex: 0 0 25%;
}
.f_col_r_f .row_item .sele-toggle-label{
	padding-right: 30px;
}
.f_col_r_f .sele-toggle-label {
  align-items: center;
	padding-right: 30px;
}

.row_f_active {
  margin: 10px 0 50px;
  display: flex;
  padding-left: 45px;
}


.sele-toggle-label .r_textf, .row_f_active .r_textf_3{
	width: 100%;
	height: auto;
	position: relative;
	margin-left: 0px;
	font-weight: 300;
	cursor: auto;
	background: #fff;
	border: none;
	opacity: .5;
}
.row_f_active .r_textf_3{margin: 0px;}
.sele-toggle-label .r_textf.s_on, .row_f_active.s_on .r_textf_3{
	opacity: 1;
}
.row_f_active .r_textf_3 {
  padding: 10px 20px;
  border: 1px solid #ccc;
  margin-right: 10px;
}

.f_inn_row p {
  flex: 0 0 100%;
  text-align: left;
  margin: 0px 0 2px 0;
  padding-top: 0px;
	font-weight: 500;
}
.f_inn_row:first-child p{
	padding-top: 15px;
}

.f_inn_row p small{
	font-weight: 400;
}

.sele-toggle-label img {
  max-width: 150px;
}


/* select box style */
.f_sele_op{
	border: 1px solid #ccc;
	 padding: 0.5rem 2.5rem 0.5rem 0.5rem;
	font-size: .9rem;
	border-radius: 3px;
	background: #fff;	
	margin: 8px 0;     
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.f_sele_op option{
	padding: 5px ;
}

select.f_sele_op {
  background-image:
    linear-gradient(45deg, transparent 50%, #222 50%),
    linear-gradient(135deg, #222 50%, transparent 50%),
    linear-gradient(to right, #222, #222);
  background-position:
    calc(100% - 18px) calc(1em + 0px),
    calc(100% - 12px) calc(1em + 0px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    6px 5px,
    6px 7px,
    0px 2em;
  background-repeat: no-repeat;	
	margin: 5px 0px ;
	flex: 1;
	width: 100%;
}

select.f_sele_op:focus {
  background-image:
    linear-gradient(45deg, #222 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #222 50%),
    linear-gradient(to right, #222, #222);
  background-position:
    calc(100% - 11px) 1em,
    calc(100% - 18px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    7px 6px,
    6px 6px,
    0px 3em;
  background-repeat: no-repeat;
  border-color: #EDF0F2;
  outline: 0;
	background-color: #F9F9F9;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.submit_row{
	text-align: center;
}
.submit_btn{
	background: var(--color);
border: none;
border-radius: 3px;
color: #fff;
padding: 15px 40px;
transition: .5s;
	font-size: 1.5rem;
	letter-spacing: 0.05rem;
	font-weight: 500;
	margin: auto;
	cursor: pointer;
	font-family: 'Noto Sans TC', sans-serif;
}
.submit_btn:hover{
	background-color: var(--color_hover);
}

.copy_right{
	text-align: center;
	padding: 40px 30px 20px;
	color: #999;
	font-size: .8rem;
}

/*  --------- message box --------  */
.message_box{	
	padding: 12px 18px;
	border-radius: 3px;	
	text-align: left;
	margin-bottom: 30px;
}
.message_box i{
	margin-right: 10px;
	font-size: 1.2rem;
}
.message_box h4{
	font-size: 1rem;
	margin: 0px 0;
}
.message_box.success{
	color: #4fb20d;
	border: 2px solid #e6f4dd;
}
.message_box.unsuccess{
	color: #dc1515;
	border: 2px solid #f8e0e0;
}
/*  --------- message box - end --------  */

.intro{
	text-align: center;
	color: #666;
}

.f_col_l {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    line-height: 22px;
    padding-right: 35px;
	padding-bottom: 5px;
	padding-top: 15px;
	font-weight: 500;
}

.full_row{
	width: 100%;
	margin: 5px 0;
}
.sub_l_c{
	width: 100%;
	display: inline-block;
	padding-top: 8px;
}

.msg_tq{ text-align: center; font-size: 1.2rem; color: #006ABE; margin: 20px 0 20px; font-weight: 500;}

.payment_ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.payment_ico img {
  flex: 0 0 62px;
  padding: 0 20px;
}

.enqu_area{
	margin: 40px 0;
}
.enqu_area h4{
	text-align: center;
	margin-bottom: 10px;
}
.enqu_area .row_f{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 0.8rem;
	line-height: 1.4;
}
.enqu_area .row_f .eq_item{
	padding: 4px 25px;
	color: #454545;
}
.enqu_area .row_f .eq_item a{
	color: #454545;
}


table.table_s1{
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 15px;
}
table.table_s1 td, table.table_s1 th{
	border: 1px solid #ddd;
	padding: 10px;
	text-align: center;
}
table.table_s1 td:first-child{
	text-align: left;
}

ul.remark_li{
	font-size: 0.85em;
}
ul.remark_li li{
	line-height: 1.4;
	margin: 5px 0;
}

.select-inline{
	display: flex;
	flex-wrap: wrap;
	margin: 8px 0;
	gap: 5px;
	width: 100%;	
}
.select-inline .sele-toggle-label {
  flex: inherit;
}
.select-inline.sele_col_3{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}
.select-inline.sele_col_3 label{
	flex: 0 0 32.2%;
	padding: 0px;
}

.control_row{
	text-align: center;
	margin: 0 0 30px;
}
.btn_con{
	font-size: 16px;
	padding: 10px 15px;
	background: #278ed6;
	margin: inherit;
	margin: 10px 0;
}
.btn_with_icon{
	display: flex;
	align-items: center;
	gap: 5px;
}
.control_row .btn_con{
	margin: auto;
}

.row{ display: flex;}
.row.t_shirt_ta{background: #efefef; padding: 10px; align-items: center; margin-bottom: 20px;}
.row.t_shirt_ta .item_img{flex: 0 0 50%;}
.row.t_shirt_ta .customTable{ flex: 0 0 50%; width: 50%; background: #fff;}

.customTable{
	width: 100%;
  text-align: center;
  border-collapse: collapse;
}
table.customTable tbody td {
  font-size: 13px;
}
table.customTable td, table.customTable th {
  border: 1px solid #ddd!important;
}





@media(max-width: 1200px){
	.f_col_r_f .row_item{
		flex: 0 0 50%;
	}
	.select-inline.sele_col_3 label{
		flex: 0 0 48%;
	}
}
@media(max-width: 986px){	
	body{ padding: 20px 0;}
	.container{	width: 96%;	}
	.top_logo_area{	width: 96%;	}
	.headtop{width: 96%;}
}
@media(max-width: 786px){
	.headtop{
		background-size: cover;
		height: auto;
	}
	.form_row{
		display: block;
	}
	.form_box{
		padding: 30px 25px 50px;
	}
	.f_col_l{
		width: 100%;
		line-height: 30px;
	}
	.f_col_r{
		width: 100%;
	}
	.half_col{
		display: block;
		width: 100%;
		margin-right: 0;
		flex: initial;
	}	
	.message_box i{
		display: block;
		margin: 0 0 10px;
	}
	.sele-toggle-label .checkmark{
		margin-top: 0px;
	}
	.form_box H1{
		font-size: 1.8rem;
	}
	.form_box H3{ text-align: left;}
	.intro{ text-align: left;}
	.message_box h4{ display: flex; line-height: 1.3;}
	.message_box i{ margin: 0 10px 0 0 ;}
	.f_col_l{
		width: 100%;
		padding-top: 0px;
	}
	
	.enqu_area{ padding: 0 10px;}
	.enqu_area .row_f{ flex-direction: column;}
	.enqu_area h4{text-align: left;}
	.enqu_area .row_f .eq_item{ padding: 4px 0;}
	
	.row.t_shirt_ta{flex-direction: column;}
	.row.t_shirt_ta .item_img{ flex: 0 0 80%;width: 80%;}
	.row.t_shirt_ta .customTable{ width: 100%; flex: 0 0 100%;}

	
}
@media(max-width: 586px){

	.top_logo {
		width: 125px;
	}
	.top_logo_area .container{
		padding: 15px 20px;
	}

	.t_col{
		width: 100%;
	}
	select.half_col{
		display: block;
		width: 100%;
		margin-right: 0;
		flex: initial;
	}
	.submit_btn{
		width: 100%;
	}
	
	.f_col_r_f .row_item {
	  flex: 0 0 100%;
	}
	
	.select-inline.sele_col_3 label{
		flex: 0 0 100%;
	}
	
	.select-inline .sele-toggle-label{
		width: 100%;
	}
	
}





