﻿@charset "utf-8";

/*
本スキンのクレジット表示（削除不可）
Template Name: Fukidasi Skin
Author: ASA
Version: 1.0.0
License URI: https://oshaten10.com/
Powered by てがろぐ https://www.nishishi.com/cgi/tegalog/
*/

/* -----------------------------------------------------------------------
reset
---------------------------------------------------------------------- */
html {
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
}

* {
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
}

*,
::before,
::after {
    box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* -----------------------------------------------------------------------
page design
---------------------------------------------------------------------- */
body {
    font-family: "Helvetica Neue", "Poppins", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: .05em;
    text-align: justify;
    color: var(--color-text);
    background-color: var(--color-pale);
}

/* parts-------------------- */
a:link,
a:visited {
    color: var(--color-accent);
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

a:hover {
    color: var(--color-text);
}

a img {
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

a img:hover {
    opacity: 0.5;
    /* マウスホバー時に半透明に */
}

ul,
ol {
    padding-left: revert;
}

h2,
h3 {
    line-height: 1;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

h3 {
    font-size: 14px;
    margin-bottom: 14px;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: top;
}

/* スクロールバー-------------------- */
/* スクロールバーの幅 */
::-webkit-scrollbar {
    width: 10px;
}

/* スクロールバー全体の背景 */
::-webkit-scrollbar-track {
    background: var(--color-mgrey);
}

/* スクロールバーの動く部分 */
::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border: none;
}

/* -----------------------------------------------------------------------
外側(ページ全体の生成用)の装飾（skin-cover.html）
---------------------------------------------------------------------- */
/* layout-------------------- */

.wrap {
    max-width: 640px;
    margin: 0 auto;
    background-color: var(--color-bg);
}

.cnt,
.post {
    width: 100%;
}

.cnt {
    position: relative;/* gnav・backtotop位置調整用 */
    padding: 0 24px;
}

/* header-------------------- */
header {
    max-width: 640px;
    margin: 0 auto;
    padding: 8px 24px;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1.username {
    font-size: 24px;
    font-weight: 700;
}

h1.username a {
    text-decoration: none;
    color: var(--color-wh);
}

header .admin a {
    display: block;
    width: 48px;
    height: 48px;
    background-size: 50%;
    background-position: center center;
    cursor: pointer;
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
    background-image: url(../_img/icn_admin_wh.png);
}

/* ナビ */
.gnav-wrap {
    position: absolute;
    top: 0;
    left: -80px;
    z-index: 1;
    height: 100%;
}

.gnav {
    position: sticky;
    top: 100px;
}

.gnav ul.menu {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.gnav ul.menu li a,
.gnav ul.menu li label {
    display: block;
    width: 40px;
    height: 40px;
    background-size: 50%;
    background-position: center center;
    border-radius: 999px;
    background-color: var(--color-wh);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

/* ナビアイコン */
.gnav ul.menu li.search label {
    background-image: url(../_img/icn_search_cl.png);
}

.gnav ul.menu li.search label:hover{
    background-image: url(../_img/icn_search_bk.png);
}

.gnav ul.menu li.cate label {
    background-image: url(../_img/icn_cate_cl.png);
}

.gnav ul.menu li.cate label:hover {
    background-image: url(../_img/icn_cate_bk.png);
}

.gnav ul.menu li.tag label {
    background-image: url(../_img/icn_tag_cl.png);
}

.gnav ul.menu li.tag label:hover{
    background-image: url(../_img/icn_tag_bk.png);
}

.gnav ul.menu li.add label {
    width: 60px;
    height: 60px;
    background-image: url(../_img/icn_talk_wh.png);
    background-color: var(--color-accent);
    border: 4px solid var(--color-wh);
    border-radius: 999px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
}

.gnav ul.menu li.add label:hover {
    background-color: var(--color-text);
}

/* ポップアップ */
.gnav input {
    display: none;
}

/* ポップアップwindow部分 */
.gnav .popup {
    visibility: hidden;
    position: fixed;
    width: 50%;
    max-height: calc(100vh - 104px);
    overflow: scroll;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    min-width: 560px;
    height: calc(100vh - 104px);
}

.gnav .popup::-webkit-scrollbar {
    display: none;
}

/* オーバーレイの背景部分 */
.gnav .popup::after {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: calc(100dvh + 200px);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
}

/* ウィンドウ部分 */
.gnav .popup .window {
    padding: 24px;
    background-color: var(--color-wh);
    border-radius: 16px;
    position: relative;
    /* z-index用 */
    z-index: 9999;
    opacity: 0;
    overflow: scroll;
    min-width: 560px;
    height: calc(100vh - 104px);
}

.gnav .popup .window::-webkit-scrollbar {
    display: none;
}

.gnav .popup .window .windowhdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.gnav .popup .window .windowhdr h2 {
    margin: 0;
}

/* 閉じるボタン */
.gnav .popup .window .btn_cloth {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
}

.gnav .popup .window .btn_cloth span,
.gnav .popup .window .btn_cloth span::before {
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 2px;
    background-color: var(--color-text);
}

.gnav .popup .window .btn_cloth span {
    transform: rotate(45deg);
}

.gnav .popup .window .btn_cloth span::before {
    content: "";
    position: absolute;
    bottom: 0;
    transform: rotate(-90deg);
}

/* クリックで表示 */
#win_search:checked~#win_searchcnt,
#win_cate:checked~#win_catecnt,
#win_tag:checked~#win_tagcnt,
#win_add:checked~#win_addcnt {
    visibility: visible;
}

#win_search:checked~#win_searchcnt .window,
#win_cate:checked~#win_catecnt .window,
#win_tag:checked~#win_tagcnt .window,
#win_add:checked~#win_addcnt .window {
    animation: fadein 200ms forwards;
    animation-timing-function: ease-in-out;
}

@keyframes fadein {
    100% {
        opacity: 1;
    }
}

/* ヘッダー内の機能用のinput要素を表示に */
.gnav .popup .window .windowcnt input {
    display: inline-block;
    border: none;
    color: var(--color-text);
}

/* ページトップに戻る-------------------- */
.backtotop{
    margin-top: 32px;
}

.backtotop a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--color-wh);
    border-radius: 999px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
}

.backtotop a::before {
    content: "";
    position: absolute;
    display: inline-block;
    margin: 0 auto;
    top: 16px;
    right: 0;
    left: 0;
    transform: rotate(135deg);
    width: 8px;
    height: 8px;
    border: solid var(--color-accent);
    border-width: 0 0 3px 3px;
}

/* プロフィール欄-------------------- */
.profile {
    margin-top: 32px;
    padding: 32px 0;
    border-top: 1px dotted var(--color-accent);
    background-color: var(--color-wh);
}

.profile .userlink {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.profile .userlink::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../_img/icn_link_wh.png);
    background-size: 60%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--color-accent);
    border-radius: 999px;
    margin-right: 8px;
}



