@charset "utf-8";

/* customized：cccabinet（https://cccabinet.jpn.org/) */

/********* HTML再定義 ***********************************************/

html {
	overflow-y:scroll;
}
*,*:before,*:after {
	box-sizing:border-box;
}
body {
	padding:0;
}
h2,h3,h4,h5,h6 {
	text-align:center;
}
h2 {
	margin:0 0 50px 0;
}
h3 {
	margin:80px 0 40px;
}
h4 {
	margin:0 0 30px;
}
form {
	margin:0;
}

/********* 全体 *****************************************************/

#container {
	min-width:950px;
	display:flex;
	flex-direction:column;
	min-height:100vh;
	margin:0 auto;
}
#header,#footer,#uheader {
	width:100%;
}
.header,.content,.footer,.uheader,.tab_menu {
	width:950px;
	margin:0 auto;
	padding:25px 0;
}
.header {
	padding:0;
}
a {
	color:#5a483d;
}
::selection{
	background:#e0e0e0;
	color:#555;
}

/********* ヘッダー *************************************************/

#header::-webkit-scrollbar {
	display:none;
}
#header a,.menu-parent label {
	color:#fff;
	padding:8px 20px;
	border-radius:50px;
}
#header a:hover,.menu-parent label:hover {
	color:#5a483d;
	background:#f3e9e3;
}

/********* フッター *************************************************/

#footer {
	color:#f3e9e3;
	font-size:1.2rem;
	line-height:1.5rem;
	margin:auto 0 0 0;
	background:#87776d;
}
#footer a {
	color:#fff;
}
.footer {
	display:flex;
}
.footer .logo img {
	width:100px;
	object-fit:cover;
}
.footer .logo {
	margin:0;
}
.footer .title span {
	display:block;
	margin:10px 0;
	font-size:2rem;
	font-weight:bold;
}
.footer .title span span {
	display:inline;
	margin:0 0 0 10px;
	font-size:1.2rem;
	font-weight:normal;
}
.footer div {
	margin:0 35px 0 0;
}
#page_top,#page_bottom {
	position:fixed;
	right:15px;
	width:50px;
	height:50px;
	margin:0;
	font-size:2.5rem;
	text-align:center;
	line-height:50px;
	background:#b6a498;
}
#page_top:after,#page_bottom:after {
	font-family:"Font Awesome 6 Free";
	font-weight:900;
	content:"\f0d7";
}
#page_top:after {
	content:"\f0d8";
}
#page_top {
	bottom:80px;
}
#page_bottom {
	bottom:15px;
}

/********* パンくず *************************************************/

.breadcrumb {
	background:#b6a498;
}
.breadcrumb ul {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	width:950px;
	margin:0 auto;
	padding:10px 0;
	font-size:1.4rem;
	line-height:2;
}
.breadcrumb ul li:after {
	font-family:"Font Awesome 6 Free";
	font-weight:900;
	content:"\f105";
	margin:0 12px;
	opacity:.4;
}
.breadcrumb ul li:last-child:after {
	content:none;
}

/********* メニュー *************************************************/
/*
  CSS のみのドロップダウンメニュー
  Copyright Rectus Inc, 2019
  https://www.rectus.co.jp/
  Released under the MIT license
 */

#navi {
	background:#87776d;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:75px;
	color:#fff;
	scrollbar-width:none;
	-ms-overflow-style:none;
	overscroll-behavior:none;
	z-index:2;
}
/* 非表示 */
#navi input,.menu-parent label i,#menu-navibtn,#navi::-webkit-scrollbar {
	display:none;
}
/* 左上ロゴ */
h1 {
	float:left;
	font-size:1.6rem;
	font-weight:normal;
	padding:25px 0;
	margin:0;
}
/* 上部メニュー */
.menu {
	display:flex;
	justify-content:flex-end;
}
.menu-parent {
	white-space:nowrap;
	padding:25px 0;
}

