@charset "utf-8";
/*------------------------------------------------------------
	書式設定
------------------------------------------------------------*/
/* テキストの位置 */
.taLeft { text-align: left !important; }
.taCenter { text-align: center !important; }
.taRight { text-align: right !important; }

/* フォントの太さ */
.fwNormal { font-weight: normal !important; }
.fwBold { font-weight: bold !important; }

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
	* html .clearfix {
		zoom: 1;
	}

	*+html .clearfix {
		zoom: 1;
	}

.clearfix:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

/*------------------------------------------------------------
	common
------------------------------------------------------------*/
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/

.comBtn {
	text-align: center;
}
.comBtn a {
    padding: 13px 20px 12px 13px;
    width: 290px;
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: 0.2em;
    text-align: center;
    box-sizing: border-box;
    background-color: #000;
}
.comBtn a::after {
    width: 8px;
    height: 8px;
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 50%;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-70%);
    content: "";
}

.scrFadeTop {
	-webkit-transition: transform 1s 0.5s ease-in-out, opacity 1s linear;
	-moz-transition: transform 1s 0.5s ease-in-out, opacity 1s linear;
	-ms-transition: transform 1s 0.5s ease-in-out, opacity 1s linear;
	transition: transform 1s 0.5s ease-in-out, opacity 1s linear;
	transform: translateY(10px);
	opacity: 0;
}

.scrFadeTop.view {
	transform: translateY(0);
	opacity: 1;
}

@media screen and (max-width: 767px) {
	.comBtn a {
		padding: 22px 18px 23px!important;
		width: 90%!important;
        max-width: 340px!important;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
		font-size: 1.25rem!important;
		letter-spacing: 0.3em;
		background: #000;
	}
    .comBtn a::after {
        display: inline-block!important;
        right: 20px;
    }
	.comBtn a:hover, .comBtn input:hover {
		opacity: 1;
	}

}