@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
	--robo: "Roboto", sans-serif;
	--mplus: "M PLUS 1p", sans-serif;
	--monts: "Montserrat", sans-serif;
	--inter: "Inter", 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: all 0.3s ease-in;
}

@media (hover: hover) and (pointer: fine) {
	a:hover {
		text-decoration: none;
		opacity: 0.75;
	}
}

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;
	}
}


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

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

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 8.6rem;
	width: 100%;
	background-color: #fff;
	padding-left: 0;
	overflow: visible;
	box-sizing: border-box;

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

	.logomark {
		position: relative;
		align-self: flex-start;
		z-index: 9999;
		overflow: visible;
		& img {
			height: 15.6rem;
			width: auto;
			vertical-align: top;
		}
		@media screen and (max-width: 1080px) {
			padding-top: 1.4rem;
			& img {
				height: 11rem;
			}
		}
		@media screen and (max-width: 767px) {
			padding-top: 1.2rem;
			& img {
				height: 7rem;
			}
		}
	}

	.nav {
		display: flex;
		gap: 5rem;
		align-items: center;
		@media screen and (max-width: 1080px) {
			gap: 2rem;
		}

		@media screen and (max-width: 767px) {
			background-color: #fff;
			padding: 10rem 2rem 2rem;
			box-sizing: border-box;
			flex-direction: column;
			align-items: flex-start;
			gap: 2rem;
			top: 0;
			transition: all 0.5s ease-in;
			height: 100%;
		}

		.main-list {
			display: flex;
			align-items: center;
			gap: 2.8rem;
			@media screen and (max-width: 1080px) {
				gap: 1rem;
			}
			@media screen and (max-width: 767px) {
				flex-direction: column;
				align-items: flex-start;
				gap: 2rem;
			}

			& li.nav-link {
				& a {
					font-style: normal;
					font-weight: 500;
					font-size: 1.6rem;
					line-height: 1.9rem;
					text-align: center;
					letter-spacing: 0.05em;
					color: #000000;

					&:hover {
						color: #0d2d74;
					}
				}
			}
		}

		.nav-btns {
			display: flex;
			height: 100%;

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

			.nav-btn-call {
				width: 29.3rem;
				height: 8.6rem;
				background-color: #0d2d74;
				padding: 1.8rem 2.6rem;
				box-sizing: border-box;
				display: flex;
				flex-direction: column;
				align-items: center;

				@media screen and (max-width: 767px) {
					width: 100%;
					height: 6rem;
					padding: 0 2rem;
					justify-content: center;
				}

				.tel-flex {
					display: flex;
					align-items: center;
					gap: 0.6rem;
					margin-bottom: 0.4rem;

					& img {
						width: 1.8rem;
						vertical-align: middle;

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

					& span {
						font-family: var(--robo);
						font-style: normal;
						font-weight: 700;
						font-size: 3rem;
						line-height: 1;
						letter-spacing: 0.04em;
						color: #ffffff;

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

				& p {
					font-style: normal;
					font-weight: 500;
					font-size: 1.6rem;
					line-height: 1;
					letter-spacing: 0.06em;
					color: #ffffff;

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

			.nav-btn-contact {
				width: 18rem;
				background-color: #f05e4b;
				height: 8.6rem;
				display: flex;
				justify-content: center;
				align-items: center;

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

				& span {
					font-style: normal;
					font-weight: 700;
					font-size: 2rem;
					line-height: 1;
					text-align: center;
					letter-spacing: 0.05em;
					color: #ffffff;

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

	/* メニューボタン */
	.menu-btn {
		position: absolute;
		display: none;
		top: 0;
		right: 0;
		z-index: 9999;

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

		&:after {
			/* content: "MENU"; */
			content: "";
			position: absolute;
			left: 50%;
			bottom: 1.1rem;
			color: #0d2d74;
			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: 6rem;
				height: 6rem;
			}

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

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

				&:before,
				&:after {
					content: "";
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					background: #0d2d74;
					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;
	}
}

.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 {
	padding: 0 0 2.4rem;

	@media screen and (max-width: 767px) {
		padding: 3.4rem 0 2.4rem;
	}

	& ol {
		display: flex;
		flex-wrap: wrap;
	}

	& li {
		position: relative;
		margin-right: 3.7rem;
		font-weight: 500;
		font-size: 1.2rem;
		letter-spacing: 0.1em;

		&:last-child {
			margin-right: 0;

			&:after {
				display: none;
			}
		}

		&:after {
			content: "";
			position: absolute;
			right: -2.2rem;
			top: 50%;
			transform: translateY(-50%);
			z-index: 0;
			display: block;
			width: 0.7rem;
			height: 1.1rem;
			background: url("../img/header/breadcrumb-arrow.png") no-repeat center / 100% auto;

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

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

	& span,
	& a {
		font-style: normal;
		font-weight: 400;
		font-size: 1.4rem;
		line-height: 1.7rem;
		letter-spacing: 0.05em;
		color: #000000;

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

	& a {
		@media (hover: hover) and (pointer: fine) {
			&:hover {
				text-decoration: underline;
			}
		}
	}
}

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

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

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

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

.w800 {
	max-width: 80rem;
}

.w960 {
	max-width: 96rem;
}

.w1080 {
	max-width: 108rem;
}

.w1200 {
	max-width: 120rem;
}

.w1210 {
	max-width: 121rem;
}

.w1440 {
	max-width: 144rem;
}

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

.tal {
	text-align: left;
}

.tac {
	text-align: center;
}

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

.common-blue-btn {
	width: 35.2rem;
	height: 7.1rem;
	background-color: #336ceb;
	border-radius: 5.5rem;
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 4rem;

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

	& span {
		font-style: normal;
		font-weight: 900;
		font-size: 2rem;
		line-height: 1;
		letter-spacing: 0.1em;
		color: #ffffff;

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

	& img {
		width: 0.9rem;
		vertical-align: middle;
		position: absolute;
		right: 2rem;
		top: 50%;
		transform: translateY(-50%);

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

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

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.page-common-title {
	font-style: normal;
	font-weight: 700;
	font-size: 4rem;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.06em;
	font-feature-settings: "palt" on;
	color: #0d2d74;
	padding-bottom: 4rem;
	margin-bottom: 4rem;
	position: relative;

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

	&:after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 8.2rem;
		height: 2.2rem;
		background: url("../img/general/page-common-title.png") no-repeat center / 100% auto;

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

.page-common-title.left {
	text-align: left;

	&:after {
		left: 0;
		transform: unset;
	}
}

/* type01 */
.common-title.type01 {
	width: 100%;
	background-color: #e2f3ff;
	border-radius: 0 0 32.55rem 0;
	padding-top: 7rem;
	position: relative;

	@media screen and (max-width: 767px) {
		padding-top: 0rem;
		border-radius: 0 0 5rem 0;
	}

	.flex {
		width: 100%;
		display: flex;
		justify-content: space-between;

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

		.title-main {
			font-family: var(--mplus);
			font-style: normal;
			font-weight: 800;
			font-size: 7.4rem;
			line-height: 8rem;
			letter-spacing: 0.08em;
			color: #0d2d74;
			padding-bottom: 4rem;
			margin-bottom: 5.5rem;
			position: relative;
			white-space: nowrap;

			@media screen and (max-width: 767px) {
				font-size: 3.4rem;
				line-height: 1.2;
				padding-bottom: 3rem;
				margin-bottom: 3rem;
			}

			&:after {
				position: absolute;
				content: "";
				background-color: #fcba06;
				width: 10.7rem;
				height: 1.6rem;
				left: 0;
				bottom: -0.5rem;

				@media screen and (max-width: 767px) {
					width: 8rem;
					height: 1rem;
					bottom: 0;
				}
			}
		}

		.title-main.story {
			font-size: 6.6rem;

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

		.banner-text-flex {
			display: flex;
			gap: 5rem;
			align-items: center;
			padding-right: 8.4rem;
			padding-top: 3.3rem;

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

			.banner-text {
				font-style: normal;
				font-weight: 700;
				font-size: 2.6rem;
				line-height: 162%;
				letter-spacing: 0.06em;
				color: #000000;

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

			.page-block {
				width: 19.2rem;

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

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

	.title-sub {
		width: 149.462rem;

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

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

/* ------------------------------------------- */
/* 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: 5.6rem;
			height: 5.6rem;
			border-radius: 5.6rem;
			font-weight: 500;
			text-decoration: underline;
			letter-spacing: 0.08rem;
			color: #0d2d74;
			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: 5.6rem;
				height: 5.6rem;
				border-radius: 5.6rem;
				background-color: #0d2d74;
			}

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

			@media screen and (max-width: 767px) {
				&:after {
					width: 5.6rem;
					height: 5.6rem;
					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: 5.6rem;
		height: 5.6rem;
		border-radius: 5.6rem;
		color: #0d2d74;
		font-family: var(--monts);
		font-style: normal;
		font-weight: 500;
		font-size: 2rem;
		line-height: 1;
		text-align: center;
		letter-spacing: 0.05em;
		background: #fff;
		text-decoration: none;
		transition: ease 0.25s all;
		/* border-radius: 0.4em; */
		border: 0.2rem solid #0d2d74;

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

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

	.pager.current {
		color: #fff;
		font-weight: 500;
		background: #0d2d74;
		border-color: #0d2d74;
	}

	.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: 5.6rem;
			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 #0d2d74;
			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: #0d2d74;

					&: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 #0d2d74;
				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 #0d2d74;
				-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 #0d2d74;
				-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;
}

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

#contact {
	.flex-contents {
		width: 100%;
		display: flex;

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

		.text-contents {
			width: 64%;
			background-color: #0d2d74;
			padding-left: 18.9rem;
			padding-top: 10.2rem;
			padding-right: 3rem;
			box-sizing: border-box;

			@media screen and (max-width: 1080px) {
				width: 66%;
			}

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

			.white-header {
				margin-bottom: 4rem;
				font-style: normal;
				font-weight: 700;
				font-size: 4rem;
				line-height: 1.1;
				text-align: center;
				letter-spacing: 0.1em;
				color: #ffffff;
				width: 88rem;

				@media screen and (max-width: 1080px) {
					font-size: 3.6rem;
					width: 80rem;
				}

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

			.flex-box {
				display: flex;
				gap: 3.4rem;

				@media screen and (max-width: 1080px) {
					gap: 1rem;
				}

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

				.flex-wrap {
					display: flex;
					flex-wrap: wrap;
					gap: 1rem 0.8rem;
					width: 37rem;

					@media screen and (max-width: 1080px) {
						gap: 0.8rem 0.6rem;
					}

					& li {
						background-color: #d1d7e5;
						width: 11.4rem;
						height: 8.1rem;
						display: flex;
						justify-content: center;
						align-items: center;
						border-radius: 0.8rem;

						@media screen and (max-width: 1080px) {
							width: 10rem;
							height: 8rem;
						}

						@media screen and (max-width: 767px) {
							width: 10.8rem;
						}
						& a {
							font-style: normal;
							font-weight: 700;
							font-size: 2.4rem;
							line-height: 117%;
							letter-spacing: 0.1em;
							color: #0d2d74;
							@media screen and (max-width: 1080px) {
								font-size: 2.2rem;
							}

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

				.white-btn {
					background-color: #fff;
					border-radius: 8.5rem;
					width: 47.7rem;
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: center;

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

					.line1 {
						margin-bottom: 1.3rem;
						font-style: normal;
						font-weight: 700;
						font-size: 2.4rem;
						line-height: 1;
						text-align: center;
						letter-spacing: 0.1em;
						color: #000000;

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

					.phone-flex {
						display: flex;
						align-items: center;
						gap: 0.625rem;
						margin-bottom: 1rem;

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

						.num {
							font-family: var(--robo);
							font-style: normal;
							font-weight: 700;
							font-size: 4.6rem;
							line-height: 1;
							letter-spacing: 0.04em;
							color: #f05e4b;

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

						& img {
							width: 3rem;

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

					.note {
						font-style: normal;
						font-weight: 500;
						font-size: 2rem;
						line-height: 2.6rem;
						text-align: center;
						letter-spacing: 0.06em;
						color: #3c3c3c;

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

		.contact-img {
			width: 36%;
			height: 45.9rem;

			@media screen and (max-width: 1080px) {
				width: 34%;
			}

			@media screen and (max-width: 767px) {
				width: 100%;
				height: auto;
			}

			& img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
		}
	}
}

#footer {
	background-color: #f2f5f7;
	padding-top: 7rem;
	padding-bottom: 2.1rem;

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

	.pageup {
		position: fixed;
		width: 7rem;
		bottom: 4rem;
		right: 8.8rem;
		z-index: 99;
		background-color: #0d2d74;
		border-radius: 0.8rem;

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

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

		&:hover {
			opacity: 1;
		}
	}

	.contents-flex {
		display: flex;
		justify-content: space-between;
		margin-bottom: 7.3rem;

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

		.column1 {
			max-width: 36.9rem;

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

			.f-logo {
				width: 100%;
				margin-bottom: 2.5rem;

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

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

			.address {
				font-style: normal;
				font-weight: 500;
				font-size: 1.6rem;
				line-height: 162%;
				letter-spacing: 0.1em;
				color: #000000;

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

		.column2 {
			display: flex;

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

			& ul {
				& li {
					margin-bottom: 2.6rem;

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

					& a {
						font-style: normal;
						font-weight: 500;
						font-size: 2rem;
						line-height: 1;
						letter-spacing: 0.1em;
						text-transform: uppercase;
						color: #000000;

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

			.list1 {
				margin-right: 6.9rem;

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

			.list2 {
				margin-right: 3.4rem;

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

	.copyright {
		width: 100%;
		display: flex;
		justify-content: center;

		& small {
			font-style: normal;
			font-weight: 400;
			font-size: 1.2rem;
			line-height: 1;
			letter-spacing: 0.1em;
			color: #000;
			text-align: center;

			@media screen and (max-width: 767px) {
				font-size: 1rem;
				text-align: left;
			}
		}
	}
}


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

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

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