@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
	--zen: "Zen Kaku Gothic New", sans-serif;
	--overpass: "Overpass", sans-serif;
	--notos: "Noto Serif JP", serif;
}

.red-text {
	color: #e60012 !important;
}

/* --------------------------------------------------------------- */
/* 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;
	color: var(--default-text-color);
	text-decoration: none;
}

@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 print, screen and (min-width: 1080.01px) {
	.tab-off {
		display: none !important;
	}
}

/* PC(768px以上)のみ非表示 */
@media print, screen and (min-width: 767.01px) {
	.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: 767.01px) {
	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: 1080.01px) and (max-width: 1919.99px) {
		font-size: calc(10 / 1920 * 100 * 1vw);
	}

	/* あまりにも文字サイズが小さくなった場合 */
	@media screen and (min-width: 767.01px) 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;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	@media screen and (max-width: 767px) {
		/* スマホ画像長押し禁止対策 */
		pointer-events: none;
	}
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
	html {
		font-size: calc(10 / 1920 * 100 * 14px);
	}

	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}
}

@page {
	size: A4;
	margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.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: clip;
}

.menu-active {
	overflow: hidden;
}

#container {
	padding-top: 12rem;

	@media screen and (max-width: 767px) {
		padding-top: 5.5rem;
	}
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 9.9rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-left: 2.4rem;
	padding-right: 2rem;
	box-sizing: border-box;
	pointer-events: none;

	@media screen and (max-width: 767px) {
		height: 5.5rem;
		align-items: center;
		padding-left: 1.2rem;
	}

	.logomark {
		display: flex;
		align-items: flex-end;
		position: relative;
		z-index: 9999;
		pointer-events: all;
		@media screen and (max-width: 767px) {
			align-items: center;
		}

		& a {
			width: 43.2rem;
			height: 7.5rem;
			border-radius: 6.5rem;
			/* margin-right: 15.5rem; */
			display: flex;
			align-items: center;
			justify-content: center;
			border-radius: 6.5rem;
			background-color: #fff;
			box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
			@media screen and (max-width: 767px) {
				width: 22rem;
				height: 4.4rem;
			}
			& img {
				width: 34.2rem;
				vertical-align: top;
				@media screen and (max-width: 767px) {
					width: 18rem;
				}
			}
		}
	}

	.nav {
		display: flex;
		align-items: baseline;
		justify-content: space-between;
		pointer-events: all;
		@media screen and (max-width: 767px) {
			background-color: #fff;
			flex-direction: column;
			align-items: flex-start;
			height: 100vh;
			top: 0;
			justify-content: flex-start;
			gap: 2rem;
			padding: 8rem 2.5rem 0;
		}
		.main-list {
			display: flex;
			align-items: center;
			gap: 2.4rem;
			justify-content: space-between;
			height: 7.5rem;
			background-color: #fff;
			border-radius: 9rem;
			padding: 0 6.4rem;
			box-sizing: border-box;
			box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
			backdrop-filter: blur(4px);
			@media screen and (max-width: 767px) {
				backdrop-filter: none;
				box-shadow: none;
				flex-direction: column;
				gap: 2rem;
				height: auto;
				align-items: flex-start;
				padding: 0;
				justify-content: flex-start;
			}

			& li {
				position: relative;

				.nav-link {
					font-family: var(--zen);
					font-style: normal;
					font-weight: 500;
					font-size: 1.8rem;
					line-height: 150%;
					letter-spacing: 0.05em;
					color: #000000;
					flex: none;
					order: 1;
					flex-grow: 0;
					position: relative;
					padding-left: 2.5rem;
					transition: all 0.3s ease-in-out;

					@media screen and (max-width: 767px) {
						font-size: 1.4rem;
					}

					&:hover {
						color: #e60012;
						@media screen and (max-width: 767px) {
							color: #000;
						}
					}
				}

				.red-down {
					cursor: pointer;
					&:before {
						content: "";
						position: absolute;
						left: 0;
						top: 50%;
						transform: translateY(-50%);
						width: 1.7rem;
						height: 1.7rem;
						background: url("../img/header/arrow-down.png") no-repeat center / 100% auto;
					}
				}

				.red-dot {
					&:before {
						content: "";
						position: absolute;
						left: 0;
						top: 50%;
						transform: translateY(-50%);
						width: 1.7rem;
						height: 1.7rem;
						border-radius: 1.7rem;
						background-color: #e60012;
					}
				}

				&.has-dropdown {
					.dropdown-menu {
						position: absolute;
						top: 100%;
						left: 0;
						margin-top: 3.5rem;
						background: linear-gradient(180deg, #e60012 0%, #d40010 100%);
						border-radius: 2rem;
						padding: 3.6rem 6.9rem;
						box-sizing: border-box;
						min-width: 28rem;
						box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.15);
						opacity: 0;
						visibility: hidden;
						transform: translateY(-1rem);
						transition: all 0.3s ease-in-out;
						z-index: 1000;
						background: radial-gradient(137.55% 305.55% at 16.91% -9.74%, rgba(255, 130, 130, 0.9) 0%, rgba(224, 0, 18, 0.9) 65.19%);
						@media screen and (max-width: 767px) {
							padding: 0 0 2rem;
							position: relative;
							top: unset;
							transition: all 0s ease-in-out;
							background: none;
							box-shadow: none;
							margin-top: 1.5rem;
						}

						& li {
							margin-bottom: 1.6rem;

							&:last-child {
								margin-bottom: 0;
							}

							& a {
								display: flex;
								align-items: center;
								font-family: var(--zen);
								font-style: normal;
								font-weight: 500;
								font-size: 1.8rem;
								line-height: 150%;
								letter-spacing: 0.05em;
								color: #ffffff;
								padding-left: 2.5rem;
								position: relative;
								transition: all 0.3s ease-in-out;
								white-space: nowrap;
								@media screen and (max-width: 767px) {
									font-size: 1.4rem;
									padding-left: 0;
									color: #000;
								}
								&:before {
									content: "";
									position: absolute;
									left: 0;
									top: 50%;
									transform: translateY(-50%);
									width: 1.7rem;
									height: 1.7rem;
									border-radius: 1.7rem;
									background: url("../img/header/white-dropdown-arrow.png") no-repeat center / 100% auto;
									display: flex;
									align-items: center;
									justify-content: center;
									transition: all 0.3s ease-in-out;
									@media screen and (max-width: 767px) {
										display: none;
									}
								}

								&:hover {
									opacity: 0.75;
								}
							}
						}
					}

					&:hover .dropdown-menu,
					&.active .dropdown-menu {
						opacity: 1;
						visibility: visible;
						transform: translateY(0);
					}
				}
			}
		}
	}

	.recruitment-dropdown {
		position: relative;
		z-index: 100;
		pointer-events: all;
		@media screen and (max-width: 767px) {
			width: 100%;
		}
	}

	.application-btn {
		width: 23.3rem;
		height: 7.5rem;
		border: #e60012 0.2rem solid;
		border-radius: 9rem;
		display: flex;
		align-items: center;
		padding-left: 3.2rem;
		box-sizing: border-box;
		background: #fff;
		gap: 1.8rem;
		transition: all 0.3s ease-in;
		cursor: pointer;
		position: relative;
		z-index: 20;

		@media screen and (max-width: 767px) {
			width: 14rem;
			height: 5rem;
			gap: 1rem;
			padding-left: 2rem;
		}

		.red-dot {
			width: 1.4rem;
			height: 1.4rem;
			border-radius: 1.4rem;
			background-color: #e60012;
			transition: all 0.3s ease-in;
		}

		.text {
			font-family: var(--zen);
			font-style: normal;
			font-weight: 500;
			font-size: 1.8rem;
			line-height: 1;
			letter-spacing: 0.05em;
			color: #000000;
			transition: all 0.3s ease-in;

			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
			}
		}

		&:hover {
			background: radial-gradient(51.5% 134.36% at 4.08% -8.33%, #ffc2c7 0%, #e00012 100%);

			.red-dot {
				background-color: #fff;
			}

			.text {
				color: #fff;
			}
		}
	}

	.application-btn.active {
		background: radial-gradient(51.5% 134.36% at 4.08% -8.33%, #ffc2c7 0%, #e00012 100%);

		.red-dot {
			background-color: #fff;
		}

		.text {
			color: #fff;
		}
	}

	.recruitment-dropdown-content {
		display: none;
		position: absolute;
		top: calc(100% + 2rem);
		right: 1rem;
		z-index: 10;

		@media screen and (max-width: 767px) {
			position: static;
			margin-top: 1.5rem;
		}
	}

	.recruitment-dropdown-content.active {
		display: block;
	}

	.dropdown-bg-circle {
		position: absolute;
		top: -12rem;
		right: -2rem;
		width: 42.1rem;
		height: 35.5rem;
		background: url("../img/header/corner.png") no-repeat top right / contain;
		z-index: -1;
		opacity: 0;
		transition:
			opacity 0.4s ease-in-out,
			transform 0.4s ease-in-out;

		@media screen and (max-width: 767px) {
			display: none;
		}
	}

	.recruitment-dropdown-content.active .dropdown-bg-circle {
		opacity: 1;
		transform: scale(1);
	}

	.white-buttons {
		position: relative;
		z-index: 1;
		display: flex;
		flex-direction: column;
		gap: 1.6rem;

		@media screen and (max-width: 767px) {
			gap: 1.2rem;
			width: 100%;
		}

		.white-btn {
			background: #fff;
			border: 0.2rem solid #e60012;
			border-radius: 5rem;
			padding: 2rem 4rem 2rem 3.2rem;
			display: flex;
			align-items: center;
			gap: 1.6rem;
			text-decoration: none;
			transition: all 0.3s ease-in-out;
			box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
			width: 22.3rem;
			@media screen and (max-width: 767px) {
				padding: 1.5rem 2.4rem;
				gap: 1.2rem;
				width: 100%;
				justify-content: flex-start;
			}

			.btn-dot {
				width: 1.2rem;
				height: 1.2rem;
				border-radius: 50%;
				background-color: #e60012;
				flex-shrink: 0;
			}

			span {
				font-family: var(--zen);
				font-style: normal;
				font-weight: 500;
				font-size: 1.6rem;
				line-height: 1;
				letter-spacing: 0.05em;
				color: #000;
				white-space: nowrap;
				@media screen and (max-width: 767px) {
					font-size: 1.3rem;
				}
			}

			&:hover {
				background: #e60012;
				transform: translateY(-0.2rem);
				box-shadow: 0 0.6rem 1.6rem rgba(230, 0, 18, 0.3);

				.btn-dot {
					background-color: #fff;
				}

				span {
					color: #fff;
				}
			}
		}
	}

	/* メニューボタン */
	.menu-btn {
		position: absolute;
		display: none;
		top: 0;
		right: 0;
		z-index: 9999;
		pointer-events: all;
		@media screen and (max-width: 767px) {
			display: block;
		}

		&:after {
			/* content: "MENU"; */
			content: "";
			position: absolute;
			left: 50%;
			bottom: 1.1rem;
			color: #e90000;
			font-weight: 500;
			letter-spacing: 0.05em;
			font-size: 1.1rem;
			transform: translateX(-50%);
			white-space: nowrap;
		}

		& a {
			position: relative;
			width: 10rem;
			height: 10rem;
			vertical-align: top;
			transition: ease 0.25s all;

			@media screen and (max-width: 767px) {
				width: 5.5rem;
				height: 5.5rem;
			}

			& span {
				position: absolute;
				left: 50%;
				top: 50%;
				display: block;
				margin-left: -1.8rem;
				width: 3.4rem;
				height: 2px;
				background: #e90000;
				border-radius: 0.3rem;

				@media screen and (max-width: 767px) {
					margin-left: -1.4rem;
					width: 2.8rem;
					height: 2px;
				}

				&:before,
				&:after {
					content: "";
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					background: #e90000;
					border-radius: 0.3rem;
					transition: ease 0.25s all;
				}

				&:before {
					margin-top: -1.1rem;
				}

				@media screen and (max-width: 767px) {
					&:before {
						margin-top: -0.7rem;
					}
				}

				&:after {
					margin-top: 1.1rem;
				}

				@media screen and (max-width: 767px) {
					&:after {
						margin-top: 0.7rem;
					}
				}
			}
		}
	}
}

