html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    background: linear-gradient(135deg, #0a0f2c, #1e0033, #32004f);
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


a {
    text-decoration: none;
}

/* ヘッダー 
-----------------------------------------------*/
.nav_header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 20px 10px;
}

h1 {
    font-size: 1.7rem;
    letter-spacing: 0.2rem;
    color: #fff;
    text-shadow:
        0 0 5px #FF4DA6,
        0 0 10px #FF4DA6,
        0 0 20px #FF4DA6,
        0 0 40px #FF99CC;
    padding: 4px;
    font-family: "WDXL Lubrifont JP N", sans-serif;
    font-weight: 400;
    font-style: normal;

}

h1 a {
    color: #fff;
}

/* ハンバーガーメニュー　杉浦先生 */
.menu {
    position: relative;
    /* 子要素を絶対配置を指定するために必要 */
}

.menu_button {
    position: absolute;
    top: 3px;
    /* ハンバーガーメニューの位置（上） */
    left: 0;
    /* ハンバーガーメニューの位置（左） */
    z-index: 200;
    /* 重なり順（200） */
    width: 32px;
    height: 31px;
    border: none;
    /* button要素の枠消す */
    cursor: pointer;
    background: transparent;
    /* button要素の背景色を透明 */
}

.bar {
    /* 三本線共通の指定 */
    position: absolute;
    left: 1rem;
    width: 100%;
    height: 1px;
    background-color: #FFFF33;
    box-shadow:
        0 0 5px #FFFF33,
        0 0 10px #FFFF33,
        0 0 20px #FFFF66,
        0 0 40px #FFEA00;
    border-radius: 10px;
    display: inline-block;
    /* span要素に幅高さを指定するために必要 */
    transition: all .4s;
    /* activeクラスの追加削除でアニメーションするために必要 */
}

.bar1 {
    top: 5px;
    /* 一番目の線の位置指定 */
}

.bar2 {
    top: 15px;
    /* 二番目の線の位置指定 */
}

.bar3 {
    bottom: 5px;
    /* 三番目の線の位置指定 */
}

.menu_button.active .bar1 {
    transform: translateY(10px) rotate(-30deg);
    /* 一番目の線にactiveクラスが付与された時の状態 */
}

.menu_button.active .bar2 {
    opacity: 0;
    /* 二番目の線にactiveクラスが付与された時の状態 */
}

.menu_button.active .bar3 {
    transform: translateY(-10px) rotate(30deg);
    /* 三番目の線にactiveクラスが付与された時の状態 */
}

