/* ========================================================================================= */
/* ==== ポップアップ ========= */
/* ========================================================================================= */

/* ----- ログインフォーム ----- */
#loginform {
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	transition: opacity 500ms;
	z-index: 100000;
}

#loginform section {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 400px;
	text-align: center;
	background: rgb(255, 255, 255);
	box-sizing: border-box;
	padding: 2em 1em;
	z-index: 100001;
}

#loginform section table {
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
}

#loginform section table th,
#loginform section table td {
	padding: 0.5em 0.25em;
	line-height: 2em;
	border: none;
}

#loginform section table th {

	width: 3.5em;
	padding-right: 1em;
	white-space: nowrap;
	text-align: right;

}

/* ----- イメージポップアップ ----- */
#imagetray {
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	z-index: 100000;
}

#imagetray p {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	min-width: 200px;
	max-width: 90vw;
	max-height: 90vh;
	text-align: center;
	background: rgb(255, 255, 255);
	box-sizing: border-box;
	padding: 1em;
	z-index: 100001;
}

#imagetray p img {
	border: none;
	max-width: calc(90vw - 2em);
	max-height: calc(90vh - 2em);
}


/* ========================================================================================= */
/* ==== 概要 ========= */
/* ========================================================================================= */
#page_lead {
	margin: 0 1.5rem 2rem;
	font-size: 1rem;
}


/* ========================================================================================= */
/* ==== 検索ボックス ========= */
/* ========================================================================================= */

main form section {
	padding: 0 1.5rem 2rem;
}



/* --- カテゴリ --- */
#main_column dl,
main dl {
	display: flex;
	/* flex-wrap: wrap; */
	gap: 0.5em;
	padding: 0;
	margin-bottom: 0.5em;
}

#main_column dt,
main dt {
	text-align: left;
	align-self: center;
	font-weight: bold;
	font-size: 1.1em;
	white-space: nowrap;
	flex-grow: 0;
	flex-shrink: 0;
}

#main_column dt:after,
main dt:after {
	content: '：';
	text-align: center;
	font-weight: bold;
	font-size: 1.1em;
	padding-right: 1em;
}

#main_column dd,
main dd {
	align-self: center;
	flex-grow: 1;
	flex-shrink: 1;
}

#main_column dd ul,
main dd ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25em;
	padding: 0.5em 0 0.5em;
}

#main_column dd ul li,
main dd ul li {
	align-self: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

#main_column dd ul li a,
#main_column dd ul li span,
main dd ul li a,
main dd ul li span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 7.2em;
	height: 7.2em;
	padding: 0.15em 0;
	line-height: 1.1em;
	text-align: center;
	color: #000;
	background: #dbdbdb;
	transition: background 0.6s;
}


main #list dd ul li a,
main #list dd ul li span {

	color: #fff;
}

main #products_loading,
main #list+aside {
	display: none;
	text-align: center;
	margin: 1rem auto 0;
}

main #products_loading svg,
main #list+aside svg {
	width: 4rem;
	animation: 4s linear infinite rotation_loading;
}



@keyframes rotation_loading {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}


main dd ul li a:hover {
	text-decoration: none;
	color: #fff;

}

#main_column dd ul li a.on,
#main_column dd ul li span.on,
main dd ul li a.on,
main dd ul li span.on {
	color: #fff;
}


main dl.cat1 dd ul li a:hover {
	background: #8ba2c9;
}

#main_column dl.cat1 dd ul li a.on,
#main_column dl.cat1 dd ul li span.on,
main dl.cat1 dd ul li a.on,
main dl.cat1 dd ul li span.on {
	background: #7193c9;
}


main dl.cat1 dd ul li a.on:hover {
	background: #456597;
}



main dl.cat2 dd ul li a:hover {
	background: #bca8c6;
}

#main_column dl.cat2 dd ul li a.on,
#main_column dl.cat2 dd ul li span.on,
main dl.cat2 dd ul li a.on,
main dl.cat2 dd ul li span.on {
	background: #b397c3;
}


