@charset "utf-8";

header{
	z-index: 10;
	height: 64px;
	position: static;
	top: 0px;
	background-color: #333;
	width: 100%;
	text-align: center;
	z-index: 2;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
a {
	color: #fff;
	text-transform: uppercase;
}

ul.header_text2 {
	overflow:hidden;
	list-style:none;
	margin: 0 auto;
	z-index: 20;
}

li.header_text3 {
	display: inline-block;
	padding: 22px 20px 20px 20px;
	font-size: 18px;
	font-family: "CI","Meiryo";
	font-weight: bold;
}


.btn4{
  text-transform: uppercase;
  text-align: center;
  position: relative;
  text-decoration: none;
  display:inline-block;
}

.btn4::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: #3367ff;
  display: block;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1)
}
.btn4:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1)
}

.btn2{
  text-transform: uppercase;
  text-align: center;
  position: relative;
  text-decoration: none;
  display:inline-block;
  border-bottom: 2px solid #3367ff;

}