.nav_wrapper {
    width: 100%;
    height: 100%;
    transition: all 0.2s ease;
    /* openクラスの追加削除でアニメーションするために必要 */
    transform: translate(-100%);
    /* 初期位置は左外に隠しておく */
    position: fixed;
    /* 固定配置 */
    top: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(to bottom right, #FC00FF, #00FFFF);
}

.nav_wrapper.open {
    transform: translate(0);
    /* openクラスの追加で左からアニメーション表示する */
}

.nav {
    color: #fff;
    padding: 0 50px;
    margin-top: 70px;
    list-style-type: none;
}

.nav li {
    padding-top: 5px;
    padding-left: 15px;
    padding-bottom: 10px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: center;
}

.nav li a {
    display: inline-block;
    /* a要素に幅を指定するために必要 */
    text-align: center;
    color: #fff;
    text-shadow:
        0 0 5px #FFFFFF,
        0 0 10px #FFFFFF,
        0 0 20px #FFFFFF,
        0 0 40px #99CCFF;
    font-size: 1.2rem;
    font-family: "Tilt Neon", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "XROT" 0,
        "YROT" 0;
}

.page-title {
    /* h2 */
    font-family: "Tilt Neon", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "XROT" 0,
        "YROT" 0;
    font-size: 2rem;
    text-align: center;
    margin-top: 2rem;
    line-height: 1.4;
    color: #FFFF33;
    text-shadow:
        0 0 5px #39FF14,
        0 0 10px #39FF14,
        0 0 20px #39FF14,
        0 0 40px #00ff00,
        0 0 80px #00ff00;
}

.wrapper {
    /* main */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* portraits 
-----------------------------------------------*/
.portraits-wrapper {
    display: flex;
    flex-direction: column;
}

.portraits-item {
    margin: 4rem auto;
}

.portraits-item img {
    display: block;
    width: 300px;
    height: 225px;
    object-fit: contain;
    background-color: #000;
}

.portraits-meta h3 {
    color: #FFFF33;
    text-shadow:
        0 0 5px #39FF14,
        0 0 10px #39FF14,
        0 0 20px #39FF14,
        0 0 40px #00ff00,
        0 0 80px #00ff00;
}


.portraits-meta h3,p,time{
    color: #fff;
}

.portraits-meta h3 {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.portraits-meta p,time {
    margin: 0.5rem 0;
    font-size: 0.85rem;
}





/* blogの投稿記事 
-----------------------------------------------*/

.post {
    /* article blogの投稿 */
    margin: 2rem 0;
    padding: 1rem;
    background-color: #fff;
    border-radius: 6px;
}

.post-title {
    /* h2 blogタイトル */
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #222;
}

.post-date {
    /* date blogの日付 */
    font-size: .875rem;
    color: #666;
}

.post header {
    /* header blogのタイトルと日付 */
    margin-bottom: 2.4rem;
}

.post p {
    /* header blogの本文 */
    margin-bottom: 1.5rem;
    line-height: 2;
    color: #333;
}

#archives {
    margin: 7rem 0 1.5rem;
    font-size: 2.4rem;
    text-align: center;
    color: #00ff00;
}

.post-sidebar a {
    display: block;
    margin-top: 1.2rem;
    font-size: 1.2rem;
    color: #00FFFF;
    text-align: center;
    display: block;
}


/* ____________blogの投稿リスト */

.post-item {
    /* li blogの投稿リスト */
    margin: 3rem 1rem;
    border: 2px solid #39FF14;
    box-shadow:
        0 0 5px #39FF14,
        0 0 10px #39FF14,
        0 0 20px #39FF14,
        0 0 40px #00ff00;
}

.post-meta {
    /* li blogの投稿リスト内のタイトル・日付 */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #11172a;
}

.post-item a {
    color: #fff;
    text-shadow:
        0 0 5px #39FF14,
        0 0 10px #39FF14,
        0 0 20px #39FF14,
        0 0 40px #00ff00,
        0 0 80px #00ff00;
}

.post-title-date {
    /* div blogの投稿リスト内のタイトル・日付 */
    display: flex;
    flex-direction: column;
}

.post-thumbnail {
    /* img blogの投稿リスト内のサムネイル */
    width: 100px;
}

.post-meta-title {
    /* p blogの投稿リスト内のタイトル */
    padding: .875rem;
    font-size: 1.2rem;
}

.post-meta-date {
    /* p blogの投稿リスト内の日付 */
    padding: .875rem;
    font-size: .875rem;
}



@media (min-width: 1024px) {

    /* ヘッダー */

    .nav_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 10px;
    }

    h1 {
        font-size: 3rem;
        letter-spacing: 0.2rem;
        margin-left: 1rem;
    }

    .menu_button {
        /* ハンバーガーメニューを非表示 */
        display: none;
    }

    .nav_wrapper {
        position: static;
        /* 固定位置を解除 */
        width: auto;
        /* 必要に応じて調整 */
        height: auto;
        /* 高さを通常に戻す */
        transform: none !important;
        /* 画面外に飛ばす処理を無効化 */
        background: transparent;
        /* 背景色も消す（好みに応じて） */
        z-index: auto;
        display: block !important;
    }

    .nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .nav li {
        margin: 0 15px;
        padding: 0;
        border: none;
    }

    .nav li a {
        color: #00FFFF;
        /* メインの水色 */
        text-shadow:
            0 0 5px #00FFFF,
            0 0 10px #00FFFF,
            0 0 20px #66FFFF,
            0 0 40px #1BFFFF;
        font-size: 1.4rem;
    }


.page-title {
    font-size: 3rem;
}

.post-item {
    margin-bottom: 3rem;
    padding: 1.2rem;
    border: 2px solid #39FF14;
    box-shadow:
        0 0 5px #39FF14,
        0 0 10px #39FF14,
        0 0 20px #39FF14,
        0 0 40px #00ff00;
}

.post-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0 10rem 0 15rem;
}

.post-list {
    width: 70%;
}

.post-sidebar {
    width: 20%;
     text-align: center;
}

#archives {
    margin: 3rem 0 2rem;
    font-size: 2rem;
}

.post-sidebar a {
    display: block;
    margin-top: 1.4rem;
    font-size: 1.2rem;
    color: #00FFFF;
}

.post-meta-title {
    font-size: 1.4rem;
}

.post-meta-date {
    font-size: 1rem;
}

    /* portraits 
-----------------------------------------------*/
.portraits-wrapper {
    display: flex;
    flex-direction: column;
}

.portraits-item {
    margin: 6rem auto;
}

.portraits-wrapper img {
    display: block;
    margin-top: 3rem;
    width: 700px;
    height: 525px;
}

.portraits-meta h3 {
    margin: 1.8rem 0;
    font-size: 1.8rem;
}

.portraits-meta p {
    margin: 1rem 0;
    font-size: 1rem;
}


}