@media screen and (max-width:1000px) {
#navi {
	height:60px;
}
h1 {
	position:absolute;
	top:0;
	left:0;
	padding:0;
}
h1 a {
	height:60px;
	line-height:60px;
	padding:0 10px!important;
}
.menu-left a {
	padding:10px 0;
}
.menu-parent label i {
	display:inline;
	float:right;
	line-height:2.5rem;
  }
.menu {
	display:none;
	opacity:0;
	margin:60px 0 0;
}
.menu-parent {
    height:auto;
    width:100%;
    padding:0;
}
label i {
    padding:0px 6px;
}
  /* メニューを移動させないため */
#menu-navibtn:checked ~ #navi {
    position:fixed;
    overflow-y:scroll;
    overflow-x:hidden;
    height:100%;
}
#header a,.menu-parent label {
	display:block;
	padding:10px 20px;
	border-radius:0;
}
}

/* ドロップダウンメニュー */
.menu-parent {
	position:relative;
}
.menu-parent .menu-child {
	visibility:hidden;
	opacity:0;
	position:absolute;
	top:0;
	margin:74px 0 0;
	width:auto;
	padding:1px;
	background:#87776d;
}
#header .menu-parent .menu-child a {
	display:block;
	padding:10px 25px;
	border-radius:0;
}
/* パソコン用 */
@media screen and (min-width:1000px) {
.menu-parent:hover .menu-child {
    visibility:visible;
    opacity:1;
}
}
/* スマホ用 */
@media screen and (max-width:1000px) {
  /* ハンバーガーメニューがクリックされた時 */
#menu-navibtn:checked ~ * .menu {
    visibility:visible;
	display:block;
    opacity:1;
}
#menu-navibtn:checked ~ * .menu-parent {
    max-height:inherit;
    overflow-y:visible;
}
#menu-navibtn:checked ~ * .menu-child {
    max-height:0;
    overflow-y:hidden;
    visibility:hidden;
}
  /* 子メニュー */
.menu-parent .menu-child {
    position:relative;
    opacity:1;
    top:0;
    margin:0;
	padding:0;
    left:auto;
    width:auto;
}
  /* 子メニューがクリックされた時 */
#navi input[type="checkbox"]:checked ~ .menu-child {
    max-height:inherit;
    overflow-y:visible;
    visibility:visible;
}
}
/* 子メニュー */
.menu-child li {
	font-size:1.4rem;
}
/* ハンバーガー */
#navi #navibtn {
	display:none;
}
@media screen and (max-width:1000px) {
#navi #navibtn {
	display:block;
	position:absolute;
	top:10px;
	right:10px;
}
#navibtn span {
    display:block;
    width:40px;
    height:40px;
    background:#5a483d;
}
#navibtn span span {
    display:block;
    overflow:hidden;
    width:1px;
    height:1px;
}
#navibtn span span::before,
#navibtn span span::after,
#navibtn span::after {
    position:absolute;
    left:10px;
    content:"";
    width:20px;
    height:3px;
    background:#fff;
 	transition:.2s;
}
  /* 上の棒 */
#navibtn span span::before {
    top:10px;
}
#menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top:19px;
    transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
}
  /* 下の棒 */
#navibtn span::after {
    bottom:10px;
}
#menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom:18px;
    transform:rotate(-135deg);
    -webkit-transform:rotate(-135deg);
}
  /* 中の棒 */
#navibtn span span::after {
    top:18px;
  }
#menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display:none;
}
}
#navi fieldset input,#navi fieldset button {
	display:inline;
	width:auto;
	margin:0;
	padding:0 5px;
	font-size:1.4rem;
	color:#5a483d;
	background:#f3e9e3;
	border:0;
}
#navi fieldset {
	margin:0 15px;
}
.category_list {
	display:flex;
	justify-content:center;
	margin:0 -10px 40px;
}
.category_list a {
	margin:0 10px;
	padding:10px 30px;
	background:#d5eff3;
	flex:1;
}
.category_list a.now {
	background:#cddc7c;
}

/********* 内容 *****************************************************/