/* footer-------------------- */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.7rem;
    background-color: var(--color-accent);
}

footer,
footer a {
    color: var(--color-wh) !important;
}

footer a.admin {
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../_img/icn_admin_wh.png);
    background-size: cover;
    background-position: center center;
}

/* -----------------------------------------------------------------------
てがろぐの機能の装飾-外側(ページ全体の生成用)の装飾（skin-cover.html）
---------------------------------------------------------------------- */
/* 検索窓区画-------------------- */
.searchbox {
    padding: 1rem 0;
    border-top: 1px solid var(--color-mgrey);
}

.searchbox .searchinputs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 検索語入力欄 */
.queryinput {
    width: 100%;
    height: 56px;
    padding: 16px 24px 16px 56px;
    border-radius: 8px 0 0 8px;
    background-image: url(../_img/icn_search_bk.png);
    background-size: 24px;
    background-position: left 16px center;
    background-color: var(--color-lgrey);
}

/* 検索(送信)ボタン */
.searchbox .submitcover {
    width: 20%;
}

.searchbox .submitbutton {
    width: 100%;
    height: 56px;
    color: var(--color-wh)!important;
    padding: 16px;
    border-radius: 0 8px 8px 0;
    background-color: var(--color-accent);
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.searchbox .submitbutton:hover {
    background-color: var(--color-text);
}

/* 検索対象を限定するチェックボックス */
.searchtarget {
    margin-top: 16px;
}

/* 検索フォーム形式の切り替えリンク */
.siwtchsearchbox {
    font-size: 0.8em;
}

/* 複合検索フォーム */
#complexsearch {
    display: none;
    /* 複合検索窓は、最初は非表示にしておく */
}

