@charset "utf-8";
/*==========================================================
.■skin-gallery.css

description : A css for tegalog(https://www.nishishi.com/cgi/tegalog/) sitemap mode based on beauter.css(https://beauter.io/) and System UIcon(https://www.systemuicons.com)
author : aouma(https://nov.akikaze.net/)
lastupdate :2023-12-21T04:22:10+09:00
========================================================= */
/*---------------------------------------------------------
.★色設定 
----------------------------------------------------------*/
:root {
    --basecolor1: #d1d1d1;/* ecru */
    --accentcolor1: #ff6699;/* ash pink */
    --accentcolor2: #999;/* nightblue */
    --wordcolor : #1a1a1a;
}
/*---------------------------------------------------------
.★全体の指定
----------------------------------------------------------*/
html {
    scroll-behavior: smooth;
    font-size: 62.5%; /*hack*/
    margin : 0;
    padding : 0;
}

body {
    background-color   : var(--basecolor1);
   

font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

color : var(--accentcolor1) ;

font-size : 1.1rem ;

a:link, a:visited {
    color : var(--accentcolor2);
}

a:hover {
    color : var(--accentcolor1) ;
    text-decoration : none ;
}
/*---------------------------------------------------------
.★ヘッダー
----------------------------------------------------------*/

header { 
    text-align : center ;
    padding-top: 4%;
    padding-bottom: 4%;
}

h1 {
    font-size : 3.2rem ;
    color : var(--accentcolor1);
    letter-spacing : 3px;
}

h1 > a {
    text-decoration : none ;
}
/*---------------------------------------------------------
.★検索ボックス
----------------------------------------------------------*/
.searcharea {
    margin-bottom : 3.2rem ;
}

.searchbox {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

.searchbox input.queryinput {
    box-sizing : border-box ;
    height: 45px;
    width : calc(280px - 50px);
    padding: 2px 15px 2px 30px;
    border-radius: 3px 0px 0px 3px;
    background-image : url('data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%20width%3D%2221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22black%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%228.5%22%20cy%3D%228.5%22%20r%3D%225%22%2F%3E%3Cpath%20d%3D%22m17.571%2017.5-5.571-5.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    background-repeat : no-repeat ;
    background-position : 6px ;
    border : 1px solid #dcdcdc;
}

.searchbox input.queryinput:focus {
    border: 1px solid var(--accentcolor1);
    outline : none ;
}

.searchbox span.submitcover input.submitbutton{
    box-sizing : border-box ;
    min-width: 50px;
    height: 46px;
    border-radius : 0 3px 3px 0 ;
    background-color: var(--basecolor1);
    color : #231f21;
    cursor: pointer;
    text-align : center;
    padding : 0 ;
    margin : 0 ;
}

.searcharea p {
  display : block !important ;
  text-align : center;
}

ul.searchoptions {
    list-style-type : none;
    display : block ;
    text-align : center ;
    margin : 0 ;
    padding : 0 ;
}

ul.searchoptions li {
    margin : 0; padding : 0;
}

/*---------------------------------------------------------
.※ハッシュタグプルダウンメニュー用
----------------------------------------------------------*/

form.hashtagpullbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
    overflow : hidden ;
}

form.hashtagpullbox select.hashtagpull {
    min-width : 230px ;
    height: 45px;
    padding: 5px 15px 5px 30px;
    border-radius: 3px 0px 0px 3px;
    box-sizing: border-box;
    font-size: 1.2rem;
    color : var(--accentcolor1);
    outline: none;
    background-image : url('data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%20width%3D%2221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m13.5%205.5-2%2010%22%2F%3E%3Cpath%20d%3D%22m9.5%205.5-2%2010%22%2F%3E%3Cpath%20d%3D%22m6.5%208.5h9%22%2F%3E%3Cpath%20d%3D%22m5.5%2012.5h9%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    background-repeat : no-repeat ;
    background-position : 6px ;
    background-color : transparent ;
    border : 1px solid #dcdcdc;
    overflow : visible ;
}

select.hashtagpull:focus {
    border: 2px solid var(--accentcolor1);
    outline : none ;
}

form.hashtagpullbox .submitcover input.hashtagpullsubmit {
    height: 45px;
    min-width : 40px ;
    border-radius : 0 3px 3px 0 ;
    background-color: var(--accentcolor2);
    color : #231f21 ;
    cursor: pointer;
}

.dateseparator {
    display : none ;
}

/*---------------------------------------------------------
.★カテゴリ、タグ選択
----------------------------------------------------------*/

div.categoryandtag {
    margin : 0 3.6rem ;
    padding : 8px 12px;
    border-left : 4px solid var(--accentcolor2) !important;
    background : #231f21;
}

div.categoryandtag dl dt {
    color : var(--accentcolor2) ;
    font-weight : 600 ;
}

div.categoryandtag dl dd {
    margin-bottom : 1.6rem ;
}

ul.cattree {
    margin : 0 ;
    padding : 0;
}

li.catbranch{
    display : inline ;
    margin-right : 1.2rem;
}

.depth2 { display:none; }

/*---------------------------------------------------------
.★メイン部分
----------------------------------------------------------*/
main {
    margin : 4.8rem auto 1.6rem;
    max-width: 100% ;
    padding : 0 4% 4%;
}
/*---------------------------------------------------------
.★カード表示部分
----------------------------------------------------------*/
.card
{
    -webkit-transition: .3s;
         -o-transition: .3s;
            transition: .3s;

    border-radius: 5px;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
    background-color : #231f21;
    position : relative ;
}

.card:hover
{
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
            box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
}

.card .-content
{
    padding: 2px 16px 40px;
}

.articlelist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    margin-bottom : 3rem;
    gap: min(2vw,1rem);
}

article {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
}

.count {
    padding-right : 5px ;
    padding-left : 5px ;
    border-radius : 100%;
    background : #e06c93 ;
    color : #e6e6e6 ;
}

p.postimageinfo {
    color : #e6e6e6;
    font-size : 1.3rem ;
    text-align : left ;
    border-top : 1px dashed #dcdcdc ;
    padding-top : 0.85rem;
}

p.posttext {
    margin-bottom : 4.8rem ;
    font-size : 1.6rem ;
    color : #e6e6e6;

}

p.toPost {
    text-align : center ;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
}

a.button {
    font-family: sans-serif;
    font-size: 1.2rem;
    line-height: 1.15;
    overflow : visible ;
    text-transform: none;
    font-weight: 600;
    line-height: 1.2;
    display: inline-block;
    padding: 10px 30px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: .1rem;
    text-transform: uppercase;
    color: #555;
    border: 1px solid #bbb;
    border-radius: 4px;
    background-color: #fefefe;
}

a.button:hover {
    background-color : var(--accentcolor1);
    color : #fff ;
}
/*----------------------------------------------------------
.★レスポンシブ
------------------------------------------------------------ */
@media (max-width:599px) {
  .articlelist{
    gap: 1rem;
  }
}
/*---------------------------------------------------------
.★画像リスト
----------------------------------------------------------*/
img {
    background-repeat : no-repeat ;
    background-size : cover;
    max-width : 100%;
    vertical-align: text-bottom;
    box-sizing: border-box;
    display : inline ;
}

a.imagelink {
    margin: 0 0;
    display: block;
    position : relative;
    overflow : hidden ;
}

img.embeddedimage {
    object-fit: cover;
    aspect-ratio : 8 / 5;
    width: 100%;
    height : 100% ;
    border-radius: 5px 5px 0 0;
}

a.imagelink img:hover {
    opacity:0.5;
    transition:0.3s;
}

figure{
	display: block;
	margin: 0 0;
	padding: 0 0;
}

figure.nsfw{
    width: 100%;
}

img.nsfw {
    filter: blur(4px);
}

a.nsfw::before{
    content: 'Not Safe For Work の画像を見る';
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index : 3;
    padding: 1em 1em 1em 24px ;
    display : block;
    background-color : var(--accentcolor2);
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%20width%3D%2221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22pink%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20transform%3D%22translate(7%206)%22%3E%3Cpath%20d%3D%22m.5%208.5%204-4-4-4%22%2F%3E%3Cpath%20d%3D%22m4.5%208.5%204-4-4-4%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    background-repeat : no-repeat ;
    background-position : left center;
    color : #f0f0f0;
    font-weight : 700;
}

figcaption{
    display: none;
}

/* ---------------------------------------------------------------------
.★ページ最下部のナビゲーション
------------------------------------------------------------------------*/
.pagenums {
    margin : 2.4rem 0 ;
    text-align : center ;
}

.pagenums a {
    font-size: 2.4rem;
    font-weight: bold;
    height: 30px;
    width: 30px;
    margin: 2px;
    padding:10px;
    text-decoration: none;
    border: 1px solid #d5d5d5;
}

.pagenums a:hover,
.pagenums a:active
{
    background: #efefef;
    color : var(--wordcolor);
}

.pagenums .pagenumhere {
    background : var(--accentcolor1) ;
    color : #fff ;
}

p.backto{
    text-align: center;
    position: relative;
    padding: 0.25em 1em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
    width : 32ch ;
    margin : 24px auto ;
}

p.backto:before, p.backto:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: black;
}

p.backto:before {
  left: 7px;
}

p.backto:after {
  right: 7px;
}

footer {
    margin : 1.6rem 0 ;
    font-size : 1.4rem ;
    text-align : center ;
}

/*---------------------------------------------------------
.★ページトップへ戻るボタン
----------------------------------------------------------*/
.pagetop {
    position: fixed;
    right: 24px;
    bottom: 0px;
    z-index : 2;
    opacity : 0.8;
}

.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  background-color: var(--basecolor1);
  color : #231f21 !important;
  transition: 0.3s;
}

.pagetop a::after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: rotate(45deg);
    transition: 0.3s;
}

.pagetop span {
    width: 0px;
    height: 0px;
    visibility: hidden;
}

.pagetop a:hover {
    background : var(--accentcolor1) ;
}

.pagetop a:hover::after {
    border-top: 3px solid #f2f2f2;
    border-left: 3px solid #f2f2f2;
    transform: translateY(-5px) rotate(45deg);
}

/* End Of File */