#content {
	width:950px;
	margin:75px auto 0;
	padding:60px 0;
	position:relative;
	text-align:center;
}
.content {
	margin:0 0 40px;
	overflow:hidden;
}
.content p a,.form p a {
	color:#de8829;
	padding:0 1px 2px;
	border-bottom:1px solid #f5efe9;
}
.content p a:active,.content p a:hover,.form p a:active,.form p a:hover {
	color:#e3b865;
	border-bottom:1px solid #b6a498;
}
.content,.form {
	padding:30px 25px;
	background:#f5efe9;
	text-align:left;
}
.content p,.form p {
	line-height:2;
}
.link_btn {
	margin:50px 0 90px;
}
.link_btn a {
	font-size:1.8rem;
	letter-spacing:.3rem;
	background:#d5eff3;
	padding:15px 30px;
}
.link_btn i {
	margin:0 1.2rem 0 0;
}
.content h3,.form h3 {
	position:relative;
	border-bottom:1px dashed #87776d;
	height:30px;
	margin:50px 0;
}
.content h3 span,.form h3 span {
	position:absolute;
	height:30px;
	padding:0 20px;
	line-height:30px;
	top:50%;
	left:50%;
	transform:translate(-50%,0);
	background:#f5efe9;
	white-space:pre;
}

/********* プロフィール *********************************************/

#profile_img img,.profile_img {
	display:block;
	margin:0 auto 30px;
	width:200px;
	height:200px;
	border-radius:100%;
	object-fit:cover;
}
.profile_img {
	position:relative;
	background:#ddd;
}
.profile_img::before {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	font-family:"Font Awesome 6 Free";
	font-weight:900;
	font-size:12rem;
	content:"\f007";
	color:#f0f0f0;
}
li#profile_img a,#navi #profile_img a {
	display:flex;
	align-items:center;
	color:#5a483d;
}
li#profile_img img,li#profile_img .profile_img {
	margin:0 15px 0 0;
	width:50px;
	height:50px;
}
li#profile_img .profile_img::before {
	font-size:2.5rem;
}
.menu-parent img,.menu-parent .profile_img {
	width:35px;
	height:35px;
	margin:0;
	border-radius:100%;
	object-fit:cover;
}
.menu-parent .profile_img:before {
	font-size:1.6rem;
}
#header .pd a {
	display:flex;
	align-items:center;
	padding:0;
}
.menu-parent.pd {
	margin:0 0 0 15px;
	padding:20px 0;
}
#form h2 i {
	margin:0 0 0 1rem;
	color:#cbd462;
}
#form .edit {
	position:absolute;
	top:15px;
	right:15px;
}
#form .edit a {
	display:block;
	padding:5px 10px;
	color:#fff;
	font-size:1.4rem;
	background:#9cb366;
}
#form .edit i {
	margin:0 0 0 .8rem;
}
.plus_url li {
	margin:15px 0 0;
}
.plus_url a {
	display:block;
	padding:10px 20px;
	color:#fff;
	background:#87776d;
}
.plus_url a:before {
	font-family:"Font Awesome 6 Brands";
	margin:0 2rem 0 0;
	width:1.25rem;
	display:inline-block;
	text-align:center;
}
.plus_url a[href^="http://twitter.com"]:before,.plus_url a[href^="https://twitter.com"]:before {
	content:"\f099";
}
.plus_url a[href^="https://www.youtube.com"]:before {
	content:"\f167";
}
.plus_url a[href^="https://www.instagram.com"]:before {
	content:"\f16d";
}
.plus_url a[href^="https://www.tumblr.com"]:before {
	content:"\f173";
}
.plus_url a[href^="https://www.patreon.com/"]:before {
	content:"\f3d9";
}
.plus_url a[href^="https://www.pinterest"]:before {
	content:"\f0d2";
}
.plus_url a[href^="https://www.facebook.com/"]:before {
	content:"\f09a";
}

/********* サイト情報 *********************************************/

