@charset "utf-8";

/*
フレックスコンテナー：レスポンシブ
---------------------------------------------------------*/
.flex-ctr {
    display: flex;
}

.flex-ctr.type1 {
    justify-content:space-between;
}

.flex-item{
    width: 49%;
}
.flex-item{
    width: 49%;
}
@media print,screen and (max-width: 1024px)  {
    .flex-ctr {
        flex-direction: column;
    }
    .flex-item{
        width: 100%;
    }
}

/*タイプ2*/
.flex-item.half {
    width: 50%;
}
.flex-item.half.type1 {
    margin: 0 30px 0 0;
}

@media print,screen and (max-width: 1024px)  {
    .flex-item.half {
        width: 100%;
    }
    .flex-item.half.type1 {
        margin: 0 0 1em 0;
    }
}

/*============================================================

追加汎用CSS

============================================================*/

.border{
    border: solid 1px #000;
}

.li-none{
    list-style: none;
}
.di-in{
    display:inline;
}
.di-ib{
    display: inline-block;
}
.di-bl{
    display: block;
}
.fl-row{
    display: flex;
    flex-flow: row;
}
.fl-col{
    display: flex;
    flex-flow:column;
}
.fl-1{
    flex: 1
}
.ai-c{align-items: center;}
.ai-s{align-items:flex-start;}
.ai-e{align-items:flex-end;}

.jc-c{justify-content: center}
.jc-s{justify-content: flex-start}
.jc-e{justify-content: flex-end}

.fl-1{
    flex: 1
}

.ai_c-jc_c{
    align-items: center;
    justify-content: center;
}
.ai-jc_c-c{
    align-items: center;
    justify-content: center;
}
.ai-jc_cs{
    align-items: center;
    justify-content: center;
}




