@charset "utf-8";

/*==================================================
ギャラリーのためのcss
===================================*/
.c-gallery{
    columns: 2;/*段組みの数*/
    padding:0 15px;/*ギャラリー左右に余白をつける*/
    }
    
    .c-gallery li {
        margin-bottom: -8px;/*各画像下に余白をつける*/
        margin-right: -5px;
        margin-left: -5px;
    }
    
    /*ギャラリー内のイメージは横幅100%にする*/
    .c-gallery img{
        width:100%;
        height:auto;
        vertical-align: super;/*画像の下にできる余白を削除*/}
    
    /*　横幅900px以下の段組み設定　*/
    @media only screen and (max-width: 900px) {
        .c-gallery{
        columns:2;
        }	
    }
    
    @media only screen and (max-width: 768px) {
        .c-gallery{
        columns: 2;
        }	
    }
    
    
    

    /*******ボタン*******/
    .c-btn_main{
        padding: 20px 10px;
    }
    .c-btn_main .c-btn{
        display: block;
        width: 100%;
        margin: 0;
        padding: 1.5rem 3.0rem;
        background-color: #e2117f;
        border-radius: 8px;
        box-sizing: border-box;
        text-decoration: none;
        transition: 0.3s;   
    }
    .c-saport .c-btn{
        background-color: #29CFE3;
    }
    .bt__txt{
        display: block;
        position: relative;
        color: #fff;
        font-size: 16px;
        text-align: center;
        padding-left: 30px;
    }
    .bt__txt::before{
        content: '';
        width: 20px;
        height: 20px;
        background: #ffffff;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: auto;
    }
    .bt__txt::after{
        content: '';
        width: 8px;
        height: 8px;
        border-top: 3px solid #e2117f;
        border-right: 3px solid #e2117f;
        box-sizing: border-box;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        left: 5px;
        bottom: 0;
        margin: auto;
        transition: 0.3s;
    }
    .c-saport .bt__txt::after{
        content: '';
        width: 8px;
        height: 8px;
        border-top: 3px solid #29CFE3;
        border-right: 3px solid #29CFE3;
        box-sizing: border-box;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        left: 5px;
        bottom: 0;
        margin: auto;
        transition: 0.3s;
    }

    @media screen and (min-width: 768px){
        .br-sp{
            display: none;
        }
    }

    .c-gallery_wrap{
        padding: 0 0 40px 0;
    }


    .type-blog{
        font-weight: bold;
    }

    .headimg{
        width: 100%;
        padding: 0 10px;
    }
    @media screen and (max-width: 768px){
        .headimg{
            width: 100%;
        }
    }
    .headimg .repo-link{
        pointer-events: none;
    }
    .slick-slide{
        height: unset;
    }
    .slick-dots{
        bottom: -7px;
    }
    .slick-dots li button:before{
        font-family: unset;
        background-color: #03c1c4;
        border-radius: 50px;
        width: 10px;
        height: 10px;
    }