#contents .content {
	margin:0 0 40px;
	padding:25px;
}
#contents .content h2,.recently .text div p:first-child {
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	margin:0;
	text-align:left;
	line-height:2.5rem;
	color:#5a483d;
}
.recently .text div p:first-child span span {
	display:block;
}
#contents .recently .text div p:nth-child(2) {
	margin:10px 0;
	height:calc(2rem*2);
	-webkit-line-clamp:2;
}
.recently .text div p {
	font-size:1.4rem;
	line-height:2rem;
}
.recently .text div p:first-child span {
	display:table-cell;
    vertical-align:middle;
	font-size:1.8rem;
	font-weight:bold;
}
a .recently {
	color:#5a483d;
	border-bottom:1px dashed #87776d;
}
a:first-child .recently {
	margin:-20px 0 0 0;
}
a:last-child .recently {
	border:0;
	margin:0 0 -20px 0;
}
#contents .content h2 span.last {
	margin:0 0 0 auto;
	font-size:1.6rem;
	font-weight:normal;
}
#contents .content h2 p {
	width:100%;
	font-size:1.6rem;
	margin:5px 0 0;
}
#contents .content h2 p i {
	margin:0 0 0 1rem;
}
#contents .content h2 img,.nobanner,.recently span img {
	margin:0 25px 0 0;
	max-width:200px;
	max-height:100px;
}
.recently span img {
	max-height:40px;
}
.nobanner {
	position:relative;
	display:inline-block;
	width:200px;
	height:40px;
	background:#ddd;
	color:#fafafa;
}
.nobanner::before {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	font-size:1.6rem;
	content:"No banner";
}
#contents .content ul,.tagcloud {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}
.series {
	margin:0 -5px;
}
.series li {
	margin:5px;
}
.tag {
	margin:0 -4px;
}
.tag li {
	margin:4px;
}
.series a,.tag a,.category a {
	padding:5px 10px;
	background:#87776d;
	color:#fff;
	font-size:1.4rem;
}
.tag a {
	background:#b6a498;
	font-size:1.2rem;
}
.tag a:before,.tagcloud a:before {
	font-family:"Font Awesome 6 Free";
	font-weight:900;
	content:"\f292";
	margin:0 .3rem 0 0;
}
#contents .text {
	display:flex;
	margin:20px 0;
	padding:20px 0;
	border-top:1px dashed #87776d;
	border-bottom:1px dashed #87776d;
}
#contents .recently .text {
	margin:0;
	border:0;
}
#contents .text p {
	margin:0;
	padding:0 20px 0 0;
}
#contents .short p,.recently_thumb {
	max-height:12rem;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:4;
	overflow:hidden;
}
.recently_thumb,.view_thumb {
	min-width:200px;
	margin:0 0 0 auto;
	padding:0;
}
.contents_nav {
	display:flex;
	align-items:center;
	margin:20px 0 0;
	padding:20px 0 0;
	border-top:1px dashed #87776d;
}
.contents_nav li {
	margin:0 20px 0 0;
}
.contents_nav li:last-child {
	margin:0 0 0 auto;
}
.tweet a,.contents_nav .edit a,.flag a,.new,.up {
	padding:6px 15px;
	color:#fff;
}
.tweet a {
	background:#70a2bf;
}
.contents_nav .edit a,.up {
	background:#9cb366;
}
.flag a,.new {
	background:#c97a87;
}
.new,.up {
	font-size:1.2rem;
	margin:0 10px 0 0;
}

/********* 通知ボード ***********************************************/

#board{width:100%;}
.board {
	display:flex;
}
.board #profile_img {
	width:250px;
	text-align:center;
	margin:0 0 0 -25px;
}
.board #profile_img .profile_img,.board #profile_img img {
	width:100px;
	height:100px;
	margin:0 auto 10px;
}
.board #profile_img span {
	display:block;
}
.board h3 {
	margin:0 0 30px;
	text-align:left;
}
ul.board_file li{display:inline; list-style:none;}
ul.board_file li img{width:30px; height:auto;}
.response{
	border:1px solid #000;
	margin:5px 0 5px 50px;
	padding:10px;
}
.recently h3 {
	text-align:left;
	margin:0 0 20px;
	border-bottom:0;
}
.board_thumb img {
	width:200px;
	height:100%;
	object-fit:cover;
}

