@charset "UTF-8";

/*-----------------リンクボタン_250303----------------*/
.consultation-area {
  text-align: center;
}
.btn-orange {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  background: #ff7f00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
　　transition: 0.3s all;
}
.btn-orange:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--i_btn_txt_color);
  pointer-events: none;
}
.btn-orange:before {
  position: absolute;
  content: " ";
  width: 7px;
  height: 7px;
  top: calc(50% - 4px);
  left: initial;
  right: 10px;
  border: initial;
  border-top: 2px solid var(--i_btn_txt_color);
  border-right: 2px solid var(--i_btn_txt_color);
  transform: rotate(45deg);
  transition: all 0.3s ease;
  z-index: 10;
}
.btn-orange:hover:before {
  right: 5px;
  transform: rotate(45deg);
  opacity: initial;
}
.consultation-text {
  margin-top: 15px;
}
