@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: "Shippori Mincho", 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 {}



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

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

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

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

.foot__desc {
    text-align: center;
    font-size: 0.8rem;
}

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

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

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

.side {}

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

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

.listpost__pict {
    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: #999;
    margin-top: 0.5rem;
    font-size: 90%;
}

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

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


/* ----------------------------------
singlepost
---------------------------------- */
.singlepost {
    padding: 1rem;
    max-width: 900px;
}

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

.singlepost__pict {
    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 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: #999;
}

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

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