/********* ニュース *************************************************/

#news {
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	width:950px;
	margin:-10px auto;
}
#contents #news {
	margin:25px auto 10px;
	padding:0;
}
#contents #news a {
	margin:0;
}
#news a {
	color:#5a483d;
	background:#f5efe9;
	width:32%;
	margin:10px 0;
}
.news h4,.news p {
	text-align:left;
	padding:0 20px;
	margin:0 0 20px;
}
.news p {
	font-size:1.4rem;
	margin:10px 0 5px;
}
.news h4 {
	height:calc(2.5rem*2);
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
	overflow:hidden;
}
#news:after {
	content:'';
	width:32%;
	height:1px;
}
.content h4 {
	text-align:left;
	font-size:2.2rem;
	border-bottom:1px dashed #87776d;
	margin:0 0 25px;
	padding:15px 0 25px;
}
p.news_info {
	margin:0;
	font-size:1.4rem;
}
p.news_info a {
	border-bottom:0;
	color:#5a483d;
	background:#d9e087;
	padding:5px 15px;
}
p.news_info span {
	margin:0 0 0 20px;
}

/********* エントリー ***********************************************/

#entry h2,#header h2 {
	display:none;
}
#entry .entry {
	border-bottom:1px dashed #87776d;
	margin:0 0 35px;
	padding:0 0 35px;
}
#entry .entry:last-child {
	border:0;
	margin:0;
	padding:0
}
#entry .entry h3 {
	margin:0 0 20px;
	text-align:left;
	border:0;
}
#entry .entry h3 a {
	vertical-align:middle;
}
#entry .entry h3 a.category {
	color:#5a483d;
	background:#d9e087;
	padding:5px 15px;
	margin:0 15px 0 0;
	font-size:1.4rem;
	font-weight:normal;
}
#entry .entry h3 a:active,#entry .entry h3 a:hover {
	color:#777777;
	text-decoration:none;
}
#entry .entry .contents_nav {
	border:0;
}
#entry .entry ul.information {
	margin:2px 10px 15px 10px;
	padding-top:2px;
	border-top:1px solid #CCCCCC;
	font-size:90%;
}
#entry .entry ul.information li {
	display:inline;
	margin-right:5px;
}
#entry .entry ul.link {
	margin:0;
	padding:10px;
	text-align:right;
}
#entry .entry ul.link li {
	display:inline;
	margin-left:5px;
}

#entry #entry_link h3 {
	display:none;
}
#entry #entry_link ul.entry_link {
	margin:0;
}
#entry #entry_link ul.entry_link li {
	display:inline;
	margin-right:10px;
}
#entry #entry_link ul.entry_link li.home {
	padding-right:10px;
	padding-left:10px;
	border-right:1px solid #999999;
	border-left:1px solid #999999;
}
#entry #entry_link ul.entry_link li.previous:before {
	content:"<< ";
}
#entry #entry_link ul.entry_link li.next:after {
	content:" >>";
}

/********* ユーティリティ *******************************************/

#contents_wrap {
	display:flex;
}
#contents_wrap #contents {
	width:calc(950px - 250px);
	margin:0 0 0 auto;
}
#contents_wrap .content {
	width:auto;
}
#utility {
	width:220px;
	font-size:1.4rem;
}
#utility h2 {
	display:none;
}
#utility .content {
	position:sticky;
	position:-webkit-sticky;
	top:115px;
}
#utility .utility {
	margin:0 0 20px;
	padding:0 0 20px;
	border-bottom:1px dashed #87776d;
}
#utility .utility h3 {
	font-size:1.6rem;
	font-weight:normal;
	text-align:left;
	margin:0 0 8px;
	border-bottom:0;
}
#utility a {
	display:block;
	margin:0 -10px;
	padding:3px 10px;
}
#utility a:hover {
	background:#b6a498;
	color:#fff;
}
#utility a span {
	float:right;
}

