@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
	display: block;
}

ul,
li,
ol,
dl {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	display: inline-block;
	margin: 0;
	padding: 0;
}
@media (hover: hover) and (pointer: fine) {
	a:hover {
		text-decoration: none;
	}
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 0.1rem dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:after,
*:before {
	-webkit-appearance: none;
	word-break: break-all;
	box-sizing: border-box;
}

video {
	filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media screen and (min-width: 1081px) {
	.tab-off {
		display: none !important;
	}
}
/* PC(768px以上)のみ非表示 */
@media screen and (min-width: 768px) {
	.pc-off {
		display: none !important;
	}
}
/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
	.sp-off {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		color: var(--default-text-color);
	}
}
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}

html {
	font-size: 62.5%;
	letter-spacing: 0;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;

	@media screen and (min-width: 1081px) and (max-width: 1919px) {
		font-size: calc(10 / 1919 * 100 * 1vw);
	}

	/* あまりにも文字サイズが小さくなった場合 */
	@media screen and (min-width: 768px) and (max-width: 1080px) {
		font-size: calc(12 / 1920 * 100 * 1vw);
	}

	/* スマホ用（デザインサイズが375の場合） */
	@media screen and (max-width: 767px) {
		font-size: calc(10 / 375 * 100 * 1vw);
	}
}

body {
	font-size: 1.6rem;
	line-height: 1;
	overflow: auto;
	background: #f4f8fc;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	@media screen and (max-width: 767px) {
		/* スマホ画像長押し禁止対策 */
		pointer-events: none;
	}
}

a {
	color: var(--default-text-color);
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
	html {
		font-size: calc(10 / 1919 * 100 * 14px);
	}
	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}
}
@page {
	size: A4;
	margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを1pxへ
/* ------------------------------------------- */
.deve body {
	--sb-track-color: #ddd;
	--sb-thumb-color: #000;
	--sb-size: 0;
	/* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
	overflow-x: hidden;
}
.deve body::-webkit-scrollbar {
	width: var(--sb-size);
}
.deve body::-webkit-scrollbar-track {
	background: var(--sb-track-color);
	border-radius: 1px;
}
.deve body::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
	overflow: hidden;

	@media screen and (max-width: 767px) {
	}
}

.menu-active {
	overflow: hidden;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */

.scroll-now {
	#header {
		@media print, screen and (min-width: 768px) {
			.logomark {
				&:after {
					content: "";
					position: absolute;
					left: calc(50% - 2.5rem);
					top: 50%;
					z-index: 0;
					display: block;
					width: calc(100% + 4rem);
					height: calc(100% + 2rem);
					background: rgba(255, 255, 255, 0.4);
					/* background: rgba(0, 0, 0, 0.4); */
					transform: skewX(-30deg) translate(-50%, -50%);
					pointer-events: none;
					border-radius: 1rem;
				}

				& a {
					position: relative;
					z-index: 1;
				}
			}
		}
		@media screen and (max-width: 767px) {
			background: rgba(255, 255, 255, 0.4);
		}
	}
}

#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 14.3rem;

	@media screen and (max-width: 767px) {
		height: 7.3rem;
	}

	.logomark {
		position: absolute;
		top: 5.5rem;
		left: 5.5rem;
		@media screen and (max-width: 767px) {
			top: 1.6rem;
			left: 1rem;
		}

		& img {
			max-width: 31.9rem;
			@media screen and (max-width: 767px) {
				max-width: 22rem;
			}
		}
	}

	.entry-btn {
		position: absolute;
		top: 4rem;
		right: 17.3rem;
		z-index: 1;

		@media screen and (max-width: 767px) {
			top: 1rem;
			right: 7.1rem;
		}

		& a {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 10.3rem;
			height: 10.3rem;
			font-family: "Poppins";
			font-weight: 600;
			font-size: 1.8rem;
			letter-spacing: 0.03em;
			color: #ffffff;
			text-decoration: none;
			background: #0577dc;
			@media screen and (max-width: 767px) {
				width: 5.4rem;
				height: 5.4rem;
				font-size: 1rem;
				letter-spacing: 0.09em;
			}
			@media (hover: hover) and (pointer: fine) {
				transition: ease 0.25s color, ease 0.25s background;
				&:hover {
					color: #333;
					background: #f9ed32;
				}
			}
		}
	}

	/* メニューボタン */
	.menu-btn {
		position: absolute;
		top: 4rem;
		right: 5rem;
		z-index: 999;
		@media screen and (max-width: 767px) {
			right: 1rem;
			top: 1rem;
		}

		&::after {
			content: "MENU";
			position: absolute;
			left: 50%;
			bottom: 2.4rem;
			font-family: "Poppins";
			font-weight: 500;
			font-size: 1.8rem;
			text-align: center;
			letter-spacing: 0.14em;
			color: #ffffff;
			white-space: nowrap;
			transform: translateX(-50%);
			pointer-events: none;
		}
		@media screen and (max-width: 767px) {
			&::after {
				bottom: 1rem;
				font-size: 1rem;
				letter-spacing: 0.09em;
			}
		}

		& a {
			position: relative;

			width: 10.3rem;
			height: 10.3rem;
			background: #393a3c;

			@media (hover: hover) and (pointer: fine) {
				transition: ease 0.25s background;
				&:hover {
					background-color: #253543;
				}
			}

			@media screen and (max-width: 767px) {
				width: 5.4rem;
				height: 5.4rem;
			}

			& span {
				position: absolute;
				top: 3.8rem;
				left: 50%;
				display: block;
				margin-left: -1.4rem;
				width: 2.8rem;
				height: 0.2rem;
				background: #fff;

				@media screen and (max-width: 767px) {
					top: 2.1rem;
					margin-left: -0.8rem;
					width: 1.6rem;
				}

				&:before,
				&:after {
					content: "";
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					background: #fff;
					border-radius: 0.3rem;
					transition: ease 0.25s all;
				}

				&:before {
					margin-top: -0.9rem;
				}
				@media screen and (max-width: 767px) {
					&:before {
						margin-top: -0.6rem;
					}
				}
				&:after {
					margin-top: 0.9rem;
				}
				@media screen and (max-width: 767px) {
					&:after {
						margin-top: 0.6rem;
					}
				}
			}
		}
	}
}

