* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: verdana, sans-serif;
	font-size: 14px;
}
h1 {
	font-size: 1.2em;
	margin-bottom: 50px;
}
/*============================================================================================================================*/
html {
	width: 100%;
}
body {
	width: 100%;
    margin: auto 0;
    padding-bottom: 500px;
}
header {
	width: 100%;
	border-bottom: 1px solid #888;
}
header > div {
	width: 900px;
	margin: 0 auto;
	padding-top: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
	display: flex;
	flex-direction: row;
}
@media all and (max-width:768px) {
header > div {
	width: 100%;
	margin: 0 auto;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	flex-direction: column;
}
}
header img.logo {
	width: 100px;
}
header div.sns {
	margin-left: auto;
}
header div.sns img {
	height: 20px;
	margin-left: 10px;
}
header div.sns img.x_logo {
	background-color: #000;
}
main {
	width: 100%;
}
main > div {
	width: 900px;
	margin: 0 auto;
	padding-top: 20px;
	padding-left: 20px;
	padding-bottom: 20px;	
	display: flex;
	flex-direction: row;
}
@media all and (max-width:768px) {
main > div {
	width: 100%;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;	
	flex-direction: column;
}
}
main div.menu {
	width: 200px;
}
@media all and (max-width:768px) {
main div.menu {
	display: none;
}
}
main div.menu a {
	color: #000;
}
main div.contents {
	width: calc(100% - 200px);
}
@media all and (max-width:768px) {
main div.contents {
	width: 100%;
}
}
main div.contents div.list {
	width: 100%;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media all and (max-width:768px) {
main div.contents div.list {
	flex-direction: column;
}
}
div.box {
	width: calc((100% / 2) - 10px);
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 20px;
}
@media all and (max-width:768px) {
div.box {
	width: 100%;
	margin-bottom: 10px;
}
}
div.box > div {
	width: calc(100%);
	display: flex;
	flex-direction: column;
}
div.box > div:first-child {
	border-bottom: 1px solid #ccc;
}
 div.sentenceBox > div:first-child {
	height: calc(100% - 80px);
}
div.box > div:nth-child(2) {
/* 	height: 40px; */
	border-bottom: 1px solid #ccc;
}
div.box > div:last-child {
/* 	height: 40px; */
	border-bottom: 0px solid #ccc;
	margin-top: auto;
}
div.box > div > a {
	width: calc(100%);
	text-decoration: none;
	display: inline-block;
	padding: 10px;
}
div.box > div:first-child > a {
	width: calc(100%);
	display: flex;
	text-decoration: none;
}
div.box > div:first-child > a span{
}
div.box > div > a span{
	color: #000;
}
div.box > div:first-child > a:hover span {
	color: #30b70b
}
div.titleBox > div:first-child > a span{
	font-size: 1em;
	font-weight: bold;
}
div.titleBox > div:first-child > a:hover span {
	color: #30b70b
}
div.titleBox > div:last-child > a span{
	font-size: 0.8em;
	color: #555;
}
div.sentenceBox > div:first-child > a span{
	font-size: 1em;
	font-weight: bold;
}
div.sentenceBox > div:first-child > a:hover span {
	color: #30b70b
}
div.sentenceBox > div:nth-child(2) > a span{
	font-size: 0.8em;
	color: #555;
}
div.sentenceBox > div:last-child > a span{
	font-size: 0.8em;
	color: #555;
}
ul {
	list-style: none;
}

.node-children {
	display: flex;          /* 横並び */
gap: 20px;              /* 兄弟ノードの間隔 */
	justify-content: flex-start;/* 中央寄せ */
	margin-top: 20px;
}
.node {
	min-width: 120px;
}
.node-text {
	cursor: pointer;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.node-text > div {
	padding: 10px;
}
.node-text > div:first-child {
	border-bottom: 1px solid #ccc;
}
.node-text > div:first-child > a {
	text-decoration: none;
}
.node-text > div:last-child > a {
	text-decoration: none;
}
.node-text > div:first-child > a > span {
	font-size: 1em;
	color: #000;
}
.node-text > div:last-child > a > span {
	font-size: 0.8em;
	color: #555;
}
h2 {
	margin-bottom: 20px;
	font-size: 1.2em;
}
div.userList > div {
	margin-bottom: 50px;
}
div.userList > div {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}





