/********* ページ移動 ***********************************************/

#page_link {
	width:950px;
	margin:40px auto 0;
}
#page_link ul {
	margin:0;
	display:flex;
	justify-content:space-between;
}
#page_link ul li {
	color:#fff;
	margin:0 8px;
	padding:8px 15px;
	text-align:center;
	overflow:hidden;
}
#page_link ul li:first-child,#page_link ul li:last-child {
	width:100px;
	margin:0 auto 0 0;
}
#page_link ul li:last-child {
	margin:0 0 0 auto;
}
#page_link li a {
	display:block;
	margin:-8px -15px;
	padding:8px 15px;
	color:#fff;
	background:#b6a498;
}
#page_link ul li.order {
	background:#87776d;
}

/********* コメント *************************************************/

#comment .comment ul.information {
	margin:15px 0 0 0;
	text-align:right;
}
#comment .comment ul.information li {
	display:inline;
	margin-left:5px;
}

/********* インフォメーション ***************************************/

.translate {
	margin:0;
	text-align:right;
	font-size:1.4rem;
}
p.translate a {
	padding:6px 15px;
	border:0;
	color:#fff;
	background:#b6a498;
}
#page_jump {
	display:flex;
	justify-content:space-between;
	margin:50px -10px 10px;
}
#page_jump a {
	margin:10px;
	padding:10px 15px;
	background:#d9e087;
	flex:1;
}
#page_jump a:after {
	font-family:"Font Awesome 6 Free";
	font-weight:900;
	content:"\f107";
	float:right;
	opacity:.8;
}
#information {
	margin-bottom:30px;
}
#information ul.continue {
	margin:0;
	text-align:right;
}
#information ul.continue li {
	display:inline;
}

/********* フォーム *************************************************/

input,textarea,select,button {
	outline:none;
	width:100%;
	margin:0 0 25px 0;
	padding:10px 15px;
	border:1px solid #fff;
}
select {
	padding:11px 15px 12px;
}
input[type="file"] {
	font-size:1.2rem;
}
button {
	border:1px solid #cbd462;
	background:#cbd462;
}
button,.icon_form input,.icon_form textarea,.icon_form select {
	margin:0;
}
input:hover,textarea:hover,select:hover,input:focus-visible,textarea:focus-visible,select:focus-visible,
button:focus-visible,ul.tagit:hover, ui-widget:hover, ui-widget-content:hover, ui-corner-all:hover {
	border:1px solid #88bfc8;
}
.search p {
	margin:0;
	text-align:center;
}
.search fieldset {
	display:flex;
	width:70%;
	margin:0 auto 30px;
}
.search fieldset input {
	margin:0;
}
.search fieldset button {
	width:60px;
}
.search button i {
	margin:auto;
}
.icon_form {
	position:relative;
	background:#fff;
	margin:0 0 25px 0;
	z-index:1;
}
.icon_form input,.icon_form textarea,.icon_form select {
	padding:10px 15px 10px 65px;
	background:transparent;
}
.icon_form select {
	padding:12px 15px 12px 65px;
}
.icon_form i {
	position:absolute;
	left:1px;
	top:1px;
	padding:14px 10px 15px 10px;
	width:50px;
	color:#afa29a;
	z-index:-1;
}
.com {
	line-height:1;
	font-size:0;
}
.icon_form textarea,.com i {
	height:calc(3rem * 5);
	font-size:1.6rem;
	resize:none;
}
.com i,.icon_form input[type="file"] i {
	top:0;
	padding:15px 10px;
}
.icon_form input:focus + i,.icon_form textarea:focus + i,.icon_form select:focus + i {
	background:#d5eff3;
}
label input {
	accent-color:#afd7de;
}
.complete,.attention {
	margin:25px -25px;
	position:relative;
}
.complete h6,.attention h6 {
	margin:0 0 10px 0;
	padding:8px 25px 8px 55px;
	color:#fff;
	font-weight:normal;
	text-align:left;
	background:#9dc89b;
}
.complete h6:before,.attention h6:before {
	font-family:"Font Awesome 6 Free";
	font-weight:900;
	position:absolute;
	left:25px;
	content:"\f00c";
}
.attention h6 {
	background:#d09da5;
}
.attention h6:before {
	content:"\f071";
}
button.attention {
	background:#d09da5;
	color:#fff;
	border:1px solid #d09da5;
	font-weight:normal;
}
#tooltip {
	position:absolute;
	bottom:0;
	right:0;
}
#tooltip span i {
	position:static;
	margin:0;
	padding:14px 15px 17px;
	width:auto;
	color:#d09da5;
}
.tooltip {
	position:relative;
	z-index:1;
	color:#d09da5;
}
.tooltip::before {
	position:absolute;
	bottom:30px;
	left:0;
	background:#87776d;
	border-radius:5px;
	color:#fff;
	font-size:1.4rem;
	content:attr(aria-label);
	white-space:pre;
	padding:1rem;
	text-transform:none;
	transition:all 0.5s ease;
	opacity:0;
	pointer-events:none;
}
#tooltip .tooltip::before {
	left:auto;
	right:0;
}
.tooltip:focus::before,.tooltip:focus::after,.tooltip:hover::before,.tooltip:hover::after {
	opacity:1;
	transition:all 0.75s ease;
}
blockquote p {
	margin:0;
}