.nav {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 998;
	display: grid;
	grid-template-columns: repeat(3, 37rem);
	justify-content: center;
	column-gap: 19rem;
	width: 100%;
	height: 100dvh;
	padding: 20rem 0 0;
	pointer-events: none;
	background: url(../img/header/nav_obj01.png) no-repeat 0 6.4rem / 34.5rem auto,url(../img/header/nav_obj02.png) no-repeat right 0 top 79rem / 76.5rem auto,#393a3c;
	transition: ease 0.25s right, ease 0.25s opacity;
	opacity: 0;

	@media screen and (max-width: 767px) {
		display: block;
		right: -100%;
		padding: 10rem 4rem 5rem;
		overflow-y: scroll;
		opacity: 1;
		background: #393a3c;
	}

	.nav-child {
		/* width: 50%; */
	}

	.main-list {
		& a {
			text-decoration: none;
		}

		.top {
			margin-bottom: 2rem;
			@media screen and (max-width: 767px) {
				margin-bottom: 1.3rem;
			}
		}
		> li {
			margin-bottom: 1.4rem;
			@media screen and (max-width: 767px) {
				margin-bottom: 0.8rem;
			}

			> a,
			> .nolink {
				position: relative;
				display: block;
				padding: 3rem 0;
				font-weight: 700;
				font-size: 2rem;
				line-height: 1.4;
				letter-spacing: 0.14em;
				color: #ffffff;
				border-bottom: 0.1rem solid #fff;
				@media screen and (max-width: 767px) {
					padding: 1.5rem 0;
					font-size: 1.4rem;
				}
			}

			> a {
				&:after {
					content: "";
					display: block;
					position: absolute;
					top: 50%;
					right: 0;
					margin-top: -0.5rem;
					width: 1rem;
					height: 1rem;
					border-top: 0.2rem solid #fff;
					border-right: 0.2rem solid #fff;
					box-sizing: border-box;
					transform: rotate(45deg);
					-webkit-transform: rotate(45deg);
				}
				@media (hover: hover) and (pointer: fine) {
					&:hover {
						text-decoration: underline;
					}
				}
				@media screen and (max-width: 767px) {
					&:after {
						margin-top: -0.4rem;
						width: 0.8rem;
						height: 0.8rem;
					}
				}
			}
		}
		.list-child {
			margin-top: 3rem;
			margin-bottom: 5.1rem;
			padding-left: 3rem;
			@media screen and (max-width: 767px) {
				margin-top: 2.6rem;
				margin-bottom: 1.5rem;
				padding-left: 0;
			}
			> li {
				margin-bottom: 1rem;
				@media screen and (max-width: 767px) {
					margin-bottom: 1.6rem;
				}
				> a {
					display: block;
					position: relative;
					font-weight: 400;
					font-size: 1.8rem;
					line-height: 1.4;
					letter-spacing: 0.06em;
					color: #a2a2a2;
					@media screen and (max-width: 767px) {
						font-size: 1.2rem;
					}

					@media (hover: hover) and (pointer: fine) {
						&:hover {
							text-decoration: underline;
						}
					}

					&:after {
						content: "";
						display: block;
						position: absolute;
						top: 50%;
						right: 0;
						margin-top: -0.5rem;
						width: 1rem;
						height: 1rem;
						border-top: 0.2rem solid #fff;
						border-right: 0.2rem solid #fff;
						box-sizing: border-box;
						transform: rotate(45deg);
						-webkit-transform: rotate(45deg);
					}
					@media screen and (max-width: 767px) {
						&:after {
							margin-top: -0.4rem;
							width: 0.8rem;
							height: 0.8rem;
						}
					}
				}
			}
		}
	}

	.entry-box {
		margin-top: 6.5rem;
		padding-top: 7.2rem;
		border-top: 1px solid #fff;

		@media screen and (max-width: 767px) {
			margin-top: 5.5rem;
			padding-top: 4.8rem;
		}

		.box-btn {
			margin-top: 4.6rem;
			@media screen and (max-width: 767px) {
				margin-top: 1.6rem;
			}
			.cover {
				position: relative;
				display: inline-flex;
				align-items: center;
				justify-content: flex-start;
				width: 36.8rem;
				height: 7.4rem;
				padding: 0 3.7rem;
				font-weight: 700;
				font-size: 2rem;
				letter-spacing: 0.02em;
				color: #ffffff;
				text-decoration: none;

				background: #0577dc;
				border-radius: 3.7rem;

				@media screen and (max-width: 767px) {
					padding: 0 3rem;
					width: calc(100% - 3rem);
					height: 6rem;
					font-size: 1.6rem;
				}

				@media (hover: hover) and (pointer: fine) {
					transition: ease 0.25s background, ease 0.25s color;

					&:after {
						transition: ease 0.25s filter;
					}

					&:hover {
						color: #333;
						background: #f9ed32;

						&:after {
							/* filter: hue-rotate(260deg) saturate(770%); */
							filter: grayscale(1);
						}
					}
				}

				&:before,
				&:after {
					content: "";
					position: absolute;
					right: 2.1rem;
					top: 50%;
					z-index: 1;
					display: block;
					width: 3rem;
					height: 3rem;
					border-radius: 50%;
					transform: translateY(-50%);
					background: #fff;
				}
				@media screen and (max-width: 767px) {
					&:before,
					&:after {
						right: 1rem;
						width: 2.4rem;
						height: 2.4rem;
					}
				}
				&:after {
					z-index: 2;
					filter: saturate(680%);
					background: url(../img/parts/icon_arrow01.svg) no-repeat center center / auto 1rem;
				}
				@media screen and (max-width: 767px) {
					&:after {
						background-size: auto 1.3rem;
					}
				}
			}
		}
	}
}

