/*------------------------------------
ボタン用CSS
------------------------------------*/
.defalt-btn {
  text-align: center;
}
.defalt-btn .normal-btn {
  font-family: var(--font-sub-3);
  display: inline-block;
  min-width: 260px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px 0 40px;
  font-size: 0.9rem;
  box-sizing: border-box;
  transition: 0.3s;
  letter-spacing: 1px;
  border-radius: 5px;
  position: relative;
  background-color: var(--color-main);
  color: var(--color-white);
}
.defalt-btn .normal-btn .arrow {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 12px;
  height: 1px;
  background-color: var(--color-white);
}
.defalt-btn .normal-btn .arrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: translateY(-42%) rotate(-45deg);
  position: absolute;
  left: 6px;
  top: 50%;
}
.defalt-btn .normal-btn:hover {
  background-color: var(--color-sub);
}

@media only screen and (max-width: 1080px) {
  
}

@media only screen and (max-width: 767px) {
  
}