@charset "utf-8";
/* -- ◆サンプル
立体boader上 {
	border-top: 1px solid #333;
	box-shadow: 0px -1px 0px #111;
}

立体boader下 {
	border-bottom: 1px solid #111;
	box-shadow: 0px 1px 0px #333;
}

立体boader右 {
	border-right: 1px solid #111;
	box-shadow: 1px 0px 0px #333;
}

立体boader左{
	border-left: 1px solid #333;
	box-shadow: -1px 0px 0px #444;
}
-- */

body{
    font-family: 'Noto Sans JP', 'Lato', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic,
        'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

#content a[href^="http://shigurezuki.jp"]:after {
	content: "";
	width: 0;
	height: 0;
}

.completer-container {
	background-color: #fafafa;
	border: 1px solid #ccc;
	border-bottom-color: #39f;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	font-family: inherit;
	line-height: normal;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 10;
}

.completer-container li {
	background-color: #fafafa;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	margin: 0;
	overflow: hidden;
	padding: 0.5em 0.8em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.completer-container .completer-selected, .completer-container li:hover {
	border-left: 1px solid #39f;
	background-color: #eee;
	margin-left: -1px;
}

/* -- 初期化 -- */

a:link, a:visited {
	color: #7aa5de;
}

a:hover, a:active {
	color: #66CC99;
}

/* -- ローディングプログレスバー -- */

#loader_main {
	width: 100%;
	height: 100%;
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #ddd;
}

#loader {
	position: fixed;
	width: 100%;
	height: 100%;
	text-align: center;
}

#loader img {
	position: relative;
	top: calc(50% - 90px);
	max-width: 400px;
	width: 100%;
}

#loader span {
	position: fixed;
	width: 0;
	height: 10px;
	top: 50%;
	background: #333;
	margin-right: auto;
	transition: all 0.2s linear 0s;
}

#loader .leftbar {
	left: 0;
}

#loader .rightbar {
	right: 0;
}

/* -- subwindow -- */

#subwindow_overlay {
	z-index: 9999;
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	cursor: pointer;
	background-color: #444;
	filter: alpha(opacity=50);
	opacity: 0.50;
}

#subwindow_foundation {
	z-index: 9999;
	position: fixed;
	top: 50%;
	left: 50%;
	border: 1px solid #111;
	background-color: #fafafa;
}

#subwindow_title {
	z-index: 9999;
	position: absolute;
	top: -1.5em;
	color: #fafafa;
	font-weight: bold;
}

#subwindow_close {
	z-index: 9999;
	position: absolute;
	top: -1.5em;
	right: -1px;
	cursor: pointer;
	padding: 0 5px;
	background-color: #444;
	color: #fafafa;
	font-weight: bold;
}

#subwindow_content {
	z-index: 9999;
	overflow: auto;
}

/* -- アコーディオン -- */

.accordion h4::before {
	font-family: "websymbolsligaregular";
	width: 30px;
	display: inline-block;
	text-align: center;
	content: "\00c2";
	z-index: 2;
	position: static;
	border: none;
}

.accordion h4.active::before {
	background-position: right -21px;
	content: "\00c5" !important;
}

.accordion h4 {
	background: #ddd;
	padding: 0.5em 0;
}

.accordion h4:after {
	display: none;
}

/* -- IE11とedgeのハック -- */

/* IE11    */

_:lang(x)::-ms-backdrop, .accordion h4::before {
	font-size: 50%;
}

/* Edge    */

_:-ms-lang(x)::backdrop, .accordion h4::before {
	font-size: 50%;
}

/* -- ログイン -- */

#login {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transition-duration: 1s;
	opacity: 0;
	pointer-events: none;
	z-index: 200;
}

#login:target {
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transition-duration: 1s;
	opacity: 1;
	pointer-events: auto;
	display: block;
}

.close_overlay {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
}

