@charset "utf-8";

/*------------------------------------------------------------
template0001 共通
------------------------------------------------------------*/

/*------------------------------
枠
------------------------------*/
.template0001 .inner {
	width: 80%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0;
}

@media screen and (max-width:767px){
	.template0001 .inner {
		width: 100%;
		padding: 50px 15px;
	}
}

/*------------------------------
タイトル
------------------------------*/
.template0001 .title,
.template0001 .title_s {
    font-weight: bold;
    font-feature-settings: "palt";
    letter-spacing: .1em;
    text-transform: uppercase;
	text-align: center;
}

.template0001 .title {
	margin-bottom: 10px;
    font-size: 44px;
    line-height: 1.2;
}

.template0001 .title_s {
	margin-bottom: 20px;
}

/*下線*/
.template0001 .title_hr {
    display: block;
    width: 50px;
    height: 4px;
    margin: 0 auto 40px;
    border: 0;
	background: var(--color_sub);
}

/*補足*/
.template0001 .title_auxiliary {
	margin-bottom: 40px;
	text-align: center;
}

@media screen and (max-width:767px){
	.template0001 .title {
		font-size: 28px;
	}

	/*下線*/
	.template0001 .title_hr {
		margin: 15px auto 30px;
	}
}

/*------------------------------
ボタン
------------------------------*/
.template0001 .btn {
	position: relative;
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 50px auto 0;
	padding: 20px 10px;
	background: #000;
	border: 1px solid #000;
	transition: all .3s;
	z-index: 0;
	cursor: pointer;
	/*font*/
	color: #fff;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	line-height: 1;
}

/*矢印*/
.template0001 .btn span{
	position: relative;
	display: inline-block;
	padding-right: 50px;
}

.template0001 .btn span:before,
.template0001 .btn span:after{
	content: '';
	position: absolute;
	right: 0;
	height: 1px;
	background: #fff;
	transition: 0.3s;
}

.template0001 .btn span:before{
	top: calc(50% - 2px);
	transform: translateY(calc(-50% - 2px)) rotate(30deg);
	width: 12px;
}

.template0001 .btn span:after{
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
}

@media (min-width:768px){
	.template0001 .btn:hover{
		color: #000;
	}

	.template0001 .btn:before{
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 0;
		display: block;
		background: #fff;
		transition: .3s;
		left: 0;
	}

	.template0001 .btn:hover:before{
		width: 100%;
		z-index: -1;
	}

	/*矢印*/
	.template0001 .btn:hover span:before,
	.template0001 .btn:hover span:after{
		background: #000;
	}
}

/*------------------------------
その他
------------------------------*/
/*折り返し*/
.template0001{
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}



/*------------------------------------------------------------
アニメーション
------------------------------------------------------------*/

/*------------------------------
ぼんやり現れる
------------------------------*/
.anime_vaguely {
	opacity: 0;
}

@keyframes anime_vaguely {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.anime_vaguely.active {
	animation: anime_vaguely 1.0s ease forwards 0.5s;
}

/*------------------------------
下から現れる
------------------------------*/
.anime_bottom {
	opacity: 0;
}

@keyframes anime_bottom {
	0% {
		transform: translateY(120px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.anime_bottom.active {
	animation: anime_bottom 0.65s ease forwards 0.5s;
}

/*------------------------------
左から現れる
------------------------------*/
.anime_left {
	opacity: 0;
}

@keyframes anime_left {
	0% {
		transform: translateX(-120px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.anime_left.active {
	animation: anime_left 0.65s ease forwards 0.5s;
}

/*------------------------------
右から現れる
------------------------------*/
.anime_right {
	opacity: 0;
}

@keyframes anime_right {
	0% {
		transform: translateX(120px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.anime_right.active {
	animation: anime_right 0.65s ease forwards 0.5s;
}

/*------------------------------
テキストタイピング
------------------------------*/
.TypingStr {
	display: none;
}




