@charset "utf-8";
/* CSS Document */

.box-btn-area {
  display: flex;
  justify-content: space-between; 
}
.box-btn-area .item {
  width: 47%;
}
.box-btn-area .item p {
  font-size: .83em;
}

.btn2 {
	margin: 0 auto;
  padding: 26px 0;
  display: block;
	height: 48px;
	line-height: 48px;
	color: #fff !important;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
}
.btn2:hover {
	opacity: 0.8;
}

.btn2.type2 {
  height: auto;
  line-height: normal;
  font-size: 16px;
}
.btn2.type2:after {
  content: ">";
  display: inline-block;
  padding-left: 20px;
}
.btn2.type2 small {
  display: inline-block;
  margin-left: 10px;
  font-size: 11px;
  vertical-align: middle;
}

.arrow {
  position: relative;
  margin: 0 10px 0 0;
  padding: 9px 0 9px 10px;
  display: inline-block;
  width: 240px;
  background-color: #043491;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
}
.arrow:before {
  position:absolute;
  content: "";
  border: 16px solid transparent;
  border-left: 10px solid #043491;
  right: -26px;
  top: 0;
}

@media screen and (max-width:640px){
  .box-btn-area {
    flex-direction: column;
  }
  .box-btn-area .item {
    margin-bottom: 15px;
    width: 100%;
    max-width: none;
  }
  
  .btn2.type2 {
    width: 96%;
    height: auto;
    line-height: normal;
    font-size: 16px;
  }
  .btn2.type2:after {
    content: ">";
    padding-left: 0;
    display: table-cell;
    vertical-align: middle;
  }
  .btn2.type2 small {
    display: block;
    margin-top: 5px;
  }
  .arrow {
    margin: 0 0 15px;
  }
}