.modal_window {
	top: 50%;
	left: 50%;
	margin: -140px 0 0 -200px;
	width: 400px;
	height: 280px;
	text-align: center;
	color: #ddd;
	background: -webkit-linear-gradient(45deg, transparent 0, #212026 0), -webkit-linear-gradient(135deg, transparent 30px, #212026 30px), -webkit-linear-gradient(225deg, transparent 0, #212026 0), -webkit-linear-gradient(315deg, transparent 30px, #212026 30px);
	background: -moz-linear-gradient(45deg, transparent 0, #212026 0), -moz-linear-gradient(135deg, transparent 30px, #212026 30px), -moz-linear-gradient(225deg, transparent 0, #212026 0), -moz-linear-gradient(315deg, transparent 30px, #212026 30px);
	background: linear-gradient(45deg, transparent 0, #212026 0), linear-gradient(315deg, transparent 30px, #212026 30px), linear-gradient(225deg, transparent 0, #212026 0), linear-gradient(135deg, transparent 30px, #212026 30px);
	position: absolute;
	background-position: bottom left, bottom right, top right, top left;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	position: absolute;
}

.modal_window h3 {
	border-left: 0;
	margin-left: 50px;
}

/* -- ページ移動 -- */

.page_number {
	width: 100%;
	background: #fafafa;
	border-top: 1px dotted;
	border-bottom: 1px dotted;
	position: relative;
	z-index: 10;
	padding: 5px 0;
	text-align: center;
	margin: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
}

.page_number li {
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	list-style: none !important;
}

.order, .direct {
	padding: 0 5px;
}

/* -- 全体 -- */

body {
	color: #444;
	background: -webkit-linear-gradient(top, rgba(56, 57, 67, 1), rgba(17, 17, 20, 0.1)), url("/files/medias/main/dot.png");
	background: -moz-linear-gradient(top, rgba(56, 57, 67, 1), rgba(17, 17, 20, 0.1)), url("/files/medias/main/dot.png");
	background: linear-gradient(to bottom, rgba(56, 57, 67, 1), rgba(17, 17, 20, 0.1)), url("/files/medias/main/dot.png");
	background-attachment: fixed !important;
}

#tinymce {
	background: #fafafa;
}

#container {
	width: 1200px;
	padding: 80px 6px 0;
	margin: -80px auto 0;
	border-left: solid #fafafa 6px;
	border-right: solid #fafafa 6px;
	box-sizing: border-box;
}

.content_in_side .page_number, .entry, .page_utility, #category_search {
	width: 930px;
	background: #fafafa;
	float: right;
}

#utility {
	float: left;
	width: 240px;
	color: #aaa;
	top: 80px;
}

/* -- ヘッダー -- */

#header {
	background: #fafafa;
	margin-top: 80px;
	position: relative;
	z-index: 10;
}

#header .bx-wrapper {
    box-shadow: inherit;
    border: inherit;
    background: inherit;
}

#header .bx-wrapper .bx-controls {
    display: none;
}

#header_img_home {
	height: 392px;
}

#header_img {
	height: 200px;
	background: url("/files/medias/rotate/rotate.php") no-repeat;
}

#header_menu {
	background: #212026;
	width: 100%;
	box-shadow: 0px 0px 10px #444;
	position: fixed;
	top: 0px;
	z-index: 150;
	transition: .3s;
}

#header_menu_bottom {
	background: #212026;
	width: 100%;
	box-shadow: 0px 0px 10px #444;
	position: fixed;
	bottom: 0px;
	z-index: 150;
	transition: .3s;
}

#header_menu #magic-line {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100px;
	height: 2px;
	background: #7aa5de;
}

#header_menu>ul, #header_menu_bottom>ul {
	margin: 0;
	display: table;
	width: 100%;
}

#header_menu>ul>li, #header_menu_bottom>ul>li {
	width: 135px;
	min-width: 135px;
	border-left: 1px solid #333;
	border-right: 1px solid #111;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

#header_menu>ul>li:first-child, #header_menu_bottom>ul>li:first-child {
	border-left: 0;
}

#header_menu>ul>li:last-child, #header_menu_bottom>ul>li:last-child {
	border-right: 0;
}

#header_menu>ul>li>a {
	width: 135px;
	height: 80px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #ddd;
}

#header_menu>ul>li>a>span {
	display: block;
}

#header_menu>ul>li.menu_space, #header_menu_bottom>ul>li.menu_space {
	width: 34px;
	min-width: 34px;
}

#header_menu>ul>li.menu_logo {
	width: 350px;
	min-width: 0;
	background: url("/files/medias/main/logo_text_black.png") no-repeat center;
	background-size: auto 65px;
}

#header_menu>ul>li.menu_logo a {
	width: 350px;
	min-width: 0;
	background-size: auto 65px;
}

#header_menu>ul>li.menu_logo a:hover {
	background: none;
}

.menu_japanese {
	font-size: 2.5rem;
	line-height: 30px;
}

.menu_english {
	font-size: 1rem;
	line-height: 15px;
}