main dl.cat2 dd ul li a.on:hover {
	background: #765d84;
}



main dl.cat3 dd ul li a:hover {
	background: #edc9b3;
}

#main_column dl.cat3 dd ul li a.on,
#main_column dl.cat3 dd ul li span.on,
main dl.cat3 dd ul li a.on,
main dl.cat3 dd ul li span.on {
	background: #e8b697;
}


main dl.cat3 dd ul li a.on:hover {
	background: #d2a07f;
}

@media only screen and (max-width: 768px) {

	main dd ul {
		gap: 0.25em;
		font-size: 0.8rem;
	}

}


#list>ul>li>a:last-of-type {
	position: relative;
	display: block;
	text-align: center;
	color: rgba(190, 190, 190, 1);
	transition: all 0.3s;
}


/* --- 入力  --- */
main #list dt,
main form dt {
	text-align: right;
	min-width: 5em;
}

main #list li.en dt,
.en main form dt {
	min-width: 10em;
}

@media only screen and (max-width: 1200px) {

	main #list dt {
		min-width: 5em;
	}

}

@media only screen and (max-width: 800px) {


	main #list dt,
	main form dt {
		min-width: 5em;
	}

}

main #list dl.words,
main form dl.words {
	margin-top: 1em;
}

form#loginform input[type="text"],
form#loginform input[type="password"],
main form input[type="text"],
main form input[type="password"] {
	width: 90%;
	min-width: 16em;
	max-width: 50em;
	box-sizing: border-box;
	font-size: 1.1em;
	color: #666666;
	padding: 0.5em 0.75em;
	line-height: 1.5;
	background-color: #ebebeb;
	border: none;
	border-radius: 2px;

}

/* --- ヘッダー、フッターボタン --- */
.login .bottons,
.login footer,
.login header,
main .bottons,
main footer,
main header {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	min-width: 10em;
	/* 管理画面用 */
	margin: 1.5rem auto auto;
	padding: 1.5rem 0 1.5rem;
	background: none;
	z-index: 0;

}

.login .bottons,
main .bottons {
	text-align: right;
	justify-content: flex-end;
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: 1em;
}

.login .bottons a,
.login footer a,
.login header a,
main .bottons a,
main footer a,
main header a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;

	min-width: 10em;
	color: #fff;
	background: #376178;
	line-height: 1.2em;
	word-break: keep-all;
	font-size: 1.2em;
	margin: 0 0.25rem 0.25em;
	padding: 0.8em 1em;
	transition: all 0.4s;
	border-radius: 0.25em;
}

.login .bottons a main .bottons a {
	min-width: 13em;
	width: 13em;
}

.login .bottons a:hover,
.login footer a:hover,
.login header a:hover,
main .bottons a:hover,
main footer a:hover,
main header a:hover {
	background: #1a3b4d;
	text-decoration: none;
}

.login .product_detail>footer a,
main .product_detail>footer a {
	font-weight: bold;
	color: #376178;
	background: #fff;
	border: 1px solid #376178;
}

.login .product_detail>footer a:hover,
main .product_detail>footer a:hover {
	background: #e4ecf0;
}

.errors {
	color: red;
}


/* main span{
	display: inline-block;
	width: 13em;
	text-align: right;
	padding: 0.25em 1em;
}

#period
{
	padding: 1em 0 2em;
	font-size: 1.1em;

}

#period input
{
	line-height: 1.4em;
	padding: 0.25em;
	font-size: 1.1em;

} */


@media only screen and (max-width: 768px) {
	main dl {
		/* flex-wrap: wrap; */
		margin-bottom: 0.75em;
		line-height: 1.4;
	}

	main form #list dt {
		text-align: left;
		/* min-width: 100%; */
	}
}

@media only screen and (max-width: 550px) {

	main dl {
		flex-wrap: wrap;

	}

	main footer a {
		font-size: 1em;
	}

}



@media only screen and (max-width: 480px) {

	main form footer a {
		width: 100%;
		min-width: 0;
	}

}




