@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
	--pop: "Poppins", sans-serif;
	--cjk: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
	--noto: "Noto Sans JP", sans-serif;
	--robo: "Roboto", sans-serif;
	--jost: "Jost", sans-serif;
}

/* --------------------------------------------------------------- */
/* 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(10 / 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;
	}
}

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

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
	position: fixed;
	left: 6rem;
	right: 6rem;
	top: 3.8rem;
	z-index: 9999;
	max-width: 180rem;
	width: 100%;
	border-radius: 0.7rem;
	height: 11rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2.4rem;
	box-sizing: border-box;
	@media screen and (max-width: 767px) {
		border-radius: 0.359rem;
		left: 1rem;
		right: 1rem;
		top: 1.7rem;
		box-sizing: border-box;
		height: 5.643rem;
		padding: 0 1.03rem;
		width: calc(100% - 2rem);
	}
	.logomark {
		width: 33.2rem;
		@media screen and (max-width: 767px) {
			width: 18rem;
			position: relative;
			z-index: 100;
		}
		& div,
		& a,
		& img {
			width: 100%;
			vertical-align: middle;
		}
	}
	.nav {
		@media screen and (max-width: 767px) {
			background-color: #323232;
			padding: 15.3rem 2.1rem 4rem;
			box-sizing: border-box;
		}
		.main-list {
			display: flex;
			align-items: center;
			gap: 3rem;
			@media screen and (max-width: 767px) {
				flex-direction: column;
				align-items: self-start;
				gap: 2.4rem;
			}
			& li {
				.h-link {
					display: inline-block;
					font-family: var(--cjk);
					font-style: normal;
					font-weight: 700;
					font-size: 1.6rem;
					line-height: 1.88;
					leading-trim: both;
					text-edge: cap;
					text-align: right;
					letter-spacing: 0.09em;
					color: #000000;
					position: relative;
					transition: color 0.3s ease-in-out;
					@media screen and (max-width: 767px) {
						line-height: 1.5;
						color: #fff;
					}
					/* Hover in: draw left → right (anchor left). Leave: shrink with right edge fixed so wipe runs left → right. */
					&::after {
						content: "";
						position: absolute;
						left: auto;
						right: 0;
						bottom: 0;
						width: 0;
						height: 0.1rem;
						background: #000;
						transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
						@media screen and (max-width: 767px) {
							background: #fff;
							bottom: -0.8rem;
						}
					}
					&:hover::after {
						left: 0;
						right: auto;
						width: 100%;
					}
				}
				.h-link-corp {
					padding-right: 2.6rem;
					position: relative;
					&::before {
						content: "";
						position: absolute;
						right: 0;
						top: 50%;
						transform: translateY(-50%);
						width: 1.521rem;
						height: 1.521rem;
						background: url("../../common/img/header/external.svg") no-repeat center / contain;
					}
				}
				.h-link-insta {
					width: 2.8rem;
					transition: all 0.3s ease-in-out;
					& img {
						transition: all 0.3s ease-in-out;
						width: 100%;
						vertical-align: top;
						&:hover {
							filter: brightness(1.15) saturate(1.8) drop-shadow(0 0 10px rgba(255, 0, 128, 0.35)) drop-shadow(0 0 18px rgba(255, 140, 0, 0.25));
							transform: scale(1.08);
						}
					}
				}
			}
		}
	}
	.entry-btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 15rem;
		height: 7rem;
		border-radius: 0.6rem;
		background: #e50012;
		font-family: var(--pop);
		font-style: normal;
		font-weight: 500;
		font-size: 1.8rem;
		line-height: 1;
		letter-spacing: 0.08em;
		color: #ffffff;
		transition: all 0.3s ease-in;
		@media screen and (max-width: 767px) {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			right: 5.4rem;
			width: 8.8rem;
			height: 3.4rem;
			font-size: 1.2rem;
			z-index: 9999;
			border-radius: 0.308rem;
		}
	}
	.entry-btn:hover {
		background-color: #fff;
		color: #e50012;
		border: #e50012 1px solid;
	}
	/* メニューボタン */
	.menu-btn {
		position: absolute;
		display: none;
		top: 50%;
		transform: translateY(-50%);
		right: 1rem;
		z-index: 9999;

		@media screen and (max-width: 767px) {
			display: block;
			z-index: 9999;
		}

		&:after {
			/* content: "MENU"; */
			content: "";
			position: absolute;
			left: 50%;
			bottom: 1.1rem;
			color: #323232;
			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: 3.4rem;
				height: 3.4rem;
				background-color: #323232;
				border-radius: 0.308rem;
			}

			& span {
				position: absolute;
				left: 50%;
				top: 47%;
				display: block;
				margin-left: -1.8rem;
				width: 3.4rem;
				height: 0.2rem;
				background: #fff;
				border-radius: 0.2rem;

				@media screen and (max-width: 767px) {
					margin-left: -0.8rem;
					width: 1.7rem;
					height: 0.2rem;
				}

				&: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: -1.1rem;
				}
				@media screen and (max-width: 767px) {
					&:before {
						margin-top: -0.6rem;
					}
				}
				&:after {
					margin-top: 1.1rem;
				}
				@media screen and (max-width: 767px) {
					&:after {
						margin-top: 0.6rem;
					}
				}
			}
		}
	}
}