#header_menu>ul>li a:hover, #header_menu>ul>li a:active {
	background: #333;
	background: -webkit-linear-gradient(top, rgba(100, 100, 100, .3), rgba(255, 255, 255, 0)), url("/files/medias/main/dot.png");
	background: -moz-linear-gradient(top, rgba(100, 100, 100, .3), rgba(255, 255, 255, 0)), url("/files/medias/main/dot.png");
	background: linear-gradient(to bottom, rgba(100, 100, 100, .3), rgba(255, 255, 255, 0)), url("/files/medias/main/dot.png");
	color: #aaa;
}

#header_menu_bottom>ul>li.header_search {
	width: 490px;
	min-width: 490px;
}

#header_menu_bottom>ul>li>a {
	display: initial;
	color: #ddd;
}

#header_menu_bottom input, #header_menu_bottom select, #utility select {
	background-color: #333;
	color: #aaa;
	border: 1px solid #444;
}

#header_menu_bottom input:focus, #header_menu_bottom select:focus {
	background-color: #444;
	color: #aaa;
}

.search_form ul {
	margin: 0;
}

.search_form li {
	display: table-cell;
	height: 40px;
	vertical-align: middle;
}

.search_form label {
	background: #333;
	border: 1px solid #444;
	color: #aaa;
	text-align: center;
	font-size: 1.2rem;
	width: 80px;
	height: 21px;
	display: inline-block;
}

.search_form li:nth-child(2) label {
	border-left: 0;
	margin-right: 2px;
}

.search_form input[type="radio"]:checked+label {
	background: -webkit-linear-gradient(top, rgba(100, 100, 100, .3), rgba(255, 255, 255, 0)), url("/files/medias/main/dot.png");
	background: -moz-linear-gradient(top, rgba(100, 100, 100, .3), rgba(255, 255, 255, 0)), url("/files/medias/main/dot.png");
	background: linear-gradient(to bottom, rgba(100, 100, 100, .3), rgba(255, 255, 255, 0)), url("/files/medias/main/dot.png");
}

.search_form input[type="radio"] {
	display: none;
}

.input_search_button {
	position: relative;
	top: 1px;
	right: 27px;
	font-size: 1.2rem;
	border: 1px solid #444;
	border-left: none;
	background: transparent;
	color: #ddd;
}

#social_icon {
	min-width: 160px;
}

#social_icon>a:last-child {
	margin-left: 25px;
}

#news {
	height: 36px;
	padding: 10px 0;
}

#news>h2 {
	margin: 0;
}

#news .bx-wrapper {
	position: relative;
	top: -35px;
	left: 150px;
	width: 700px;
    height: 2em;
    background: inherit;
    border: inherit;
    box-shadow:inherit;
}

.utility .news li{
    list-style: none;
    overflow: initial;
    border-bottom: 0;
    text-overflow: ellipsis;
    overflow: hidden;
}
.utility .news_data {
    margin-right: 2em;
}


[class*="tooltip"] {
    position: relative;
}

[class*="tooltip_content"] {
    position: absolute;
    top: 2em;
    left: 0;
    opacity: 0;
    width: 100%;
    background: white;
    border: 1px solid #444;
    padding: 1em;
    transition: 0.2s;
    pointer-events: none;
    white-space: initial;
}

[class*="tooltip"]:hover [class*="tooltip_content"] {
    opacity: 1;
    z-index: 60;
}

#release {
	margin: 0;
}

[id^="css_"] {
	padding-top: 110px;
	margin-top: -110px;
}

/* -- フッター -- */

#footer {
	color: #aaa;
	clear: both;
	display: inline-block;
}

#up_page {
	position: fixed;
	bottom: 0px;
	margin: 0 0 40px 1200px;
	background: url("/files/medias/main/up_page.png") no-repeat left bottom;
}

#up_page a {
	display: block;
	width: 30px;
	height: 150px;
}

#copyright {
	color: #aaa;
	border-top: 1px solid #333;
	box-shadow: 0px -1px 0px #444;
	background: #111114;
	border-bottom: 1px solid #111;
	padding: 10px 50px;
	position: relative;
	clear: both;
}

#copyright>p {
	padding: 0;
}

#footer .utility {
	width: 255px;
	height: 200px;
	border-bottom: none;
	border-right: 1px solid #111;
	box-shadow: 1px 0px 0px #333;
	margin: 30px 0;
	padding: 0;
}

#footer .utility:first-child {
	overflow: hidden;
	width: 660px;
	height: 100%;
}

#footer .utility:last-child {
	border-right: none;
	box-shadow: none;
}

#footer .utility h2::before {
	content: none;
}

#footer .utility h2, #footer .utility ul {
	margin: 0;
}

#footer dl.list {
	width: 305px;
	margin-right: 0;
}

