@charset "utf-8";
 .btn_area{
   display:flex;
   flex-wrap: wrap;
   text-align:center;
   margin: 30px auto 0;
   justify-content: center;
 }
 .btn {
  font-size: 1rem;
  text-align: center;
  display: block;
  background-color: #f686d4;
  width: 158px;
  color: #fff!important;
  margin: 10px;
  padding: 10px 20px 20px;
  border-radius: 5px;
  font-weight: 900;
  position: relative;
}

 .btn:hover{
   background-color: #E62883;
   text-decoration: none;
 }
 .btn::after{
   content: '';
   border: 0;
   width: 5px;
   height: 5px;
   border: 2px solid;
   border-color:  transparent transparent #fff #fff;
   transform: rotate(-45deg);
       /* 矢印アイコンの位置を設定 */
     position: absolute;
     top: 70%;
     right: 47%;
 }
 /* .btn_area::after{
  content: "";
  width: 158px;
  margin: 10px;
  padding: 10px 20px 20px;
  display: block;
 } */
 /*ページトップへボタン*/
 #page_top{
  width: 90px;
  height: 90px;
  position: fixed;
  right: 20px;
  bottom: 0;
  background: #f686d4;
  opacity: 0.6;
  border-radius: 50%;
	z-index: 1000;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0px;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0px;
  left: 0;
  margin: auto;
  text-align: center;
}
 /* @media screen and (max-width: 739px) {
  .btn {
    font-size: .8rem;
    width: 40%;
    margin: 5px;
    padding: 10px 5px 20px;
    border-radius: 5px;
    font-weight: 900;
    position: relative;
  }
 } */
 @media screen and (max-width: 739px){
.btn {
    font-size: .8rem;
    width: 40%;
    margin: 5px;
    padding: 10px 5px 20px;
    border-radius: 5px;
    font-weight: 900;
    position: relative;
}
}