@charset "UTF-8";
/* CSS Document */

@media (max-width: 560px){
	div.side {
		display: block;
		width: 100%;
		text-align: center;
	}
	div.side img.character {
		display: none;
	}
	div.side p.sideLabel1 {
		font-size: 18px;
		position: relative;
	}
	div.side div.user p{
		position: relative;
		display: inline-block;
		width: 100px;
		margin-bottom: 0;
		padding: 2px 2px;
		min-width: 100px;
		max-width: 100%;
		color: #000;
		background: #FFF;
		border-radius: 30px;
	}
	div.side p.sideLabel2 {
		font-size: 18px;
		font-weight: bold;
		color: #FFF;
		margin-top: 0;
	}
	div.side div.user p {
		margin: 0 0;
		padding: 0;
		font-size: 18px;
	}
	div.side div.user:before {
		display: none;
	}
	div.side div.logout a{
		display: inline-block;
		width: 170px;
		padding: 0.4em 0;
		font-size: 20px;
		font-weight: bold;
		color: #35B597;
		background-color: #FFF;
		text-decoration: none;
		user-select: none;
		border: 3px #35B597 solid;
		border-radius: 10px;
		transition: 0.4s ease;
		margin-bottom: 20px;
}
	div.header {
		display: block;
		text-align: center;
		padding: 10px 0;
	}
	div.header h1 {
		display: block;
		margin: 10px  auto;
		font-size: 18px;
	}
	div.main {
		display: block;
		width: 100%;
	}
	div.main div.mainArea {
		width: 100%;
	}
	div.main div.mainArea table.taskList {
		width: 95%;
		margin-top: 10px;
		margin-left: 10px;
		border-spacing: 10px 20px;
	}
	div.main div.mainArea table.taskList2 {
		width: 95%;
		margin-left: 10px;
		border-spacing: 10px 0px;
	}

}

@media (min-width: 561px) and (max-width: 960px){
	div.side {
		width: 200px;
	}
	div.side div.user {
		position: relative;
		display: inline-block;
		width: 135px;
		margin-bottom: 40px;
		padding: 7px 10px;
		min-width: 120px;
		max-width: 100%;
		color: #000;
		background: #FFF;
		border-radius: 30px;
	}
	div.side div.logout a{
		width: 150px;
	}
	div.side p.sideLabel1 {
		font-size: 18px;
	}
	div.side p.sideLabel2 {
		font-size: 18px;
	}
	div.main div.mainArea {
		width: calc(100vw - 200px);
	}
	div.main div.mainArea table.taskList {
		width: calc(100vw - 220px);
		margin-top: 10px;
		margin-left: 10px;
		border-spacing: 10px 20px;	
	}
	div.main div.mainArea table.taskList2 {
		width: calc(100vw - 220px);
		margin-left: 10px;
		border-spacing: 10px 0px;	
	}
}