/* ========================================================================================= */
/* ==== 一覧 ========= */
/* ========================================================================================= */

main section#list {
	/* padding: 1.5rem; */
	padding: 1.5rem 0 1px;
	background: rgb(245, 245, 245);
	/* 管理画面用 */
	text-align: left;
}

main section#list>* {
	margin: 0 1.5rem 1.5rem;
	padding: 0;
}

main section#list h2 {
	margin: 0 1.5rem;
}

main section#list>footer {
	margin: 1.5rem 0;
	padding: 1.5rem 0;
	background-color: #fff;
}

main #list>ul {}

main #list>ul>li {
	background-color: #fff;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	contain: content;
	/* content-visibility: auto;
	contain-intrinsic-size: 174px; */
}



main #list>ul>li>* {
	/* padding: 0 1.5rem; */
}

/* --- タイトル --- */
main #list>ul>li>hgroup {
	padding: 0;
	/* 管理画面用 */
	position: relative;
	height: auto;
	margin: auto;
	padding: 0;
	background-color: none;
	border: none;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	font-weight: inherit;

}



main #list>ul>li>hgroup h3 {
	position: relative;
	line-height: 1.4;
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 0;
	padding: 0.5em 0;
	border-bottom: 1px dotted #aaa;
	/* 管理画面用 */
	top: auto;
	left: auto;
}

main #list>ul>li>hgroup h3 label {
	font-weight: bold;
}

main #list>ul>li>hgroup h3 span.situation {
	font-size: 0.8em;
	padding-left: 2em;

}

@media only screen and (max-width: 768px) {
	main #list>ul>li>hgroup h3 span.situation {
		display: block;
		padding-left: 0;
	}

}

main #list>ul>li>hgroup p {
	font-size: 1.25em;
	font-weight: bold;
	text-align: right;
	padding: 0 1.5rem;
	/* 管理画面用 */
	line-height: 1.75em;
}

main #list>ul>li>div.product_detail {
	overflow: hidden;
	box-sizing: border-box;
	max-height: 0;
	margin: 0;
	padding: 0;
	margin-top: 0;
	transition: max-height 0.8s, margin-top 0.8s, height 0.8s;
	/*
	contain: content;
	content-visibility: auto; */

}

main #list>ul>li>div.product_detail.open {
	/* max-height: 10000px; */
	margin-top: 2em;
	margin-bottom: 2em;
}

main #list.unfold>ul>li>div.product_detail {
	max-height: none;
	margin-top: 2em;
	margin-bottom: 2em;
}



main #list>ul>li>hgroup+a,
main #list>ul>li>a:last-of-type {
	position: relative;
	display: block;
	/* margin-top: 2em; */
	text-align: center;
	color: rgba(190, 190, 190, 1);
	transition: color 0.3s, margin-top 0.8s;
}

main #list>ul>li>hgroup+a {
	margin-bottom: 1em;
}

main #list>ul>li>a:last-of-type {
	display: none;
}

main #list>ul>li>hgroup+a::after,
main #list>ul>li>a:last-of-type::before {
	content: '';
	position: absolute;
	display: block;
	box-sizing: border-box;
	top: 1em;
	left: calc(50% - 1.15em);
	width: 2em;
	height: 2em;
	line-height: 1;
	border: 0.25em solid rgba(190, 190, 190, 1);
	border-left-color: rgba(190, 190, 190, 0);
	border-bottom-color: rgba(190, 190, 190, 0);
	transform: translateY(-25%) rotate(135deg);
	transition: all 0.3s;
}

main .mypage #list>ul>li>hgroup+a::after {

	top: 1em;
	left: calc(50% - 2em);
	width: 1em;
	height: 1em;
	line-height: 1;

}

main #list>ul>li>a:last-of-type::before {
	top: -0.3em;
	transform: translateY(-25%) rotate(-45deg);
}

main #list>ul>li>hgroup+a:hover,
main #list>ul>li>a:last-of-type:hover {
	color: rgba(136, 136, 136, 1);
	text-decoration: none;
}

