body {
    font-family: 'Noto Sans JP', "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}
h2 {
    padding: 0;
    margin: 0;
    padding-bottom: 10px;
    font-size: 1.5em;
    margin-bottom: 10px;
    width: 100%;
}
h2 a {
    display: block;
    text-decoration: none;
    padding: 10px;
    padding-left: 0;
    width: 100%;
    border-radius: 2px;
    color: #333;
}
h2 a.nogi {
    color: #333;
}
h2 a.sakura {
    color: #333;
}
h2 a.hinata {
    color: #333;
}
h3 {
    font-size: 0.9em;
    color: #666;
    margin: 5px 0 20px;
}
.site-main {
    display: flex;
}
.container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}
.col-left {
    position: relative;
    font-size: 1em;
    width: 70%;
    /* border: #ccc solid 1px; */
    /* border-radius: 10px; */
    padding: 20px;
    padding-bottom: 0;
}

.col-left h1 {
    border-bottom: #ccc solid 1px;
}
.col-left ul li a {
    display: block;
    text-decoration: none;
    color: #333;
}

.col-right {
    position: fixed;
    width: 20%;
    right: 0;
    top: 70px;
    padding: 0 20px;
    border-left: #ccc solid 1px;
    height: 100%;
    /* border: #ccc solid 1px; */
    /* border-radius: 10px; */
    align-items: center;
}
.col-right a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-radius: 5px;
}


.blog-view li {
    padding: 0 10px;
}

.article-info {
    width: 100%;
    border-bottom: #ccc solid 1px;
}
.article-info h2 {
    margin: 10px 0;
    padding: 10px 0;
}
h1 {
    width: 100%;
    text-align: justify;
    padding-left: 10px;
    padding-bottom: 10px;
}
.article-main {
    word-break: break-all;
    max-width: 100%;
    white-space: normal;
}
img {
    display: block;
    width: 60%;
    margin: 1em 0;
    height: auto;
}
.title {
    border-bottom: #ccc solid 1px;
    width: 100%;
}
.member-info-sp {
    display: none;
}
.member-info-pc {
    display: block;
    align-items: center;
}
.member-info-pc img {
    width: 100%;
    border-radius: 5%;
}
.member-info-pc p {
    width: 100%;
    /* text-align: center; */
    margin: 0;
    /* font-size: 1.2em; */
    /* font-weight: bold; */
}

/*.member-info-pc p {
    margin: 0;
    font-size: 0.9em;
} */

.navigation {
    display: flex;
    align-items: center;
}

.navi-left,
.navi-right {
    width: 100%;
    border-top: #ccc solid 0.5px;
}
.navigation:has(.navi-left):has(.navi-right) .navi-left,
.navigation:has(.navi-left):has(.navi-right) .navi-right {
    width: 50%;
}

.navi-left + .navi-right {
    border-left: #ccc solid 0.5px;
}

.navi-right {
    margin-left: auto;
    text-align: right;
}

.navi-left a,
.navi-right a {
    display: block;
    box-sizing: border-box;
    padding: 5px;
    width: 100%;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navi-left a p.prev-title,
.navi-right a p.next-title {
    display: block;
    /* max-width: 100%; */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.navi-left p.prev,
.navi-right p.next {
    font-size: xx-small;
}
footer {
    width: 100vw;
}


@media (max-width: 768px) {
    body {
        align-items: center;
    }
    .container {
        align-items: center;
    }
    .col-left {
        font-size: 0.9em;
        margin-left: 0;
        margin-right: 0;
        width: 90%;
        /* border: #ccc solid 1px; */
        /* border-radius: 10px; */
        padding: 20px;
        padding-bottom: 0;
    }
    img {
        width: 100%;
    }
    .member-info-sp {
        display: flex;
        align-items: center;
        margin: 0;
        border-top: #ccc solid 1px;
        padding: 10px;
    }
    .member-info-sp a {
        display: flex;
        text-decoration: none;
        color: #333;
        padding: 10px;
        border-radius: 5px;
    }
    .member-info-sp img {
        width: 30%;
        border-radius: 5%;
        margin-right: 10px;
    }
    .member-info-sp p {
        display: block;
        margin: 0;
        font-size: 0.9em;
    }
    .member-info-sp .member-detail {
        display: flex;
        flex-direction: column; /* p要素を縦方向に並べる */
        justify-content: center; /* テキストブロック内で縦方向中央揃え (任意) */
        flex-grow: 1; /* 残りのスペースを埋める */
    }

    .member-info-sp .member-detail p {
        margin: 0 0 8px 0; /* 各テキスト行の下に少しマージン */
        font-size: 14px;
        line-height: 1.5;
        color: #333;
    }

    .member-info-sp .member-detail p:first-child {
        font-weight: bold; /* 最初の行 (名前) を太字に (任意) */
        font-size: 16px;
        color: #111;
    }

    .member-info-sp .member-detail p:last-child {
        margin-bottom: 0; /* 最後のテキスト行の下マージンを削除 */
        font-size: 12px;
        color: #555;
    }
    .navigation {
        flex-direction: column;
        align-items: stretch;
    }
    .navi-left,
    .navi-right {
        width: 100%;
    }
    .navigation:has(.navi-left):has(.navi-right) .navi-left,
    .navigation:has(.navi-left):has(.navi-right) .navi-right {
        width: 100%;
    }
    .navi-left + .navi-right {
        border-left: none;
        border-top: #ccc solid 0.5px;
    }

    .navi-left a,
    .navi-right a {
        display: block;
        box-sizing: border-box;
        margin: 0;
        padding: 5px;
        max-width: 100%;
        text-decoration: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .navi-left a p.prev-title,
    .navi-right a p.next-title {
        display: block;
        /* max-width: 100%; */
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .col-right {
        display: none;
    }
    footer {
        font-size: 0.8em;
        height: auto;
    }
}