@charset "utf-8";

html {
	width: 100%;
	height: 100%;
}

* {
	margin: 0;
	padding: 0;
}

body {
	width: 100%;
	min-height: 100dvh;
	margin: 0 auto;
	background-color: #fcfcfc;
	color: #191b22;
	font: normal 15px/1.6 Verdana, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', sans-serif;
	-webkit-text-size-adjust: 100%;
}

a {
	color: #5098ba;
	text-decoration: none;
}

a:hover {
	color: #2dcbd5;
	text-decoration: underline;
}

hr {
	width: 100%;
	height: 0px;
	border: none;
	border-top: 1px solid whitesmoke;
	background-color: whitesmoke;
	clear: both;
}

.url {
	display: inline-block;
	word-break: break-all;
}

/* ---------------------------------------------------- */
/* ▼汎用装飾(てがろぐ専用記法で書かれた場合のみ)：文字 */
/* ---------------------------------------------------- */
/* B:太字(Bold) */
.decorationB {
	font-weight: bold;
}

/* D:削除(Delete) */
.decorationD {
	color: #aaa;
	text-decoration-line: line-through;
	text-decoration-color: #5098ba;
}

/* E:強調(Emphasis) */
.decorationE {
	color: #5098ba;
	font-style: normal;
	font-weight: bold;
}

/* I:斜体(Italic) */
.decorationI {
	font-style: italic;
}

/* Q:引用(Quote) */
.decorationQ {
	margin: 1em 0.3em 1em 1em;
	padding: 1em;
	border-left: 5px double rgba(162, 171, 200, 0.5);
	background-color: #f4f9ff;
	color: #666;
	font-size: 0.9em;
	line-height: 1.6;
	display: block;
}

.decorationQ::before,
.decorationQ::after {
	content: '';
}

.decorationQ+br {
	display: none;
}

/* S:小文字(Small) */
.decorationS {
	font-size: 0.8em;
}

/* T:極小文字(Tiny) */
.decorationT {
	font-size: 0.6em;
}

/* U:下線(Underline) */
.decorationU {
	text-decoration-line: underline;
	text-decoration-style: double;
	text-decoration-color: #5098ba;
}

/* ---------------------- */
/* ▼自由装飾用の装飾の例 */
/* 自由装飾は [F:myclass:対象文字] の記法で <span class="deco-myclass">対象文字</span> のようにマークアップされる機能です。あらかじめclassを用意しておくことで自由な装飾を個数制限なく使い分けられます。 */
/* ---------------------- */
/* 投稿者の自由な記述によって意図せずページが崩れてしまうのを防ぐために、適用されるclass名の先頭には必ず deco- が付加されます。 */
.deco-scream {
	font-size: 1.67em;
}

.deco-code {
	display: inline-block;
	font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
	background-color: snow;
	color: black;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 0px 3px;
}

.deco-separator {
	display: block;
	border-bottom: 1px dotted gray;
}

/* ---------------------------------------------------- */
/* ▼汎用装飾(てがろぐ専用記法で書かれた場合のみ)：画像 */
/* ---------------------------------------------------- */
/* E:強調(Emphasis)に含まれる画像に対する装飾 */
.decorationE img {
	margin: 5px 5px;
	max-height: 35px;
	width: auto;
	outline: 4px ridge rgba(50, 236, 70, 0.8);
	vertical-align: bottom;
}

/* B:太字(Bold)に含まれる画像に対する装飾 */
.decorationB img {
	margin: 5px 5px;
	max-height: 35px;
	width: auto;
	box-shadow: 3px 3px 3px yellowgreen;
	vertical-align: bottom;
}

/* I:斜体(Italic)に含まれる画像に対する装飾 */
.decorationI img {
	margin: 5px 5px;
	max-height: 35px;
	width: auto;
	box-shadow: -3px 3px 3px pink;
	vertical-align: bottom;
}

/* U:下線(Underline)に含まれる画像に対する装飾 */
.decorationU img {
	margin: 5px 5px;
	max-height: 35px;
	width: auto;
	box-shadow: 3px 3px 3px skyblue;
	vertical-align: bottom;
}