@media screen and (max-width: 767px) {
	.nav {
		position: fixed;
		left: 100%;
		z-index: 999;
		width: 100%;
		pointer-events: none;
		transition: all 0.5s ease-in-out;

		.main-list {
			& li.has-dropdown {
				.dropdown-menu {
					position: static;
					margin-top: 1rem;
					margin-left: 2rem;
					min-width: auto;
					width: calc(100% - 2rem);
					opacity: 1;
					visibility: visible;
					transform: none;
					display: none;
					box-shadow: none;
					pointer-events: auto;

					&:before {
						display: none;
					}
				}
			}
		}
	}
}

.menu-active {
	#header {
		.menu-btn {
			/* position: fixed; */
			& 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);
					}
				}
			}
		}

		@media screen and (max-width: 767px) {
			.nav {
				left: 0;
				pointer-events: auto;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
.breadcrumbs {
	position: relative;
	@media screen and (max-width: 767px) {
		padding-top: 1.3rem;
	}
	& ol {
		display: flex;
		flex-wrap: wrap;
	}
	& li {
		position: relative;
		margin-right: 3.7rem;
		font-weight: 500;
		font-size: 1.6rem;
		letter-spacing: 0.1em;
		@media screen and (max-width: 767px) {
			font-size: 1.2rem;
			margin-right: 1.4rem;
		}
		&:last-child {
			margin-right: 0;

			&:after {
				display: none;
			}
		}
		&:after {
			content: "";
			position: absolute;
			right: -2.7rem;
			top: 50%;
			z-index: 0;
			display: block;
			width: 1.4rem;
			height: 1px;
			background: #bcbcbc;
			@media screen and (max-width: 767px) {
				right: -1rem;
				width: 0.6rem;
			}
			&:last-child:after {
				display: none;
			}
		}
		& span {
			font-family: var(--zen);
			font-style: normal;
			font-weight: 400;
			font-size: 1.6rem;
			line-height: 100%;
			letter-spacing: 0.1em;
			color: #8f8f8f;
			flex: none;
			order: 2;
			flex-grow: 0;
			@media screen and (max-width: 767px) {
				font-size: 1.2rem;
			}
		}
	}
	& a {
		text-decoration: none;

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				text-decoration: underline;
				color: #e00012;
			}
		}
	}
	& li:first-child {
		& a {
			& span {
				color: #e00012;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */

/* common items */

.common-btn {
	border: #e60012 0.2rem solid;
	border-radius: 10rem;
	height: 6rem;
	padding-left: 3.2rem;
	display: inline-flex;
	align-items: center;
	gap: 1.6rem;
	padding-right: 4rem;
	transition: all 0.3s ease-in;
	@media screen and (max-width: 767px) {
		height: 5rem;
		padding-left: 2.4rem;
		padding-right: 3rem;
		gap: 1.2rem;
	}
	& img {
		width: 1.7rem;
		vertical-align: top;
		@media screen and (max-width: 767px) {
			width: 1.4rem;
			vertical-align: top;
		}
	}
	& span {
		font-family: var(--zen);
		font-style: normal;
		font-weight: 500;
		font-size: 1.8rem;
		line-height: 100%;
		letter-spacing: 0.1em;
		color: #000000;
		transition: all 0.15s ease-in;
		@media screen and (max-width: 767px) {
			font-size: 1.4rem;
		}
	}
	&:hover {
		opacity: 0.75;
		border: #fff 0.3rem solid;
		background: radial-gradient(51.5% 134.36% at 4.08% -8.33%, #ffc2c7 0%, #e00012 100%);
		& img {
			filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(113deg) brightness(104%) contrast(103%);
		}
		& span {
			color: #fff;
		}
	}
}

.section-title {
	position: relative;
	font-family: var(--overpass);
	font-style: normal;
	font-weight: 300;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	color: #000000;
	padding-left: 3.2rem;
	margin-bottom: 2rem;
	@media screen and (max-width: 767px) {
		font-size: 16px;
		padding-left: 2.4rem;
		margin-bottom: 1.6rem;
		&:before {
			width: 1.2rem;
			height: 1.2rem;
			border-radius: 1.2rem;
		}
	}
	&:before {
		content: "";
		position: absolute;
		left: 0;
		top: 40%;
		transform: translateY(-50%);
		width: 1.6rem;
		height: 1.6rem;
		border-radius: 1.6rem;
		border: 0.15rem solid #e60012;
	}
}

.section-title.white {
	color: #fff;
	&:before {
		border: 0.15rem solid #fff;
	}
}

.common_h2 {
	font-family: var(--zen);
	font-style: normal;
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 150%;
	letter-spacing: 0.08em;
	color: #000000;
	flex: none;
	order: 1;
	flex-grow: 0;
	padding-left: 4rem;
	position: relative;
	margin-bottom: 6.4rem;
	@media screen and (max-width: 767px) {
		margin-bottom: 3rem;
		font-size: 2.2rem;
		padding-left: 3rem;
	}
	&:before {
		content: "";
		position: absolute;
		width: 2.4rem;
		height: 2.4rem;
		border-radius: 2.4rem;
		background-color: #e00012;
		top: 1.6rem;
		left: 0;
		@media screen and (max-width: 767px) {
			width: 1.6rem;
			height: 1.6rem;
			border-radius: 1.6rem;
			top: 0.8rem;
		}
	}
}

.common_h3 {
	margin-bottom: 2.4rem;
	font-family: var(--zen);
	font-style: normal;
	font-weight: 500;
	font-size: 2.6rem;
	line-height: 1;
	letter-spacing: 0.08em;
	color: #000000;
	flex: none;
	order: 1;
	flex-grow: 0;
	padding-left: 3.2rem;
	position: relative;
	@media screen and (max-width: 767px) {
		margin-bottom: 2rem;
		font-size: 1.8rem;
		padding-left: 2.4rem;
	}
	&:before {
		content: "";
		position: absolute;
		left: 0;
		top: 1.2rem;
		width: 2.2rem;
		height: 4px;
		border-radius: 4.9px;
		background-color: #e60012;
		@media screen and (max-width: 767px) {
			top: 0.8rem;
			width: 1.4rem;
			height: 3px;
		}
	}
}

.common-red-title {
	font-family: var(--zen);
	font-style: normal;
	font-weight: 700;
	font-size: 3rem;
	line-height: 150%;
	letter-spacing: 0.15em;
	color: #e60012;
	margin-bottom: 4rem;
	@media screen and (max-width: 767px) {
		font-size: 1.8rem;
		margin-bottom: 2rem;
	}
}

.large-header {
	font-family: var(--zen);
	font-style: normal;
	font-weight: 700;
	font-size: 4.2rem;
	line-height: 150%;
	letter-spacing: 0.1em;
	color: #000000;
	margin-bottom: 3.2rem;
	@media screen and (max-width: 767px) {
		font-size: 2rem;
		margin-bottom: 2.4rem;
	}
}

.large-header.white {
	color: #fff;
}

.common-text {
	font-family: var(--zen);
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 180%;
	letter-spacing: 0.1em;
	color: #000000;
	margin-bottom: 4rem;
}

.common-text {
	font-family: var(--zen);
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 180%;
	letter-spacing: 0.1em;
	color: #000000;
	align-self: stretch;
	flex-grow: 0;
	margin-bottom: 4rem;
	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		margin-bottom: 3rem;
	}
}

.red-dash-common-title {
	margin-bottom: 1.6rem;
	font-family: var(--zen);
	font-style: normal;
	font-weight: 500;
	font-size: 2.6rem;
	line-height: 1;
	letter-spacing: 0.08em;
	color: #000000;
	flex: none;
	order: 1;
	flex-grow: 0;
	padding-left: 3.2rem;
	position: relative;
	@media screen and (max-width: 767px) {
		font-size: 1.8rem;
		padding-left: 2.2rem;
	}
	&:before {
		content: "";
		position: absolute;
		left: 0;
		top: 1.2rem;
		width: 2.2rem;
		height: 4px;
		border-radius: 4.9px;
		background-color: #e60012;
		@media screen and (max-width: 767px) {
			width: 1.2rem;
			height: 3px;
			top: 0.8rem;
		}
	}
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */

/* entry */

#entry {
	position: relative;
	z-index: 9;
	margin-top: -10rem;
	width: 100%;
	padding-bottom: 8rem;
	@media screen and (max-width: 767px) {
		margin-top: 0;
		padding-bottom: 4rem;
	}
	.large-header {
		margin-bottom: 7rem;
		@media screen and (max-width: 767px) {
			margin-bottom: 3rem;
		}
	}
	.common-btn {
		height: 7rem;
		@media screen and (max-width: 767px) {
			height: 5rem;
		}
		& span {
			font-size: 2.4rem;
			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
			}
		}
	}
	.entry-main {
		width: 100%;
		position: relative;
		padding-top: 9.6rem;
		min-height: 48.6rem;
		box-sizing: border-box;
		@media screen and (max-width: 767px) {
			padding-top: 6rem;
			min-height: 44rem;
		}
		&:before {
			content: "";
			position: absolute;
			z-index: 0;
			background: radial-gradient(128.55% 172.28% at 0% -31.1%, #ffb1b7 0%, #e60012 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
			border-radius: 0px 25rem 25rem 0px;
			width: 164rem;
			height: 49rem;
			left: 0;
			top: 0;
			@media screen and (max-width: 767px) {
				height: 43rem;
			}
		}
	}
	.flex-boxes {
		display: flex;
		@media screen and (max-width: 767px) {
			flex-direction: column;
		}
		.box1 {
			padding-right: 5.6rem;
			border-right: 0.15rem solid #fff;
			@media screen and (max-width: 767px) {
				border-right: none;
				border-bottom: 0.15rem solid #fff;
				padding-right: 0;
				padding-bottom: 2rem;
				margin-bottom: 2rem;
				.common-btn {
					& img {
						width: 1.3rem !important;
					}
				}
			}
			.support-text {
				padding-top: 1.6rem;
				font-family: var(--zen);
				font-style: normal;
				font-weight: 700;
				font-size: 1.8rem;
				line-height: 180%;
				text-align: center;
				letter-spacing: 0.1em;
				color: #ffffff;
				@media screen and (max-width: 767px) {
					font-size: 1.6rem;
					text-align: left;
				}
			}
		}
		.box2 {
			padding-left: 5.6rem;
			display: flex;
			gap: 5.6rem;
			@media screen and (max-width: 767px) {
				padding-left: 0;
				gap: 1rem;
			}
		}
		.common-btn {
			padding-left: 4rem;
			padding-right: 5.6rem;
			background-color: #fff;
			@media screen and (max-width: 767px) {
				padding-left: 2rem;
				padding-right: 2rem;
				& img {
					width: 1.4rem;
					vertical-align: top;
				}
			}
		}
	}
}

#container {
	position: relative;
	overflow: visible;
	&:before {
		content: "";
		position: absolute;
		bottom: -36.6rem;
		right: 0;
		width: 78.5rem;
		height: 105.6rem;
		background: url("../img/footer/footer-ring.png") no-repeat center right / 100% auto;
		z-index: -1;
		display: block;
		margin-left: auto;
		transition: bottom 0.1s ease-out;
		@media screen and (max-width: 767px) {
			display: none;
		}
	}
}

/* footer */

#footer {
	width: 100%;
	background-color: #f3f5f6c2;
	padding-top: 12rem;
	padding-bottom: 4rem;

	@media screen and (max-width: 767px) {
		padding-top: 6rem;
		padding-bottom: 2rem;
	}

	.footer-flex {
		display: flex;
		justify-content: space-between;
		padding-bottom: 12rem;

		@media screen and (max-width: 767px) {
			flex-direction: column;
			padding-bottom: 4rem;
			gap: 2rem;
		}

		.column1 {
			.f-logo {
				width: 29.5rem;
				margin-bottom: 3.2rem;

				@media screen and (max-width: 767px) {
					width: 22rem;
					margin-bottom: 2rem;
				}

				& img {
					width: 100%;
					vertical-align: top;
				}
			}

			.address {
				font-family: var(--zen);
				font-style: normal;
				font-weight: 400;
				font-size: 1.8rem;
				line-height: 180%;
				letter-spacing: 0.1em;
				color: #000000;

				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
				}
			}
		}

		.column2 {
			display: flex;
			gap: 5.6rem;

			@media screen and (max-width: 767px) {
				flex-direction: column;
				gap: 2rem;
			}

			.link-top {
				@media screen and (max-width: 767px) {
					display: flex;
					gap: 3.2rem;
					padding-bottom: 1.6rem;
					border-bottom: 1px solid #b9c3d2;
				}
				& li {
					margin-bottom: 2.4rem;

					@media screen and (max-width: 767px) {
						margin-bottom: 0;
					}

					& a {
						font-family: var(--zen);
						font-style: normal;
						font-weight: 700;
						font-size: 1.6rem;
						line-height: 100%;
						letter-spacing: 0.1em;
						color: #e60012;
						transition: all 0.3s ease-in;

						@media screen and (max-width: 767px) {
							font-size: 1.4rem;
						}

						&:hover {
							color: #000;
						}
					}
				}
			}

			.link-flex {
				display: flex;
				gap: 5.6rem;
				padding-top: 3rem;

				@media screen and (max-width: 767px) {
					gap: 1.6rem;
					padding-top: 0;
					flex-direction: column;
				}

				& ul {
					@media screen and (max-width: 767px) {
						width: 100%;
						padding-bottom: 1.6rem;
						border-bottom: 1px solid #b9c3d2;
						gap: 1.2rem;
						display: flex;
						flex-direction: column;
					}

					& li {
						margin-bottom: 1.6rem;

						@media screen and (max-width: 767px) {
							margin-bottom: 0;
						}

						& span {
							font-family: var(--zen);
							font-style: normal;
							font-weight: 400;
							font-size: 1.4rem;
							line-height: 1;
							letter-spacing: 0.1em;
							color: #e60012;
						}

						& a {
							font-family: var(--zen);
							font-style: normal;
							font-weight: 400;
							font-size: 1.6rem;
							line-height: 140%;
							letter-spacing: 0.1em;
							color: #000000;
							position: relative;
							padding-left: 2rem;
							transition: all 0.3s ease-in;

							@media screen and (max-width: 767px) {
								font-size: 1.4rem;
								& br {
									display: none;
								}
							}

							&:before {
								content: "";
								position: absolute;
								width: 1rem;
								height: 2px;
								background-color: #e00012;
								border-radius: 0.15rem;
								left: 0;
								top: 1rem;
								@media screen and (max-width: 767px) {
									top: 0.8rem;
								}
							}

							&:hover {
								color: #e00012;
							}
						}
					}
				}
			}
		}
	}

	.copyright {
		font-family: var(--overpass);
		font-style: normal;
		font-weight: 400;
		font-size: 1.4rem;
		line-height: 1.8rem;
		text-align: center;
		letter-spacing: 0.1em;
		color: #000000;
		margin: 0 auto;
		display: table;

		@media screen and (max-width: 767px) {
			font-size: 1.2rem;
		}
	}
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	width: 90%;
	@media screen and (max-width: 767px) {
		width: calc(100% - 3rem);
	}
}

.w960 {
	max-width: 96rem;
}

.w1080 {
	max-width: 108rem;
}

.w1200 {
	max-width: 120rem;
}

.w1360 {
	max-width: 136rem;
}

.w1440 {
	max-width: 144rem;
}

.w1680 {
	max-width: 168rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
	text-align: right;
}

.tal {
	text-align: left;
}

.tac {
	text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

.page-banner {
	width: 100%;
	position: relative;
	.common-title {
		padding-top: 24.1rem;
		padding-bottom: 22.5rem;
		@media screen and (max-width: 767px) {
			padding-top: 3.2rem;
			padding-bottom: 23.6rem;
		}
		.title-main {
			padding-left: 3.2rem;
			font-family: var(--overpass);
			font-style: normal;
			font-weight: 300;
			font-size: 2rem;
			line-height: 1.5;
			display: flex;
			align-items: left;
			text-transform: uppercase;
			color: #000000;
			flex: none;
			order: 1;
			flex-grow: 0;
			position: relative;
			margin-bottom: 1.8rem;
			@media screen and (max-width: 767px) {
				padding-left: 2rem;
				font-size: 1.4rem;
				margin-bottom: 0.85rem;
			}
			&:before {
				content: "";
				position: absolute;
				left: 0;
				top: 0.5rem;
				width: 1.6rem;
				height: 1.6rem;
				border-radius: 1.6rem;
				border: #e00012 0.15rem solid;
				@media screen and (max-width: 767px) {
					width: 1.1rem;
					height: 1.1rem;
					border-radius: 1.1rem;
					border: #e00012 0.12rem solid;
					top: 0.35rem;
				}
			}
		}
		.title-sub {
			align-items: left;
			display: block;
			font-family: var(--zen);
			font-style: normal;
			font-weight: 700;
			font-size: 4.6rem;
			line-height: 150%;
			letter-spacing: 0.1em;
			color: #000000;
			flex: none;
			order: 1;
			flex-grow: 0;
			@media screen and (max-width: 767px) {
				font-size: 3.2rem;
			}
		}
	}
}

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
}

/* type01 */
.common-title.type01 {
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {
}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
}

/* ------------------------------------------- */
/* 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: #e60012;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					background-color: #e60012;
				}
			}

			@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: #e60012;
		background: #fff;
		text-decoration: none;
		transition: ease 0.25s all;
		/* border-radius: 0.4em; */
		border: 0.1rem solid #e60012;

		@media screen and (max-width: 767px) {
			width: 3rem;
			height: 3rem;
		}

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				color: #fff;
				background: #e60012;
				border-color: #e60012;
			}
		}
	}

	.pager.current {
		color: #fff;
		font-weight: bold;
		background: #e60012;
		border-color: #e60012;
	}

	.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 #e60012;
			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: #e60012;

					&: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 #e60012;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		@media screen and (min-width: 767.01px) {
			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 #e60012;
				-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: 767.01px) {
			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 #e60012;
				-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;
}

