@charset "utf-8";
/* CSS Document */

/*==================================================
ギャラリーのためのcss
===================================*/

/* ILLUST
=============================================*/
ul.pict-illustcont {
	display: flex;
	flex-wrap: wrap;
}
/* 幅640px サムネイルが80pxの場合 */
li.pict-illustbox {
	padding: 0;
    margin: 0 8px 8px 0;
}

.pict-illustbox img {
	width: 100%;
	height: auto;
	border: 1px solid #ccc;
}

/* COMIC
=============================================*/
ul.pict-comiccont {
	display: flex;
	flex-wrap: wrap;
}
/* 幅640px サムネイルが150pxの場合 */
li.pict-comicbox {
	padding: 0;
	margin: 0 8px 20px 0;
}
.pict-comicbox img {
	width: 100%;
    height: auto;
	border: 1px solid #ccc;
}
.pict-comictitle {
	color: #333333;
	font-size: 10.5px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	letter-spacing: 0.01em;
	padding: 10px 0 2px;
}
.pict-comictext {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 10px;
	letter-spacing: 0.08em;
	color: #999999;
}
ul.log {
    width: 100%;
    margin: 0;
    padding: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	letter-spacing: 0.1em;
    display: flex;
    flex-wrap: wrap;
}
.log li {
    margin: 0;
	padding: 0 10px 0 0;
    text-align: left;
    list-style: none;
    display: inline-block;
}
.log li::after{
    content: "/";
    padding-left: 10px; /* li要素のwidthと調整が必要 */
    color: #888;
}
.log li a {
	color: #333;
}
ul.gift {
    width: 100%;
    margin: 0;
    padding: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	letter-spacing: 0.1em;
    display: flex;
    flex-wrap: wrap;
}
.gift li {
    margin: 0;
	padding: 0 10px 0 0;
    text-align: left;
    list-style: none;
    display: inline-block;
}
.gift li::after {
    /*content: "/";*/
    padding-left: 10px; /* li要素のwidthと調整が必要 */
    color: #888;
}
.gift li a {
	color: #c18009;
}
.special-arrow {
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #c18009;
	vertical-align: middle;
	text-decoration: none;
	font-size: 14px;
}
.special-arrow::before,
.special-arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.special-data::before{
	width: 12px;
	height: 12px;
	-webkit-border-radius: 25%;
	border-radius: 25%;
	background: #c18009;
}
.special-data::after{
	left: 3px;
	width: 3px;
	height: 3px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



/*=============================================
横幅が1280px以下になった際の指定
=============================================*/
@media only screen and (max-width: 1280px) {

/* ILLUST
=============================================*/
li.pict-illustbox {
	padding: 0;
    margin: 0 6px 6px 0;
}


/* COMIC
=============================================*/
li.pict-comicbox {
	padding: 0;
	margin: 0 10px 20px 0;
}
.pict-comictitle {
	font-size: 12px;
}
.pict-comictext {
	font-size: 12px;
	letter-spacing: 0em;
}
}


/*=============================================
横幅が540px以下になった際の指定
=============================================*/
@media only screen and (max-width: 540px) {
li.pict-comicbox {
    padding: 0;
    margin: 0 15px 20px 0;
    width: 44.3%;
}
/*li.pict-comicbox:nth-child(2n) {
 	margin: 0 0 20px 0;
}*/
}