* {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: #cccccc;
  color: #000000;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

input {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}

a {
  display: block;
  transition: all .3s;
}

img {
  width: 100%;
}

.inner {
  width: 1350px;
  margin: 0 auto;
  max-width: 100%;
}

/*----- flex -----*/
.f-sb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.f-s {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.f-e {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
}

/* SP */
@media only screen and (max-width: 1180px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }

}