/* CSS Document */
article section .body
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;

}


#main
{
	width: 760px;
}


#side
{
	width: 200px;
  position: sticky;
  top: 100px;

}

#side .side_menu h3
{
	color: #fff;
	font-size: 16px;
	line-height: 1;
	display: block;
	padding-top: 16px;
	padding-right: 0px;
	padding-bottom: 16px;
	padding-left: 0px;
	position: relative;
	overflow: hidden;
	transition-duration: .4s;
	z-index: 2;
	background-color: #339933;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #51a851;
	text-align: center;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 0px;
	-webkit-border-bottom-right-radius: 0px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	-moz-border-radius-bottomleft: 0px;
	-moz-border-radius-bottomright: 0px;
	margin: 0px;
}

#side .side_menu ul
{
	display: block;
	margin: 0px;
	padding: 0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #eee;
	border-bottom-color: #eee;
	border-left-color: #eee;
	background-color: #FFF;
}

#side .side_menu ul li
{
	display: block;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #eee;
}

#side .side_menu ul li:last-child
{
	border-bottom-style: none;
}

#side .side_menu ul li a
{
	line-height: 1;
	display: block;
	padding: 10px;
}

#side .side_menu ul li a:before
{
	font-family: "Font Awesome 6 Free";
	content: '\f105';
	font-weight: 900;
	margin-right: 10px;
	line-height: 14px;
	font-size: 10px;
	vertical-align: middle;
	height: 14px;
}

/* PCのみ設定  768 以上*/
@media screen and (min-width:768px)
{


}

@media (max-width: 1000px) 
{
article section .body
{
	display: flex;
	gap: 0px;

}


#main
{
	width: auto;
	flex: 1;
}

#side
{
	width: 200px;
	margin-left: 20px;
}


}

/* タブレットレイアウト : 768 px 〜 959 px*/
@media screen and (min-width:768px) and (max-width:999px)
{



}

/* スマホ設定  768 以下*/
@media screen and (max-width:767px)
{



}

/* スマホ設定  599 以下*/
@media screen and (max-width:599px)
{
article section .body
{
	display: block;
}

#main,#side
{
	width: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}



}