/* ---reset.css--- 
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: middle;
}*/
/* HTML5 display-role reset for older browsers */

/*article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

html,
body {
	font-family: Arial, Helvetica, "微軟正黑體", sans-serif;
	-webkit-text-size-adjust: none;
	background-color: #111;
}

.Container {
    display: flex;
    flex-direction: column;
    width: 100%;
    /*height: calc(100vh - 155px);
}*/

.content_404 {
    flex: 1;
    width: 100%;
    background-color: #004098;
    padding: 0rem 3rem 3rem;
    margin-left: auto;
    margin-right: auto;
}

.content_404 h2 {
    display: block;
    width: 100%;
    height: auto;
    font-size: 160px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    /*margin-left: auto;
    margin-right: auto;*/
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.content_404 p {
    font-size: 18px;
    font-weight: normal;
    line-height: 2rem;
    color: #ffffff;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
}

/*.cpwlogo {
    display: block;
    width: 80%;
    height: auto;
    padding: 4rem 0 1rem 0;
    margin-left: auto;
    margin-right: auto;
}

.cpwlogo img {
    display: block;
    width: 250px;
    height: 82px;
    margin-left: auto;
    margin-right: auto;
}*/

.linebottom {
    display: block;
    width: 100%;
    height: calc(50px - 32px);
    background-color: #C1DB81;
    margin-left: auto;
    margin-right: auto;
}

.arrow {
    width: 40px;
    height: 40px;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    padding-bottom: 3px;
}

.arrow a {
    width: 40px;
    height: 40px;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    padding-bottom: 3px;
}

.arrow a:hover {
    width: 40px;
    height: 40px;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    padding-bottom: 3px;
}

.c_link_wrap {
	/* padding: 60px 0 45px 0; */
	text-align:center;
}

.c_link {
	display: block;
    width: 200px;
    height: 55px;
    line-height: 55px;
    text-align: center;
	margin: 3rem auto 0;
	border: 1px solid #111111;
	-webkit-transition:0.5s;
    -o-transition:0.5s;
	transition:0.5s;
	font-size: 18px;
	color: #fff;
    background-color: #111111;
	text-decoration: none;
}

.c_link a {
	display: block;
    width: 200px;
    height: 55px;
    line-height: 55px;
	border: 1px solid #111111;
	text-decoration: none;
}

.c_link:hover {
	display: block;
    width: 200px;
    height: 55px;
	color: #fff;
	background-color: #111111;
	border: 1px solid #111111;
	text-decoration: none;
}

/* =========================== iPad =========================== */
@media screen and (min-width: 768px) and (max-width: 1050px) {
    
    .Container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: calc(100vh - 100px);
    }
}


/* =========================== Mobile =========================== */
@media screen and (max-width: 767px) {

    .Container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: calc(100vh - 50px);
    }

    .content {
        padding: 0 2rem 0;
    }
    
    .c_link {
        margin: 1.5rem auto 0;
    }

    h2 {
        width: 90%;
        font-size: 100px;
        padding-top: 8rem;
        padding-bottom: 1.5rem;
    }
    
    p {
        font-size: 16px;
        line-height: 1.5rem;
        font-weight: normal;
        margin-bottom: 1.2rem;
    }

    .cpwlogo img {
        width: 200px;
        height: 66px;
    }
}