#footer dl.list dt {
	width: 8rem;
	margin-right: 0;
}

#footer dl.list dd {
	margin-left: 10rem;
	margin-right: 0;
}

.greater-than_sign:last-child {
	border-bottom: 0;
}

#new_entry, #rss {
	height: 220px;
	overflow: hidden;
}

#feeds .tips span {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 2.5rem;
	line-height: 4rem;
	z-index: -1;
	color: #444;
}

/* -- エントリー・ページ・コメント・トラックバック -- */

.entry_time, .page_time {
	float: right;
	margin: 40px 10px 0 0;
}

.date {
	font-size: 3rem;
	display: block;
	font-weight: bold;
}

.hour {
	display: none;
}

.day_gear {
	background: url("/files/medias/main/gear.png") no-repeat;
	position: absolute;
	top: -120px;
	right: -150px;
	width: 300px;
	height: 300px;
	-webkit-animation: day_gear 30s infinite;
	-moz-animation: day_gear 30s infinite;
	-ms-animation: day_gear 30s infinite;
	animation: day_gear 30s infinite;
}

@-webkit-keyframes day_gear {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(320deg);
	}
}

@-moz-keyframes day_gear {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
	}
}

@-ms-keyframes day_gear {
	0% {
		-ms-transform: rotate(0deg);
	}
	100% {
		-ms-transform: rotate(360deg);
	}
}

@keyframes day_gear {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.top, .entry, .page {
	background: url("/files/medias/main/content_bg_.png") left top no-repeat #fafafa !important;
	position: relative;
	padding-bottom: 20px;
}

.entry:nth-of-type(1), .page:nth-of-type(1) {
	z-index: 5;
}

.entry:nth-of-type(2), .page:nth-of-type(2) {
	z-index: 4;
}

.entry:nth-of-type(3), .page:nth-of-type(3) {
	z-index: 3;
}

.entry:nth-of-type(4), .page:nth-of-type(4) {
	z-index: 2;
}

.entry:nth-of-type(5), .page:nth-of-type(5) {
	z-index: 1;
}

#trackback, #trackback_url, #comment_form, #category_search {
	position: relative;
	z-index: 10;
}

.top .utility {
	width: 500px;
	border: none;
	box-shadow: none;
	padding: 0;
}

.top .content {
	/* overflow: hidden; */
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
}

.top #gallery-list {
	height: 250px;
}

.top #gallery-list p {
	text-align: center;
}

.top #gallery-list a {
	position: relative;
	width: 20%;
	height: 20%;
}

.top #gallery-list a::before {
	content: "";
	display: block;
	padding-top: 100%;
	/* 高さを幅の100%に固定 */
}

/* .top #gallery-list img[src*="media_thumbnails"] */
.top #gallery-list img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.top #gallery-list img {
	width: 100px;
	height: 100px;
	object-fit: cover;
}

.top>.title, .page>.title, .entry>.title {
	height: 185px;
	overflow: hidden;
	position: relative;
}

.top ul>li, .page ul>li, .entry ul>li, #tinymce ul>li {
	list-style: inside;
	list-style-type: disc;
}

.top ol>li, .page ol>li, .entry ol>li, #tinymce ol>li {
	list-style: inside;
	list-style-type: decimal-leading-zero;
}

.title>h3 {
	padding: 50px 120px 10px 40px;
	margin: 0;
	border: 0;
	line-height: 1.5;
	font-size: 2.4rem;
	height: 65px;
}

.title>h3>a {
	color: #444;
}

.title>h3>a:hover, .title>h3>a:active {
	color: #999;
}

.entry_category {
	margin-bottom: 10px;
	border: 1px solid #ccc;
	line-height: 2em;
}

.entry_category a, .page_information a {
	padding: 0 10px;
}

.breadcrumb ul {
	overflow: auto;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.breadcrumb ul li {
	background: url(/files/medias/main/breadcrumb_separator.png) no-repeat 100% 50%;
	float: left;
	padding-right: 10px;
	list-style: none;
	line-height: 2em;
}

.breadcrumb ul li:last-of-type {
	padding: 0 20px 0 10px;
	background: none;
}

.breadcrumb ul li:first-of-type a::before {
	font-family: 'websymbolsligaregular';
	src: url('http://freo.shigurezuki.jp/font/websymbolsligaregular.eot');
	src: url('http://freo.shigurezuki.jp/font/websymbolsligaregular.eot?#iefix') format('embedded-opentype'), url('http://freo.shigurezuki.jp/font/websymbolsligaregular.woff') format('woff'), url('http://freo.shigurezuki.jp/font/websymbolsligaregular.ttf') format('truetype');
	font-family: "websymbolsligaregular";
	width: 30px;
	display: inline-block;
	text-align: center;
	line-height: 2em;
	content: "\00f5"
}

.breadcrumb ul li a {
	display: block;
	padding: 0 10px;
}

.page_tag ul {
	overflow: auto;
}

.page_tag ul li {
	float: left;
	padding-right: 10px;
	list-style: none;
	line-height: 2em;
}

.content h4:first-child {
	margin-top: 0;
}

#plugin_form ul {
	display: block;
	margin: 10px;
}

