@charset "utf-8";

/*-----------------------------------------
  import css files
-----------------------------------------*/

@import "pc.css";
@import "sp.css";

/*flex 個別*/
.flex {
	display:-ms-flexbox;
	display:-webkit-flex;
	-js-display: flex;
	display:flex;
}
/*flex インライン要素*/
.flex-in {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}
/*flex 縦並び*/
.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
/*flex 縦並び 逆順*/
.flex-column-r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;

}

/*flex 折り返す*/
.flex-wrap {
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
/*要素の逆順*/
.fd-rr {
	-ms-flex-direction: row-reverse;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
/*要素の均等配置　左右外側マージン無し*/
.jc-sb {
    -ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
/*要素の均等配置　左右外側マージン有り*/
.jc-sa {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
/*要素の横左寄せ*/
.jc-l {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
/*要素の横中央寄せ*/
.jc-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
/*要素の横右寄せ*/
.jc-r {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
/*要素の縦中央寄せ*/
.ai-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/*要素の縦下寄せ*/
.fw-c {
  -webkit-box-pack:end;
  -ms-flex-pack:end;
  justify-content:flex-end;
  -ms-flex-flow: column;
      flex-flow: column;
}
/*画像が縦に伸びるのを回避*/
.ai-fs {
    -webkit-box-align:start;
	-ms-flex-align:start;
	align-items: flex-start;
}
.fw-w {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}