.menu-active {
	#header {
		.menu-btn {
			/* position: fixed; */
			&::after {
				content: "CLOSE";
			}

			& a {
				/* background-color: #fff; */
				& span {
					background-color: transparent;
					&:before {
						margin-top: 0;
						transform: rotate(45deg);
						-webkit-transform: rotate(45deg);
					}
					&:after {
						margin-top: 0;
						transform: rotate(-45deg);
						-webkit-transform: rotate(-45deg);
					}
				}
			}
		}
		.nav {
			opacity: 1;
			pointer-events: auto;
			@media screen and (max-width: 767px) {
				right: 0;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
	margin-bottom: 9rem;

	@media screen and (max-width: 767px) {
		display: none;
	}
	& ol {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
	& li {
		position: relative;
		margin-right: 3.7rem;
		font-weight: 500;
		font-size: 1.5rem;
		letter-spacing: 0.1em;

		&:after {
			content: "";
			position: absolute;
			right: -2.7rem;
			top: 50%;
			z-index: 0;
			display: block;
			width: 1.4rem;
			height: 1px;
			background: #bcbcbc;
		}

		&:last-child {
			margin-right: 0;
			&:after {
				display: none;
			}
		}
	}
	& a {
		text-decoration: underline;
		color: #0577dc;

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				text-decoration: none;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {
	.footer-entry {
		position: relative;
		z-index: 2;
		padding-top: 8.5rem;
		height: 43.4rem;
		background: url(../img/footer/entry_bg.png) no-repeat center center / cover;

		@media screen and (max-width: 767px) {
			padding: 6rem 0;
			height: auto;
		}

		&:after,
		&:before {
			content: "";
			position: absolute;
			z-index: 0;
			display: block;
			width: 100%;
			pointer-events: none;
		}
		&:before {
			left: 0;
			top: -8.9rem;
			width: 51rem;
			height: 16.1rem;
			background: url(../img/footer/entry_object01.png) no-repeat 0 0 / 51rem auto;
		}
		@media screen and (max-width: 767px) {
			&:before {
				top: -2rem;
				width: 50%;
				height: 4rem;
				background-size: auto 100%;
			}
		}

		&:after {
			right: 0;
			bottom: -19.4rem;
			width: 105.2rem;
			height: 42.6rem;
			background: url(../img/footer/entry_object02.png) no-repeat 0 0 / 105.2rem auto;
		}
		@media screen and (max-width: 767px) {
			&:after {
				bottom: -3rem;
				width: 50%;
				height: 7rem;
				background-position: right bottom;
				background-size: auto 100%;
			}
		}

		.entry-title {
			margin-bottom: 3.5rem;
			@media screen and (max-width: 767px) {
				margin-bottom: 2rem;
			}

			.title-main {
				margin-bottom: 1.2rem;
				font-weight: 800;
				font-size: 3.9rem;
				text-align: center;
				letter-spacing: 0.09em;
				color: #ffffff;
				@media screen and (max-width: 767px) {
					margin-bottom: 1rem;
					font-size: 2rem;
				}
			}
			.title-sub {
				font-family: "Poppins";
				font-weight: 600;
				font-size: 1.8rem;
				letter-spacing: 0.03em;
				color: #ffffff;
				text-align: center;
				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
				}
			}
		}
		.entry-btn {
			text-align: center;

			.cover {
				position: relative;
				display: inline-flex;
				align-items: center;
				justify-content: flex-start;
				width: 60rem;
				height: 12rem;
				padding: 0 6rem;
				font-weight: 700;
				font-size: 2.8rem;
				letter-spacing: 0.02em;
				color: #ffffff;
				text-decoration: none;

				background: #0577dc;
				border-radius: 6rem;

				@media screen and (max-width: 767px) {
					padding: 0 3rem;
					width: calc(100% - 3rem);
					height: 6rem;
					font-size: 1.8rem;
				}

				@media (hover: hover) and (pointer: fine) {
					transition: ease 0.25s background, ease 0.25s color;

					&:after {
						transition: ease 0.25s filter;
					}

					&:hover {
						color: #333;
						background: #f9ed32;

						&:after {
							/* filter: hue-rotate(260deg) saturate(770%); */
							filter: grayscale(1);
						}
					}
				}

				&:before,
				&:after {
					content: "";
					position: absolute;
					right: 3.5rem;
					top: 50%;
					z-index: 1;
					display: block;
					width: 5rem;
					height: 5rem;
					border-radius: 50%;
					transform: translateY(-50%);
					background: #fff;
				}
				@media screen and (max-width: 767px) {
					&:before,
					&:after {
						right: 1rem;
						width: 3.6rem;
						height: 3.6rem;
					}
				}
				&:after {
					z-index: 2;
					filter: saturate(680%);
					background: url(../img/parts/icon_arrow01.svg) no-repeat center center / auto 1.6rem;
				}
				@media screen and (max-width: 767px) {
					&:after {
						background-size: auto 1.3rem;
					}
				}
			}
		}
	}

	.footer-information {
		position: relative;
		height: 46rem;
		background: #253543;

		@media screen and (max-width: 767px) {
			padding: 5rem 0 2rem;
			height: auto;
		}

		.inner {
			position: relative;
			z-index: 1;
		}

		.logomark,
		.address,
		.site-link,
		.pageup,
		#copyright {
			position: absolute;
			z-index: 1;

			@media screen and (max-width: 767px) {
				position: static;
			}
		}

		.logomark {
			top: 7.8rem;
			left: 0;
			@media screen and (max-width: 767px) {
				margin-bottom: 3rem;
				text-align: center;
			}

			& img {
				max-width: 40.6rem;
				@media screen and (max-width: 767px) {
					max-width: 24rem;
				}
			}
		}
		.address {
			top: 19.5rem;
			left: 0;

			font-style: normal;
			font-weight: 500;
			line-height: 2.8rem;
			color: #ffffff;

			@media screen and (max-width: 767px) {
				margin-bottom: 3rem;
			}
		}

		.site-link {
			top: 31.8rem;
			left: 0;

			@media screen and (max-width: 767px) {
				margin-bottom: 2rem;
			}

			& a {
				position: relative;
				padding-right: 3rem;
				padding-bottom: 1.4rem;
				font-weight: 500;
				color: #ffffff;
				text-decoration: none;
				border-bottom: 1px solid #fff;

				@media screen and (max-width: 767px) {
					padding-right: 2rem;
					padding-bottom: 0.8rem;
				}

				&:after {
					content: "";
					position: absolute;
					right: 0;
					bottom: 1.5rem;
					z-index: 1;
					display: block;
					width: 1.5rem;
					height: 1.2rem;
					background: url(../img/parts/icon_blank01.svg) no-repeat center center / 100% auto;
				}
				@media screen and (max-width: 767px) {
					&:after {
						bottom: 0.8rem;
					}
				}
			}
		}

		.pageup {
			top: 13.3rem;
			right: 0;
			padding-left: 0.2rem;
			padding-right: 2.7rem;
			padding-bottom: 1.1rem;

			font-family: "Poppins";
			font-weight: 600;
			font-size: 2.3rem;
			letter-spacing: 0.12em;
			color: #ffffff;

			text-decoration: none;
			border-bottom: 0.2rem solid #fff;

			@media screen and (max-width: 767px) {
				position: relative;
				top: auto;
				display: block;
				margin-left: auto;
				margin-bottom: 3rem;
				padding-bottom: 0.5rem;
				padding-right: 1.8rem;
				font-size: 1.5rem;
				width: 11rem;
			}

			&:after {
				content: "";
				position: absolute;
				right: 0;
				bottom: 1.7rem;
				display: block;
				width: 1.5rem;
				height: 1.5rem;
				background: url(../img/parts/icon_pageup01.svg) no-repeat center center / 100% auto;
			}
			@media screen and (max-width: 767px) {
				&:after {
					bottom: 0.8rem;
					width: 1rem;
					height: 1rem;
				}
			}
		}

		#copyright {
			top: 32.3rem;
			right: 0;

			display: block;
			font-weight: 500;
			font-size: 1.4rem;
			color: #ffffff;
			@media screen and (max-width: 767px) {
				font-size: 1rem;
				text-align: center;
			}
		}
	}
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;

	@media screen and (max-width: 767px) {
		width: calc(100% - 4rem);
	}
}

.w960 {
	max-width: 96rem;
}
.w1080 {
	max-width: 108rem;
}
.w1200 {
	max-width: 120rem;
}
.w1440 {
	max-width: 144rem;
}
.w1600 {
	max-width: 160rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
	text-align: right;
}
.tal {
	text-align: left;
}
.tac {
	text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
}
/* type01 */
.common-title {
	&.type01 {
		position: relative;
		@media screen and (max-width: 767px) {
			margin-bottom: 2.6rem;
		}

		&:after {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			z-index: 0;
			display: block;
			width: 100%;
			height: 73rem;
			background: radial-gradient(47.77% 84.2% at 41.86% 0%, #82bd97 0%, #0e8dfa 100%);
			clip-path: polygon(40.6% 0%, 100% 0, 100% 14.2%, 100% 14.2%, 0 100%, 0 34.5%);
			pointer-events: none;
		}
		@media screen and (max-width: 767px) {
			&:after {
				height: 30.4rem;
				clip-path: polygon(94.4% 0%, 100% 0, 100% 60%, 0 100%, 0 38.1%);
			}
		}

		&:before {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			z-index: -1;
			display: block;
			width: 50%;
			height: 40rem;
			background: #fff;
			pointer-events: none;
		}
		@media screen and (max-width: 767px) {
			&:before {
				width: 100%;
				height: 15rem;
			}
		}

		.inner {
			position: relative;
			display: flex;
			justify-content: flex-end;
			flex-direction: column;
			min-height: 40rem;
			padding-bottom: 1.3rem;
			z-index: 3;

			@media screen and (max-width: 767px) {
				min-height: 21rem;
				padding-bottom: 1rem;
			}

			&:before {
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				z-index: 1;
				display: block;
				width: 100%;
				height: 100%;
				background: url(../img/parts/title_bg01.png) no-repeat right 0 top 10.4rem / 89.9rem auto;
				pointer-events: none;
			}
			@media screen and (max-width: 767px) {
				&:before {
					left: -2rem;
					width: 100vw;
					background-image: url(../img/parts/title_bg01_sp.png?ver=2502);
					background-position: right 0 top 7.3rem;
					background-size: 17.7rem auto;
				}
			}
		}
		.title-main {
			position: relative;
			z-index: 2;
			margin-bottom: 2rem;
			font-weight: 700;
			font-size: 5.4rem;
			letter-spacing: 0.1em;
			color: #ffffff;
			@media screen and (max-width: 767px) {
				margin-bottom: 1rem;
				margin-left: 1rem;
				font-size: 2.4rem;
			}
		}
		.title-sub {
			position: relative;
			z-index: 2;
			font-family: "Poppins";
			font-weight: 600;
			font-size: 1.8rem;
			letter-spacing: 0.03em;
			color: #ffffff;
			text-transform: uppercase;

			@media screen and (max-width: 767px) {
				margin-left: 1.5rem;
				font-size: 1rem;
			}
		}
	}

	&.type02 {
		margin-bottom: 7rem;
		@media screen and (max-width: 767px) {
			margin-bottom: 3.4rem;
		}
		.title-main {
			margin-bottom: 1rem;
			font-weight: 700;
			font-size: 3.4rem;
			letter-spacing: 0.15em;
			@media screen and (max-width: 767px) {
				font-size: 2rem;
				letter-spacing: 0.1em;
			}
		}
		.title-sub {
			font-family: "Poppins";
			font-weight: 600;
			letter-spacing: 0.03em;
			color: #0577dc;
			@media screen and (max-width: 767px) {
				font-size: 1rem;
			}
		}
	}

	&.type03 {
		position: relative;
		margin-bottom: 2.7rem;
		padding-left: 1.8rem;
		font-weight: 700;
		font-size: 2rem;
		line-height: 1.6;
		letter-spacing: 0.15em;
		color: #000000;

		@media screen and (max-width: 767px) {
			margin-bottom: 2rem;
			padding-left: 1.2rem;
			font-size: 1.6rem;
		}

		&:after {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			z-index: 1;
			display: block;
			width: 0.7rem;
			height: 3rem;
			background: #0577dc;
			border-radius: 0.6rem;
			pointer-events: none;
		}
		@media screen and (max-width: 767px) {
			&:after {
				top: 0.2rem;
				width: 0.4rem;
				height: 2.2rem;
			}
		}
	}

	&.type04 {
		margin-bottom: 4rem;
		font-weight: 700;
		font-size: 3.4rem;
		line-height: 1.6;
		letter-spacing: 0.15em;
		color: #000000;
		@media screen and (max-width: 767px) {
			margin-bottom: 2.4rem;
			font-size: 1.8rem;
		}
	}
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
	&.type01 {
		.cover {
			position: relative;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			min-width: 32.2rem;
			padding-right: 1.6rem;
			min-height: 7rem;
			font-weight: 700;
			font-size: 1.8rem;
			letter-spacing: 0.04em;
			color: #0577dc;
			text-decoration: none;
			background: #ffffff;
			border: 0.2rem solid #0577dc;
			border-radius: 3.5rem;

			@media screen and (max-width: 767px) {
				min-width: 100%;
				padding: 0 4rem;
				font-size: 1.6rem;
				min-height: 5rem;
				border-radius: 2.5rem;
				line-height: 1.2;
			}

			@media (hover: hover) and (pointer: fine) {
				transition: ease 0.25s color, ease 0.25s background;
				&:hover {
					color: #0577dc;
					background-color: #e8f1fa;
				}
			}

			&:before,
			&:after {
				content: "";
				position: absolute;
				right: 2.3rem;
				top: 50%;
				z-index: 1;
				display: block;
				width: 3.2rem;
				height: 3.2rem;
				border-radius: 50%;
				transform: translateY(-50%);
				background: #0577dc;
			}
			@media screen and (max-width: 767px) {
				&:before,
				&:after {
					right: 1rem;
					width: 2.6rem;
					height: 2.6rem;
				}
			}
			&:after {
				z-index: 2;
				filter: brightness(100);
				background: url(../img/parts/icon_arrow01.svg) no-repeat center center / auto 1.1rem;
			}

			&[target="_blank"] {
				& span {
					position: relative;
					&:after {
						content: "";
						position: relative;
						top: 0.3rem;
						margin-left: 1rem;
						display: inline-block;
						vertical-align: bottom;
						width: 1.6rem;
						height: 1.2rem;
						background: url(../img/parts/icon_blank01_blue.svg) no-repeat center center/ 100% auto;
						transform: translateY(-50%);
					}
				}
			}
		}
	}
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {
}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
	&.interview {
		&:not(.swiper-list) {
			display: flex;
			flex-wrap: wrap;
			@media screen and (max-width: 767px) {
				justify-content: space-between;
			}
		}

		.swiper-slide,
		& li {
			position: relative;
			/* width: calc(33.33% - (5rem * 2 / 3)); */
		}
		& li {
			margin-left: 8.5rem;
			margin-bottom: 15rem;
			width: calc(33.33% - (8.5rem * 2 / 3));
			&:nth-child(3n + 1) {
				margin-left: 0;
			}
			@media screen and (max-width: 767px) {
				margin: 0 0 3rem;
				/* width: 100%; */
				width: calc(50% - 1.4rem);
			}
		}

		& a {
			position: relative;
			padding-bottom: 1.7rem;
			text-decoration: none;
			@media screen and (max-width: 767px) {
				padding-bottom: 0;
			}
			@media (hover: hover) and (pointer: fine) {
				.list-photo {
					&:before {
						transition: ease 0.25s background;
					}
				}
				&:hover {
					.list-photo {
						&:before {
							background: #f9ed32;
						}
					}
				}
			}
		}

		.swiper-wrapper {
			height: auto;
		}

		.list-photo {
			position: relative;
			&:before {
				content: "";
				position: absolute;
				left: 0;
				bottom: 7.7rem;
				width: 100%;
				height: 33.4rem;
				background: #9bd2ee;
				border-radius: 1.2rem;
				transform: skewY(-18deg);
			}
			@media screen and (max-width: 767px) {
				&:before {
					/* bottom: 5.4rem;
					height: 18.4rem; */
					bottom: 2.6rem;
					height: 10.4rem;
					border-radius: 0.4rem;
				}
			}
			& img {
				position: relative;
				z-index: 2;
				clip-path: polygon(0% 0%, 100% 0, 100% 70%, 0% 100%);
			}
		}

		.list-detail {
			position: absolute;
			left: 30.1rem;
			top: 82.5%;
			z-index: 1;
			@media screen and (max-width: 767px) {
				/* width: 20rem;
				left: auto;
				bottom: auto;
				top: 85%;
				right: 1rem; */
				position: static;
				/* margin-top: -2rem; */
				width: 100%;
				text-align: center;
			}

			.list-name {
				margin-bottom: 1.7rem;
				font-family: "Poppins";
				font-weight: 600;
				font-size: 4.4rem;
				letter-spacing: 0.13em;
				color: #000000;
				@media screen and (max-width: 767px) {
					margin-bottom: 1rem;
					/* font-size: 2.4rem; */
					font-size: 2rem;
				}
			}
			.list-option {
				font-weight: 600;
				line-height: 1.8;
				color: #0577dc;

				@media screen and (max-width: 767px) {
					font-size: 1.2rem;

					& br {
						/* display: none; */
					}
				}

				.option-year {
				}
				.option-deploy {
				}
			}
		}
	}

	&.crosstalk {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		row-gap: 8rem;

		@media screen and (max-width: 767px) {
			row-gap: 2rem;
		}

		& li {
			width: 100%;

			& a {
				display: flex;
				flex-wrap: wrap;
				text-decoration: none;

				@media screen and (max-width: 767px) {
					display: block;
				}

				@media (hover: hover) and (pointer: fine) {
					.list-photo {
						& img {
							transition: ease 0.25s transform;
						}
					}
					&:hover {
						.list-photo {
							.photo-main {
								& span {
									& img {
										transform: scale(1.1);
									}
								}
							}
						}
					}
				}
			}

			@media print, screen and (min-width: 768px) {
				&:nth-child(even) {
					& a {
						flex-direction: row-reverse;
					}

					.list-detail {
						padding-left: 19.1rem;
						background-position: left center;
					}
				}
			}

			.list-photo {
				position: relative;
				width: 78rem;
				@media screen and (max-width: 767px) {
					width: 100%;
				}

				@media print, screen and (min-width: 768px) {
					& img {
						object-fit: cover;
						object-position: center center;
						width: 100%;
						height: 47.6rem;
					}
				}

				&:after {
					content: "";
					position: absolute;
					left: -11.5rem;
					bottom: -6.8rem;
					z-index: 1;
					display: block;
					width: 100%;
					height: 16.2rem;
					background: url(../../img/index/talk_obj01.png) no-repeat 0 0 / auto 100%;
					pointer-events: none;
				}
				@media screen and (max-width: 767px) {
					&:after {
						left: -1.9rem;
						bottom: -2.7rem;
						height: 5.5rem;
						background-image: url(../../img/index/talk_obj01_sp.png);
					}
				}

				.photo-main {
					position: relative;

					&:before,
					&:after {
						content: "";
						position: absolute;
						right: 3.1rem;
						bottom: 2.4rem;
						z-index: 1;
						display: block;
						width: 4.6rem;
						height: 4.6rem;
						border-radius: 50%;
						background: #0577dc;
					}
					@media screen and (max-width: 767px) {
						&:before,
						&:after {
							right: 1.4rem;
							bottom: 1rem;
							width: 2rem;
							height: 2rem;
						}
					}
					&:after {
						z-index: 2;
						filter: brightness(100);
						background: url(../img/parts/icon_arrow01.svg) no-repeat center center / auto 1.5rem;
					}
					@media screen and (max-width: 767px) {
						&:after {
							background-size: 0.5rem auto;
						}
					}

					& span {
						display: block;
						border-radius: 0.6rem;
						overflow: hidden;
					}

					& img {
						@media screen and (max-width: 767px) {
							object-fit: cover;
							object-position: center center;
							width: 100%;
							height: 20.4rem;
						}
					}
				}
			}

			.list-detail {
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: flex-start;
				padding-left: 9.1rem;
				padding-bottom: 2.4rem;
				width: calc(100% - 78rem);
				background: url(../../img/index/talk_bg01.png) no-repeat right center / 87.7rem auto;

				@media screen and (max-width: 767px) {
					padding: 4.4rem 0rem;
					width: 100%;
					background-size: 100% auto;
				}

				.detail-category {
					display: inline-flex;
					flex-direction: row;
					align-items: center;
					margin-bottom: 2.8rem;
					padding: 0 1.8rem;
					height: 4.2rem;
					font-weight: 700;
					font-size: 1.6rem;
					letter-spacing: 0.03em;
					color: #141414;
					background: #f9ed32;
					border-radius: 0.4rem;

					@media screen and (max-width: 767px) {
						margin-bottom: 1.1rem;
						padding: 0 0.9rem;
						height: 2.4rem;
						font-size: 1.2rem;
					}

					& span {
						font-size: 1.4rem;
						@media screen and (max-width: 767px) {
							font-size: 1rem;
						}
					}
				}
				.detail-title {
					margin-bottom: 1.6rem;
					font-weight: 700;
					font-size: 4.7rem;
					line-height: 6rem;
					letter-spacing: 0.1em;
					color: #141414;
					@media screen and (max-width: 767px) {
						margin-bottom: 0.8rem;
						font-size: 2.4rem;
						letter-spacing: 0;
						line-height: 1.4;
					}
				}
				.detail-name {
					font-family: "Poppins";
					font-weight: 600;
					letter-spacing: 0.03em;
					color: #141414;
					@media screen and (max-width: 767px) {
						font-size: 1rem;
					}
					& span {
						position: relative;
						display: inline-block;
						padding-right: 1rem;
						margin-right: 1rem;
						@media screen and (max-width: 767px) {
							padding-right: 0.6rem;
							margin-right: 0.6rem;
						}
						&:after {
							content: "/";
							position: absolute;
							right: -0.5rem;
						}
						@media screen and (max-width: 767px) {
							&:after {
								right: -0.3rem;
							}
						}
						&:last-child {
							margin-right: 0;
							&:after {
								display: none;
							}
						}
					}
				}
			}
		}
	}
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {
}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;

	& p {
		margin-bottom: 2rem;
		&:last-child {
			margin-bottom: 0;
		}
	}
}
/* table-scroll */
@media screen and (max-width: 767px) {
	.table-scroll {
		position: relative;
		padding-bottom: 2rem;
		overflow-x: scroll;
		&:after {
			content: "←";
			position: absolute;
			right: 0;
			bottom: 0;
			z-index: 1;
			margin-left: -1.5rem;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
			width: 3rem;
			height: 3rem;
			border-radius: 1.5rem;
			border: 0.1rem solid #000;
			animation: arrowtable 2s infinite forwards;
		}
		.common-table {
			width: 80rem;
		}
	}
}
@keyframes arrowtable {
	50% {
		opacity: 1;
		right: 0;
	}
	100% {
		opacity: 0;
		right: 100%;
	}
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
	margin-bottom: 0rem !important;
}
.mb10 {
	margin-bottom: 1rem !important;
}
.mb20 {
	margin-bottom: 2rem !important;
}
.mb30 {
	margin-bottom: 3rem !important;
}
.mb40 {
	margin-bottom: 4rem !important;
}
.mb50 {
	margin-bottom: 5rem !important;
}
.mb60 {
	margin-bottom: 6rem !important;
}
.mb70 {
	margin-bottom: 7rem !important;
}
.mb80 {
	margin-bottom: 8rem !important;
}
.mb90 {
	margin-bottom: 9rem !important;
}
.mb100 {
	margin-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
	.mb10 {
		margin-bottom: 0.5rem !important;
	}
	.mb20 {
		margin-bottom: 1rem !important;
	}
	.mb30 {
		margin-bottom: 1.5rem !important;
	}
	.mb40 {
		margin-bottom: 2rem !important;
	}
	.mb50 {
		margin-bottom: 2.5rem !important;
	}
	.mb60 {
		margin-bottom: 3rem !important;
	}
	.mb70 {
		margin-bottom: 3.5rem !important;
	}
	.mb80 {
		margin-bottom: 4rem !important;
	}
	.mb90 {
		margin-bottom: 4.5rem !important;
	}
	.mb100 {
		margin-bottom: 5rem !important;
	}
}

.mt0 {
	margin-top: 0rem !important;
}
.mt10 {
	margin-top: 1rem !important;
}
.mt20 {
	margin-top: 2rem !important;
}
.mt30 {
	margin-top: 3rem !important;
}
.mt40 {
	margin-top: 4rem !important;
}
.mt50 {
	margin-top: 5rem !important;
}
.mt60 {
	margin-top: 6rem !important;
}
.mt70 {
	margin-top: 7rem !important;
}
.mt80 {
	margin-top: 8rem !important;
}
.mt90 {
	margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
	.mt10 {
		margin-top: 0.5rem !important;
	}
	.mt20 {
		margin-top: 1rem !important;
	}
	.mt30 {
		margin-top: 1.5rem !important;
	}
	.mt40 {
		margin-top: 2rem !important;
	}
	.mt50 {
		margin-top: 2.5rem !important;
	}
	.mt60 {
		margin-top: 3rem !important;
	}
	.mt70 {
		margin-top: 3.5rem !important;
	}
	.mt80 {
		margin-top: 4rem !important;
	}
	.mt90 {
		margin-top: 4.5rem !important;
	}
	.mt100 {
		margin-top: 5rem !important;
	}
}

.pb0 {
	padding-bottom: 0 !important;
}
.pb10 {
	padding-bottom: 1rem !important;
}
.pb20 {
	padding-bottom: 2rem !important;
}
.pb30 {
	padding-bottom: 3rem !important;
}
.pb40 {
	padding-bottom: 4rem !important;
}
.pb50 {
	padding-bottom: 5rem !important;
}
.pb60 {
	padding-bottom: 6rem !important;
}
.pb70 {
	padding-bottom: 7rem !important;
}
.pb80 {
	padding-bottom: 8rem !important;
}
.pb90 {
	padding-bottom: 9rem !important;
}
.pb100 {
	padding-bottom: 10rem !important;
}
@media screen and (max-width: 767px) {
	.pb10 {
		padding-bottom: 0.5rem !important;
	}
	.pb20 {
		padding-bottom: 1rem !important;
	}
	.pb30 {
		padding-bottom: 1.5rem !important;
	}
	.pb40 {
		padding-bottom: 2rem !important;
	}
	.pb50 {
		padding-bottom: 2.5rem !important;
	}
	.pb60 {
		padding-bottom: 3rem !important;
	}
	.pb70 {
		padding-bottom: 3.5rem !important;
	}
	.pb80 {
		padding-bottom: 4rem !important;
	}
	.pb90 {
		padding-bottom: 4.5rem !important;
	}
	.pb100 {
		padding-bottom: 5rem !important;
	}
}

.pt0 {
	padding-top: 0 !important;
}
.pt10 {
	padding-top: 1rem !important;
}
.pt20 {
	padding-top: 2rem !important;
}
.pt30 {
	padding-top: 3rem !important;
}
.pt40 {
	padding-top: 4rem !important;
}
.pt50 {
	padding-top: 5rem !important;
}
.pt60 {
	padding-top: 6rem !important;
}
.pt70 {
	padding-top: 7rem !important;
}
.pt80 {
	padding-top: 8rem !important;
}
.pt90 {
	padding-top: 9rem !important;
}
.pt100 {
	padding-top: 10rem !important;
}
@media screen and (max-width: 767px) {
	.pt10 {
		padding-top: 0.5rem !important;
	}
	.pt20 {
		padding-top: 1rem !important;
	}
	.pt30 {
		padding-top: 1.5rem !important;
	}
	.pt40 {
		padding-top: 2rem !important;
	}
	.pt50 {
		padding-top: 2.5rem !important;
	}
	.pt60 {
		padding-top: 3rem !important;
	}
	.pt70 {
		padding-top: 3.5rem !important;
	}
	.pt80 {
		padding-top: 4rem !important;
	}
	.pt90 {
		padding-top: 4.5rem !important;
	}
	.pt100 {
		padding-top: 5rem !important;
	}
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
.single-post-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 7rem;

	@media screen and (max-width: 767px) {
		margin-top: 3.5rem;
	}

	.back {
		margin: 0 8.3rem;
		@media screen and (max-width: 767px) {
			margin: 0 1rem;
		}
	}

	.prev,
	.next {
		width: 14rem;
		@media screen and (max-width: 767px) {
			width: 4.6rem;
		}
		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			width: 100%;
			height: 4.6rem;
			font-weight: 500;
			text-decoration: underline;
			letter-spacing: 0.08rem;
			color: #000;
			box-sizing: border-box;

			@media screen and (max-width: 767px) {
				padding: 0;
				font-size: 0;
				color: transparent;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					text-decoration: none;
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -2.3rem;
				display: block;
				width: 4.6rem;
				height: 4.6rem;
				border-radius: 2.3rem;
				background-color: #2987d9;
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					background-color: #2987d9;
				}
			}
			@media screen and (max-width: 767px) {
				.&:after {
					width: 4.8rem;
					height: 4.8rem;
					margin-top: -2.4rem;
					border-radius: 0;
				}
			}

			&:before {
				content: "";
				position: absolute;
				top: 50%;
				z-index: 1;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.2rem solid #fff;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		& a {
			padding-left: 7.3rem;
			&:after {
				left: 0;
			}
			&:before {
				left: 2.2rem;
				border-left: 0.2rem solid #fff;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:before {
					border-left-color: #fff;
				}
			}
		}
	}
	.next {
		& a {
			padding-right: 7.3rem;
			&:after {
				right: 0;
			}
			&:before {
				right: 2.2rem;
				border-right: 0.2rem solid #fff;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
		}
	}
}

/* navigation pagination */
.navigation.pagination {
	margin: 7rem 0 0;

	@media screen and (max-width: 767px) {
		margin: 3rem 0 0;
	}

	.disable {
		display: none;
	}

	.nav-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;

		@media screen and (max-width: 767px) {
			position: relative;
			padding-bottom: 5rem;
		}
	}

	.pager {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		margin: 0 0.8rem;
		width: 4.4rem;
		height: 5rem;
		font-family: "Roboto", sans-serif;
		font-weight: bold;
		letter-spacing: 0.08em;
		color: #2987d9;
		background: #fff;
		text-decoration: none;
		transition: ease 0.25s all;
		/* border-radius: 0.4em; */
		border: 0.1rem solid #2987d9;

		@media screen and (max-width: 767px) {
			width: 3rem;
			height: 3rem;
		}

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				color: #fff;
				background: #2987d9;
				border-color: #2987d9;
			}
		}
	}

	.pager.current {
		color: #fff;
		font-weight: bold;
		background: #2987d9;
		border-color: #2987d9;
	}

	.next,
	.prev {
		@media screen and (max-width: 767px) {
			/*position: absolute;*/
			/*bottom: 0;*/
			/*width: 48%;*/
			/*height: 4rem;*/
		}

		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			width: 4.4rem;
			height: 5rem;
			font-size: 0;
			font-family: "Roboto", sans-serif;
			font-weight: bold;
			letter-spacing: 0.08em;
			text-decoration: none;
			color: #000;
			background: #fff;
			border: 0.1rem solid #2987d9;
			transition: ease 0.25s background, ease 0.25s color;

			@media screen and (max-width: 767px) {
				width: 2.8rem;
				height: 2.8rem;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					color: #fff;
					background-color: #2987d9;
					&:after {
						border-top-color: #fff;
					}
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.1rem solid #2987d9;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		@media screen and (min-width: 768px) {
			margin-right: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-right: 1rem;
		}
		& a {
			&:after {
				left: 50%;
				margin-left: -0.2rem;
				border-left: 0.1rem solid #2987d9;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					border-left-color: #fff;
				}
			}
		}
	}
	.next {
		@media screen and (min-width: 768px) {
			margin-left: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-left: 1rem;
			/*right: 0;*/
		}
		& a {
			&:after {
				right: 50%;
				margin-right: -0.2rem;
				border-right: 0.1rem solid #2987d9;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					border-right-color: #fff;
				}
			}
		}
	}
}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
	padding: 100px 30px;
	line-height: 1.8;
	text-align: center;
}
