@charset "utf-8";

/*========= CVボタンのためのCSS ===============*/
.button10 a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin: 0 auto;
	padding:7px 30px 15px;
	max-width: 400px;
	color: #000000;
	font-size: 1.8rem;
	font-weight: bold;
	background-color: #eec700;
	border-radius: 50vh;
	transition: 0.3s;
}

.button10 a::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	width: calc(100% - 0px);
	height: calc(100% - 0px);
	border: 3px solid #000000;
	border-radius: 50vh;
	transition: 0.2s;
}

.button10 a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid #000000;
  border-right: 3px solid #000000;
  transform: rotate(45deg);
  transition: 0.3s;
}

.button10 a:hover::before {
	top: 0;
	left: 0;
	border: 3px solid #ee7e00;
}

.button10 a:hover {
	text-decoration: none;
	background-color: #ee7e00;
	color: #fff;
	padding:11px 30px 11px;
}

.button10 a:hover::after {
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transition: 0.3s;
}



/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive{
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position:fixed;
	z-index: 999;
	top: 0;
	width:100%;
	height: 100vh;
}

/*丸の拡大*/
.circle-bg{
	position: fixed;
	z-index:3;
	/*丸の形*/
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgb(255,255,255,0.9);
	/*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
	top:-50px;
	transition: all 1.5s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
	display: none;/*はじめは表示なし*/
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999; 
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
	/*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
	position: absolute;
	z-index: 999;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
	opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
  text-align: center; 
  list-style: none;
}

#g-nav li a{
  color: #333;
  font-size: 1.3rem;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#g-nav li a:hover{
  color: #ea5902;
  text-decoration: underline;
}

.btn-staff-sp {
	background-color: #ea5902;
	padding: 0 10px;
	border-radius: 5px;
	margin-top: 20px;
}

.btn-staff-sp a {
	color: #fff !important;
}


/*========= ボタンのためのCSS ===============*/
.openbtn1{
	position:fixed;
	top:15px;
	right: 15px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
	width: 80px;
	height:65px;
	background: rgba(255,255,255,1.0);
	border-radius: 8px;
}
  
/*×に変化*/  
.openbtn1 span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 22px;
	height: 3px;
	border-radius: 2px;
	background-color: #ea5902;
	width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:30px;
}

.openbtn1 span:nth-of-type(3) {
  top:45px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}

@media screen and (max-width : 860px) {
	.button10 a {width: 80%; font-size: 1.5rem;}
}