* {
  border: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}
main {
  margin-top: var(--header-height);
}

.image-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.common-sp {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .common-sp {
    padding-block: 50px;
  }
}
@media (min-width: 1200px) {
  .common-sp {
    padding-block: 60px;
  }
}

.font-primary {
  font-family: "Montserrat", sans-serif;
}

.font-secondary {
  font-family: "Cabin", sans-serif;
}

.custom-btn-primary {
  color: #fff;
  font-family: "Cabin", sans-serif;
  background-color: #000;
  border: 1px solid #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  padding: 10px 20px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: color ease 0.3s, background-color ease 0.3s;
  transition: color ease 0.3s, background-color ease 0.3s;
  border-radius: 10px;
}
@media (hover: hover) {
  .custom-btn-primary:hover {
    outline: none;
    text-decoration: none;
    background-color: white;
    color: #000;
  }
}