/* Q:引用(Quote)に含まれる画像に対する装飾 */
.decorationQ img {
	margin: 5px 5px;
	max-height: 35px;
	width: auto;
	vertical-align: middle;
	border: 1px solid #c6c6c6
}

/* D:削除(Delete)に含まれる画像に対する装飾 */
.decorationD img {
	margin: 5px 5px;
	max-height: 35px;
	width: auto;
	opacity: 0.4;
	vertical-align: bottom;
}

/* S:小文字(Small)に含まれる画像に対する装飾 */
.decorationS img {
	margin: 10px 5px 0;
	max-height: 30px;
	width: auto;
	vertical-align: bottom;
}

/* T:極小文字(Tiny)に含まれる画像に対する装飾 */
.decorationT img {
	margin: 10px 5px 0;
	max-height: 30px;
	width: auto;
	vertical-align: bottom;
}

.embeddedimage {
	margin: 5px 0 -5px 0;
	max-width: 100%;
	max-height: 200px;
	width: auto;
	height: auto;
	border-radius:6px;
	object-fit: cover;
}

.caution .embeddedimage {
	display: none;
}

.caution .imagelink {
	margin: 5px 0 -5px 0;
	display: inline-block;
	width: 200px;
	height: 200px;
	background-image: url("/homepage/img/caution_square.png");
	background-size: contain;
	border-radius: 8px;
}

.embeddedmovie {
	max-width: 95%;
	max-height: 95%;
	border-radius: 14px;
	margin-top: 0.5em;
}

.embeddedmusic {
	display: block;
	max-width: 100%;
	margin-top: 0.5em;
}

blockquote.twitter-tweet {
	background-color: #f8f8f8;
	border: 1px dashed #ddd;
	border-radius: 9px;
	margin: 0.3em 0;
	padding: 1em;
	font-size: 0.95em;
	color: #999;
	text-shadow: 1px 1px 1px #fff;
}

iframe {
	width: 200px !important;
	/* 埋め込みフレームサイズ固定 */
	height: auto;
	margin-top: 0.5em;
}

.searchword {
	background-color: rgba(168, 210, 240, 0.6);
	padding: 0 0.15em;
}

header {
	display: block;
	position: fixed;
	top: 0;
	width: 100%;
	height: 80px;
	background-color: rgba(252, 252, 252, 0.9);
	z-index: 300;
}

.headarea {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	width: 880px;
	margin: 0 auto;
}

.headtitle {
	width: 490px;
}

.maintitle {
	font-size: 28px;
}

.maintitle a {
	text-decoration: none;
}

.maintitle a:hover {
	text-decoration: none;
}

.subtitle {
	display: inline-block;
	font-size: 0.55em;
}

.mainguide {
	font-size: 14px;
	line-height: 1.0;
}

.headcontrol {
	width: 105px;
	font-size: 20px;
}

.control-links {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.control-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 30px;
	text-decoration: none;
}

.change-mode {
	display: flex;
	justify-content: space-between;
	font-size: 18px;
}

.postform {
	padding: 0 0 1.5em 1.5em;
	margin-left: -1.5em;
}

textarea.tegalogpost {
	box-sizing: border-box;
	width: 100%;
	height: 4.3em;
	padding: 3px;
	overflow-wrap: break-word;
	overflow: auto;
	font-size: 16px;
	line-height: 1.2;
	border: 1px solid whitesmoke;
	border-radius: 0;
	box-shadow: none;
	outline: none;
}

textarea.tegalogpost:focus {
	background-color: #f0f8ff;
}

.line-control {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	margin: 0.25em 0;
	line-height: 2em;
}

