@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
	--pop: "Poppins", sans-serif;
	--zen: "Zen Maru Gothic", 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;
	transition: ease 0.25s all;
}

@media (hover: hover) and (pointer: fine) {
	a:hover {
		opacity: 0.8;
	}
}

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: "Zen Maru Gothic", sans-serif;
	-webkit-text-size-adjust: none;

	@media screen and (min-width: 1080.01px) and (max-width: 1919.99px) {
		font-size: calc(10 / 1919 * 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; */
	}
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを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 {
	height: 10rem;
	display: flex;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	padding: 0 4rem;
	width: 100%;
	pointer-events: none;

	@media screen and (max-width: 767px) {
		height: 6rem;
		padding: 0 1.4rem;
	}

	@media print {
		position: absolute;
	}

	.logomark a {
		pointer-events: all;
		width: 37.7rem;
		height: 5.5rem;
		position: relative;
		z-index: 9999;
		/* background-image: url("../img/header/logo-open.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: left center; */

		@media screen and (max-width: 767px) {
			width: 15.9rem;
			height: 3.3rem;
			background: url("../img/header/logomark-sp.png") no-repeat center / 100% auto;
		}

		& img {
			width: 100%;
			vertical-align: top;
			@media screen and (max-width: 767px) {
				display: none;
			}
		}
	}
	.corp-btn {
		display: flex !important;
		align-items: center;
		gap: 0.6rem;
		& img {
			width: 2rem;
			vertical-align: middle;
		}
	}

	.nav {
		background-color: #267bca;
		pointer-events: all;
	}

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

	/* メニューボタン */
	.menu-btn {
		pointer-events: all;
		position: absolute;
		top: 2rem;
		right: 4rem;
		z-index: 9999;

		@media screen and (max-width: 767px) {
			display: block;
			top: 1.2rem;
			right: 1.2rem;
		}

		&: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: 9rem;
			height: 9rem;
			vertical-align: top;
			transition: ease 0.25s all;
			background: #267bca;
			border-radius: 50%;
			pointer-events: all;
			@media screen and (max-width: 767px) {
				width: 6rem;
				height: 6rem;
			}

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

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

				&: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.5rem;
					}
				}

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

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

.nav {
	position: fixed;
	left: 0;
	z-index: 999;
	pointer-events: none;
	top: 0;
	transition: all 0.3s ease-in-out;
	width: 100%;
	padding: 16.8rem 36rem 10.9rem;
	border-radius: 0 0 7rem 7rem;
	box-shadow:
		-12px 12px 30px rgba(0, 0, 0, 0.1),
		-4px 4px 10px rgba(0, 0, 0, 0.06);
	overflow-y: scroll;
	transform: translateY(-100%);
	@media screen and (max-width: 1080px) {
		padding: 16.8rem 20rem 10.9rem;
	}
	@media screen and (max-width: 767px) {
		width: 100%;
		padding: 8rem 2rem 4rem;
		border-radius: 0 0 0 0;
		height: 100%;
	}
	.main-list {
		display: flex;
		gap: 4.8rem;
		@media screen and (max-width: 767px) {
			gap: 0;
			flex-direction: column;
		}
		& li {
			.parent.with-dropdown {
				@media screen and (max-width: 767px) {
					&::after {
						content: "";
						position: absolute;
						right: 0;
						top: 50%;
						width: 0.6rem;
						height: 0.6rem;
						border-right: 2px solid #ffffff;
						border-bottom: 2px solid #ffffff;
						transform: translateY(-50%) rotate(45deg);
						transition: transform 0.3s ease;
					}
				}
			}

			.parent {
				font-family: "Noto Sans JP", sans-serif;
				margin-bottom: 2.4rem;
				display: block !important;
				font-style: normal;
				font-weight: 700;
				font-size: 2rem;
				line-height: 1.5;
				letter-spacing: 0.05em;
				color: #ffffff;
				position: relative;
				white-space: nowrap;
				@media screen and (max-width: 767px) {
					font-size: 1.6rem;
					margin-bottom: 2rem;
					padding-right: 3rem;
					cursor: pointer;
					/* Add arrow indicator */
				}
			}
			a.parent {
				text-decoration: underline;
				text-decoration-color: rgba(255, 255, 255, 0.75);
				text-underline-offset: 4px;
			}

			.drop-down {
				display: flex;
				flex-direction: column;
				@media screen and (max-width: 767px) {
					display: none;
					max-height: 0;
					overflow: hidden;
					transition: max-height 0.3s ease;
				}
				.child {
					font-family: "Noto Sans JP", sans-serif;
					display: block !important;
					font-style: normal;
					font-weight: 700;
					font-size: 1.8rem;
					line-height: 2.11;
					letter-spacing: 0.05em;
					color: #ffffff;
					text-decoration: underline;
					text-decoration-color: rgba(255, 255, 255, 0.75);
					text-underline-offset: 4px;
					white-space: nowrap;
					@media screen and (max-width: 767px) {
						font-size: 1.4rem;
					}
				}
			}
			/* Show dropdown when open class is applied to li */
			&.open .drop-down {
				@media screen and (max-width: 767px) {
					display: flex;
					max-height: 500px;
				}
			}
			/* Rotate arrow when open */
			&.open > .parent::after {
				@media screen and (max-width: 767px) {
					transform: translateY(-50%) rotate(225deg);
				}
			}
		}
		& li:first-child,
		& li:nth-child(4) {
			.parent {
				margin-bottom: 6.4rem;
				@media screen and (max-width: 767px) {
					margin-bottom: 2rem;
				}
			}
		}
	}
}

.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);
						background-color: #267bca;
					}

					&:after {
						margin-top: 0;
						transform: rotate(-45deg);
						-webkit-transform: rotate(-45deg);
						background-color: #267bca;
					}
				}
			}
		}
		.nav {
			transform: translateY(0);
			pointer-events: auto;
		}
		.logomark a {
			background-image: url("../img/header/logo-open.png") !important;
			background-size: contain !important;
			background-repeat: no-repeat !important;
			background-position: left center !important;
			@media screen and (max-width: 767px) {
				background: url("../img/header/logomark-sp.png") no-repeat center / 100% auto !important;
			}
			& img {
				display: none !important;
			}
		}
	}
}
h1.logomark {
	background-image: url("../img/header/logo-open.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	@media screen and (max-width: 767px) {
		background: none;
	}
	& img {
		display: none;
	}
}
.scroll-now {
	#header {
		h1.logomark {
			background: none !important;
			@media screen and (max-width: 767px) {
				background: none;
			}
			& img {
				display: block;
				@media screen and (max-width: 767px) {
					display: none;
				}
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
	padding: 2.4rem 0;

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

	& ol {
		display: flex;
		flex-wrap: wrap;
		align-items: center;

		& li {
			position: relative;
			margin-right: 3.7rem;
			font-family: "Noto Sans JP", sans-serif;
			font-weight: 500;
			font-size: 1.6rem;
			letter-spacing: 0.05em;

			&::after {
				content: "";
				position: absolute;
				right: -2.2rem;
				top: 50%;
				transform: translateY(-50%);
				z-index: 0;
				width: 0.6rem;
				height: 1rem;
				background-image: url(../img/general/breadcrumb-arrow.svg);
				background-size: contain;
				background-repeat: no-repeat;
			}

			& a {
				color: #000;
			}
		}

		& li:last-child {
			&::after {
				display: none;
			}
		}
	}
}

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

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

.common-btn-blue {
	padding-top: 1.9rem;
	/* padding-left: 2.8rem; */
	padding-bottom: 2rem;
	/* padding-right: 1.5rem; */
	background-color: #267bca;
	display: flex;
	justify-content: center;
	width: 25.4rem;
	height: 5.3rem;
	border-radius: 4.4rem;
	position: relative;
	@media screen and (max-width: 767px) {
		margin-left: auto;
		margin-right: auto;
	}

	& span {
		font-family: "Noto Sans JP";
		font-style: normal !important;
		font-weight: 700 !important;
		font-size: 1.4rem !important;
		letter-spacing: 0.05em !important;
		color: #fff !important;
	}

	& img {
		top: 50%;
		right: 1.5rem;
		transform: translateY(-50%);
		position: absolute;
		width: 2.5rem;
		height: 1.7rem;
	}
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {
	margin-top: -7rem;
	padding-top: 8rem;
	background-color: #cde0f5;
	border-radius: 7rem 7rem 0 0;
	position: relative;

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

	.pageup {
		position: absolute;
		width: 9rem;
		right: 15rem;
		top: 45rem;

		@media screen and (max-width: 767px) {
			width: 5rem;
			right: initial;
			right: 2rem;
			top: 32rem;
		}
	}

	.footer-en-title {
		font-family: "Poppins", sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 2.6rem;
		text-align: center;
		color: #267bca;
		padding-bottom: 1.2rem;

		@media screen and (max-width: 767px) {
			font-size: 1.8rem;
			padding-bottom: 0.6rem;
		}
	}

	.footer-jp-title {
		font-style: normal;
		font-weight: 500;
		font-size: 4.4rem;
		text-align: center;
		letter-spacing: 0.08em;
		padding-bottom: 7rem;

		@media screen and (max-width: 767px) {
			font-size: 2.8rem;
			line-height: 3.6rem;
			padding-bottom: 4rem;
		}
	}

	.footer-top-recruit-links-container {
		display: flex;
		gap: 6.7rem;
		max-width: 120rem;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		row-gap: 3.2rem;
		padding-bottom: 7rem;

		@media screen and (max-width: 767px) {
			gap: 1rem;
			row-gap: 1rem;
			padding-top: 0rem;
			padding-bottom: 4rem;
		}
	}

	.footer-recruit-link-img {
		width: 35rem;
		height: 9rem;
		background: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		border: #fff solid 1px;
		border-radius: 1rem;
		@media screen and (max-width: 767px) {
			width: 45%;
			height: 5rem;
		}
		& img {
			width: 35rem;
			border: none;
			display: block;

			@media screen and (max-width: 767px) {
				width: 100%;
				height: 100%;
			}
		}
	}
	.footer-recruit-link-img.custom-btn {
		& img {
			transform: scale(1.02);
			object-fit: cover;
		}
	}
	.footer-bottom {
		background-color: #267bca;
		clip-path: ellipse(66% 31rem at center 34rem);
		padding: 16rem 0 2rem;

		@media screen and (max-width: 767px) {
			/* clip-path: ellipse(80% 16rem at center 20rem); */
			clip-path: ellipse(110% 18rem at center 22rem);
			padding: 10rem 0 2rem;
		}
	}

	.footer-bottom-flex-container {
		display: flex;
		justify-content: space-between;
		margin-bottom: 6rem;

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

	.footer-logo {
		width: 23.9rem;
		padding-bottom: 3.4rem;

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

	.company-name {
		font-family: "Noto Sans JP", sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 1.6rem;
		align-items: center;
		letter-spacing: 0.05em;
		color: #ffffff;
		padding-bottom: 1.2rem;
	}

	.company-infos {
		font-family: "Noto Sans JP", sans-serif;
		font-style: normal;
		font-weight: 500;
		font-size: 1.4rem;
		line-height: 2rem;
		letter-spacing: 0.05em;
		color: #ffffff;

		& a {
			color: #fff !important;
		}
	}
	.corp-link {
		margin-top: 1.2rem;
		font-family: "Noto Sans JP", sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 1.6rem;
		line-height: 162%;
		letter-spacing: 0.05em;
		color: #ffffff;
		display: flex;
		align-items: center;
		gap: 0.8rem;
		text-decoration: underline;
		text-underline-offset: 4px;
		transition: 0.3s ease-in all;
		& img {
			width: 1.5rem;
			vertical-align: middle;
		}
		&:hover {
			opacity: 0.75;
		}
	}

	.footer-bottom-right-container {
		display: flex;

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

		.main-list {
			display: flex;
			gap: 8.5rem;
			@media screen and (max-width: 767px) {
				gap: 2rem;
				flex-direction: column;
			}
			& li {
				.parent.with-dropdown {
					@media screen and (max-width: 767px) {
						&::after {
							content: "";
							position: absolute;
							right: 0;
							top: 50%;
							width: 0.6rem;
							height: 0.6rem;
							border-right: 2px solid #ffffff;
							border-bottom: 2px solid #ffffff;
							transform: translateY(-50%) rotate(45deg);
							transition: transform 0.3s ease;
						}
					}
				}
				.parent {
					font-family: "Noto Sans JP", sans-serif;
					margin-bottom: 2.4rem;
					display: block !important;
					font-style: normal;
					font-weight: 700;
					font-size: 1.6rem;
					line-height: 1.5;
					letter-spacing: 0.05em;
					color: #ffffff;
					position: relative;
					@media screen and (max-width: 767px) {
						font-size: 1.6rem;
						margin-bottom: 2rem;
						padding-right: 3rem;
						cursor: pointer;
						/* Add arrow indicator */
					}
				}
				a.parent {
					text-decoration: underline;
					text-decoration-color: rgba(255, 255, 255, 0.75);
					text-underline-offset: 4px;
				}
				.child-group {
					display: flex;
					flex-direction: column;
					@media screen and (max-width: 767px) {
						display: none;
						max-height: 0;
						overflow: hidden;
						transition: max-height 0.3s ease;
					}
					.child {
						font-family: "Noto Sans JP", sans-serif;
						display: block !important;
						font-style: normal;
						font-weight: 700;
						font-size: 1.6rem;
						line-height: 2.11;
						letter-spacing: 0.05em;
						color: #ffffff;
						text-decoration: underline;
						text-decoration-color: rgba(255, 255, 255, 0.75);
						text-underline-offset: 4px;
						@media screen and (max-width: 767px) {
							font-size: 1.4rem;
						}
					}
				}
				/* Show dropdown when open class is applied to li */
				&.open .drop-down {
					@media screen and (max-width: 767px) {
						display: flex;
						max-height: 500px;
					}
				}
				/* Rotate arrow when open */
				&.open > .parent::after {
					@media screen and (max-width: 767px) {
						transform: translateY(-50%) rotate(225deg);
					}
				}
			}
			& li:first-child,
			& li:last-child {
				.parent {
					margin-bottom: 6.4rem;
					@media screen and (max-width: 767px) {
						margin-bottom: 2rem;
					}
				}
			}
		}
	}

	.link-column-footer {
		display: flex;
		gap: 2.5rem;
		flex-direction: column;

		& a {
			display: block;
			font-style: normal;
			font-weight: 700;
			font-size: 1.6rem;
			letter-spacing: 0.05em;
			color: #ffffff;
		}
	}

	.link-column-footer1 {
		margin-right: 5.3rem;
	}

	.link-column-footer2 {
		margin-right: 8.7rem;
	}

	.copyright-footer {
		font-family: "Noto Sans JP", sans-serif;
		display: block;
		font-style: normal;
		font-weight: 400;
		font-size: 1.2rem;
		text-align: right;
		letter-spacing: 0.05em;
		color: #ffffff;
	}
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;

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

.w960 {
	max-width: 96rem;
}

.w1080 {
	max-width: 108rem;
}

.w1200 {
	max-width: 120rem;
}

.w1440 {
	max-width: 144rem;
}

/* ------------------------------------------- */
/* 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 {
	text-align: center;
}

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

	.pager {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		margin: 0 0.9rem;
		width: 5.6rem;
		height: 5.6rem;
		border-radius: 50%;
		font-family: "Poppins", sans-serif;
		font-weight: 500;
		font-size: 2rem;
		text-align: center;
		letter-spacing: 0.05em;
		color: #267bca;
		background: #fff;
		transition: ease 0.3s all;
		border: 0.2rem solid #267bca;

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

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

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

	.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: 5.6rem;
			height: 5.6rem;
			border-radius: 50%;
			font-family: "Poppins", sans-serif;
			font-weight: 500;
			font-size: 2rem;
			text-align: center;
			letter-spacing: 0.05em;
			color: #267bca;
			background: #fff;
			transition:
				ease 0.3s background,
				ease 0.3s color;
			border: 0.2rem solid #267bca;

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

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					color: #fff;
					background-color: #267bca;

					&:after {
						border-top-color: #fff;
					}
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -0.4rem;
				display: block;
				width: 1rem;
				height: 1rem;
				border-top: 0.2rem solid #267bca;
				box-sizing: border-box;
				transition: ease 0.3s 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.2rem solid #267bca;
				-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.2rem solid #267bca;
				-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;
}

.page_title_top {
	width: 100%;
	position: relative;

	&:after {
		content: "";
		position: absolute;
		right: 0;
		top: 0;
		background-repeat: no-repeat;
		background-size: cover;
		border-radius: 0 0 0 10rem;
		width: 101.5rem;
		height: 56.4rem;

		@media screen and (max-width: 767px) {
			width: 95%;
			height: 20rem;
			border-radius: 0 0 0 4rem;
		}
	}

	.common-title.type01 {
		padding-top: 17rem;
		padding-bottom: 29rem;

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

		.title-main {
			text-align: left;
			font-family: var(--pop);
			font-style: normal;
			font-weight: 700;
			font-size: 2.6rem;
			line-height: 1;
			letter-spacing: 0.08em;
			text-transform: capitalize;
			color: #267bca;
			margin-bottom: 1rem;

			@media screen and (max-width: 767px) {
				font-size: 1.6rem;
				margin-bottom: 0.5rem;
			}
		}

		.title-sub {
			text-align: left;
			font-family: var(--zen);
			font-style: normal;
			font-weight: 500;
			font-size: 5.4rem;
			line-height: 1.26;
			letter-spacing: 0.08em;
			color: #000000;

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

	.inner {
		position: relative;

		#breadcrumbs {
			position: absolute;
			left: 0;
			bottom: 0;
			padding: 0;
		}
	}
}

.fixed-links {
	position: fixed;
	z-index: 100;
	right: 0;
	top: 50dvh;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	@media screen and (max-width: 767px) {
		top: unset;
		bottom: 0;
		transform: unset;
		flex-direction: row;
		width: 100%;
		gap: 0;
	}

	.fixed-link-item {
		width: 6.7rem;
		height: 18.9rem;
		border-radius: 2rem 0 0 2rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.7rem;
		@media screen and (max-width: 767px) {
			width: 50% !important;
			height: 6rem;
			flex-direction: row;
			border-radius: 0;
		}
		& img {
			width: 2.1rem;

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

		& span {
			font-family: "Noto Sans JP";
			font-weight: 700;
			font-size: 2rem;
			line-height: 1;
			letter-spacing: 0.06em;
			color: #ffffff;
			writing-mode: vertical-rl;

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

	.fixed-link-item:nth-child(1) {
		background-color: #eb6d6d;
	}

	.fixed-link-item:nth-child(2) {
		background-color: #eea135;
	}
}

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

	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}
	#header {
		position: absolute;
		left: 0;
		top: 0;
		.nav {
			display: none;
		}
	}
}

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