/* header bar background — lives on ::before so it can stack above .nav on SP */
#header::before {
	content: "";
	position: absolute;
	inset: 0;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background-color: rgba(255, 255, 255, 0.83);
	border-radius: 0.7rem;
	z-index: -1; /* PC: behind non-positioned flex children */

	@media screen and (max-width: 767px) {
		z-index: 10; /* SP: above .nav overlay (z-index: 1) */
		@media screen and (max-width: 767px) {
			border-radius: 0.359rem;
		}
	}
}

@media screen and (max-width: 767px) {
	.nav {
		transition: all 0.3s ease-in-out;
		position: fixed;
		top: 0;
		left: 100%;
		width: 100%;
		min-height: 100dvh;
		z-index: 1;
		pointer-events: none;
		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;
				display: block;
				pointer-events: auto;
			}
		}
	}
}
@media screen and (min-width: 768px) {
	.scroll-now {
		#header {
			top: 2rem;
			height: 9rem;
		}
	}
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
	padding: 2.9rem 0 1.9rem;
	@media screen and (max-width: 767px) {
		display: none;
	}
	& ol {
		display: flex;
		flex-wrap: wrap;
	}
	& li {
		position: relative;
		margin-right: 3.7rem;
		font-size: 1.4rem;
		font-family: "Noto Sans JP", sans-serif;
		font-style: normal;
		font-weight: 500;
		/* line-height: 200%; */
		line-height: 1;
		letter-spacing: 0.08em;
		color: #000000;
		&: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: 0.1rem;
			background: #818181;
			transform: rotate(-60deg);
			&:last-child:after {
				display: none;
			}
		}
	}
	& a {
		text-decoration: underline;
		color: #e50012;
		text-decoration: none;
		@media (hover: hover) and (pointer: fine) {
			&:hover {
				text-decoration: none;
				opacity: 0.75;
			}
		}
	}
}

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

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {
	background-color: #323232;
	.contact {
		padding: 15.5rem 0;
		box-sizing: border-box;
		background: url("../img/footer/contact-bg.jpg") no-repeat center / cover;
		background-attachment: fixed;
		@media screen and (max-width: 767px) {
			padding: 4rem 0 13rem;
		}
		.flex-btns {
			display: flex;
			gap: 3.8rem;
			@media screen and (max-width: 767px) {
				flex-direction: column;
				gap: 2rem;
			}
			.contact-btn {
				max-width: 78rem;
				width: 100%;
				background: rgba(255, 255, 255, 0.81);
				border-radius: 0.6rem;
				height: 25rem;
				padding: 8.4rem 6.2rem;
				box-sizing: border-box;
				position: relative;
				display: flex;
				align-items: center;
				overflow: hidden;
				@media screen and (max-width: 767px) {
					height: 11rem;
					padding: 1.8rem 3rem 1.9rem;
				}
				&::before {
					content: "";
					position: absolute;
					inset: 0;
					background: #e50012;
					transform: translateY(100%);
					transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
					z-index: 0;
					border-radius: 0.6rem;
				}
				.btn-text {
					position: relative;
					z-index: 1;
				}
				.en {
					font-family: var(--robo);
					font-style: normal;
					font-weight: 500;
					font-size: 4.2rem;
					line-height: 1;
					letter-spacing: 0.02em;
					color: #e50012;
					margin-bottom: 0.9rem;
					transition: color 0.3s ease;
					@media screen and (max-width: 767px) {
						font-size: 2.4rem;
						line-height: 2.5rem;
						margin-bottom: 0.8rem;
					}
				}
				.jp {
					font-family: "Noto Sans JP", sans-serif;
					font-style: normal;
					font-weight: 700;
					font-size: 2rem;
					line-height: 2.4rem;
					letter-spacing: 0.15em;
					color: #000000;
					transition: color 0.3s ease;
					@media screen and (max-width: 767px) {
						font-size: 1.244rem;
						line-height: 1;
					}
				}
				.btn-arrow {
					position: absolute;
					width: 1.4rem;
					right: 6rem;
					top: 50%;
					transform: translateY(-50%);
					z-index: 1;
					transition:
						right 0.3s ease,
						filter 0.3s ease;
					@media screen and (max-width: 767px) {
						width: 0.95rem;
						right: 1.55rem;
					}
					& img {
						width: 100%;
						vertical-align: top;
					}
				}
				&:hover {
					&::before {
						transform: translateY(0);
					}
					.en {
						color: #ffffff;
					}
					.jp {
						color: #ffffff;
					}
					.btn-arrow {
						right: 5rem;
						filter: brightness(0) invert(1);
					}
				}
			}
		}
	}
	.footer-main {
		width: 100%;
		background-color: #323232;
		padding-top: 13rem;
		@media screen and (max-width: 767px) {
			padding-top: 5.5rem;
		}
		.f-flex {
			width: 100%;
			display: flex;
			gap: 53.2rem;
			margin-bottom: 12.54rem;
			@media screen and (max-width: 767px) {
				flex-direction: column;
				gap: 0;
				margin-bottom: 5.1rem;
			}
			.f-text {
				width: 39rem;
				.f-logo {
					width: 31rem;
					margin-bottom: 3.9rem;
					@media screen and (max-width: 767px) {
						width: 22.6rem;
						margin-bottom: 2rem;
					}
					& img {
						width: 100%;
						vertical-align: top;
					}
				}
				.address {
					font-family: var(--noto);
					font-style: normal;
					font-weight: 400;
					font-size: 1.6rem;
					line-height: 1.67;
					letter-spacing: 0.1em;
					color: #ffffff;
					@media screen and (max-width: 767px) {
						font-size: 1.348rem;
						line-height: 1.8;
					}
					& a {
						color: #ffffff;
						transition: all 0.3s ease-in;
						&:hover {
							opacity: 0.75;
						}
					}
					.f-corp-link {
						display: inline-flex;
						align-items: center;
						gap: 0.85rem;
						position: relative;
						& span {
							position: relative;
							&::after {
								content: "";
								position: absolute;
								left: auto;
								right: 0;
								bottom: -0.8rem;
								width: 0;
								height: 0.1rem;
								background: #fff;
								transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
							}
						}
						& img {
							width: 1.521rem;
							vertical-align: top;
						}
						&:hover span::after {
							left: 0;
							right: auto;
							width: 100%;
						}
					}
				}
			}
			.f-link-container {
				display: flex;
				gap: 15.8rem;
				@media screen and (max-width: 767px) {
					display: none;
				}
				.f-link-list {
					& li {
						margin-bottom: 2.8rem;
						& a.f-link {
							display: inline-block;
							position: relative;
							font-family: var(--noto);
							font-style: normal;
							font-weight: 700;
							font-size: 1.6rem;
							line-height: 1;
							letter-spacing: 0.1em;
							color: #ffffff;
							transition: color 0.3s ease-in-out;
							&::after {
								content: "";
								position: absolute;
								left: auto;
								right: 0;
								bottom: -0.8rem;
								width: 0;
								height: 0.1rem;
								background: #fff;
								transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
							}
						}
						& a.f-link:hover {
							&::after {
								left: 0;
								right: auto;
								width: 100%;
							}
						}
						.f-link-instagram {
							width: 2.6rem;
							& img {
								width: 100%;
								vertical-align: top;
								transition:
									transform 0.3s ease,
									filter 0.3s ease;
								&:hover {
									transform: scale(1.08);
									filter: brightness(1.12) saturate(1.5) drop-shadow(0 4px 12px rgba(225, 48, 108, 0.25));
								}
							}
						}
					}
				}
			}
		}
	}
	.copyrights {
		width: 100%;
		border-top: 1px solid #787878;
		height: 8.1rem;
		display: flex;
		justify-content: center;
		align-items: center;
		@media screen and (max-width: 767px) {
			height: 5.3rem;
		}
		.copyright-text {
			font-family: var(--noto);
			font-style: normal;
			font-weight: 500;
			font-size: 1.4rem;
			line-height: 257%;
			letter-spacing: 0.04em;
			color: #ffffff;
			padding: 0 2rem;
			box-sizing: border-box;
			@media screen and (max-width: 767px) {
				font-size: 1.2rem;
				line-height: 1.2;
			}
		}
	}
	.pageup {
		display: none !important;
	}
}

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

