@charset "utf-8";

@keyframes bgAnime {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0 100%;
    }
}

/*ーーーーーーーーーーーーーーーーー共通始まり */
:root {
    --primary-color: #4B2B2B;
    --link-color: #8b2beb;
    --link-color: #10261f;
}

.hide {
    display: none !important;
}

*+p {
    margin-top: 1em;
}

a>* {
    cursor: inherit;
}

a {
    color: var(--link-color);
}

/*ーーーーーーーーーーーーーーーーー共通終わり */

/*ーーーーーーーーーーーーーーーーーヘッダー始まり */
header .gnav {
    /* position: fixed; */
    width: 100%;
    background-color: #BFCEEB;
    padding: 30px 0;
    text-align: center;
    /* z-index: 999; */
    /* height: 100px; */
}

#global-nav.m_fixed {
    left: 0;
    position: fixed;
    top: 0;
}

header section {
    padding: unset;
}

header section.mv img {
    width: 100%;
    /* object-fit: cover;
    object-position: center; */

    /* background-image: url(../../assets/img/top.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
}

header .mv_cover {
    position: relative;
    background-color: rgba(257, 257, 257, .5);
    z-index: 1;
}

header .flex_container {
    justify-content: space-around;
}

header li {
    font-size: 2.5rem;
    margin: 0 20px;
}

header li a {
    color: #4B2B2B;
}

header li a:hover {
    color: #fff;
    font-weight: bold;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

header nav.pc_only {
    width: 100%;
}

header nav.pc_only ul {
    display: grid;
    grid-template-columns: 1fr 7em 9em;
    text-align: left;
}

header nav.pc_only ul li:not(:first-child) {
    text-align: right;
}

h1 {
    width: fit-content;
    line-height: 1.2;
    font-size: 5rem;
    font-weight: bold;
}

header h1 span {
    display: block;
    text-align: right;
    font-size: 3rem;
    font-weight: lighter;
    line-height: 1.5;
}

header .mv_cover .h1_wrap {
    position: absolute;
    top: 50%;
    left: 30px;
}

@media screen and (max-width:600px) {
    /*　画面サイズが600px以下からはここを読み込む　*/

    h1 {
        font-size: 2.3rem;
    }
    header h1 span{
        font-size: 1.8rem;
    }
    header nav.pc_only ul {
        display: inline-grid;
        grid-template-columns: 5em 5em 7em;
        text-align: light;
    }
    header li {
        font-size: 2rem;
        margin: 0 20px;
    }

}
    /*ーーーーーーーーーーーーーーーーーヘッダー終わり */
    /*ーーーーーーーーーーーーーーーーーフロントページ */

    section.pickup {
        background-image: url(../../assets/img/porigon.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    section.pickup .announcement_btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    section.pickup .announcement_btn li {
        font-size: 2.5rem;
        width: 320px;
        text-align: center;
        background-color: #fff;
        padding: 20px 0;
        filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .2));
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .2));
        cursor: pointer;
    }

    section.pickup .announcement_btn li:hover {
        background-image: linear-gradient(to right, #005ca1 0, #0095a1 51%, #005ca1 100%);
        background-image: linear-gradient(to right, rgb(181, 163, 216) 0, rgb(147, 237, 229) 51%, rgb(181, 163, 216) 100%);

        background-size: 200% auto;
        transition: .5s;
        background-position: right center;
    }

    section.pickup .picup_tag_btn {
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-top: 20px;
        font-size: 1.6rem;
    }

    section.pickup .pick_up_post_area {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: auto;
    }

    section.pickup .pick_up_post_area article {
        position: relative;
        width: 100%;
        max-width: 230px;
        height: 230px;
        margin: 30px auto 0;
        filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .2));
        border-radius: 5px;
        background-color: rgba(43, 226, 144, 0.337);
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    section.pickup .pick_up_post_area figure {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 230px;
        height: 230px;
        border-radius: 5px;
        background-color: rgba(43, 226, 144, 0.337);
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    section.pickup .pick_up_post_area figure img {
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    section.pickup .pick_up_post_area div.caption {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        width: 100%;
        max-width: 230px;
        height: 230px;
        border-radius: 5px;
        background-color: rgba(43, 226, 144, 0.337);
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.pickup .pick_up_post_area article:hover .caption {
        background-color: rgba(247, 246, 246, 0.887);
        opacity: 1;
        transition: 0.2s;
        /*ふわっとさせる指定*/
        -webkit-transition: 0.5s;
        -moz-transition: 0.2s;
        -ms-transition: 0.2s;
        -o-transition: 0.2s;
        -webkit-transition: 0.2s;
    }

    section.pickup .pick_up_post_area article div.text_clip {
        opacity: 0.899
    }

    section.pickup .pick_up_post_area article:hover div.text_clip {
        background: linear-gradient(to bottom, #00b3ca, #7dd0b6, #f69256, #9e00ca);
        -webkit-background-size: 100vh 100vh;
        -o-background-size: 100vh 100vh;
        background-size: 100vh 100vh;
        /*animation: bgAnim 5s ease infinite;
    -webkit-animation: bgAnime 10s infinite linear;
    */
        animation: bgAnime 3s infinite linear;
        -webkit-animation: bgAnime 3s infinite linear;
        animation-direction: alternate;
        background-clip: text;
        -webkit-background-clip: text;
        color: rgba(0, 0, 0, 0);
        opacity: 1;
        transition: 0.2s;
        /*ふわっとさせる指定*/
        -webkit-transition: 0.5s;
        -moz-transition: 0.2s;
        -ms-transition: 0.2s;
        -o-transition: 0.2s;
        -webkit-transition: 0.2s;
    }

    section.pickup .pick_up_post_area .wpp-meta,
    section.pickup .pick_up_post_area .post-stats {
        position: relative;
    }

    @media screen and (max-width:600px) {
        /*　画面サイズが600px以下からはここを読み込む　*/

        section.pickup .announcement_btn {
            display: block;
        }
    }

    /* ーーーーーーーーーーーーーーーーーーフロントページ終わり */


    /* ーーーーーーーーーーーーーーーーーーーーフッター終わり */
    footer .bg_lightblue {
        background-color: #C6E7FA;
        padding-bottom: 20px;
        /* box-shadow: 0px 6px 4px 0px #999; */
        /* border-bottom: 5px solid red;
    border-image: linear-gradient(0deg, red 0%, pink 100%) 1; */
        z-index: 0;
    }

    footer .bg_purple {
        background-color: #BFCEEB;
        padding-top: 20px;
        padding-bottom: 10px;
        box-shadow: 0px 6px 4px 0px inset #999;
        z-index: -1;
        /* filter: drop-shadow(0px 10px 15px gray);
    -webkit-filter: drop-shadow(0px 10px 15px gray); */
    }

    footer .content.flex_container {
        justify-content: space-between;
    }

    footer .content .inner {
        width: 100%;
        max-width: 720px;
    }

    footer .blog_ttl {
        width: 100%;
        max-width: 300px;
        margin-bottom: 50px;
        line-height: 1;
        font-size: 3rem;
    }

    footer .blog_ttl span {
        display: block;
        margin-top: 10px;
        font-size: 2.2rem;
        text-align: center;
    }

    footer .footer_cate {
        justify-content: space-between;
        border-top: 2px solid #4B2B2B;
        padding-bottom: 25px;
        padding-left: 20px;
        padding-right: 20px;

    }

    footer .footer_cate .footer_before {
        position: relative;
        font-size: 2.2rem;
        margin-top: 30px;
        /* margin-left: 20px; */
        padding-left: 20px;
        /* border-left: 5px solid #4B2B2B; */
    }

    footer .footer_cate .footer_before::before {
        position: absolute;
        top: 5px;
        left: 0;
        content: "";
        display: block;
        width: 5px;
        height: 15px;
        background-color: #4B2B2B;
    }

    footer .footer_cate .footer_tag {
        text-align: right;
    }

    footer .btn_area {
        text-align: center;
    }

    footer .btn_area button {
        background-color: #BFCEEB;
        margin-top: 80px;
        margin-bottom: 20px;
    }

    footer .content .frame {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    footer .content .frame div:first-child {
        padding: 30px 5px;
        border-top: 3px solid #4B2B2B;
        border-bottom: 3px solid #4B2B2B;
    }

    footer .content .frame a figure {
        width: 100%;
        max-width: 250px;
        height: 150px;
        margin-bottom: 20px;
        background-color: #f69256;
    }

    footer .content .frame a:last-child figure {
        margin-bottom: 0;
    }

    footer .content .frame .flex_container {
        justify-content: space-around;
        margin-top: 15px;
        text-align: center;
    }

    footer .content .frame .flex_container a {
        font-size: 1.2rem;
    }

    footer .bg_purple {
        color: #fff;
    }

    footer .bg_purple .copy {
        font-weight: bold;
        font-size: 1.2rem;
        text-align: center;
    }

    footer ul {
        justify-content: space-between;
        margin-bottom: 20px;
    }

    footer .content .frame .flex_container a,
    footer ul a {
        color: #fff;
        font-weight: bold;
    }

    footer .content .frame .flex_container a:hover,
    footer ul a:hover {
        color: #4B2B2B;
        transition: .5s;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
    }

    @media screen and (max-width:600px) {
        /*　画面サイズが600px以下からはここを読み込む　*/

        footer .footer_cate {
            display: block;
        }
        footer .content.flex_container{
            display: block;
        }
    }

    /* ーーーーーーーーーーーーーーーーーーーーフッター終わり */

    /* ーーーーーーーーーーーーーーーーーーーー固定ページ始まり */
    .page article {
        margin: 60px auto 120px;
        max-width: 960px;
    }

    /* ーーーーーーーーーーーーーーーーーーーー固定ページ終わり */

    /* ーーーーーーーーーーーーーーーーーーーーシングル（投稿）始まり */
    .grp-img-txt,
    .grp-txt-img {
        position: relative;
    }

    .grp-img-txt figure,
    .grp-txt-img figure {
        margin-top: 0;
        z-index: 1;
        display: block;
    }

    .grp-img-txt::after,
    .grp-txt-img::after {
        content: "";
        display: block;
        clear: both;
    }

    .grp-img-txt::before,
    .grp-txt-img::before {
        content: "";
        display: block;
        clear: both;
    }

    .grp-img-txt figure,
    .grp-img-txt img {
        max-width: 35%;
        float: left;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .grp-txt-img figure,
    .grp-txt-img img {
        max-width: 35%;
        float: right;
        margin-left: 20px;
        margin-bottom: 20px;
    }


    /* ーーーーーーーーーーーーーーーーーーーーシングル（投稿）終わり */