@charset "utf-8";

/* 汎用css
---------------------------*/
.sp {
	display: none;
}
@media screen and (max-width: 640px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	span.sp {
		display: inline;
	}
}
.fix-body {
	overflow: hidden;
}

/* title */
.ttl-h2 {
	font-size: 28px;
	font-weight: 500;
}
.ttl-h2 span {
	display: block;
	color: var(--point);
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	margin-bottom: 60px;
}
@media (max-width: 640px) {
	.ttl-h2 span {
		margin-bottom: 40px;
	}
}

/* font weight */
.font-bold {
	font-weight: 700;
}

/* anchor */
.anchor {
	text-align: right;
}
.anchor a {
	display: inline-block;
	width: auto;
	color: var(--point);
	font-weight: 500;
	line-height: 1.2;
	padding: 0 60px 20px 30px;
	position: relative;
}
.anchor a::before,.anchor a::after {
	display: block;
	content: "";
	background-color: var(--point);
	position: absolute;
	right: 0;
	bottom: 0;
	transition: .4s ease-out;
}
.anchor a::before {
	width: 100%;
	height: 1px;
}
.anchor a::after {
	width: 1px;
	height: 100%;
}
.anchor a span {
	display: block;
	width: 5.6px;
	height: 5.6px;
	border-top: 1px solid var(--point);
	border-right: 1px solid var(--point);
	position: absolute;
	top: .5em;
	right: 30px;
	transition: .2s ease-out;
	transform: rotate(45deg);
}
.anchor-d a {
	color: var(--bg-ba);
}
.anchor-d a::before,.anchor-d a::after {
	background-color: var(--bg-ba);
}
.anchor-d a span {
	border-top: 1px solid var(--bg-ba);
	border-right: 1px solid var(--bg-ba);
}
@media (any-hover: hover) {
	.anchor a:hover::before {
		width: 0;
	}
	.anchor a:hover::after {
		height: 0;
	}
	.anchor a:hover span {
		right: 25px;
	}
}

/* list */


/* ico */


/* margin */
.mt60-40 {
	margin-top: 60px !important;
}
.mt100-40 {
	margin-top: 100px !important;
}
@media (max-width: 640px) {
	.mt60-40,.mt100-40 {
		margin-top: 40px !important;
	}
}

/* setAnime */
.mask-open-r,.mask-open-l,.mask-slide {
	transition: 1s ease-out;
}
.mask-open-r {
	clip-path: polygon(100% 100%,100% 0,100% 100%,0 100%);
}
.mask-open-r.animated {
	clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
}
.mask-open-l {
	clip-path: polygon(0 0,0 100%,100% 100%,0 100%);
}
.mask-open-l.animated {
	clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
}
.mask-slide {
	clip-path: polygon(0 0,0 0,0 100%,0 100%);
}
.mask-slide.animated {
	clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
}