#tinymce p, .top p, .entry p, .page p, #category_search p {
	padding: 0 1em;
	text-align: inherit;
}

#tinymce p img.mce-pagebreak {
	height: 0px;
}

.content {
	padding: 10px;
}

.content p img {
	padding: 1em 0;
}

.content p img[src*="media_thumbnails"], #tinymce p img[src*="media_thumbnails"] {
	padding: 0.5em 1em 0.5em 0;
	float: left;
}

.continue {
	width: 120px;
	height: 25px;
	background: #212026;
	line-height: 25px;
	text-align: center;
	margin: 15px 0 0 10px;
	clear: both;
}

.continue a {
	color: #ddd;
	padding-right: 9px;
}

#continue {
	clear: both;
}

#entry_link {
	margin: 0;
	padding: 0.5em 1em;
	background: url(/files/medias/main/background_b.png) repeat-x bottom #fafafa;
	height: 25px;
	position: relative;
}

.link {
	margin: 0;
	padding: 0.5em 1em;
	background: url(/files/medias/main/background_b.png) repeat-x bottom #fafafa;
	clear: both;
	display: flex;
	justify-content: space-between;
}

.link li, #entry_link li {
	display: inline-block;
	max-width: 40%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 0px 10px;
	line-height: 1;
}

.link li, .next a, .previous a {
	padding: 0 10px;
	line-height: normal;
}

.twitter-share-button {
	width: 115px !important;
	position: relative;
	top: 5px;
}

hr {
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	background-image: linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	margin: 25px 0;
}

#contact_form ul li input[type="text"] {
	width: 200px;
}

dl.list dt {
	clear: left;
	float: left;
	margin: 0 0 1em;
	width: 7.5em;
	border-left: solid 8px #CCC;
	padding-left: 5px;
}

dl.list dd {
	margin-bottom: 1em;
	margin-left: 8.5em;
	margin-right: 0;
}

/* -- 関連エントリー -- */

.entry_relate {
	margin-top: 30px;
	clear: both;
}

.entry_relate>div {
	max-width: 700px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-content: space-around;
	-moz-align-content: space-around;
	-ms-align-content: space-around;
	align-content: space-around;
	margin: 0 auto;
}

.entry_relate>div>div {
	width: 200px;
	height: 100px;
	position: relative;
	border: 1px solid #aaa;
	list-style: none !important;
	overflow: hidden;
	margin: 5px;
}

.entry_relate>div>div>span {
	margin: 5px;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.entry_relate>div>div>p {
	font-size: 1.3rem;
}

.entry_relate>div>div>div {
	width: 100%;
	position: absolute;
	right: 0;
	bottom: 0px;
	text-align: right;
	padding: 5px;
	background: #333;
	color: #ddd;
}

.entry_relate>div>div>a {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
}

.entry_relate>div>div>a:hover {
	background-color: rgba(0, 0, 0, 0.2);
}

/* -- 辞書ページ -- */

.page_child {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	-ms-column-count: 3;
	column-count: 3;
}

.page_child>li>ul {
	margin: 0;
}

.page_child>li>ul>li {
	list-style-type: none;
	text-indent: 1em;
}

.page_child>li>ul>li::before {
	content: "┣";
	color: #aaa;
}

.page_child>li>ul>li:last-child::before {
	content: "┗";
}

.page_child a[href~="Release_Note"] {
	display: none;
}

.tagcloud {
	margin: 5px 15px;
}

.tagcloud li {
	display: inline;
	color: #aaa;
	padding: 0 5px;
	white-space: pre;
}

.tagcloud li a {
	text-decoration: none;
	line-height: 1.2;
}

/* -- 不明 -- */

.about_banner {
	background: transparent !important;
}

.about_profile.workspace {
	margin-right: 5px;
}

.about_profile tr {
	background: #666;
	border-radius: 25px;
	display: block;
	margin: 10px 0;
}

.about_profile tr>td:first-child {
	width: 90px;
	color: #aaa;
}

.about_profile tr>td:last-child {
	background: #fafafa;
	border-radius: 25px;
	width: 860px;
	position: relative;
	bottom: 1px;
	left: 5px;
}

.about_profile.workspace tr>td:last-child {
	width: 360px;
}

/* -- コメント登録 -- */

.comment {
	display: inline-block;
	padding: 5px 15px 20px;
}

.comment2 {
	width: 600px;
	padding-left: 10px;
	margin-top: -16px;
}

.comment2 p {
	padding: 7.5px 12px;
}

#comment [class^="comment_"] {
	width: 100px;
	height: 100px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
}

