@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 {
	--color-base: #fff8f5;/* 背景色 */
	--color-main: #525992; /* アクセント部分 */
	--color-accent: #4a9eff; /* 緑の部分 */
	--color-text: #0b0c1d; /* 文字の色 */
	--color-marker: #c7e1ff; /* 文字のマーカー部分の色 */
	--color-light: #d4ced3;
	--font-primary: 'Noto Sans JP', Meiryo, メイリオ, sans-serif; /* 日本語フォント */
	--font-alphanumeric: 'Noto Sans JP','Outfit', sans-serif; /* 英数フォント */
	--font-icon: 'Font Awesome 6 Free'; /* アイコンフォント */
}

@media screen and (min-width: 769px) {
	:root {
		--margin-base: 50px;
		--border-radius: 20px;
	}

}

@media screen and (max-width: 768px) {
	:root {
		--margin-base: 25px;
		--border-radius: 10px;
	}

}

/*---------------------------------------------------------
.★全体の指定
----------------------------------------------------------*/
html, body {
  margin: 0;
  padding: 0;
}

html{
	scroll-behavior: smooth;
}

body{
	margin: 0;
	position: relative;
	width:100%;
	min-height:100dvh;
	display: flex;
	flex-flow: column;
	background-color: #d4ced3;
	color: var(--color-text);
    font-size: 17px;
    line-height: 1.8 ;
    letter-spacing: 1px;
	font-family: 'Noto Sans JP', sans-serif;
	animation: fadein 1s ease-out;
}

  @media screen and (max-width: 768px) {
  body {
  font-size: 15px;
  line-height: 1.8 ;
  letter-spacing: 1px;}
  }

a:link, a:visited {
    color : #4a9eff;
    text-decoration: none;
}

a:hover {
    color : #be8fd8;
    text-decoration : none ;
}
/*---------------------------------------------------------
.★ヘッダー
----------------------------------------------------------*/

.page-header {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-image:
    linear-gradient(rgba(11, 12, 29, 0.3), rgba(11, 12, 29, 0.3)),
	url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJUlEQVR4AUyKUQoAAAxBbfe/84YPKcLLAjg6EpgsFgGG5WcDPx8AAP//NZnv5AAAAAZJREFUAwBXdgIJ+y6SsQAAAABJRU5ErkJggg=="),
	url('https://momoirohuman.com/img/header.webp');
  background-size: cover, auto, cover;
  background-repeat: no-repeat, repeat, no-repeat;
  background-position: center, center, center;
  will-change: transform;
  z-index: 0;
}

.page-header-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.page-header-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 29, 0.5);
  z-index: 1;
}

.page-header-text > * {
  position: relative;
  z-index: 2;
}

.page-header-text span {
  font-size: 0.8rem;
}

.page-header-text h1 {
  font-family: 'Montserrat','Noto Sans JP';
  font-weight: 600;
  font-size: 1.8rem;
  margin: 0 auto;

}

/* スマホ対応 */
@media (max-width: 768px) {
  .page-header {
    height: 150px;
  }
  .page-header-bg {
    height: 150%;
  }
}


/*---------------------------------------------------------
.★カテゴリ、タグ選択
----------------------------------------------------------*/

ul.cattree {
    list-style: none;
    flex-wrap: wrap;
    display: flex;
	gap: 0 1em;
    margin : 0;
    padding : 0;
}

ul.hashtaglist{
    list-style: none;
    flex-wrap: wrap;
    display: flex;
	gap: 0 1em;
    margin : 0;
    padding : 0;
}


h3{
	display: flex;
	align-items: center;
	gap: 0 0.4em;
	margin-bottom: 0.6em;
	font-family: var(--font-alphanumeric);
	color: var(--color-main);
	font-weight: bold;
}

h3::after{
	content:'';
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--color-main);
}


/*---------------------------------------------------------
.★メイン部分
----------------------------------------------------------*/
main {
    margin : 5rem auto 1.6rem;
    max-width: 100% ;
    padding : 0 4% 4%;
}


/* スクロールバーの設定 */

::-webkit-scrollbar {
  background: #14162b;
  width: 5.5px;
}

::-webkit-scrollbar-track {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: #7f80ea;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5e60d0;
}

/* ---ここまで--- */


/*---------------------------------------------------------
.★カード表示部分
----------------------------------------------------------*/
h4 {
  color: #2a2f55;
  font-weight: bold;
  text-align: center;
  padding: 0 auto;
}

.card
{
    border-radius: 10px;
    overflow: hidden;
    background-color : #fff8f5;
    position : relative ;
    -webkit-box-shadow: 1px rgba(82, 89, 146, .2);
            box-shadow: 1px rgba(82, 89, 146, .2);
}

.card .-content
{
    padding: 2px 16px 40px;
}

.articlelist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    margin-bottom : 2rem;
    gap: min(2vw,1rem);
}

article {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
}

p.postimageinfo {
    color : #999;
    font-size : 14px ;
    text-align : left ;
    border-top : 1px solid #dcdcdc ;
    padding-top : 0.85rem;
}

p.posttext {
    margin-bottom : 4.8rem ;
    font-size: 16px;
}

  @media screen and (max-width: 768px) 
  {
    p.posttext {
    font-size: 14px;
    }
}

p.toPost {
    text-align : center ;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
}

a.button {
    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;
    border-radius: 4px;
    color: #d4ced3;
    background-color: #525992;
}