.postbutton {
	margin: 4px 8px 0 0;
	padding: 0.5em 1em;
	background: #5098ba;
	color: white;
	font-size: 1em;
	line-height: 1.5;
	/* 行の高さ・これを指定しないとiOSのSafariでボタンの高さが縮む */
	border: none;
	border-radius: 2em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.postbutton:hover {
	background-color: #2dcbd5;
}

.changelink {
	margin: 0 5px;
}

.decoBtns input {
	min-width: 24px;
	min-height: 25px;
	margin: 0 2px 0 0;
	padding: 0 5px;
	background-color: #606984;
	color: #e5f1fb;
	border: 1px solid #606984;
	cursor: pointer;
	border-radius: 3px;
	font-size: 14px;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* マウス載る際 */
.decoBtns input:hover {
	border: 1px solid #606984;
	background-color: transparent;
	color: #606984;
}

/* 強調  :E */
.decoBtnE {
	font-weight: bold;
	margin: 0 1px !important;
}

/* 太字  :B */
.decoBtnB {
	font-weight: bold;
	margin: 0 1px !important;
}

/* 斜体  :I */
.decoBtnI {
	font-style: italic;
	margin: 0 1px !important;
}
/*  */
.decoBtnQ,
.decoBtnS,
.decoBtnR,
.decoBtnL,
.decoBtnC,
.decoBtnM,
.decoBtnH,
.decoBtnF {
	margin: 0 1px !important;
}

/* 取消線:D */
.decoBtnD {
	text-decoration: line-through;
	text-decoration-color: white;
	text-decoration-style: double;
	margin: 0 1px !important;
}

/* 極小  :T */
.decoBtnT {
	font-size: 10px !important;
	margin: 0 1px !important;
	padding: 4px 8px;
}

/* 下線  :U */
.decoBtnU {
	text-decoration: underline;
	text-decoration-color: white;
	margin: 0 1px !important;
}

/* 文字色マウス載る際 */
.decoBtnC:hover {
	color: #e0245e !important;
}

/* 背景色マウス載る際 */
.decoBtnM:hover {
	color: #fff !important;
	background-color: #17bf63 !important;
}

/* ファイル選択フォーム */
input[type="file"] {
	max-width: 255px !important;
	min-height: 23px;
	font-size: 13px !important;
	margin: 0 2px 0 0 !important;
}

select {
	margin: 0 2px 0 0 !important;
}

/* 鍵付き投稿フォーム */
.passkeyinput {
	width: 8em;
	height: 22px;
	margin-right: 2px;
	padding-left: 3px;
	border: 1px solid #ccc;
	border-radius: 3px;
	background-color: #fff;
	color: #191b22;
	font-size: 16px;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.passkeysubmit {
	min-height: 24px;
	margin: 0 2px 0 0;
	padding: 0 5px;
	background-color: #606984;
	color: #e5f1fb;
	border: 1px solid #606984;
	border-radius: 3px;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.passkeysubmit:hover {
	border: 1px solid #606984;
	background-color: transparent;
	color: #606984;
}

.catChecks {
	font-size: 0.9em;
	padding-top: 0.5em;
}

.catChecks label {
	display: inline-block;
	cursor: pointer;
	margin: 0 0.75em 0 0;
}

.catChecks label:hover {
	text-decoration: underline;
}

.catChecks input[type="checkbox"] {
	background-color: #e5f1fb;
	cursor: pointer;
	appearance: auto;
	box-sizing: border-box;
	margin: 1px 3px 3px 4px;
	min-width: 14px;
	min-height: 14px;
}

.catChecks input[type="checkbox"]:checked {
	background: #2e80ff;
	border-color: #2e80ff;
}

@media all and (min-width: 800px) {
	.contents {
		display: flex;
		flex-direction: row;
		margin: 80px auto 0;
		width: 900px;
	}

	.contents .mainarea {
		width: 65%;
		vertical-align: top;
	}

	.contents .subarea {
		width: 35%;
		vertical-align: top;
	}
}

.mainarea {
	margin: 0;
	padding: 0.5em 1.5em;
	background-color: #fcfcfc;
	border-radius: 0;
}

.situation {
	margin: 1em 0;
	font-weight: bold;
	color: #606984;
}

.situation:empty {
	display: none;
}

.dateseparator {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0.1em 0.5em;
	background-color: whitesmoke;
	color: #606984;
	font-size: 14px;
	line-height: initial;
}

.dateseparator a {
	display: inline-block;
	height: 16px;
	margin: 0 0.25em;
	padding: 0 1em;
	font-size: 11px;
	border-radius: 8px;
	background-color: #fcfcfc;
}

.dateseparator a:hover {
	background-color: #5098ba;
	color: #fff;
	text-decoration: none;
}

.dateseparator::before {
	font-family: fontawesome;
	content: '\f017';
	margin-right: 2px;
}

.dateseparator.fixedseparator {
	background-color: #fcfcfc;
	color: #5b7083;
}

.dateseparator.fixedseparator::before {
	font-family: fontawesome;
	content: '\f08d';
	margin-right: 2px;
}

.onelogbox {
	display: flow-root;
	width: 100%;
	padding: 0.5em 1.5em;
	/* ボーダーを枠いっぱいまで伸ばす */
	margin-left: -1.5em;
	/* 伸ばしたボーダーを左端に揃える */
	border-collapse: separate;
	border-spacing: 0 0.75em;
	border-bottom: 1px solid whitesmoke;
}

.onelogside {
	display: table-cell;
	vertical-align: top;
	width: 50px;
	height: auto;
	padding-right: 16px;
}

.usericonlink {
	width: auto;
}

.iconarea {
	display: block;
	margin-top: 3px;
}

.iconarea img {
	width: 44px;
	height: auto;
	border-radius: 50%;
}

.username {
	font-weight: bold;
}

.memonum {
	font-size: 0.8em;
}

.memonum a {
	text-decoration: none;
}

.memonum a:hover {
	text-decoration: underline;
}

.newsign {
	display: inline-block;
	font-size: 12px;
	color: #5098ba;
	position: relative;
	top: 10px;
	left: 60px;
}

.newsign:empty {
	display: none;
}

.fixed {
	color: #5b7083;
}

.pin {
	position: absolute;
	top: 0.2rem;
	left: -0.7rem;
}

.onelogbody {
	display: table-cell;
	vertical-align: top;
	width: 100%;
}

.comment {
	min-height: 4em;
	line-height: 1.5;
	margin-bottom: 0.5em;
}

.comment .taglink {
	margin: 0 1px;
	text-decoration: none;
	word-break: break-all;
}

.comment .taglink:hover {
	text-decoration: underline;
}

.readmorebutton.readmoreclose:before {
	/* ボタンの前で強制改行する */
	content: "\A";
	white-space: pre;
}

.oneloginfo {
	font-size: 0.8em;
	text-align: right;
}

.oneloginfo p {
	color: #606984;
}

.postuserid {
	margin-left: 0.25em;
	font-weight: normal;
	font-size: 0.8em;
}

.postuserid a {
	text-decoration: none;
	color: inherit;
}

.postuserid a:hover {
	text-decoration: none;
	color: inherit;
}

.postdate {
	display: inline-block;
	color: #606984;
	vertical-align: middle;
}

.postdate a {
	display: inline-block;
	color: #606984;
	vertical-align: middle;
}

.postdate a:hover {
	text-decoration: underline;
}

.categorylink {
	display: inline-block;
	text-decoration: none;
	vertical-align: middle;
}

.categorylink:hover {
	text-decoration: underline;
}

.catseparator {
	display: inline-block;
	margin: 0 1px;
	color: gray;
}

.editlink a {
	display: inline-block;
	font-size: 0.82em;
	color: #606984;
}

.editlink a:hover {
	color: #5098ba;
}

.utilitylinks {
	padding: 0.5em;
	font-size: 0.9em;
}
.utilitylinks ul {
	list-style: none;
}

.utilitylinks ul ul {
	margin-left: 2em;
}

.pagenavi {
	margin: 1em 0;
	text-align: center;
}

.pagelinks {
	margin: 0.15em;
}

.pagelinks a {
	font-weight: bold;
}

p.pagenums {
	margin: 0.5em;
}

.pagenums a.pagenumlink {
	display: inline-block;
	width: 23px;
	height: 23px;
	margin: 0 0.1em;
	padding: 1px;
	font-weight: bold;
	line-height: 1.4;
	border: none;
	border-radius: 5px;
}

a.pagenumhere {
	text-decoration: none;
	border: none;
	border-radius: 5px;
	background-color: #5098ba;
	color: #fff;
}

a.pagenumlink:hover {
	text-decoration: none;
	border: none;
	border-radius: 5px;
	background-color: #2dcbd5;
	color: white;
}

.pagehome {
	margin: 0.15em;
	font-weight: bold;
}

.subarea {
	margin: 0;
	padding: 0;
	font-size: 14px;
	background-color: #fcfcfc;
	border-radius: 0;
	border-left: 1px solid #f5f5f5;
	color: #736d71;
}

.subhead {
	line-height: 1;
	text-align: left;
	font-weight: bold;
}

.searcharea,
.datelistarea,
.hashtaglistarea,
.categoryarea,
.calendararea,
.freespacearea {
	margin: 0;
	padding: 1em 0.5em 1em 2.5em;
	border-bottom: 1px solid whitesmoke;
}

.searcharea .cornertitle,
.datelistarea .cornertitle,
.hashtaglistarea .cornertitle,
.categoryarea .cornertitle,
.calendararea .cornertitle {
	margin: 0 0 0.5em 0;
	font-weight: bold;
}

.searchbox,
.searchinputs {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	max-width: 25em;
}

.searchbox .submitbutton,
.datelimitbox .submitbutton {
	margin-left: 2px;
	padding: 0.25em 0.5em;
	line-height: 1.25;
	border: 1px solid #ccc;
	background-color: #f0f0f0;
	color: #736d71;
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.searchbox .submitbutton:hover {
	margin-left: 2px;
	padding: 0.25em 0.5em;
	line-height: 1.25;
	border: 1px solid #ccc;
	background-color: #999;
	color: white;
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.searchtarget {
	margin: 0.5em 0 0 0;
}

#complexsearch {
	display: none;
}

.searchoptions {
	font-size: 0.9em;
	margin: 0.75em 0 0 1em;
	padding: 0 0 0 0.5em;
}

label.searchoption {
	font-size: 0.9em;
}

.solabel {
	display: inline-block;
	min-width: 5em;
}

.searchoptions select {
	max-width: 175px;
}

.datelimitlist {
	list-style-type: none;
	line-height: 1.5;
}

.datelimitsublist {
	list-style-type: none;
	margin-left: 1.3em;
	margin-bottom: 0.5em;
}

.datelimitlist .datelimitsublist .datelimit-month {
	display: inline-block;
	margin-right: 0.65em;
}

.datelimitlist .datelimitsublist .year {
	display: none;
}

.datelimitlist .num {
	margin: 0 2px;
	color: #aaa;
	font-size: 12px;
}

.datelimitbox {
	margin: 0;
}

.queryinput,
.datelimitbox select {
	padding: 0 0.15em;
	width: 10em;
	border: 1px solid #ccc;
	background-color: #fff;
	color: #191b22;
	font-size: 16px;
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.datelimitboxoptions {
	display: block;
	font-size: 0.9em;
	margin-top: 0.5em;
}

.datelimitboxoptions label {
	display: inline-block;
	margin-right: 0.5em;
}

.hashtaglist {
	line-height: 1.5;
}

.hashtaglist li {
	display: inline-block;
}

.hashtaglist .num {
	margin: 0 2px;
	color: #aaa;
	font-size: 12px;
}

.categoryTree ul {
	list-style-type: none;
	line-height: 1.5;
}

.cattree.depth2 {
	text-indent: 1em;
}

.categoryTree .num {
	margin: 0 2px;
	color: #aaa;
	font-size: 12px;
}

.calendarplace {
	background-color: #fcfcfc;
	overflow: auto;
}

.calendar {
	border-collapse: collapse;
	border: 1px solid whitesmoke;
	width: 100%;
}

.calendar th,
.calendar td {
	width: 27px;
	height: 27px;
	border: 1px solid #fcfcfc;
	text-align: center;
}

.calendar caption {
	color: #736d71;
}

.daysofweek th {
	background-color: #e6f4f1;
	font-weight: normal;
	font-size: 0.8em;
}

.calendar a,
.calendar .nolink {
	display: inline-block;
	width: 27px;
	height: 27px;
	background-color: transparent;
}

.calendar td a {
	font-weight: bold;
}

.calendar td a:hover {
	background-color: #5098ba;
	color: white;
	text-decoration: none;
}

.today {
	background-color: #e6f4f1;
}

.calendarlinks {
	text-align: center;
}

.freespacearea ul {
	list-style-type: none;
	margin: 0;
}

.freespacebody {
	min-height: 4em;
}

.profilebox {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.profileicon img {
	display: block;
	width: 5em;
	height: 5em;
	border-radius: 50%;
	margin-top: -0.5em;
}

.profilebody {
	line-height: 1.5;
	margin-top: 0.5em;
}

.profilebody dl dd {
	display: list-item;
	list-style: none;
	margin-bottom: 0.5em;
	text-align: right;
}

.freespaceedit {
	margin: 0;
	text-align: right;
	font-size: 0.75em;
}

.freespaceedit a {
	color: #606984;
}

.freespaceedit a:hover {
	color: #5098ba;
}

.infotitle,
.freespacearea .cornertitle {
	margin: 0 0 0.5em 0;
	font-weight: bold;
	color: #736d71;
}

.infobody {
	text-align: right;
}

footer {
	width: 100%;
	color: #93959a;
}

footer .control-links {
	text-align: center;
}

.backlink {
	text-align: center;
}

/* 著作権表示(Poweredby)のデザイン */
.poweredby {
	font-size: 11px;
	text-align: center;
}

/* ---------------- */
/* ▼メディアクエリー */
/* ---------------- */
@media all and (max-width: 480px) {

	header {
		/* width: 100%; */
		background-color: rgba(252, 252, 252, 0.9);
	}

	.headarea {
		display: flex;
		align-items: center;
		width: 95%;
	}

	.tegatter {
		margin-left: 1px;
	}

	/* Tegatterシンボルマーク位置調整 */
	.headtitle {
		width: 100%;
		line-height: initial;
	}

	.subtitle {
		display: flex;
		justify-content: start;
		font-size: 0.4em;
		margin-left: 2px;
	}

	.mainguide {
		font-size: 12px;
		line-height: 2.0;
	}

	.headcontrol {
		font-size: 14px;
		width: 50px;
	}

	.control-links {
		display: flex;
		width: 50px;
		margin-top: 4px;
	}

	.control-links a {
		width: 25px;
		height: 20px;
	}

	.change-mode {
		justify-content: flex-start;
	}

	.spacer {
		margin-left: 5px;
	}

	.embeddedimage {
		max-height: 220px;
		width: 220px;
		height: 220px;
		object-fit: cover;
		/* 画像ブロックからはみ出た画像を、縦横比を維持したままトリミングして中央配置 */
	}

	.caution .embeddedimage {
		display: none;
	}

	.caution .imagelink {
		width: 220px;
		height: 220px;
		background-size: 220px 220px;
	}

	iframe {
		margin-left: -58px !important;
		max-width: 280px !important;
		/* 埋め込みフレームサイズ固定 */
	}

	.contents {
		display: flex;
		flex-direction: column;
		margin-top: 80px;
		width: 100%;
	}

	.postarea {
		width: 97%;
		margin: 0 auto;
	}

	.postform {
		padding: 0.5em 0 0 0;
		margin-left: 0;
	}

	.mainarea,
	.subarea {
		width: 95%;
		margin: 0 auto;
		padding: 0;
	}

	.subarea {
		font-size: 16px;
		border-top: 1px solid #f5f5f5;
		border-left: none;
	}

	.dateseparator {
		flex-wrap: wrap;
		justify-content: center;
		padding-bottom: 5px;
		border-radius: 5px;
	}

	.dateseparator a {
		width: 100%;
		margin-left: 0;
		margin-bottom: 3px;
		text-align: center;
		white-space: nowrap;
	}

	.onelogbox {
		width: 96%;
		margin: 0 auto;
		padding: 0;
	}

	.comment {
		font-size: 14px;
		line-height: 1.45;
	}

	.calendar {
		width: 100%;
	}
	.searcharea,
	.datelistarea,
	.hashtaglistarea,
	.categoryarea,
	.calendararea,
	.freespacearea {
		padding: 1em;
	}

}

/* End of file */