@charset "utf-8";
/* ============ */
.underL {
		position: relative;
}
.underL::after {
		content: '';
		display: block;
		position: absolute;
		bottom: -2px;
		left: 0;
		width: 100%;
		height: 1px;
		background: #000;
		transform-origin: left center;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		transform: scaleX(0);
}
@media (hover: hover) {
		a:hover .underL::after {
				transform: scaleX(1)
		}
}
.underL.bgNvy::after {
		background: #1F2A66;
}
.underL.bgWht::after {
		background: #fff;
}
/* ========== */
.hrCenter {
		display: flex;
		justify-content: center;
}
.hrRight {
		display: flex;
		justify-content: flex-end;
}
/* ========== */
.linkBtn {
		width: 200px;
		letter-spacing: 0
}
.linkBtn a {
		display: flex;
		align-items: center;
		width: 100%;
		height: 40px;
		border: 1px solid #000;
		text-decoration: none;
		border-radius: 60px;
		color: #000;
		transition: background 0.3s;
		position: relative;
		box-sizing: border-box;
		padding: 0 20px
}
.linkBtn a .iconBlank {
		position: absolute;
		width: 11px;
		height: 8px;
		right: 15px;
		top: calc(50% - 4px);
		pointer-events: none
}
.iconBlank::before, .iconBlank::after {
		content: '';
		display: block;
		position: absolute;
		box-sizing: border-box
}
.iconBlank::before {
		width: 8px;
		height: 6px;
		border: 1px solid #000;
		right: 3px;
		top: calc(50% - 2px)
}
.iconBlank::after {
		width: 7px;
		height: 7px;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
		right: 1px;
		top: calc(50% - 4px)
}
@media (hover: hover) {
		.linkBtn a:hover {
				background: #000;
				color: #fff;
		}
		.linkBtn a:hover .iconBlank::before {
				border: 1px solid #fff;
		}
		.linkBtn a:hover .iconBlank::after {
				border-top: 1px solid #fff;
				border-right: 1px solid #fff;
		}
}
/* ========== */
.alignright {
		text-align: right;
}
.hrCenter {
		display: flex;
		justify-content: center;
}
/* ========== */
.mobileBr {
		display: none
}
@media(max-width: 960px) {
		.tabletBr {
				display: none
		}
}
@media(max-width: 767px) {
		.pcBr {
				display: none
		}
		.mobileBr {
				display: block
		}
}
.clear {
		clear: both;
}
/* ========== */
.anchor {
		scroll-margin-top: 100px;
}
/* ========== */
.fadeInNml {
		opacity: 0;
		transition: opacity 0.3s linear;
}
.fadeInNmlActive {
		opacity: 1;
}