a.button:hover {
    color: #fff;
    background-color : #4a9eff;
}
/*----------------------------------------------------------
.★レスポンシブ
------------------------------------------------------------ */
@media (max-width:599px) {
  .articlelist{
    gap: 0.3rem;
  }
}
/*---------------------------------------------------------
.★画像リスト
----------------------------------------------------------*/
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: 0;
    display: block;
}

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(5px);
    border-radius: 0; 
}

a.nsfw::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(12, 8, 26, 0.6);
  z-index: 2;
  border-radius: 10px 10px 0 0;
}

a.nsfw::before{
  content: '⚠ 注意';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: rgba(12, 8, 26, 0.6);
  padding: 0.3em 0.6em;
  border-radius: 6px;
  text-shadow: 0 0 5px rgba(12, 8, 26, 0.6);
}

figcaption{
    display: none;
}

/* ---------------------------------------------------------------------
.★ページ最下部のナビゲーション
------------------------------------------------------------------------*/
.pagenums{
	margin-top: var(--margin-base);
	margin-bottom: 30px;
	font-family: var(--font-alphanumeric);
	text-align: center;
}

.pagenums .pagenumlink{
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	border-radius: 50%;
}

.pagenums .pagenumlink.pagenumhere{
	background-color: var(--color-accent);
	color: var(--color-base);
}

.pagenumhere{
	pointer-events: none;
}

footer{
	margin-bottom: var(--margin-base);
	text-align: center;
	line-height: 1;
	color: var(--color-main);
}

/*---------------------------------------------------------
.★ページトップへ戻るボタン
----------------------------------------------------------*/
.to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: #be8fd8;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
  transition: all 0.3s ease;
}

a.to-top {
  color: #fff;
}

.to-top:hover {
  transform: translateY(-5px);
  background: #d9a4ee;
  color: #be8fd8;
}


/* End Of File */


/*------------------------------------------------------------
  ヘッダーメニュー
------------------------------------------------------------*/
header {
  background-color: #14162b;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ハンバーガー部分 */
.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.hamburger.colorchange {
  background-color: #0b0c1d;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.2s;
  -o-transition: 0.4s;
}

.hamburger._active.colorchange {
  background-color: transparent;
}

.hamburger__line {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}

.hamburger__line,
.hamburger__line::before,
.hamburger__line::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fcf7fb;
  position: absolute;
  left: 50%;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

/* 通常状態 */
.hamburger__line::before {
  top: -8px;
}

.hamburger__line::after {
  bottom: -8px;
}

/* アクティブ状態（バツ印） */
.hamburger._active .hamburger__line {
  background: transparent;
}

.hamburger._active .hamburger__line::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger._active .hamburger__line::after {
  bottom: 0;
  transform: translateX(-50%) rotate(-45deg);
}

@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

/* グローバルナビ */
.globalnav {
  font-family: "Quicksand", "Josefin Sans", "Kosugi", 'cursive';
  width: 100%;
  top: 0;
  height: 80px;
}

.globalnav__main {
  font-size: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: center;
  height: 100%;
  max-width: 1025px;
  margin: 0 auto;
  padding: 0;
}

.globalnav__item {
  height: 100%;
  position: relative;
  color: #fcf7fb;
  text-align: center;
  list-style: none;
}

.globalnav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  background-color: #14162b;
  transition: 0.3s;
  color: #fcf7fb;
  font-size: 1em;
  font-weight: 400;
  box-sizing: border-box;
  border-left: 2px solid transparent;
}

.globalnav__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #be8fd8;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.globalnav__item a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.globalnav__item a:hover {
  background-color: #2a2f55;
  color: #be8fd8;
}

.globalnav__child {
  font-size: 0.9rem;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1c1e35;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
}

.globalnav__item._has-child:hover .globalnav__child {
  visibility: visible;
  opacity: 1;
}

.globalnav__child li a {
  font-weight: bold;
  display: flex;
  color: #ccc;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.globalnav__child li a::after {
  content: none;
}

.globalnav__child li a:hover {
  background-color: #2a2f55;
  color: #4a9eff;
  border-left: #4a9eff solid 10px;
}

/* スマホ・タブレット表示 */
@media screen and (max-width: 768px) {
  .globalnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(20, 22, 43, 0.95);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
  }
  
  .globalnav._active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .globalnav__main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: auto;
  }
  
  .globalnav__item {
    display: block;
    width: 100%;
    margin-bottom: 0;
    position: relative;
  }
  
  .globalnav__item a {
    display: block;
    background: none;
    color: #fcf7fb;
    font-size: 1em;
    padding: 12px 15px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
  }
  
  .globalnav__item a:hover {
    background: #2a2f55;
    opacity: 0.5;
  }
  
  /* PC版の::after要素をリセット */
  .globalnav__item a::after {
    display: none;
  }
  
  /* サブメニューのスタイル */
  .globalnav__item._has-child .globalnav__child {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .globalnav__item._has-child .globalnav__child.active {
    display: block;
    max-height: 300px;
  }
  
  .globalnav__child {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .globalnav__child li {
    display: block;
    width: 100%;
  }
  
  .globalnav__child li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.9em;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    box-sizing: border-box;
    height: auto;
    min-height: 40px;
  }
  
  .globalnav__child li a:hover {
    background: #2a2f55;
    opacity: 0.5;
    color: #4a9eff;
  }
  
  .globalnav__child li:last-child a {
    border-bottom: none;
  }
  
  /* PC版の::after要素をリセット */
  .globalnav__child li a::after {
    display: none;
  }
}

/* ---ここまで--- */