.header {
	display: flex;
	background-color: #FBFCF0;
	height: 100px;
	margin-top: 0;
}
.header .logo {
	display: inline-block;
	width: 200px;
	height: 58px;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 25px;
}
.header h1 {
	display: inline-block;
	font-size: 22px;
	font-weight: bold;
	margin-left: auto;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 25px;
}
.main{
	display: flex;
	height: calc(100vh - 100px);
}
.side {
	display: inline-block;
	text-align: center;
	width: 250px;
	background-color: #CBDA00;
	padding-top: 10px;
}
.side img.character {
	width: 60%;
	height: auto;
}
.side div.logout a{
	display: inline-block;
	width: 180px;
	padding: 0.4em 0;
	font-size: 20px;
	font-weight: bold;
	color: #35B597;
	background-color: #FFF;
	text-decoration: none;
	user-select: none;
	border: 3px #35B597 solid;
	border-radius: 10px;
	transition: 0.4s ease;
}
.side div.logout a:hover {
	color: #fff;
	background: #35B597;
}
.user {
	position: relative;
	display: inline-block;
	width: 165px;
	margin-bottom: 40px;
	padding: 7px 10px;
	min-width: 120px;
	max-width: 100%;
	color: #000;
	background: #FFF;
	border-radius: 30px;
}
.user:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top: 15px solid #FFF;
}
.user p {
	margin: 5px 0;
	padding: 0;
	font-size: 18px;
}
.sideLabel1 {
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
}
.sideLabel2 {
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
	margin-top: 50%;
}
.mainArea {
	display: inline-block;
	width: calc(100vw - 250px);
	max-height: calc(100vh - 110px);
	overflow: scroll;
	-ms-overflow-style: none;
    scrollbar-width: none;
	margin-right: 0;
}
.mainArea::-webkit-scrollbar {
	display:none;
}
.taskList {
	width: calc(100vw - 300px);
	margin-top: 10px;
	margin-left: 10px;
	border-spacing: 10px 20px;
}
.taskList2 {
	width: calc(100vw - 300px);
	margin-left: 10px;
	border-spacing: 10px 0px;
}
.taskName {
	width: 95%;
	height: 30px;
	border: #CBDA00 3px solid;
	border-radius: 40px;
	background-color: rgba(203,218,0,0.1);
	padding-left: 20px;
	padding-right: 20px;
	font-size: 16px;
	font-weight: bold;
	color: #000;	
}
.taskName a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #000;
	padding-top: 3px;
	transition: 0.2s ease;
}
.taskName a:hover {
	color: #CBDA00;
}


.postingList {
	width: 95%;
	height: 30px;
	border: #CBDADA 3px solid;
	border-radius: 10px;
	background-color: rgba(76, 183, 213, 0.1);
	padding-left: 20px;
	padding-right: 20px;
	font-size: 16px;
	font-weight: bold;
	color: #000;	
}
.postingList a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #000;
	padding-top: 3px;
	transition: 0.2s ease;
}
.postingList a:hover {
	color: #ababab;
}


.postingList2 {
	width: 95%;
	height: 38px;
	border: #CBDADA 3px solid;
	border-radius: 10px;
	background-color: rgba(76, 183, 213, 0.1);
	padding-left: 20px;
	padding-right: 20px;
	font-size: 20px;
	font-weight: bold;
	color: #000;	
}
.postingList2 a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #000;
	padding-top: 3px;
	transition: 0.2s ease;
}
.postingList2 a:hover {
	color: #ababab;
}


.mark {
	margin: auto 0;
}
.mark img {
	width: auto;
	height: 36px;
}
.backBtn {
	width: 150px;
	height: 30px;
	border: #35B597 3px solid;
	border-radius: 40px;
	background-color: #35B597;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: #FFF;
	margin-left: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	right: calc(10vw + 5px);
}
.backBtn a {
	text-decoration: none;
	color: #FFF;
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 3px;
	transition: 0.2s ease;
}
.backBtn a i{
	padding-right: 10px;
}
.backBtn a:hover {
	color:#CDCDCD;
}

.searchBtn {
	width: 150px;
	height: 30px;
	border: #fd71cc 3px solid;
	border-radius: 40px;
	background-color: #fd71cc;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: #FFF;
	margin-left: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	right: calc(10vw + 5px);
}
.searchBtn a {
	text-decoration: none;
	color: #FFF;
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 3px;
	transition: 0.2s ease;
}
.searchBtn a i{
	padding-right: 10px;
}
.searchBtn a:hover {
	color:#CDCDCD;
}

.sortBtn {
	width: 91%;
	height: 30px;
	border: #3d25f2 3px solid;
	border-radius: 40px;
	background-color: #3d25f2;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: #FFF;
	margin-left: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	right: calc(10vw + 5px);
}
.sortBtn a {
	text-decoration: none;
	color: #FFF;
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 3px;
	transition: 0.2s ease;
}
.sortBtn a i{
	padding-right: 10px;
}
.sortBtn a:hover {
	color:#CDCDCD;
}

.search_box {
	width: 100%;
    height: 45px;
    border: #CBDA00 solid 4px;
    font-size: 22px;
}