@charset "UTF-8";

/*各カテゴリトップページ*/
.p-btnlist {
	margin: 30px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 16px;
}
.p-btnlist__item {
	list-style: none;
}
.p-btnlist__item a {
	padding: 8px 40px 8px 20px;
	background-color: #FFF;
	border: 2px solid #5083A8;
	color: #5083A8;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none !important;
	display: block;
	transition: all .3s ease-out;
}
.p-btnlist__item a:visited {
	color: #5083A8 !important;
}
.p-btnlist__item a:hover {
	background-color: #5083A8;
	color: #FFF !important;
}
.p-btnlist__item a span {
	position: relative;
}
.p-btnlist__item a span::before {
	content: '';
	width: 6px;
	height: 6px;
	border-right: 2px solid #5083A8;
	border-top: 2px solid #5083A8;
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translate(-50%, -1px);
	rotate: 45deg;
	transition: all .3s ease-out;
}
.p-btnlist__item a:hover span::before {
	border-right: 2px solid #FFF;
	border-top: 2px solid #FFF;
}

@media screen and (max-width: 600px) {
	.p-btnlist__item {
		width: 100%;
	}
	.p-btnlist__item a {
		padding: 8px 35px 8px 15px;
		text-align: center;
	}
}


/*下層ページ*/
.p-imgbox {
	margin: 20px auto 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 30px;
}
.p-imgbox__inner {
	max-width: 400px;
	width: 100%;
}
.p-imgbox__inner-img {
	width: 100%;
	display: block;
}
.p-imgbox__inner-label {
	margin: 0;
	padding: 6px;
	color: #FFF;
	font-size: 20px;
	text-align: center;
}
.p-imgbox__inner-label--blue {
	background-color: #28ACCF;
}
.p-imgbox__inner-label--red {
	background-color: #EE1D03;
}

.p-textpart {
	margin: 30px auto 0;
}
.p-textpart__head {
	width: fit-content;
	margin: 0;
	padding: 6px 20px;
	background: linear-gradient(270deg, #4DBCC0 0%, #619BD3 100%);
	border-radius: 25px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 6px;
}
.p-textpart__head-icon {
	width: 20px;
}
.p-textpart__head-txt {
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
}
.p-textpart__body {
	margin: 10px 0 0;
	font-size: 16px;
}

@media screen and (max-width: 600px) {
	.p-textpart__head {
		width: auto;
		justify-content: center;
	}
	.p-textpart__head-txt {
		font-size: 20px;
	}
}
