﻿@charset "utf-8";
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;}
html{font-size:16px;}
body{
	margin: 0;
	padding:0;
	line-height: 1.6;
	display: inline-block;
	width:100%;
	background-color: #FDF6EA;
	
}
img{
	border:0;
	margin:0;
	padding:0;
	max-width:100%;
	vertical-align:middle;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{
	display:block;
}
audio,canvas,progress,video{
	display:inline-block;
	vertical-align:baseline;
}
a{
	background-color:transparent;
	text-decoration: none;
	color: inherit;
}
a:active,a:hover{outline:0}
a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
b,strong{font-weight:700;}
mark{color:#000;background:#ff0;}
h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	line-height:1.1;
	color:inherit;
}
h1,h2,h3 {
	
}
h1 {font-size:36px;}
h2 {font-size:30px;}
h3 {font-size:24px;}
h4 {font-size:18px;}
h5 {font-size:14px;}
h6 {font-size:12px;}
p{margin:0 0 10px;/*padding-bottom:10px;*/}
ul,ol{
	margin:0;
	padding:0;
	-webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
}
ul li{
	display: list-item;
    text-align: -webkit-match-parent;
	list-style-type: none;
}
hr{
	border:0;
	border-top:1px solid #eee ;
	background-image:-webkit-linear-gradient(left,transparent,#DBDBDB,transparent);
	background-image:linear-gradient(to right,transparent,#DBDBDB,transparent);
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;box-sizing:content-box ;
	border:0;
	height:1px;
	margin:0px;
}
table{width:100%;max-width:100%;}

header,
section,
footer {
	display: block;
	width: 100%;
	
}
button {
	cursor:pointer;
}
view {
	display: block;
}
/*視窗 卷軸 有限定遊覽器 */
::-webkit-scrollbar {
    width: 10px;
    height: 0px;
}
/*上下會出現區域 作用?*/
::-webkit-scrollbar-button {
    background: #eee ;
	height: 0px;
}
/*底色*/
::-webkit-scrollbar-track-piece {
    background: #eee ;
}
/*位置條*/
::-webkit-scrollbar-thumb {
    background: #a29d91 ;
}



/*----------------------------------------------- layout > header + menu -----------------------------------------------*/
header {
	/* position: fixed; */
    width: 100%;
    top: 0;
	position:relative;
	
    z-index: 100;
}
/*header 的高度由這控制*/
.logo_img {
	height:44px;
}
@media (max-width: 1109px) {
	.header{height:38px;max-height:100px;}
}
@media (min-width: 1550px) {
	
}

/*----------------------------------------------- layout > section -----------------------------------------------*/
section {
	/*position:relative;*/
}	

/*----------------------------------------------- layout > footer -----------------------------------------------*/

footer {
	position:relative;
}

/*----------------------------------------------- 輸入框 -----------------------------------------------*/
.form-input,
.form-radio  {
	margin-bottom:20px;
} 
.form-control {
      width: 100%;
      padding: 14px;
      border: 1px solid #dddddd;
      border-radius: 6px;
      font-size: 16px;
      background-color: #f9f9f9;
      transition: border-color 0.3s, box-shadow 0.3s;
	  font-family:"futura-pt";
}
    .form-control input:focus {
      outline: none;
      border-color: #007aff;
      box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
    }
	.form-control .label {
      display: block;
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 6px;
      margin-top: 20px;
    }
textarea.form-control {
	padding: 2px 12px;
	min-height:200px;
	resize:vertical;
}
select.form-control {
	min-width :20%;
}
.form-content .unit {
	margin-bottom:6px;
}
.form-content + .form-footer {
	margin-top:15px;
	margin-bottom:15px;
}
