@charset "UTF-8";

body{
	width: 100%;
}


/* ↓ヘッダー */

header {
	padding: 5rem 5rem 0;
}


header h2{
	font-size: 1.8rem;
	line-height: 3rem;
	letter-spacing: 0.2rem;
}



/* ↓記事の表示 */

article,
.nodata,
.nolist
{
	border-radius:0.5rem;
}

article .comment,
.nodata,
.nolist{
	padding: 3.5rem 4rem;
}


article .comment small a.imagelink,
article .comment a.imagelink.nsfw,
figure.nsfw{
	float: left;
	margin: 1.5rem 3rem 0 0;
}

article .comment small a.imagelink{
	max-width: 50%;
	height: auto;
	margin-right: 3rem;
}

article .comment figure.nsfw a.imagelink,
article .comment a.imagelink{
	float: none;
	margin: 0;
}

article .comment a.imagelink.nsfw{
	width: 20rem;
	height: 20rem;
}

article .comment a.imagelink.nsfw::before{
	font-size: 6rem;
}

article .comment figure.nsfw a.imagelink.nsfw::before{
	padding-bottom: 3rem;
}

/* ↓キャプションをワンクッションに使いたくないという方はここから消す */
.nsfw figcaption{
	transform: translateY(3rem);
}
/* ↑ここまで消す */



input.passkeyinput,
input.passkeysubmit{
	line-height: 3rem;
	padding: 0 1rem;
	letter-spacing: 0.1rem;
	border-radius: 0.2rem;
}

input.passkeysubmit{
	margin-left: 0.5rem;
	font-size: 0.9em;
}

.oneloginfo{
	padding: 0 2.5rem 1rem;
	line-height: 3rem;
	font-size: 1.2rem;
	letter-spacing: 0.1rem;
}

.categories{
	letter-spacing: 0.1rem;
}

.oneloginfo span{
	margin: 0 0.3rem;
}

iframe.embeddedmovie{
	float: left;
	margin: 1rem 2rem 0.5rem 0;
}



/* ↓ページネーション */



.pagenums a{
	width: 2.6rem;
	height: 2.6rem;
	line-height: 2.6rem;
	/* font-size: 1.8rem; */
}



a#totop {
    display: block;
    width: 50px;
    height: 50px;
    z-index: 999;
    background: #fffffe;
    border: solid #272343 1.5px;
    border-radius: 50%;
    position: fixed;
    top: auto;
    bottom: 30px;
    right: 30px;
}

a#totop:before {
    top: 20px;
    border-top: 2px solid #272343;
    border-left: 2px solid #272343;
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: .3s;
    transition: .3s;
}

a#totop:hover:before {
    top: 18px;
}