@charset "UTF-8";
/* scss/_floatflex.scss */
/* ============================================ */
/* clearfix：2列のときだけ
/* （テキスト回り込み、親要素を『_fxd-.scss』と併用） */
/* ============================================ */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
/* 主に文章用 */
.floatN {
  width: auto;
  float: none;
  margin: 0 auto;
}

/* 主に画像用 */
[class^="floatL"] {
  flex: none;
  float: left;
  margin-right: 1.618rem;
}

[class^="floatR"] {
  flex: none;
  float: right;
  margin-left: 1.618rem;
}

[class^="floatL"] img,
[class^="floatR"] img {
  width: 100%;
}

.floatRw50,
.floatLw50 {
  width: 50%;
}

.floatRw40,
.floatLw40 {
  width: 40%;
}