/*管理人用*/

#comment [class^="comment_"] {
	background: url("https://pbs.twimg.com/profile_images/378800000780758017/bfa49bcb765b990291ec535661d3badd.png") no-repeat;
	background-size: 100px;
}

#comment .comment_default {
	background: url("/files/medias/comment_icons/default.png") no-repeat;
}

#comment .comment_icon_satsuki {
	background: url("/files/medias/comment_icons/icon_satsuki.png") no-repeat;
}

#comment .comment_icon_satsuki_r {
	background: url("/files/medias/comment_icons/icon_satsuki_r.png") no-repeat;
}

#comment .comment_icon_koyuki {
	background: url("/files/medias/comment_icons/icon_koyuki.png") no-repeat;
}

#comment .comment_icon_kureha {
	background: url("/files/medias/comment_icons/icon_kureha.png") no-repeat;
}

#comment .comment_icon_hisame {
	background: url("/files/medias/comment_icons/icon_hisame.png") no-repeat;
}

#comment_form>form {
	display: block;
	margin: 0 20px;
}

#comment_form>form>ul {
	width: 100%;
	max-width: 850px;
	margin: 0;
}

.content_in_side div #comment_form>form>ul {
	max-width: 600px;
}

#comment_form>form>ul:last-of-type {
	margin: 0 auto;
}

#comment_form>form>ul>li {
	list-style: none;
	padding: 5px 0;
}

#comment_form>form>ul>li>input[type="text"] {
	width: 242px;
	height: 21px;
	margin: 0;
}

#comment_form>form>ul>li>textarea {
	margin: 0;
}

[id$="_form"]>form>ul>li>.comment_attention {
	border-right: 2px solid red;
	padding-right: 2px;
}

/* -- リンク -- */

#link {
	margin-top: 50px;
}

#link ul {
	display: flex;
	flex-wrap: wrap;
}

#link li {
	list-style: none;
	margin: 0 45px 40px 0;
	font-size: 1.2rem;
	line-height: 1.5;
	width: 200px;
}

#link li:nth-of-type(4n) {
	margin: 0 0 40px 0;
}

#link img {
	width: 200px;
	height: 40px;
	display: block;
}

#link img[alt="No Banner"] {
	background: url("/files/medias/main/slash1.png") repeat top #fafafa;
	font-size: 30px;
	color: #444;
}

#link a {
	color: #999;
}

/* -- ユーティリティ -- */

.utility {
	padding: 20px 0;
	border-bottom: 1px solid #111;
	box-shadow: 0px 1px 0px #333;
}

.utility h2 {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	text-align: center;
	/* for no-flexbox browsers */
	border-top: 0;
	border-bottom: 0;
	margin: 0;
}

.utility h2::before, .utility h2:after {
	border-top: 1px solid;
	content: "";
	display: inline;
	/* for IE */
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
}

.utility h2::before {
	margin-right: 0.5em;
}

.utility h2:after {
	margin-left: 0.5em;
}

.utility ul li {
	padding: 5px 10px;
	border-bottom: 1px dotted;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
}

.utility ul li a {
	position: relative;
	z-index: 50;
}

#utility ul li ul {
	margin: 0;
}

#utility ul li ul li {
	border-bottom: none;
}

#utility ul li ul li::before {
	content: "┣";
	color: #aaa;
}

#utility ul li ul li:last-child::before {
	content: "┗";
}

.utility ul li ul li a {
	padding-left: 10px;
}

.utility_time {
	text-align: right;
}

.utility .page_child {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	-ms-column-count: 1;
	column-count: 1;
}

.utility .page_child li ul li a {
	padding: 5px 0;
	display: inline;
	background: none;
}

/* -- ツールチップ -- */

