@charset "UTF-8";





/* title-level */
.title-level02 {
	font-family: var(--font-zen-maru-gothic);
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--color-body);
	text-align: center;
	margin-bottom: 40px;

	@media (width <=767px) {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
}


/* ボタン */
.btn-unique {
	display: block;
	width: fit-content;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.4;
	padding: 5px 55px 7px;
	border-radius: 999px;
	overflow: hidden;
	border: 5px solid var(--color-primary);
	color: #ffffff;
	background-color: var(--color-primary);
	position: relative;

	&:before{
		content: "";
		width: 40px;
		aspect-ratio: 1;
		background: url(../images/common/arrow03.svg) no-repeat center right 13px / 7px auto;
		background-color: #299691;
		border-radius: 50%;
		position: absolute;
		inset: 0 0 0 auto;
		margin-block: auto;
		z-index: 2;
		transition: .3s ease-in-out;
	}
	&:after{
		content: "";
		width: 0;
		height: 40px;
		background-color: #299691;
		position: absolute;
		inset: 0 0 0 auto;
		margin-block: auto;
		transform-origin: right center;
		transition: .3s ease-in-out;
	}

	.inner{
		position: relative;
		z-index: 3;
	}

	&:hover{
		&:before{
			background-position: center right 10px;
		}
		&:after{
			width: 100%;
		}
	}
	
	&.lay-center {
		margin-inline: auto;
	}

	&.size01 {
		width: min(100%, 350px);
		text-align: center;
	}


	@media (width <=767px) {
		font-size: 1rem;

		&:before{
			width: 35px;
			background-size: 6px auto;
			background-position: center right 12px;
		}

		&.size01 {
			width: min(100%, 250px);
			text-align: center;
		}
	}
}


/* listmark */
.listmark-type01 {
	>li {
		text-indent: -1em;
		padding-left: 1em;
	}

	@media (width <=767px) {}
}


/* TABLE */
table {
	&.t100p {
		width: 100%;
	}

	@media (width <=767px) {
		display: block;

		ty,
		tbodr,
		th,
		td {
			box-sizing: border-box;
			display: block;
			width: 100%;
		}
	}
}



/* PAGINATION用  */
.pagenavi-box {
	text-align: center;

	.wp-pagenavi {
		clear: both;
		text-align: center;
		display: inline-block;
		margin: 50px 0 0;

		a,
		span {
			display: inline-block;
			color: var(--color-primary);
			font-size: 14px;
			text-decoration: none;
			padding: 5px 15px !important;
			border: solid 1px var(--color-primary) !important;
			margin: 0 2px;
			transition: 0.3s;

			&:hover {
				color: #fff;
				background: var(--color-primary);
			}
		}

		span.current {
			color: #fff;
			background: var(--color-primary);
		}
	}

	@media (width <=767px) {}
}



/* wp-editor */
.wp-editer {
	overflow: hidden;

	strong {
		font-weight: bold;
	}

	em {
		font-style: italic;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	ul:not([class]) {
		margin-left: 20px;
		list-style: disc;
	}

	ol:not([class]) {
		margin-left: 30px;
		list-style: decimal;
	}

	h1 {
		font-size: 2em;
		font-weight: bold;
	}

	h2 {
		font-size: 1.5em;
		font-weight: bold;
	}

	h3 {
		font-size: 1.17em;
		font-weight: bold;
	}

	h4 {
		font-weight: bold;
	}

	h5 {
		font-size: 0.83em;
		font-weight: bold;
	}

	h6 {
		font-size: 0.67em;
		font-weight: bold;
	}
}

/* EDITOR */
.alignleft,
.alignright,
.aligncenter,
.alignnone {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

blockquote.alignleft,
img.alignleft,
.wp-caption.alignleft,
blockquote.alignright,
img.alignright,
.wp-caption.alignright,
blockquote.aligncenter,
img.aligncenter,
.wp-caption.aligncenter {
	margin-bottom: 10px;
}




/* TEXT */
.rq {
	color: #ff0000;
	font-weight: bold;
}

.rq_s {
	color: #ff0000;
}

.str {
	color: var(--color-primary);
	font-weight: bold;
}

.str_s {
	color: var(--color-primary);
}

.str02 {
	color: var(--color-secondary);
	font-weight: bold;
}

.str02_s {
	color: var(--color-secondary);
}

.wbr {
	word-break: keep-all;
}

.c_space01 {
	letter-spacing: 0.5em;
	text-indent: 0.5em;
}

img.lay-center {
	display: block;
	width: fit-content;
	margin-inline: auto;
}


.c_link-box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 10px;
	align-items: flex-start;

	>a {
		display: block;
		color: var(--color-primary);
		border: 2px solid var(--color-primary);
		border-radius: 8px;
		padding: 7px 8px 9px;
		text-align: center;
		font-size: 1.25rem;
		font-weight: 500;
		transition: .2s ease-in-out;

		small {
			font-size: 0.75em;
		}

		&:hover {
			color: #ffffff;
			background-color: var(--color-primary);
		}
	}

	@media (width <=1023px) {
		grid-template-columns: repeat(2, 1fr);
	}

	@media (width <=767px) {
		>a {
			font-size: 1rem;

			small {
				font-size: 0.78125rem;
			}
		}
	}

	@media (width <=380px) {
		grid-template-columns: 1fr;
	}



	&.column03 {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

		>a {
			padding-block: 22px 24px;
		}

		@media (width <=767px) {
			>a {
				padding-block: 16px;
			}
		}
	}

}



.news-box {
	.news-list {
		>li {
			display: grid;
			grid-template-columns: auto auto 1fr;
			align-items: start;
			gap: 0 16px;

			&:not(:first-of-type) {
				padding-top: 20px;
			}

			&:not(:last-of-type) {
				padding-bottom: 20px;
				background-image: linear-gradient(to right, #ABB8C9 2px, transparent 2px);
				background-size: 4px 2px;
				background-position: left bottom;
				background-repeat: repeat-x;
			}

			time {
				display: inline-block;
				font-family: var(--font-montserrat);
				font-weight: 600;
				font-size: 1.5rem;
				line-height: 1.4;
			}

			.cat {
				display: inline-block;
				color: #ABB8C9;
				border: 2px solid #ABB8C9;
				border-radius: 50px;
				line-height: 1.4;
				padding: 3px 20px 4px;
				font-weight: 500;
			}

			.news-cnt {
				margin-top: 3px;
			}
		}
	}

	@media (width <=1023px) {
		.news-list {

			>li {
				grid-template-columns: 95px auto;
				grid-template-rows: auto 1fr;
				align-items: center;
				gap: 5px 16px;

				time {
					font-size: 1rem;
				}

				.cat {
					display: block;
					width: fit-content;
					font-size: 0.75rem;
					padding: 2px 14px 3px;
				}

				.news-cnt {
					margin: 0;
					grid-column: span 2;
					align-self: flex-start;
				}
			}
		}
	}

	@media (width <=767px) {}
}