@charset "utf-8";
/* ===================================================================

 file name  :class.css
 style info :クラス指定

=================================================================== */



/*
.cl-色番号　カラー
---------------------------*/
.cl-fff{ color: #fff;}
.cl-000{ color: #000;}
.cl-777{ color: #777;}
.cl-77b7ba{ color:#77b7ba;}

/*
.bg-色番号　背景色
---------------------------*/
.bg-f7f7f7{background: #f7f7f7;}


/*
.ttl-任意名称　タイトル
---------------------------*/

/*
.btn-effect_opacity　ボタン
---------------------------*/
.btn-effect_opacity{
	transition: all ease .3s;
}
.btn-effect_opacity:hover{
	opacity:0.6;
}

/*
.btn-primary　ボタン
---------------------------*/
.btn-primary{
	max-width: 520px;
	margin: 0 auto;
}
.btn-primary a{
	display: block;
	padding: 15px 0;
	background: #77b7ba;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	border-radius: 10px;
	text-align: center;
	position: relative;
}
.btn-primary a::before{
	content: "";
	display: block;
	width: 31px;
	height: 31px;
	background: url(../../images/common/ico_arrow.svg) no-repeat 50% 50% / 100% auto;
	position: absolute;
	top: 50%;
	right: 12px;
	transform:translateY(-50%);
}

@media screen and (max-width: 767px){
	.btn-primary a{
		font-size: 1.2rem;
		border-radius: 5px;
	}
	.btn-primary a::before{
		width: 19px;
		height: 19px;
		right: 10px;
	}
}

/*
 * .txt-shadow
 * テキスト　シャドウをつける
 *----------------------------------------------------------- */
.txt-shadow{
	text-shadow: 0 0 3px rgba(255,255,255,0.5),
					1px 0 3px rgba(255,255,255,0.5),
					0 1px 3px rgba(255,255,255,0.5),
					-1px 0 3px rgba(255,255,255,0.5),
					0 -1px 3px rgba(255,255,255,0.5),
					0 0 5px rgba(255,255,255,0.5);
}
.txt-shadow-wh{
	color: #FFF;
	text-shadow: 0 0 3px rgba(0,0,0,0.5),
					1px 0 3px rgba(0,0,0,0.5),
					0 1px 3px rgba(0,0,0,0.5),
					-1px 0 3px rgba(0,0,0,0.5),
					0 -1px 3px rgba(0,0,0,0.5),
					0 0 5px rgba(0,0,0,0.5);
}



/*
 * #pageTop
 * 先頭に戻るボタン
 *----------------------------------------------------------- */
#pageTop{
	position: fixed;
	right:10px;
	bottom:10px;
	opacity: 0;
	pointer-events: none;
	transition: all ease .2s;
	z-index: 5501;
}
#pageTop.show{
	opacity: 1;
	pointer-events: auto;
}
#pageTop a{
	position: relative;
	display: block;
	width: 68px;
	height: 68px;
	background: rgba(0,0,0,0.7);
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	transition: all ease .2s;
}
#pageTop a::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 5px 0 0 -8px;
  transform: rotate(-45deg);
  transition: all ease .2s;
}
#content #pageTop a::after {
	content: '';
	display: block;
	background: #FFF;
	width: 26px;
	height: 1px;
	position: absolute;
	top: 25px;
	left: 50%;
	margin: 0 0 0 -13px;
}
#pageTop a:hover{
	background: rgba(0,0,0,1);
}
#pageTop a:hover::before {
	margin-top: 0;
}
@media screen and (max-width: 767px){
	/* ---------------------------------------------------------------------------
		#pageTop cclibrary-jsと連動　表示の際クラスshow付与
		スタイルは適宜変更
	--------------------------------------------------------------------------- */
	#pageTop{
		right:10px;
		bottom:10px;
	}
	#pageTop a{
		width: 40px;
		height: 40px;
	}
	#pageTop a::before {
		width: 10px;
		height: 10px;
		margin: 2px 0 0 -6px;
	}
	#content #pageTop a::after {
		width: 13px;
		top: 14px;
		margin: 0 0 0 -7px;
	}
}

