/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 05 2025 | 02:47:07 */
.page-id-7117 {
  background-color: #F2F2F2;
}     /*背景色*/

.border:before{
	
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	border-bottom: solid 1px #000;
  animation: border_anim 1.5s linear forwards;
	
  animation-timing-function:ease-in;
	
} 

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
		
	}
} /*直線のアニメーション*/

.btn_box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
}

.btn{
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
  line-height: 50px;
  width: 160px;
  height: 50px;
  background: #0D2044;
  margin: auto;
  border:1px solid #ffffff;
  position: relative;
  display: block;
  overflow: hidden;
  transition: 0.5s;
  
  text-decoration: none;
}

.btn:after {
  font-family: "FontAwesome";
  content: "\f061";
  position: absolute;
  right: 10px;
	
	
}

.btn:hover:after {
  transform: rotate3d(1,0,0,360deg);
  transition: 2s;
	
	
}
.btn:hover{
     background: #ffffff;
	  text-decoration-color:0D2044;
	  border:1px solid #0D2044;
} /*ボタンのアニメーション*/

 