/* 検索オプションリスト */
.searchoptions {
    font-size: 0.9em;
    margin: 0.75em 0 1em 1em;
    padding: 0 0 0 0.5em;
}

/* 項目名 */
.solabel {
    display: inline-block;
    min-width: 5em;
}

/* セレクトボックス */
.searchoptions select {
    max-width: 175px;
}

/* カテゴリツリー区画-------------------- */
.categoryTree ul {
    list-style: none;
    padding-left: 0;
    width: 100%;
    margin-left: 2rem;
    font-size: 16px;
}

.categoryTree ul:first-of-type {
    border-top: 1px solid var(--color-mgrey);
}

.categoryTree ul.depth1 {
    margin: 0 0 1rem 0;
}

.categoryTree ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-mgrey);
}

.categoryTree ul li::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../_img/icn_cate_bk.png);
    background-size: 60%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--color-lgrey);
    border-radius: 999px;
    margin-right: 16px;
    flex-shrink: 0;
}

.categoryTree ul li ul li::before {
    width: 28px;
    height: 28px;
    background-size: 50%;
    background-image: url(../_img/icn_cate2_bk.png);
}

.categoryTree ul li ul {
    margin-top: 1rem;
}

.categoryTree ul li ul li {
    border: none;
    padding-bottom: 0;
}
/* プルダウンメニュー版カテゴリ一覧の装飾 */
.catpull {
    max-width: 200px;
}
/* ハッシュタグリスト区画-------------------- */
.hashtaglist {
    list-style: none;
    padding-left: 0;
    width: 100%;
    border-top: 1px solid var(--color-mgrey);
    padding-top: 1rem;
    font-size: 16px;
}

.hashtaglist li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-mgrey);
}

.hashtaglist li::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../_img/icn_tag_bk.png);
    background-size: 60%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--color-lgrey);
    border-radius: 999px;
    margin-right: 16px;
    flex-shrink: 0;
}

/* プルダウンメニュー版ハッシュタグ一覧の装飾 */
.hashtagpull {
    max-width: 200px;
}

/* QUICK POST-------------------- */
.postform {
    padding: 1rem 0;
    border-top: 1px solid var(--color-mgrey);
}

.postform .line-textarea {
    margin-bottom: 1rem;
}

/* 本文入力 */
.postform .tegalogpost {
    width: 100%;
    min-height: calc(5rem + 32px);
    padding: 16px;
    border: none;
    border-radius: 8px;
    background-color: var(--color-lgrey);
    overflow-wrap: break-word;
    overflow: auto;
}

