@charset "UTF-8";

/* CSS Document */
* {
  /* outline: 1px solid #AA2E30; */
}

body {
  background-color: white;
}

.header {
  width: 100%;
  padding-block: 10px;

  img {
    width: 175px;
    height: auto;
  }
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1600px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav {
  width: 80%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;

  ul {
    list-style: none;
    display: flex;
    column-gap: 35px;

    a {
      text-decoration: none;
    }
  }
}

.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;
        }
      }
    }
  }
}

@media (width <=770px) {
  .inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}