@charset "UTF-8";
/*フェードイン*/
.first-text{
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
}
.first-text p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
	font-size: 24px;
    font-family: sans-serif;
    text-align: center;
    letter-spacing: 0.25em;
	color: #fff;
}

/*フローティングバナー*/
.floating-bnr.bnr01 {
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05), 0 8px 14px rgba(0, 0, 0, 0.08);
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: auto;
    max-width: 90vw;
    height: auto;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 20px 20px;
	font-size: 1.25em;
    z-index: 9999;
}
.floating-bnr a:hover {
    opacity: 0.7;
    transition: 0.2s;
}
/*閉じるボタン*/
.bnr_close {
    background-color: #f8f8f8;
    border: none;
    border-radius: 25px;
    box-shadow: 0 0 7px rgb(0, 0, 0, 0.4);
    color: #777;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 8px;
    position: absolute;
    right: -4px;
    top: -2px;
}
.fa-xmark:before {
    content: "✕";
}