@charset "utf-8";

/*reset*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

fieldset,
img {
    border: 0;
}

ol,
ul {
    list-style: none;
}

ul {
    list-style-position: outside;
}

caption,
th {
    text-align: left;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

a {
    text-decoration: none;
    transition: all 1s ease;
}

/**-------------------------------**/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'PingFang TC', '微軟正黑體修正', 'Microsoft JhengHei', sans-serif;
    word-break: break-all;
}

body {
    background: #f7b42c;
}
.maxcontainer{
    max-width: 1100px;
    margin: 0 auto;
}
.no_text{
    text-indent: -10000px;
}
.img100{
    max-width: 100%;
}
.container {
    margin-bottom: -3%;
}
.container > .top{
    background: url(../images/bg1.jpg);
    background-size: 100%;   
}
.container > .center{
    background: url(../images/bg2.jpg);
    background-size: 100%;
}

.footer{
    background: url(../images/footer.jpg);
    background-size: 100% 100%;  
    padding: 8% 2% 0% 2%;
}
.icon_container{
    width: 65%;
    margin: 0 auto;
    display: flex;
    padding: 1% 0;
    overflow: hidden;
}
.icon_container .icon{
    width: 80%;
    margin: 0 auto;
}

h1{
    height: 0;
}
.sp{
    width: 20%;
    margin: 0 auto;
    transform: translateY(-30%);
}
.content{
    width: 75%;
    margin: 0 auto;
    padding: 3%;
}
.title_bar > img{
    height: 49px;
}
p{
    padding: 1% 2%;
    font-size: 1.3em;
    color: #686868;
}
.table{
    margin: 1% 2%;
}
.table th{
    background: #ecf8dd;
    text-align: center;
}
.table tr td.center{
    text-align: center;
}
.small{
    font-size: 0.9em;
}
.space{
    background-image: url(../images/space.png);
    background-size: cover;
    width: 100%;
    height: 40px;
    margin: 10px 0;
}
ol{
    list-style:decimal;
    margin-left: 2em;
}
ol > li{
    padding: 1% 2%;
    font-size: 1.3em;
    color: #686868;

    
}
ol > li > ol{
    list-style: none;
    counter-reset: my-counter-olol;
    margin-left: 0;
}
ol > li > ol li {
    font-size: 1em;
    counter-increment: my-counter-olol;
    text-indent: -1.5em;
    margin-left: 1.5em;
}
ol > li > ol li::before {
    content: "("counter(my-counter-olol) ")";
}

/* (一) */
.ulch{
    list-style: none;
    counter-reset: my-counter-ulch;
    
}
.ulch li {
    counter-increment: my-counter-ulch;
    text-indent: -2em;
}
.ulch li::before {
    content: "("counter(my-counter-ulch,cjk-ideographic) ")";
}

form{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
form .row{
    display: flex;
    padding: 3% 2% ;
    font-size: 1.3em;
}
form .row .title{
    padding-right: 10px;
    width: 150px;
    text-align: right;
    color: #c06800;
}
form .row .input{
    width: calc(100% - 150px);
    padding-left: 5%;
    font-size: 0.9em;
}
form .row .input input{
    width: 90%;
    height: 2em;
}
form .row .input input.short{
    width: 50%;
    min-width: 110px;
}
form .row .input .inputradio input{
    width: 1em;
    height: 1em;
}
form .row textarea{
    width: 90%;
    height: 100px;
}
form .row .center{
    text-align: center;
    width: 100%;
}
form .row .checkbox{
    width: 20px;
    height: 20px;
}
form .row .submit{
    width: 100px;
    height: 2em;
    font-size: 0.8em;
}
form .row label{
    font-size: 0.9em;
}
.footer_note20200211{
    display: none;
}

@media screen and (max-width: 640px) {
    body{
        font-size: 0.75em;
        background: url(../images/bg.jpg);
        background-size: contain;
    }
    .title_bar > img{
        height: 32px;
    }
    .icon_container {
        width: 70%;
    }
    form .row .title{
        width: 100px;
        padding-right:0;
    }
    form .row .input {
        width: calc(100% - 100px);
        padding-left: 5%;
    }
    .content {
        width: 85%;
    }
    form .row .checkbox{
        width: 15px;
        height: 15px;
    }
    form .row .submit{
        width: 80px;
    }
}