@charset "UTF-8";

/* CSS Document */
/**{outline:1px solid #AA2E30;}*/
body {
  background-color: white;
}

.fNavi {
  border-bottom: 1px solid #FFFFFF;

  ul {
    display: flex;
    padding-top: 80px;
    margin: auto auto 20px;

    li {
      height: 31px;
      margin-right: 200px;
      list-style: none;

      a {
        display: flex;
        align-items: center;
        height: 100%;
        color: white;
        text-decoration: none;

        &::before {
          display: inline-block;
          content: "";
          width: 28px;
          height: 31px;
          margin-right: 12px;
          background-image: url("../common_img/flower-f.png");
          background-size: cover;
        }
      }
    }
  }
}