@charset "utf-8";
/* CSS Document */
/* CSS Reset */
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, input, 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: baseline;
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	/*line-height: 1;*/
	overflow-x: hidden;
	font-family: 'Segoe UI', 'Open Sans', "微軟正黑體", "Microsoft JhengHei", 'Lucida Grande', 'Lucida Sans Unicode', 'Arial', 'Helvetica', 'Verdana', sans-serif;
	line-height: normal;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
form, label, input, table, textarea {
	outline: 0;
	border: none;
	/*background-color: transparent;*/
}
a, a:link, a:visited {
	text-decoration: none;
	color: inherit;
}
/* CSS Reset */


h1 {
	font-size: 2.625em;/*42px*/
	line-height: 1.1em;
	font-weight: bold;
}
.wrap {
	width: 100%;
	height: 100%;
	margin: 0;
	position: relative;
	overflow: hidden;
}

.index .logo {
	margin-top: 0;
	margin-left: 0;
	padding: 25px;
}
.logo {
	display: flex;
	justify-content: flex-start;
	flex-direction: row;
	position: relative;
	
}
.logo div {
	display: block;
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 10px;
	position: relative;
}
.logo div a {
	display: block;
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	width: inherit;
	height: inherit;
	cursor: pointer;
}
.mainLogo {
	background-image: url("../../images/logo.png");
	width: 175px;
	height: 30px;
}
.fbLogo {
	background-image: url("../../images/fb-logo.png");
	width: 35px;
	height: 35px;
}
.igLogo {
	background-image: url("../../images/ig-logo.png");
	width: 35px;
	height: 35px;
}
.lineLogo {
	background-image: url("../../images/line-logo.svg");
	width: 35px;
	height: 35px;
}
.sdgsLogo {
	background-image: url("../../images/logo-sdgs.png");
	width: 82px;
	height: 35px;
}


.know-logo {
	display: block;
	background-image: url("../../images/know-know-umi.png");
	background-repeat: no-repeat;
	background-size: cover;
	width: 180px; height: 21px;
	margin: 5px auto;
}


@media screen and (max-width: 1400px) {
	.logo .fbLogo, .logo .igLogo, .logo .lineLogo, .logo .sdgsLogo {
		display: none;
	}
	
}
@media screen and (max-width: 500px) {
	.index .logo {
		padding: 8px;
		margin-top: 10px;
	}
	.logo {
		flex-wrap: wrap;
		width: 300px;

	}
	
	.mainLogo {
		order: 1;
	}
	.fbLogo {
		order: 3;
	}
	.igLogo {
		order: 4;
	}
	.lineLogo {
		order: 5;
	}
	.sdgsLogo {
		order: 2;
	}
}

@media screen and (max-width: 350px) {
	.logo {
		width: 280px;

	}
	.logo div {
		background-size: contain;
		margin-right: 2px;
		transform: scale(0.9);
	}
}


