/* CSS Document */

#about-us{
	padding-top: 0;
	}
	#about-us section{
		padding-bottom: 0;
		}
	#about-us .linkBut{
		width: 20em;
		}

#greeting{}
	#greeting dl{
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		align-items: center;
		}
	#greeting dt{
		line-height: 1.4em;
		white-space: nowrap;
		}
	#greeting dd{
		max-width: 10em;
		margin-right: 1em;
		}

#activities{}
	#activities ul{
		list-style: none;
		}
	#activities li{
		padding: 1em 0;
		border-bottom: 1px solid #ccc;
		}
		#activities li a{
			position: relative;
			display: block;
			padding-left: 1.2em;
			line-height: 1.4em;
			}
		#activities li i{
			position: absolute;
			top: 0.2em;
			left: 0;
			}
	#activities h4+ul{
		margin-top: 0;
		}

#organizational{}
	#organizational img{
		max-width: 600px;
		width: 100%;
		}

#member{}
	#member dl{
		display: flex;
		color: #1a1a1a;
		font-weight: bold;
		}
	#member dt{
		white-space: nowrap;
		}
	#member dt,
	#member dd{
		line-height: 1.4em;
		}

#member.dev220225{}
	#member.dev220225 dl{
		display: block;
		color: #1a1a1a;
		font-weight: bold;
		}
	#member.dev220225 dt{
		float: left;
		white-space: nowrap;
		}
	#member.dev220225 dt,
	#member.dev220225 dd{
		line-height: 1.4em;
		}

#disclosure{}
	#disclosure ul{
		list-style: none;
		}
	#disclosure li{
		padding: 1em 0;
		border-bottom: 1px solid #ccc;
		}
		#disclosure li a{
			position: relative;
			display: block;
			padding-left: 1.2em;
			line-height: 1.4em;
			}
		#disclosure li i{
			position: absolute;
			top: 0.2em;
			left: 0;
			}


/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
#sideContents{
	display: none;
	}
}


/* for mobile */
@media (max-width: 767px) {
/*767以下px*/
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 1199px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#col2{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0;
	}
#mainContents{
	width: calc(100% - 22em);
	}
#sideContents{
	position: sticky;
	top: 9em;
	width: 19em;
	margin-top: 4em;
	border: 2px solid #1a1a1a;
	}
	#sideContents ul{
		list-style: none;
		}
	#sideContents li+li{
		border-top: 1px solid #ccc;
		}
	#sideContents a{
		position: relative;
		display: block;
		padding: 1em;
		padding-left: 2.5em;
		line-height: 1.4em;
		}
	#sideContents i{
		position: absolute;
		top: 1.2em;
		left: 1em;
		}
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


/* Edge */
@supports (-ms-ime-align:auto) {
}


/* ie */
@media all and (-ms-high-contrast: none) {
}