/* staff */

/* .staff-post {
	width: 40rem;
	.thumbnail {
		width: 40rem;
		height: 40rem;
		border-radius: 40rem;
		border: 3px #fff solid;
		overflow: hidden;
		& img {
			width: 100%;
			vertical-align: middle;
		}
	}
} */

#next-page {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 25rem;
	@media screen and (max-width: 767px) {
		margin-bottom: 6rem;
	}
	.next-page-btn {
		width: 139.1rem;
		height: 45.2rem;
		border-radius: 55rem 0 0 55rem;
		border: 0.4rem solid #e60012;
		border-right: none;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		padding-right: 9.5rem;
		box-sizing: border-box;
		transition: all 0.3s ease-in;
		@media screen and (max-width: 767px) {
			padding-right: 0;
			padding-left: 0;
			border: none;
			width: calc(100% - 3rem);
			height: unset;
			margin: 0 auto;
			justify-content: flex-start;
		}
		.flex-contents {
			display: flex;
			gap: 4.1rem;
			align-items: center;
			@media screen and (max-width: 767px) {
				gap: 1.6rem;
			}
			.text-cont {
				display: flex;
				flex-direction: column;
				align-items: flex-end;
				justify-content: center;
				@media screen and (max-width: 767px) {
					align-items: flex-start;
				}
				.line1 {
					font-family: var(--overpass);
					font-style: normal;
					font-weight: 300;
					font-size: 3.4rem;
					line-height: 1;
					display: flex;
					align-items: center;
					text-align: right;
					letter-spacing: 0.05em;
					text-transform: uppercase;
					color: #e60012;
					margin-bottom: 1.6rem;
					@media screen and (max-width: 767px) {
						font-size: 1.8rem;
						margin-bottom: 0.8rem;
					}
				}
				.line2 {
					font-family: var(--zen);
					font-style: normal;
					font-weight: 500;
					font-size: 3.2rem;
					line-height: 100%;
					letter-spacing: 0.1em;
					color: #000000;
					margin-bottom: 1.6rem;
					border: 0.2rem solid #e60012;
					padding: 1.6rem 5.6rem;
					border-radius: 5rem;
					@media screen and (max-width: 767px) {
						font-size: 1.8rem;
						padding: 1.6rem 3.2rem;
						margin-bottom: 0.8rem;
						color: #fff;
						width: 100%;
						background-color: #e00012;
						position: relative;
						&:after {
							content: "";
							position: absolute;
							right: 2.8rem;
							top: 50%;
							transform: translateY(-50%);
							width: 0.8rem;
							height: 1.8rem;
							background: url("../img/general/white-arrow.png") no-repeat center / 100% auto;
						}
					}
				}
				.line3 {
					font-family: var(--zen);
					font-style: normal;
					font-weight: 700;
					font-size: 2.2rem;
					line-height: 180%;
					text-align: right;
					letter-spacing: 0.05em;
					color: #e60012;
					@media screen and (max-width: 767px) {
						font-size: 1.6rem;
						line-height: 1.6;
						text-align: left;
					}
				}
			}
			.arrow {
				width: 4rem;
				@media screen and (max-width: 767px) {
					display: none;
				}
				& img {
					width: 100%;
					vertical-align: top;
				}
			}
		}
	}
	.next-page-btn:hover {
		opacity: 0.75;
	}
	@media screen and (min-width: 767px) {
		.next-page-btn:hover {
			opacity: 0.75;
			background: radial-gradient(33.96% 100% at 14.34% 0%, #ffc2c7 0%, #e00012 100%) #ffffff;
			.text-cont {
				.line1 {
					color: #fff;
				}
				.line2 {
					color: #e00012;
					background-color: #fff;
				}
				.line3 {
					color: #fff;
				}
			}
			.arrow {
				filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(268deg) brightness(101%) contrast(103%);
			}
		}
	}
}

/* Hide disabled slider arrows on home page */
#member {
	.prev.slick-disabled,
	.next.slick-disabled {
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
	}
}
