@charset "utf-8";
/*------------------------------------------------------------
	問合せボタン（default color：オレンジ）
------------------------------------------------------------*/
.inqbtnBox {
	margin: 55px auto;
	width: 1100px;
}

.inqbtnBox .dlBox .lBox {
	width: 550px;
	float: left;
}

.inqbtnBox .dlBox .rBox {
	width: 550px;
	float: right;
}

.guideBtn_pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.guideBtn_shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.guideBtn_edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    to left,
    hsl(340deg 100% 16%) 0%,
    hsl(35deg 94% 39%) 8%,
    hsl(29deg 81% 30%) 92%,
    hsl(340deg 100% 16%) 100%
  );
}

.guideBtn_front {
  display: block;
  position: relative;
  padding: 20px 80px;
  border-radius: 12px;
  font-size: 1.2rem;
  color: white;
  background: hsl(45deg 93% 47%);
  will-change: transform;
  transform: translateY(-4px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.guideBtn_pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.guideBtn_pushable:hover .guideBtn_front {
  transform: translateY(-6px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.guideBtn_pushable:active .guideBtn_front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.guideBtn_pushable:hover .guideBtn_shadow {
  transform: translateY(4px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.guideBtn_pushable:active .guideBtn_shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.guideBtn_pushable:focus:not(:focus-visible) {
  outline: none;
}

.edge_green {
  background: linear-gradient(
    to left,
    hsl(105deg 100% 16%) 0%,
    hsl(109deg 91% 30%) 8%,
    hsl(109deg 81% 30%) 92%,
    hsl(105deg 100% 16%) 100%
  );
}

.front_green {
	background: #06c755;
}
