a,
a:active,
a:link,
a:focus {
  text-decoration: none;
  outline: none;
  transition: 0.2s;
}

p {
  display: block;
}

b {
  display: block;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
  padding-left: 20px;
}

input,
button,
select,
textarea {
  box-shadow: none;
  color: #2C2D2E;
  background-color: #F5F5F5;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input option,
button option,
select option,
textarea option {
  background-color: #F5F5F5;
  color: #2C2D2E;
}

input:placeholder,
button:placeholder,
select:placeholder,
textarea:placeholder {
  color: #737373;
}

textarea {
  resize: none;
  max-width: 100%;
  width: 100%;
  border: none;
  max-height: 160px;
  padding: 10px 15px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #F5F5F5;
  color: #2C2D2E;
  box-shadow: none;
}

textarea::placeholder {
  color: #737373;
}

input[type=text],
input[type=tel],
input[type=submit],
button,
input[type=password],
input[type=email] {
  -webkit-appearance: none;
  appearance: none;
  padding: 10px 15px;
  border: none;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
}

input[type=submit],
button {
  cursor: pointer;
}

input[type=number] {
  padding: 10px 15px;
  width: 100%;
  max-width: 440px;
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
  visibility: hidden;
  position: absolute;
  margin: 0;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
select:focus {
  outline: none;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.hidden {
  display: none;
}

.icon {
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon:hover {
  transition: 0.2s;
}

svg {
  transition: 0.2s;
}

svg path,
svg rect {
  transition: 0.2s;
}

svg:hover {
  transition: 0.2s;
}

svg:hover path,
svg:hover rect {
  transition: 0.2s;
}

@keyframes header {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.fixed {
  overflow-y: hidden;
  display: block;
  position: relative;
  background-color: #fff;
  max-width: calc(100% - 10px);
}

.fixed .header.scrolled {
  right: auto;
  max-width: calc(100% - 10px);
}

.fixed .header::after {
  height: 100%;
  width: 10px;
  right: -10px;
  top: 0;
  position: absolute;
  background-color: #fff;
  content: "";
}

@media (min-width: 1081px) {
  .only-mob {
    display: none !important;
  }

  .only-pc {
    display: block !important;
  }

  .only-mob-flex {
    display: none !important;
  }

  .only-pc-flex {
    display: flex !important;
  }

  .mob-header {
    display: none;
  }

  .header {
    display: block !important;
  }
}

@media (max-width: 1080px) {
  .only-mob {
    display: block !important;
  }

  .only-pc {
    display: none !important;
  }

  .only-mob-flex {
    display: flex !important;
  }

  .only-pc-flex {
    display: none !important;
  }

  .fixed {
    padding-right: 0;
    max-width: 100%;
  }

  .fixed .header.scrolled {
    max-width: 100%;
  }

  .fixed .header.scrolled::after {
    display: none;
  }

  .header {
    display: none;
  }

  .mob-header {
    display: block;
  }
}