.smallipop-instance {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	z-index: 9999;
	max-width: 400px;
	background-color: #333;
	border: 1px solid #111;
	text-shadow: 0 -1px 1px #111111;
	color: #aaa;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	-ms-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	background: linear-gradient(#333, #222);
	background: -moz-linear-gradient(#333, #222);
	background: -webkit-linear-gradient(#333, #222);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
}

.smallipop-instance:after {
	content: '';
	position: absolute;
	height: 0;
	width: 0;
	pointer-events: none;
	border: 12px solid transparent;
}

.smallipop-theme-black.smallipop-right::before {
	display: none;
}

.smallipop-right:after {
	top: 50%;
	bottom: auto;
	left: -20px;
	right: -20px;
	border-width: 10px;
	margin: -10px 0 0;
}

.smallipop-content {
	padding: 10px;
}

.smallipop-theme-black.smallipop-right:after {
	border-color: transparent #2A2A2A transparent transparent;
}

.smallipop-theme-black .smallipop-content {
	border-top: 1px solid #666;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
}

/* -- 画像用指定 -- */

#profile_icon {
	background: url("https://pbs.twimg.com/profile_images/378800000780758017/bfa49bcb765b990291ec535661d3badd.png") no-repeat;
	background-size: 120px;
	width: 120px;
	height: 120px;
	margin: auto;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
}

#gallery-list {
	overflow: hidden;
}

#gallery-list h4 {
	display: none;
}

#gallery-list a {
	transition: none;
	display: inline-block;
}

#gallery-list img {
	padding: 0;
	width: 230px;
	height: auto;
	margin: auto;
}

#gallery-list .filter_item {
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.filter_list, .filter_list a {
	margin: 10px;
}

/* -- 会話形式 -- */

.word {
	position: relative;
	min-height: 90px;
	padding: 0 104px;
	margin: 20px;
}

.word p {
	padding: 0 13px;
	text-indent: 0 !important;
}

.icon_left {
	position: absolute;
	padding-top: 86px;
	left: 0;
	width: 86px;
	height: 0;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid #111;
	overflow: hidden;
}

.icon_right {
	position: absolute;
	padding-top: 86px;
	right: 0;
	width: 86px;
	height: 0;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100% border-radius: 100%;
	border: 2px solid #111;
	overflow: hidden;
}

[class^="word_"] {
	border: 1px solid #c8c8c8;
	border-radius: 10px;
	margin: 0 20px;
	padding: 13px 0;
	min-height: 78px;
}

.icon_manager {
	background: url("https://pbs.twimg.com/profile_images/600710368588124160/jtm27639_400x400.jpg") no-repeat #fafafa;
	background-size: 86px;
}

/*.word_manager {
	background: url("/files/medias/comment_icons/word_manager.png") right bottom no-repeat;
}*/

.icon_satsuki {
	background: url("/files/medias/comment_icons/icon_satsuki.png") no-repeat #fafafa;
	background-size: 86px;
}

/*.word_satsuki {
	background: url("/files/medias/comment_icons/word_satsuki.png") right bottom no-repeat;
}*/

.icon_koyuki {
	background: url("/files/medias/comment_icons/icon_koyuki.png") no-repeat #fafafa;
	background-size: 86px;
}

/*.word_koyuki {
	background: url("/files/medias/comment_icons/word_koyuki.png") right bottom no-repeat;
}*/

.icon_kureha {
	background: url("/files/medias/comment_icons/icon_kureha.png") no-repeat #fafafa;
	background-size: 86px;
}

/*.word_kureha {
	background: url("/files/medias/comment_icons/word_kureha.png") left bottom no-repeat;
}*/

.icon_hisame {
	background: url("/files/medias/comment_icons/icon_hisame.png") no-repeat #fafafa;
	background-size: 86px;
}

/*.word_hisame {
	background: url("/files/medias/comment_icons/word_hisame.png") left bottom no-repeat;
}*/

.tuzyo {
	background-position-y: 0px;
}

.emi {
	background-position-y: -100px;
}

.okoru {
	background-position-y: -200px;
}

.kanasimi {
	background-position-y: -300px;
}

.akire {
	background-position-y: -400px;
}

.human {
	background-position-y: -500px;
}

.odoroki {
	background-position-y: -600px;
}

.sekimen {
	background-position-y: -700px;
}

/* -- 通常用 -- */

@media screen and (max-width: 1024px) {
	#drawing_card {
		display: none !important;
	}
}

@media screen and (min-width: 641px) {
	.site_smart {
		display: none !important;
	}
}

/* -- Android用 -- */

