@charset "utf-8";

/*==================================================
future独自コメ1の正方形アイコン用CSS
===================================*/

.square {
  float: left;
  margin: 10px 7px;
  width: 100px;
  height: 100px;
  background-color: #fff;
  text-align: center;
}
.square-in {
  display: table-cell;
  vertical-align: middle;
  width: inherit;
  height: inherit;
  text-align: center;
  border: 1px solid #222;
  border-radius: 10px;
}
.square-clearfix::after {
    content: " ";
    display: block;
    clear: both;
}
.tensen {
  height: 1px;
  position: relative;
}
.tensen::before {
  content: "";
  background-image: linear-gradient(to right, #000, #000 3px, transparent 3px, transparent 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}