/********* 入力ページ ***********************************************/

#form {
	width:500px;
	margin:0 auto;
}
#form label input {
	width:auto;
	margin:0 10px 20px 0;
}
#form button {
	width:100%;
	margin:10px 0 0;
	padding:10px;
}
#form .link_btn {
	margin:40px 0;
}
#form .link_btn ul {
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	font-size:1.8rem;
}
#form .link_btn ul li {
	width:48%;
}
#form .link_btn a {
	display:block;
	margin:0;
	color:#fff;
	background:#e28f33;
	text-align:center;
	padding:10px 15px;
}
#form .link_btn span {
	display:block;
	font-size:1.4rem;
}
#form .link_btn ul li:first-child button {
	background:#e8e39a;
	border:1px solid #e8e39a;
}
#form .postkey {
	margin:0;
	font-size:1.4rem;
	display:flex;
	justify-content:flex-start;
}
#form .postkey li {
	width:auto;
	padding:9px 0;
}
#form .postkey li:first-child {
	margin:0 20px 0 0;
	padding:0;
	width:100px;
}
#form p {
	margin:0 0 30px;
	text-align:center;
}
#form dl {
	margin:0 0 25px;
}
#form dl dd {
	margin:10px 0 20px 20px;
	padding:10px 15px;
	background:#fff;
}
#form dl p {
	margin:0;
	text-align:left;
}
#form .form a {
	margin:0;
}
.form {
	position:relative;
}
.user_menu {
	margin:0;
}
.user_menu a span {
	display:block;
	margin:10px 0;
}
.user_menu a i {
	font-size:2.5rem;
}
.user_menu a i:last-child {
	margin:0;
}
.user_menu ul li {
	margin:0 0 30px;
}
.user_menu .attention_link {
	margin:40px 0 0;
}
.user_menu .attention_link li {
	margin:0;
}

/********* タグクラウド ************************************************/

.tagcloud {
	margin:-8px;
}
.tagcloud li {
}
.tagcloud a {
	margin:8px;
	padding:5px 10px;
	color:#fff;
	background:#b6a498;
}
.tagcloud span {
	margin:0 0 0 8px;
	padding:0 6px;
	color:#87776d;
	background:#f5efe9;
}

ul.tagit {
	margin:0 0 25px 0;
	padding:0 8px 10px;
    overflow:auto;
    margin-left:inherit; /* usually we don't want the regular ul margins. */
    margin-right:inherit;
	font-family:'Roboto','Kosugi Maru',sans-serif!important;
	line-height:2.5rem!important;
	letter-spacing:.1rem!important;
	border:1px solid #fff;
}
ul.tagit li {
    display:block;
    float:left;
    margin:10px 8px 0 0;
}
ul.tagit li.tagit-choice {    
    position:relative;
    line-height:inherit;
}
input.tagit-hidden-field {
    display:none;
}
ul.tagit li.tagit-choice-read-only { 
} 

