@charset "utf-8";

/*
Theme Name: fly-g v18
Author: fly-g
*/


/* ----------------------------------
base
---------------------------------- */

html {
    font-size: 100%;
    /* scroll-behavior: smooth; */
}

body {
    font-size: 1rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-style: normal;
    background-color: #eee;
    color: #222;
}

/* ----------------------------------
contents
---------------------------------- */

img {
    /* PCの右クリック禁止 */
    pointer-events: none;

    /* スマホ長押し禁止 */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;

    /* 画像ドラッグ禁止 */
    /* 
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    */

}

a {
    text-decoration: underline;
    color: #222;
}

a:hover {}


@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ----------------------------------
frame
---------------------------------- */
.head {
    padding: 2.5rem 0 0;
}

.head__logo {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

.head__logo a {
    text-decoration: none;
}

.head__desc {
    margin-top: 1.3rem;
    text-align: center;
    font-size: 0.8rem;
}

/* ---- */
.foot {
    padding: 2.5rem 0;
}

.foot__copy {
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* ---- */
.wrap {
    margin: 2.5rem auto 0;
    max-width: 1200px;
}

/* ----------------------------------
pagetitle
---------------------------------- */
.pagetitle {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

.pagetitle small {
    display: block;
    margin-top: 0.5rem;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* ----------------------------------
pagecount << 1 2 3 >>
---------------------------------- */
.pagecount {
    margin: 1rem auto 0;
    max-width: 500px;
}

.pagecount ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
}

/*
.pagecount li {
    flex-grow: 1;
}
*/
.pagecount a,
.pagecount span {
    display: inline-block;
    text-decoration: none;
    padding: 10px;
}

.pagecount span {
    color: #999;
}

/* ----------------------------------
pagenavi << >>
---------------------------------- */
.pagenavi {
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}

.pagenavi ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.pagenavi li {
    display: block;
    width: 50%;
    text-align: left;
}

.pagenavi li:last-child {
    text-align: right;
}

.pagenavi a {
    display: inline-block;
    padding: 0.5rem 2rem;
    text-decoration: none;
}

/* ----------------------------------
content
---------------------------------- */
.content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

/* ----------------------------------
side
---------------------------------- */
.side {}


/* ----------------------------------
listpost
---------------------------------- */
.listpost {
    width: calc(100%/4);
    padding: 1rem;
    text-decoration: none;
}

.listpost__sec {
    border-radius: 1rem;
    background: #fff;
    height: 100%;
}

.listpost__pict {
    animation: fade-in 3s;
    border-radius: 1rem 1rem 0 0;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    aspect-ratio: 3 / 2;
}

.listpost__text {
    padding: 1rem;
    text-align: Center;
    line-height: 1.6;
    font-size: 0.8rem;
}

.listpost__text small {
    display: block;
    color: #666;
    margin-top: 0.5rem;
    font-size: 90%;
}

@media screen and (max-width:800px) {
    .listpost {
        width: calc(100%/3);
    }
}

@media screen and (max-width:500px) {
    .listpost {
        width: calc(100%/2);
    }

    .listpost__pict {
        aspect-ratio: 1 / 1;
    }
}


/* ----------------------------------
singlepost
---------------------------------- */
.singlepost {
    padding: 1rem;
    max-width: 800px;
    width: 100%;
}

.singlepost__sec {
    border-radius: 1rem;
    background: #fff;
}

.singlepost__pict {
    animation: fade-in 3s;
    border-radius: 1rem 1rem 0 0;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    aspect-ratio: 3 / 2;
}

.singlepost__cont {
    padding: 2rem;
}

.singlepost__cont h1 {
    text-align: center;
    line-height: 1.6;
    font-size: 2rem;
}

.singlepost__cont p {
    margin-top: 1rem;
    line-height: 2;
}

.singlepost__cont .fr {
    animation: fade-in 3s;
    width: 100%;
    border-radius: 0.7rem;
}

.singlepost__cont blockquote {
    margin: 1rem 0 0 1rem;
    padding: 0.5rem 1.5rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 1rem;
    line-height: 2;
    font-style: italic;
    color: #666;
}

.singlepost__date {
    margin-top: 1rem;
    padding-bottom: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

.singlepost__meta {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}