.w880 {
}

.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 {
	width: 100%;
	height: 68.8rem;
	padding-top: 31.5rem;
	background-color: #000;
	@media screen and (max-width: 767px) {
		height: 36rem;
		padding-top: 15rem;
	}
	.title-main {
		font-family: var(--pop);
		font-style: normal;
		font-weight: 600;
		font-size: 8.9rem;
		line-height: 111%;
		letter-spacing: -0.01em;
		color: #ffffff;
		margin-bottom: 1.6rem;
		text-transform: capitalize;
		@media screen and (max-width: 767px) {
			font-size: 4.6rem;
			margin-bottom: 1.1rem;
		}
	}
	.title-sub {
		font-family: var(--noto);
		font-style: normal;
		font-weight: 700;
		font-size: 2rem;
		line-height: 2;
		letter-spacing: 0.1em;
		color: #ffffff;
		flex-grow: 0;
		padding-left: 2rem;
		position: relative;
		@media screen and (max-width: 767px) {
			font-size: 1.2rem;
			line-height: 1.9;
			padding-left: 1.1rem;
		}
		&::after {
			content: "";
			position: absolute;
			left: 0;
			top: 50%;
			transform: translateY(-50%) rotate(45deg);
			width: 1rem;
			height: 1rem;
			background-color: #fff;
			@media screen and (max-width: 767px) {
				width: 0.54rem;
				height: 0.54rem;
			}
		}
	}
}