main #list>ul>li>hgroup+a:hover::after,
main #list>ul>li>a:last-of-type:hover::before {
	border: 0.25em solid rgba(136, 136, 136, 1);
	border-left-color: rgba(136, 136, 136, 0);
	border-bottom-color: rgba(136, 136, 136, 0);
}

main #list.unfold>ul>li>hgroup+a {
	display: none;
}

main #list>ul>li>div>section {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	margin-bottom: 2em;
}

.en main #list>ul>li>div>section,
main #list>ul>li.en>div>section {
	padding-left: 5em;
	padding-right: 5em;
}

/* --- カテゴリ --- */
main #list>ul>li>div>section>dl {
	gap: 0.5em;
	padding: 0;
	margin-bottom: 1em;
}

main #list>ul>li>div>section>dl>dd>ul {
	gap: 0.5em;
	padding: 0.25em;
}

@media only screen and (max-width: 768px) {

	main #list>ul>li>div>section>dl,
	main #list>ul>li>div>section>dl>dd>ul {
		gap: 0.25em;
		font-size: 0.8rem;
	}

}




/* --- チェック --- */
main #list>ul>li h3 input[type=checkbox] {
	width: 1.2em;
	height: 1.2em;
	border: none;
	font-size: 1.2em;
	color: #777777;
	background-color: #cdcdcd;
}

main #list>ul>li h3 input[type=checkbox] {
	display: none;
}

main #list>ul>li h3 input[type=checkbox]+label {
	margin-left: 1.5em;
	position: relative;
	display: block;
	cursor: pointer;
}

main #list>ul>li h3 input[type=checkbox]+label::before {
	position: absolute;
	content: '';
	display: block;
	left: -1.5em;
	top: 0.25em;
	width: 1em;
	height: 1em;
	border-radius: 3px;
	background: #cdcdcd;
}

main #list>ul>li h3 input[type="checkbox"]:checked+label::after {
	position: absolute;
	content: '';
	display: none;
	left: -1.35em;
	top: 0.18em;
}

main #list>ul>li h3 input[type=checkbox]:checked+label::before {
	background: #e0e0e0;
}

main #list>ul>li h3 input[type="checkbox"]:checked+label::after {
	display: block;
	width: 0.75em;
	height: 0.5em;
	border-left: 3px solid #777777;
	border-bottom: 3px solid #777777;
	transform: rotate(-45deg);
}

/* --- 概要 --- */
main #list>ul>li>div>p {

	margin-bottom: 2em;
	padding: 2rem;
	background-color: rgba(238, 242, 234, 0.3);
	/* white-space: prhwb(89 76% 10%) */
	box-shadow: 0 0 2px 2px rgba(238, 242, 234, 0.3);
	/* 管理画面用 */
	line-height: 1.7em;
}


main #list>ul>li>div dl.links {
	display: flex;

	justify-content: flex-start;
	align-items: center;

	text-decoration: none;
	font-style: normal;
	padding-left: 3em;
	/* margin-top: -1.5em; */
	margin-top: 4em;
	margin-bottom: 2em;
}

main #list>ul>li>div dl.links dt {
	padding-right: 0.25em;
	/* font-weight: normal; */
	font-size: 0.9rem;
}

main #list>ul>li>div>dl.links dt::after {

	text-align: center;
	padding-right: 0;

}


main #list>ul>li>div cite a {
	text-decoration: underline;
	padding-left: 0.5em;
	font-weight: normal;
	font-style: normal;
	/* 管理画面用 */
	color: #1d3994;
}

/* --- 画像 --- */
main #list>ul>li>div>ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
}

main #list>ul>li>div>ul>li {
	display: inline-block;
	width: calc((100% / 3) - (2em / 3));
	min-width: 300px;
	padding: 0;
	text-align: center;
	box-sizing: border-box;
}

main #list>ul>li>div>ul>li img,
main #list>ul>li>div>ul>li .img {
	width: 100%;
	margin: 0;
}