ul.tagit li.tagit-choice-editable { 
} 

ul.tagit li.tagit-new {
}

ul.tagit li.tagit-choice a.tagit-label {
    cursor:pointer;
    text-decoration:none;
}
ul.tagit li.tagit-choice .tagit-close {
    cursor:pointer;
    position:absolute;
    right:.1em;
    top:50%;
    margin-top:-8px;
    line-height:17px;
}

/* used for some custom themes that don't need image icons */
ul.tagit li.tagit-choice .tagit-close .text-icon {
    display:none;
}

ul.tagit li.tagit-choice input {
    display:block;
    float:left;
}
ul.tagit input[type="text"] {
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
    border:none;
    margin:0;
    padding:0;
    width:inherit;
    background-color:inherit;
    outline:none;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	font-weight:normal!important;
	color:#5a483d!important;
	font-size:1.4rem!important;
	background:#d5eff3!important;
	padding:2px 20px 2px 8px!important;
}
.ui-menu {
	overflow:auto!important;
	max-height:300px!important;
	color:#5a483d!important;
	font-size:1.4rem!important;
	font-family:'Roboto','Kosugi Maru',sans-serif!important;
	line-height:2.5rem!important;
	letter-spacing:.1rem!important;
}
.ui-widget-content {
	border:0!important;
}
.ui-corner-all {
	border-radius:0!important;
	border:0!important;
}
.ui-icon {
	margin:-9px 2px;
}
.ui-menu-item a {
	margin:0!important;
	padding:6px 10px!important;
	color:#5a483d!important;
	border:0!important;
}
.ui-state-focus {
	background:#f0f0f0!important;
}
.ui-autocomplete-input {
	color:#5a483d!important;
	font-size:1.4rem!important;
	font-family:'Roboto','Kosugi Maru',sans-serif!important;
	line-height:2.5rem!important;
	letter-spacing:.1rem!important;
}

/********* ネタバレ *************************************************/

.hidearea {
	color:#EEEEEE;
}

/********* Not found ************************************************/

.notfound {
	margin:0;
	position:relative;
	height:100%;
}
.notfound_text {
	position:absolute;
	background:#f5efe9;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	padding:50px;
	white-space:nowrap;
}
.notfound_text p {
	font-size:5rem;
	font-weight:bold;
	line-height:6rem;
}
.notfound_text p:first-child {
	font-size:8rem;
}
.notfound_text p:last-child {
	margin:20px 0 0 0;
	font-size:1.6rem;
	font-weight:normal;
}

/********* 個別指定 *************************************************/

#page_link ul.page_link {
	margin:0 0 20px 0;
}
#page_link ul.page_link li {
	display:inline;
	margin-right:10px;
}
#page_link ul.page_link li.home {
	padding-right:10px;
	padding-left:10px;
	border-right:1px solid #999999;
	border-left:1px solid #999999;
}
#page_link ul.page_link li.previous:before {
	content:"<< ";
}
#page_link ul.page_link li.next:after {
	content:" >>";
}
input,select,label,textarea,button,#page_top,#page_bottom,.tooltip,#menu-navibtn {
	cursor:pointer;
}
::placeholder {
	color:#afa29a;
}
.complete h6:before,.attention h6:before,button i,#contents .content h2 i,.contents_nav i,.recently i,
.menu-child i,#profile_img p i,.translate i,#footer i,.notfound_text i {
	margin:0 .8rem 0 0;
	opacity:.8;
}
a,a img,input,textarea,select,button,i,label,.indicator,nav,.menu-parent:hover .menu-child,.nobanner,.profile_img {
	transition:.5s;
}
.none,.toggle {
	display:none;
}
a:hover img,a:hover .nobanner,a:hover .profile_img {
	opacity:.6;
}
.center {
	text-align:center;
}
