@charset "utf-8";

/* btn-popup
================================================== */
.popup {
  position: fixed;
	min-width: 1366px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: 0px;
  text-align: center;
  opacity: 0;
  transition: 0.5s;
  z-index: 10;
}

.popup__inner {
	position: relative;
	width: 1152px;
	height: 74px;
	margin: 18px auto;
}

.popup.js_active {
  transform: translateY(0%);
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.50);
}

.popup.js_inactive {
  visibility: hidden;
  z-index: -1;
}

.btn-popup-01,
.btn-popup-02 {
	position: absolute;
  width: 500px;
  height: 70px;
  padding-top: 24px;
  border-radius: 4px;
  text-align: center;
  content: "";
  vertical-align: 0;
  color: #fff;
}

.btn-popup-01 {
  background-color: #eaa309;
  box-shadow: 0 4px 0 #ba8207;
	left: 68px;
}

.btn-popup-02 {
  background-color: #2b850a;
  box-shadow: 0 4px 0 #226908;
	right: 68px;
}

.btn-popup-01::before,
.btn-popup-02::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 22px;
  height: 22px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}

.btn-popup-01::after,
.btn-popup-02::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}

.btn-popup-01::after {
  border-left: 9px solid #eaa309;
}

.btn-popup-02::after {
  border-left: 9px solid #2b850a;
}

.btn-popup-01:hover,
.btn-popup-02:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: none;
  transform: translateY(4px);
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -ms-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}

.btn-popup-01:hover {
  background-color: #eaa309;
}

.btn-popup-02:hover {
  background-color: #2b850a;
}

.btn-popup-01 a,
.btn-popup-02 a {
  color: #fff;
  text-decoration: none;
}

.popup .btn-popup {
	top: 18px;
	vertical-align: top;
}

.popup .btn-popup .main {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 4px
}

.popup .btn-popup .sub {
	font-size: 14px;
}

@media screen and (max-width: 780px) {
  .popup {
    position: fixed;
    min-width: 100%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0px;
    text-align: center;
    opacity: 0;
    transition: 0.5s;
    z-index: 10;
  }

  .popup__inner {
    position: relative;
    width: 97%;
    height: 15.2307vw;
    margin: 0 auto;
  }

  .popup.js_active {
    transform: translateY(0%);
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.50);
  }

  .popup.js_inactive {
    visibility: hidden;
    z-index: -1;
  }

  .btn-popup-01,
	.btn-popup-02 {
    position: absolute;
    width: 50%;
    height: 13.5307vw;
		top: 1vw;
		bottom: 0.85vw;
  	box-shadow: none;
    border-radius: 0;
    text-align: center;
    content: "";
    vertical-align: 0;
  }

  .btn-popup-01 {
    left: 0;
    padding-top: 3.133%;
  }

  .btn-popup-02 {
    right: 0;
    padding-top: 5.133%;
  }

	.btn-popup-01::before,
	.btn-popup-02::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: 7px;
		width: 15px;
		height: 15px;
		margin: auto;
		border-radius: 20px;
		background-color: #fff;
	}

	.btn-popup-01::after,
	.btn-popup-02::after {
		right: 10px;
		border-top: 4px solid transparent;
		border-right: 0 solid transparent;
		border-bottom: 4px solid transparent;
	}

	.btn-popup-01::after {
		border-left: 7.5px solid #eaa309;
	}

	.btn-popup-02::after {
		border-left: 7.5px solid #2b850a;
	}

	.btn-popup-01:hover,
	.btn-popup-02:hover {
		transform: translateY(0);
		-webkit-transition: all 0.15s;
		-moz-transition: all 0.15s;
		-ms-transition: all 0.15s;
		-o-transition: all 0.15s;
		transition: all 0.15s;
	}

  .popup .btn-popup .main {
    font-size: 3.5897vw;
    font-weight: bold;
    margin-bottom: 4px
  }

  .popup .btn-popup .sub {
    font-size: 3.0768vw;
  }
}