main #list>ul>li>div.product_detail img,
main #list>ul>li>div.product_detail .img {
	max-height: 100vh;
	margin-top: 2em;
	display: none;
}

main #list.unfold>ul>li>div.product_detail img,
main #list>ul>li>div.product_detail.open img,
main #list.unfold>ul>li>div.product_detail .img,
main #list>ul>li>div.product_detail.open .img {
	max-height: 100vh;
	margin-top: 2em;
	display: inline-block;
}

/* main #list>ul>li>div footer {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;

}

main #list>ul>li>div footer a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	word-break: keep-all;
	width: 30%;
	min-width: 10em;
	color: #fff;
	background: #376178;
	line-height: 1.2;
	font-size: 1.2em;
	margin: 0 0.25rem 0.2em;
	padding: 0.8em 0.2em;
	transition: all 0.4s;
	border-radius: 0.25em;
}

main #list>ul>li>div footer a:hover {
	background: #1a3b4d;
	text-decoration: none;
} */

@media only screen and (max-width: 1200px) {

	/* main #list>ul>li footer a {
		gap: 0.25em;
		font-size: 1rem;
	} */

}

@media only screen and (max-width: 550px) {

	main #list>ul>li>ul>li {
		width: 100%;
		min-width: 0;
	}

}

@media only screen and (max-width: 480px) {

	main #list>ul>li footer a {
		width: 80%;
	}

}




/* ========================================================================================= */
/* ==== MY PAGE ========= */
/* ========================================================================================= */

/* ==== base 上書き ========= */
body.product.mypage {
	background-color: rgb(224, 236, 213);
}

/* ==== base 上書き ========= */

body.product.mypage main #cuser_form {
	background-color: rgb(237, 241, 234);
}

body.product.mypage main #cuser_form table tr td,
body.product.mypage main #cuser_form table tr th {
	border-bottom: 0.5em solid rgb(255, 255, 255);
}

body.product.mypage main section#list {
	background-color: rgb(237, 241, 234);
}



/* ----- MyPage ----- */
#cuser_area {
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	transition: opacity 500ms;
	z-index: 100000;
}

#cuser_area section {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 400px;
	text-align: center;
	background: rgb(255, 255, 255);
	box-sizing: border-box;
	padding: 2em 1em;
	z-index: 100001;
}

#cuser_area section table {
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
}

#cuser_area section table th,
#cuser_area section table td {
	padding: 0.5em 0.25em;
	line-height: 2em;
	border: none;
}

#cuser_area section table th {

	width: 3.5em;
	padding-right: 1em;
	white-space: nowrap;
	text-align: right;

}

#entry_form #cuser_area table tr td,
#entry_form #cuser_area table tr th {
	border-bottom: 0.5em solid rgb(255, 255, 255);
}

main .message {
	color: blue;
	font-size: 1.1em;
	margin-bottom: 1em;
}

/* ========================================================================================= */
/* ==== タブ ========= */
/* ========================================================================================= */

/* main > dl{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2em;
}

main > dl > dt{
	text-align: left;
	white-space: nowrap;
	padding-right: 2em;
	flex-grow: 0;
	flex-shrink: 0;
}

main > dl > dd{
	flex-grow: 0;
	flex-shrink: 0;
}

main > dl > dd > ul
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.2em;
} */

main>ul.tabs {
	--main_ul_li_bordercolor: #333;
}

main>ul.tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 10em;
	margin: 4em auto;
	font-size: 1.2em;
	/* border-bottom: 1px solid var(--main_ul_li_bordercolor); */
}



main>ul.tabs>li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0.75em;
	padding-right: 1rem;
	width: 24rem;
	min-width: 8em;
	border-bottom: 1px solid var(--main_ul_li_bordercolor);
	border-radius: 0.5em 0.5em 0 0;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s;
	user-select: none;
}

main>ul.tabs>li:has(a)::after {
	opacity: 0;
	transition: all 0.3s;
}