@media screen and (max-width: 640px) {
	.site_pc, .day_gear, #social_icon {
		display: none !important;
	}
	html {
		-webkit-text-size-adjust: none !important;
		-moz-text-size-adjust: none !important;
		-ms-text-size-adjust: none !important;
		text-size-adjust: none !important;
	}
	body {
		background: #fafafa;
		font-size: 1.4em;
	}
	.menu_logo {
		min-width: 0;
		background: url("/files/medias/main/logo_text_white.png") no-repeat center;
		background-size: auto 65px;
	}
	.menu_logo a {
		display: block;
		height: 55px;
		min-width: 0;
		background-size: auto 65px;
	}
	#container {
		width: auto !important;
		border: none;
		padding: 0;
		margin: 0;
	}
	#preloader_off {
		transition: .2s ease-in-out;
		left: 0;
		z-index: 1;
		position: relative;
	}
	#preloader_off.show {
		min-width: 320px;
		left: 240px;
	}
	#content {
		float: none !important;
		width: auto !important;
	}
	.content_in_side div #comment_form>form>ul {
		width: 100% !important;
	}
	[id$="_form"] ul li {
		display: -webkit-flex !important;
		display: -moz-flex !important;
		display: -ms-flex !important;
		display: flex !important;
		margin: 10px 0 !important;
		width: auto !important;
	}
	[id$="_form"] ul li.display_none {
		display: none !important;
	}
	[id$="_form"] ul li input[type="text"] {
		width: 100% !important;
	}
	.comment2 {
		width: 100%;
	}
	#comment [class^="comment_"] {
		display: none;
	}
	.entry, .page_utility, #category_search {
		max-width: 100% !important;
	}
	#utility {
		display: none !important;
	}
	#header_menu_bottom, #container, #slidemenu {
		-webkit-transition: .2s linear;
		-moz-transition: .2s linear;
		-ms-transition: .2s linear;
		transition: .2s linear;
	}
	#slidemenu {
		background-color: #333;
		left: -240px;
		top: 0;
		position: fixed;
		z-index: 50;
		width: 240px;
		height: 120%;
	}
	#slidemenu_contents {
		height: 100%;
		position: relative;
		width: 240px;
	}
	#slidemenu_list {
		margin: 0;
	}
	#slidemenu_list li:first-child a {
		border-top: none;
	}
	#slidemenu_list li:last-child a {
		border-bottom: none;
	}
	#slidemenu_list li.menu_logo {
		background: url("/files/medias/main/logo_text_black.png") no-repeat center;
		background-size: auto 50px;
	}
	#slidemenu_list li a {
		display: block;
		padding: 10px 20px;
		border-top: 1px solid #4D4D4D;
		border-bottom: 1px solid #000;
		text-align: center;
	}
	.menu_japanese {
		display: block;
	}
	#menu_button {
		width: 50px !important;
		min-width: 50px !important;
		height: 50px !important;
		display: inline-block;
		border-right: 1px solid #111;
		box-shadow: 1px 0px 0px #333;
	}
	#menu_button::before {
		font-size: 5rem;
		line-height: 40px;
	}
	pre {
		overflow-x: scroll !important;
	}
	#page_search_form {
		display: none;
	}
	.content p img[src*="media_thumbnails"], #tinymce p img[src*="media_thumbnails"] {
		max-width: 50%;
		height: auto;
	}
	#profile_icon {
		background-size: 100px !important;
		width: 100px !important;
		height: 100px !important;
		margin: 0 10px !important;
		float: right !important;
	}
	.title>h3 {
		overflow: hidden;
		font-size: 1.8rem;
		padding: 0 !important;
		margin: 50px 0 0 30px;
	}
	.page_number, #category_search {
		width: 100% !important;
	}
	/* #menu_search_button {
		font-family: "websymbolsligaregular";
		width: 30px;
		font-size: 120%;
		content: "\0023";
		position: absolute;
		left: 280px;
		top: 13px;
	} */
	.word {
		padding: 0 45px;
		padding-right: 0;
	}
	[class^="icon_"] {
		padding-top: 43px;
		width: 43px;
		background-size: 43px;
	}
	[class^="word_"] {
		padding-right: 0;
	}
	form#plugin_form {
		background-size: 100% !important;
		padding-top: 120px;
	}
	.entry_relate>div>div {
		width: 300px !important;
		margin: 5px;
	}
	.entry_relate>div>div:nth-of-type(4), .entry_relate>div>div:nth-of-type(5), .entry_relate>div>div:nth-of-type(6) {
		display: none !important;
	}
	.top #gallery-list {
		height: auto;
	}
	embed {
		width: auto;
		height: auto;
	}

    .top .utility{
        width:100%;
    }
}