/* プレースホルダ(※入力文字数がゼロの際にだけ見える薄文字)の装飾 */
textarea.tegalogpost:placeholder-shown {color: #777;}/* 通常時 */
textarea.tegalogpost:focus:placeholder-shown {color: #bbb;}/* カーソルが入ったとき */
textarea.tegalogpost:-ms-input-placeholder {color: #aaa;}/* for IE */

.line-control {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* 投稿ボタン */
.postbutton {
    display: block;
    font-size: 16px;
    color: var(--color-wh)!important;
    padding: 8px 24px;
    border-radius: 999px;
    background-color: var(--color-accent);
}

/* 文字装飾ボタン群 */
/* 掲載領域全体 */
.decoBtns {
    display: inline-block;
    margin-top: 0.5em;
}

/* 全ボタン装飾 */
.decoBtns input {
    margin: 2px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.decoBtns input:hover {
    background-color: var(--color-mgrey);
}

/* 強調  :E */
.decoBtnE {
    font-weight: bold;
    font-style: italic;
    color: var(--color-accent)!important;
}

/* 太字  :B */
.decoBtnB {
    font-weight: bold;
}

/* 斜体  :I */
.decoBtnI {
    font-style: italic;
}

/* 下線  :U */
.decoBtnU {
    text-decoration-line: underline;
    text-decoration-style: double;
    text-decoration-color: var(--color-accent)!important;
}

/* 取消線:D */
.decoBtnD {
    color: var(--color-grey)!important;
    text-decoration-line: line-through;
}

/* 文字色:C */
.decoBtnC {
    color: red!important;
}

/* 背景色:M */
.decoBtnM {
    color: blue!important;
}

/* 画像 ファイル選択 */
input[name="upload_file"] {
    border: 1px solid var(--color-grey)!important;
}

/* チェックボックスの間隔を調整 */
.catChecks label {
    margin-right: 8px;
}

/* 他のIDに切り替える（一番右に配置して次の行へ） */
.changelink {
    width: 100%;
    order: 999;
    border-top: 1px solid var(--color-mgrey);
    margin-top: 1rem;
    padding-top: 8px;
}

/* ページナビゲーション-------------------- */
.pagenavi {
    margin: 24px 0;
    text-align: center;
}

.pagenavi a {
    padding: 8px;
}

/* ページ前後移動*/
.pagelinks {
    margin-bottom: 16px;
}

/* ▼ページ番号リンク */
.pagenums a {
    display: inline-block;
    width: 36px;
    height: 36px;
}

/* 現在のページ番号の装飾 */
a.pagenumhere {
    text-decoration: none;
    color: var(--color-wh);
    background-color: var(--color-accent);
    border-radius: 999px;
}

/* ▼限定解除リンク(＝HOMEに戻るリンク) */
.pagehome {
    margin: 0.15em;
    font-weight: bold;
}

/* -----------------------------------------------------------------------
内側(個別投稿の表示用)のスキン（skin-onelog.html）
---------------------------------------------------------------------- */
.post {
    padding-top: 8px;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.onelogbox {
    display: flex;
    padding: 48px 0 0;
}

.onelogbox .postside {
    margin-left: 4px;
}

.onelogbox .usericon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
}

.onelogbox .postcnt {
    width: 100%;
}

.onelogbox .posthdr {
    display: flex;
    align-items: center;
    justify-content: right;
    color: var(--color-grey);
    font-size: 0.8em;
}

.onelogbox .posthdr .Login-Required{
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.onelogbox .postbody {
    display: flex;
    align-items: end;
}

.onelogbox .postdate {
    width: 52px!important;
    margin-right: 4px;
    color: var(--color-grey);
    font-size: 0.7em;
    line-height: 1.3;
    text-align: right;
}

.onelogbox .postbody .postbox {
    width: calc(100% - 72px);
    padding: 32px;
    background-color: var(--color-pale);
    border-radius: 32px 0 32px 32px;
    position: relative;
}

.onelogbox .postbody .postbox::after{
    content: '';
    position: absolute;
    top: 0;
    right: -16px;
    height: 0;
    border-style: solid;
    border-width: 16px 16px 0 0;
    border-color: var(--color-pale) transparent transparent;
}

.onelogbox .taglink{
    font-size: 0.9em;
}

.onelogbox .postftr {
    color: var(--color-grey);
    font-size: 0.8rem;
    margin-top: 4px;
}

.onelogbox .categories {
    font-size: 0.9em;
    text-align: right;
}

.onelogbox .categories a {
    padding: 0.5rem 0;
}

.onelogbox .categories .catseparator {
    margin: 0 4px;
}

.onelogbox .editlink,
.onelogbox .delitelink {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
}

.onelogbox .postftr .Login-Required {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.onelogbox .editlink {
    background-image: url(../_img/icn_edit.png);
}

.onelogbox .delitelink {
    background-image: url(../_img/icn_delete.png);
}

/* -----------------------------------------------------------------------
てがろぐの機能の装飾-内側(個別投稿の表示用)のスキン（skin-onelog.html）
---------------------------------------------------------------------- */
/* URLが書かれた場合の装飾 */
.url {
    word-break: break-all;
    /* 自動リンクのはみ出しを防ぐ */
}

/* E:強調(Emphasis) */
.decorationE {
    color: var(--color-accent);
    font-weight: bold;
}

/* B:太字(Bold) */
.decorationB {
    font-weight: bold;
}

/* I:斜体(Italic) */
.decorationI {
    font-style: italic;
}

/* U:下線(Underline) */
.decorationU {
    text-decoration-line: underline;
    text-decoration-style: double;
    text-decoration-color: var(--color-accent);
}

/* Q:引用(Quote) */
.decorationQ {
    display: inline-block;
    margin: 0.5rem 0 0.5rem 1rem;
    padding: 4px 0 4px 8px;
    font-size: 0.7rem;
    border-left: 3px solid var(--color-grey);
}

.decorationQ::before,
.decorationQ::after {
    content: '';
    /* 標準で付加されてしまう引用符を無効にする */
}

.decorationQ+br {
    display: none;
    /* 引用直後の改行を無効化する */
}

/* D:打消し線 */
.decorationD {
    color: var(--color-grey);
    text-decoration-line: line-through;
}

/* S:小文字(Small) */
.decorationS {
    font-size: 0.8rem;
}

/* T:極小文字(Tiny) */
.decorationT {
    font-size: 0.6rem;
}

/* 「リスト」機能 */
.decorationL {
    display: inline-block;
    margin: 0.5rem 0;
    padding-left: revert;
    padding-inline-start: 1rem;
}

/* 「隠す」機能 */
.decorationH a {
    margin: 0.5rem 0;
}

.readmorebutton.readmoreclose {
    display: inline-block;
}

.readmorebutton.readmoreopen::before,
.readmorebutton.readmoreclose::before {
    display: inline-block;
    margin-right: 4px;
}

.readmorebutton.readmoreopen::before {
    content: '+';
}

.readmorebutton.readmoreclose::before {
    content: '-';
}

.readmorearea {
    margin-top: 0.5rem;
}

.readmorearea::before {
    display: block;
    content: '';
    height: 0.5rem;
}

/* 埋め込み画像-------------------- */
/* 画像ボックス(FIGオプション指定時) */
.embeddedpictbox {
    margin: 0;
    padding: 0;
    display: inline-table;
    border-collapse: collapse;
    border: 1px solid #e0eee0;
    vertical-align: top;
}

/* キャプション */
.embeddedpictbox figcaption {
    display: table-caption;
    caption-side: bottom;
    font-size: 0.8em;
    text-align: center;
    background-color: #e0eee0;
}

/* 画像ボックスに含まれる画像 */
.embeddedpictbox img {
    vertical-align: middle;
}

/* 画像リンク */
.imagelink {
    display: inline-block;
    line-height: 1;
    /* 表示形態によっては画像の下に余計な空白が出るのを防ぐ対策 */
    vertical-align: inherit;
    /* 同上 */
}

/* 画像そのもの */
.embeddedimage {
    display: inline-block;
    margin: 1rem 0;
    border-radius: 8px;
}

/* フラグ付き画像 */
figure.nsfw {
    overflow: hidden;
    /* ぼかし領域がfigureのボックスからはみ出ないようにする */
}

.imagelink.nsfw {
    overflow: hidden;
    /* ぼかし領域がfigureのボックスからはみ出ないようにする */
}

img.nsfw {
    filter: blur(9px);
    /* ぼかす */
}

/* 埋め込み動画-------------------- */
@media all and (max-width: 600px) {
    .embeddedmovie {
        display: inline-block;
        max-width: 100%;
        /* はみ出ないようにする */
        width: auto;
        height: auto;
    }
}

/* 埋め込みTweet-------------------- */
blockquote.twitter-tweet {
    background-color: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 9px;
    margin: 0.3em 0;
    padding: 1em;
    font-size: 0.95em;
    color: #999;
    text-shadow: 1px 1px 1px #fff;
}

/* 埋め込みツイートの横幅を強制的に制限 */
div.twitter-tweet {
    max-width: 350px !important;
}

/* 検索語のハイライト-------------------- */
.searchword {
    font-weight: bold;
    background: linear-gradient(transparent 60%, #aaf0aa 60%);
}

/* 表示対象の限定時などの「限定条件」表示行-------------------- */
.situation {
    font-weight: bold;
}

.situation:empty {
    display: none;
}

/* 限定表示がない場合は存在自体を消す */

/* 日付境界バー */
.dateseparator {
    margin: 48px 54px 0;
    padding: 8px 0;
    font-size: 0.8em;
    text-align: center;
    border-top: 1px dotted var(--color-accent);
    border-bottom: 1px dotted var(--color-accent);
}

.dateseparator::before {
    content: '▼';
}

/* 固定投稿 */
.fixedseparator {
    border: none;
    margin-top: 16px;
    padding: 0;
}

.fixedseparator::before {
    display: none;
}

.fixedseparator .fixedlabel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fixedseparator .fixedlabel::before {
    content: '';
    display: block;
    margin-right: 4px;
    width: 16px;
    height: 16px;
    background-size: 60%;
    background-position: center center;
    background-image: url(../_img/icn_pin.png);
    background-repeat: no-repeat;
    background-color: var(--color-accent);
    border-radius: 999px;
}

.onelogbox.logstatus-fixed {
    padding: 0;
}

/*鍵入力フォーム-------------------- */
.passkeyform {
    margin: 1rem 0;
    font-size: 0.9em;
}

.passkeybox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.passkeyguide {
    display: flex;
    align-items: center;
    line-height: 2.5;
}

.passkeyguide::before {
    content: '';
    display: block;
    margin-right: 4px;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-position: center center;
    background-image: url(../_img/icn_key.png);
    background-repeat: no-repeat;
}

.passkeyguide::after {
    content: "\A";
    white-space: pre;
  }

.passkeyinput {
    width: 8rem;
    height: 28px;
    padding: 4px 8px;
    border: 1px solid var(--color-accent);
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.passkeysubmit {
    height: 28px;
    font-size: 0.7rem;
    color: var(--color-wh);
    padding: 4px 8px;
    border: none;
    border-radius: 0 4px 4px 0;
    background-color: var(--color-accent);
}

/* 各投稿の個別ページで表示される囲みナビ-------------------- */
.utilitylinks {
    padding: 24px 16px;
}


/* -----------------------------------------------------------------------
アニメーション
---------------------------------------------------------------------- */

header,.wrap {
    animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
   
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

.onelogbox .postside {
    animation: slideRight 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  }
   
  @keyframes slideRight {
    0% {
      transform: translateX(10px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
    }
    40%,100% {
      opacity: 1;
    }
  }

  .gnav ul.menu li{
    opacity: 0;
  }
  
  .gnav ul.menu li:nth-child(1) {
    -webkit-animation: example 0.2s ease 0.2s 1 forwards;
    animation: example 0.2s ease 0.2s 1 forwards;
  }
  
  .gnav ul.menu li:nth-child(2) {
    -webkit-animation: example 0.4s ease 0.4s 1 forwards;
    animation: example 0.4s ease 0.4s 1 forwards;
  }
  
  .gnav ul.menu li:nth-child(3) {
    -webkit-animation: example 0.6s ease 0.6s 1 forwards;
    animation: example 0.6s ease 0.6s 1 forwards;
  }
  
  .gnav ul.menu li:nth-child(4) {
    -webkit-animation: example 0.8s ease 0.8s 1 forwards;
    animation: example 0.8s ease 0.8s 1 forwards;
  }
  
  .gnav ul.menu li:nth-child(5) {
    -webkit-animation: example 1s ease 1s 1 forwards;
    animation: example 1s ease 1s 1 forwards;
  }
  
  .gnav ul.menu li:nth-child(6) {
    -webkit-animation: example 1.2s ease 1.2s 1 forwards;
    animation: example 1.2s ease 1.2s 1 forwards;
  }
  
  @keyframes example {
    100% {
      opacity: 1;
    }
  }


/* -----------------------------------------------------------------------
スマホ用の処理
---------------------------------------------------------------------- */
@media screen and (max-width:600px) {
    /* ←←←消さないよう注意！ */

    h2{
        font-size: 18px;
        margin-bottom: 1rem;
    }

    h3{
        font-size: 14px;
    }

    /* スマホでタップ時に半透明にならないようにする-------------------- */
    a:hover {
        opacity: 1;
    }

    header{
        padding: 8px 8px 8px 16px;
    }

    h1.username {
        font-size: 20px;
    }

    header .admin a{
        width: 36px;
        height: 36px;
    }

    .gnav-wrap {
        position: fixed;
        height: auto;
        top: 64px;
        left: 8px;
    }

    .gnav .popup {
        position: fixed;
        width: calc(100% - 32px);
        min-width: auto;
        max-height: 100%;
        height: fit-content;
        overflow: scroll;
        margin: auto;
        padding: 16px 0;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .gnav .popup .window {
        width: 100%;
        min-width: auto;
        height: fit-content;
        max-height: calc(100dvh - 32px);
    }

    .gnav ul.menu {
        align-items: flex-end;
        gap: 8px;
    }

    .gnav ul.menu li a,
    .gnav ul.menu li label {
        width: 36px;
        height: 36px;
        border: 1px solid var(--color-mgrey);
        box-shadow: none;
    }

    .gnav ul.menu li.add label {
        width: 36px;
        height: 36px;
        border: 2px solid var(--color-wh);
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .backtotop {
        right: 16px;
        bottom: 8px;
    }

    .backtotop a {
        width: 36px;
        height: 36px;
        border: 1px solid var(--color-mgrey);
        box-shadow: none;
    }

    .backtotop a::before {
        top: 14px;
    }

    .cnt {
        padding: 0 8px;
    }

    .profile{
        padding: 32px 16px;
    }

    .onelogbox {
        padding: 24px 0 0;
    }

    .onelogbox .postbody{
        display: block;
        padding-left: 44px;
    }

    .onelogbox .postdate{
        width: 100% !important;
        margin: 0 0 4px;
    }

    .onelogbox .postdate .date{
        margin-right: 4px;
    }

    .onelogbox .postdate br{
        display: none;
    }

    .onelogbox .postbody .postbox {
        width: calc(100% - 8px);
        padding: 20px 16px;
        border-radius: 16px 0 16px 16px;
    }
    .onelogbox .postbody .postbox::after {
        right: -8px;
        border-width: 8px 8px 0 0;
    }

    .onelogbox .postside {
        margin: 16px 0 0 4px;
    }

    .onelogbox .usericon {
        min-width: 36px;
        width: 36px;
        height: 36px;
    }

    .dateseparator {
        margin: 24px 48px 0;
    }

    .fixedseparator {
        margin-top: 0;
        padding-bottom: 0;
    }

    .passkeyguide {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .pagenums a {
        width: 34px;
        height: 34px;
    }


}

/* ←←←消さないよう注意！ */
/* -----------------------------------------------------------------------
スマホ用の処理ここまで
---------------------------------------------------------------------- */