@charset "UTF-8";
/* CSS Document */

/* 投稿ページ：スマホ時フォントサイズ修正 */
@media screen and (max-width: 768px) {
    .single-post .article.-news .body p{
        font-size: 14px;
    }
}

/* fixed__banner：トップページ固定リンク表示 */
.fixed__banner{
    display: none;
}
.fixed__banner.fixed{
    display: block;
	position: fixed;
	bottom: 15px;
	right: 20px;
	z-index: 9990;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeIn 0.7s 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
	transform: translateY(30px);
  }
  100% {
    opacity: 1;
	transform: translateY(0);
  }
}
.fixed__banner.js__active{
	display: none;
}
.fixed__banner .conts{
	width: 300px;
	height: 200px;
	background: #fff;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 12px;
	overflow: hidden;
}
.fixed__banner a:focus{
	text-decoration: none;
}
.fixed__banner a:hover{
	filter: brightness(1.1);
	text-decoration: none;
}
.fixed__banner .conts figure{
	width: 100%;
	height: 80px;
	background: radial-gradient(#3981c4, #004f99 60%);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.fixed__banner .conts figure:after{
	position: absolute;
	content: '';
	top: 100%;
	left: 0;
	width: 100%;
	height: 20px;
	background: #004f99;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.fixed__banner .conts figure img{
	margin-top: 20px;
	width: auto;
	height: 45px;
}
.fixed__banner .conts .text{
	width: 100%;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.fixed__banner .conts .text p{
	margin-top: 10px;
	font-weight: 600;
	color: #222;
		font-size: 16px;
}

.banner__close{
	font-weight: bold;
	color: #222;
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 9999;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	line-height: 1;
	background-color: #f8f8f8;
	cursor: pointer;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 5px;
}
.banner__close:hover{
	filter: brightness(1.2);
	text-decoration: none;
}

@media screen and (max-width: 992px) {
	.fixed__banner{
		position: fixed;
		bottom: 5px;
		right: auto;
		left: 10%;
		z-index: 9990;
		width: 80%;
	}
	.fixed__banner .conts{
		width: 100%;
		height: 60px;
		background: #fff;
		border-radius: 0;
		box-shadow:  none;
		overflow: hidden;
		border-radius: 30px;
		box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 12px;
	}
	.fixed__banner .conts figure{
		display: none;
	}
	.fixed__banner .conts figure:after{
		display: none;
	}
	.fixed__banner .conts figure img{
		display: none;
	}
	.fixed__banner .conts .text{
		height: 60px;
		background: #527aa0;
	}
	.fixed__banner .conts .text p{
		margin-top: 0;
		font-size: 14px;
		line-height: 1.2;
		color: #fff;
        margin-bottom: 0 !important;
	}
	.banner__close{
		top: -10px;
		right: -5px;
	}
}


/* プライバシーマーク追加 20250424 */
.p-mark:hover{
    filter: brightness(1.1);
}
.p-mark img{
    width: 100%;
    height: auto;
}