.common-title.type02 {
	width: 100%;
	height: 53.8rem;
	/* padding-top: 24.6rem; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 11rem;
	@media screen and (max-width: 767px) {
		height: 32rem;
		padding-top: 5.7rem;
	}
	.title-main {
		margin-bottom: 1.6rem;
		text-transform: capitalize;
		font-family: var(--pop);
		font-style: normal;
		font-weight: 600;
		font-size: 8.9rem;
		line-height: 111%;
		letter-spacing: -0.01em;
		color: #000000;
		flex-grow: 0;
		@media screen and (max-width: 767px) {
			font-size: 4.6rem;
			margin-bottom: 1.1rem;
		}
	}
	.title-sub {
		font-family: var(--noto);
		flex-grow: 0;
		padding-left: 2rem;
		position: relative;
		font-style: normal;
		font-weight: 700;
		font-size: 2rem;
		line-height: 2;
		letter-spacing: 0.1em;
		color: #e50012;
		@media screen and (max-width: 767px) {
			font-size: 1.2rem;
			line-height: 1.9;
			padding-left: 1.1rem;
		}
		&::after {
			content: "";
			position: absolute;
			left: 0;
			top: 50%;
			transform: translateY(-50%) rotate(45deg);
			width: 1rem;
			height: 1rem;
			background-color: #e50012;
			@media screen and (max-width: 767px) {
				width: 0.54rem;
				height: 0.54rem;
			}
		}
	}
}

/* ------------------------------------------- */
/* 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: 5rem;
				height: 5rem;
				border-radius: 2.3rem;
				background-color: #e50012;
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					background-color: #e50012;
				}
			}
			@media screen and (max-width: 767px) {
				&:after {
					width: 5rem;
					height: 5rem;
					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: 5rem;
		height: 5rem;
		border-radius: 5rem;
		font-family: var(--noto);
		font-weight: 500;
		font-size: 1.8rem;
		letter-spacing: 0.08em;
		color: #5e5e5e;
		background: #e9e9e9;
		text-decoration: none;
		transition: ease 0.25s all;
		/* border-radius: 0.4em; */
		/* border: 0.1rem solid #e50012; */

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

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

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

	.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: var(--noto);
			font-weight: 500;
			letter-spacing: 0.08em;
			text-decoration: none;
			color: #000;
			background: none;
			border: none;
			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 {
					opacity: 0.75;
					/* color: #fff;
					background-color: #e50012; */
					&:after {
						/* border-top-color: #fff; */
					}
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -0.4rem;
				display: block;
				width: 1.3rem;
				height: 1.3rem;
				border-top: 0.1rem solid #5e5e5e;
				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 #5e5e5e;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					opacity: 0.75;
					/* 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 #5e5e5e;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					opacity: 0.75;
					/* border-right-color: #fff; */
				}
			}
		}
	}
}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
	padding: 100px 30px;
	line-height: 1.8;
	text-align: center;
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
	html {
		font-size: calc(10 / 1920 * 100 * 14px);
	}
	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}
	#wrapper {
		overflow: visible;
	}
	#header {
		position: relative !important;
		left: auto;
		right: auto;
		top: 0;
		max-width: none;
		width: 100%;
		margin-bottom: 2rem;
		display: flex;
		align-items: center;
		height: 11rem;
		&::before {
			inset: 0;
			background-color: #ffffff;
			backdrop-filter: none;
			-webkit-backdrop-filter: none;
		}
	}
}
@page {
	size: A4;
	margin: 10mm;
}