main>ul.tabs>li::after,
main>ul.tabs>li:hover::after {
	position: absolute;
	bottom: -0.38rem;
	display: block;
	content: '';
	width: 0.6em;
	height: 0.6em;
	border-right: 1px solid var(--main_ul_li_bordercolor);
	border-bottom: 1px solid var(--main_ul_li_bordercolor);
	background-color: #fff;
	transform: rotate(45deg);
	opacity: 1;
}




main>ul.tabs>li a {
	display: block;
	width: 100%;
	/* padding-right: 1.5em; */
	color: var(--site_color);
	position: relative;
}

main>ul.tabs>li a[target="_blank"]::before {
	font-size: 0.9em;
	content: " ";
	display: block;
	width: 0.8em;
	height: 0.6em;
	background: var(--site_color);
	background-size: 0.8em;
	position: absolute;
	top: calc(50% - 0.4em);
	right: calc(0.5rem);
}

main>ul.tabs>li a[target="_blank"]::after {
	font-size: 0.9em;
	content: " ";
	display: block;
	width: 0.8em;
	height: 0.6em;
	position: absolute;
	border-left: 0.15em solid var(--site_color);
	border-bottom: 0.15em solid var(--site_color);
	top: calc(50% - 0.4em + 1px + 0.1em);
	right: calc(0.5rem + 1px + 0.1em);
}

main>ul.tabs>li a:hover {
	text-decoration: none;
}

main>ul.tabs>li:hover {
	background: rgba(250, 250, 250, 1);
}

main>ul.tabs>li:hover::after {
	background-color: rgba(250, 250, 250, 1);
}


/* ========================================================================================= */
/* ==== ログ部分 ========= */
/* ========================================================================================= */

.log_info {
	width: calc(100% - 3px - 3rem);
	margin: 0 1.5px;
	box-shadow: 0 0 0.5px 1px rgba(222, 222, 222, 1);
	padding: 1em 2em;
	position: relative;
	text-align: left;
	background-color: #fff;
}

.log_info h2 {
	position: absolute;
	top: calc(0em - (1.5em / 2));
	left: 1.5em;
	padding: 0 0.5em;
	font-size: 1.2em;
	font-weight: bold;
	background-color: #fff;
}

.log_info .log_exists{
	display: none;
	opacity: 0;
	transition: all 2s;
}

.log_info section {
	position: relative;
	display: none;
	opacity: 0;
	transition: all 2s;
}

.log_info section h3,
.log_info section h4 {
	position: relative;
	top: unset;
	left: unset;
	padding: 0;
	margin: 1em 0 0.5em;
	text-align: left;
	font-weight: bold;
	color: var(--main_string_color);
}

.log_info section h3 {
	font-size: 1.1em;
}

.log_info section h4 {
	margin-left: 1em;
}



.log_info section ul,
.log_info section ol,
.log_info section dl {
	margin: 0 2em 2em;
}

.log_info section p {
	margin: 2em;
}

.log_info section ul li {
	display: flex;
	align-items: start;
	justify-self: start;
}

.log_info section ul li span:first-of-type {
	min-width: 3em;
}

.log_info section.ptype_e ul li span:first-of-type {
	min-width: 7em;
}

.log_info section ul li span:nth-of-type(2) {
	padding-left: 1em;
	position: relative;
}

.log_info section ul li span:nth-of-type(2)::before {
	content: ':';
	position: absolute;
	left: 0;

}

#main_column .log_info dl {
	display: flex;
	justify-content: start;
	align-items: center;
	margin: 2em 0;
}

#main_column .log_info dl dt {
	font-weight: bold;
}

#main_column .log_info dl dd {
	margin-left: 2em;
	flex-grow: 0;
}


#entry_form .log_info input[type="text"],
#entry_form .log_info input[type="date"] {
	width: 3em;
}


#entry_form .log_info input[type="button"],
#entry_form .log_info button {
	padding: 0.5em 1em;
	width: 8em;
	background: #dbdbdb;
	border-radius: 0.25em;
	border: none;

}