@charset "UTF-8";

/* =======================================================
基本設定
======================================================= */
@font-face {
	font-family: noto-sans-jp;
	font-weight: normal;
	src: url("../fonts/Noto-Sans-JP/NotoSansJP-Regular.woff") format("woff");
	font-display: swap;
}
@font-face {
	font-family: noto-sans-jp;
	font-weight: bold;
	src: url("../fonts/Noto-Sans-JP/NotoSansJP-Bold.woff") format("woff");
	font-display: swap;
}
@font-face {
	font-family: noto-sans-jp;
	font-weight: 900;
	src: url("../fonts/Noto-Sans-JP/NotoSansJP-Black.woff") format("woff");
	font-display: swap;
}
html {
	font-size: min(calc(16 / 1104 * 100vw), 1rem);
}
* {
	padding: 0;
	margin: 0;
}
*,
*::before,
*::after {
	box-sizing: border-box;
	font-style: normal;
	word-wrap: break-word;
	overflow-wrap: anywhere;
	overflow-wrap: break-word;
	outline: none;
	box-shadow: none;
	line-break: strict;
	-webkit-tap-highlight-color: rgb(0 0 0 / 0%);
}
*,
*:focus,
a:focus {
	outline: none;
}
body,
.ly-head,
.ly-main,
.ly-foot {
	min-width: 64rem;
}
body {
	font-family: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #222;
	letter-spacing: 0.04em;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
article,
aside,
figcaption,
figure,
picture,
footer,
main,
header,
nav,
section {
	display: block;
}
table {
	border-spacing: 0;
	border-collapse: separate;
}
ul,
ol {
	list-style: none;
}
p,
li,
dt,
dd,
th,
td {
	-ms-line-break: strict;
	line-break: strict;
	overflow-wrap: anywhere;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	width: 100%;
	height: auto;
	vertical-align: middle;
	image-rendering: optimize-contrast;
}
picture {
	line-height: 0;
}
input,
button,
select,
textarea {
	font-size: 1rem;
	color: #222;
	cursor: pointer;
	background-color: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	appearance: none;
}
input:-webkit-autofill {
	box-shadow: 0 0 0 62.5rem #fff inset;
}
input[type="checkbox"] {
	display: none;
}
input[type="radio"] {
	display: none;
}
button,
textarea {
	font-family: inherit;
	font-size: 100%;
}
@media only screen and (device-width >= 64.0625rem) {
	/* PCのみホバー効果 */
	a,
	.hp-hover {
		transition: all 0.3s ease;
		/* background-color: oklch(from # calc(l + (1 - l) * 0.3) c h); */
	}
	.el-btn:hover{
		background: #fff;
		color: #0057BE;
		border: 0.125rem solid #0057BE;
	}
	.el-btn.--white:hover{
		background: #0057BE;
		color: #fff;
	}
	.el-btn.--line:hover{
		border: none;
		color: #fff;
		background: oklch(from #06C755 calc(l + (1 - l) * 0.3) c h);
	}
	.el-btn.--mail:hover{
		border: none;
		color: #fff;
		background: oklch(from #0057BE calc(l + (1 - l) * 0.3) c h);
	}
	label:hover {
		cursor: pointer;
	}
}
@media screen and (width <= 750px) {
	html {
		font-size: calc(16 / 750 * 100vw);
	}
	body,
	.ly-head,
	.ly-main,
	.ly-foot {
		width: 100%;
		min-width: 46.875rem;
		max-width: 46.875rem;
	}
	body {
		font-size: 1.75rem;
		line-height: 1.5;
	}
}

/* PC SP */
@media screen and (max-width: 767px) {
	.ut-md {
		display: none;
	}
}
@media screen and (min-width: 768px) {
	.ut-sm {
		display: none;
	}
}
/* =============================
共通レイアウト
============================== */

/* 全体のWrapper */
.ly-allwrapper {
	max-width: 125rem;
	margin: 0 auto;
	overflow: hidden;
}

/* inner */
.ly-head-inner,
.ly-foot-inner,
.ly-cont,
.ly-cont-inner {
	position: relative;
	width: 64rem;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
}
/* 2カラム */
.ly-cont--col {
	display: flex;
	flex-wrap: wrap;
	gap: 2.75rem;
	justify-content: space-between;
}
.ly-cont-main {
	width: 43.75rem;
}
.ly-cont-side {
	width: 17.5rem;
}

/* deco */
.deco-top{
	background: #E3F8FE;
	position: relative;
}
.deco-top::before{
	content: '';
	position: absolute;
	background: url(../images/common/top-deco.svg) top center / cover no-repeat;
	width: 100%;
	height: 2.5rem;
	top: -2.5rem;
	left: 50%;
	transform: translateX(-50%);
}
.deco-top.--gray{
	background: #F6F6F6;
}
.deco-top.--gray::before{
	background: url(../images/common/top-deco--gray.svg) top center / cover no-repeat;
}
.deco-top.--white{
	background: #fff;
}
.deco-top.--white::before{
	background: url(../images/common/top-deco--white.svg) top center / cover no-repeat;
}
/* bl_media */
.bl-media-list {
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
}
.bl-media {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}
.el-media-ttl {
	color: #204988;
	font-size: 1.75rem;
	line-height: 1.5;
	letter-spacing: 0.07rem;
	margin-bottom: 1rem;
}
.el-media-txt + .el-media-txt{
	margin-top: 1.3em;
}
/* bl_card */
.bl-card-unit {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}
.bl-card {
	display: flex;
	flex-direction: column;
	width: 20rem;
	position: relative;
}
.bl-card:has(.bl-card-link) {
	padding: 0;
}
.bl-card-link {
	display: block;
	width: 100%;
	height: 100%;
	padding: 1.5rem;
}
.el-card-ttl {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	letter-spacing: 0.06rem;
	text-align: center;
}

/* bl_btnList */
.bl-btn-list {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}
@media screen and (width >= 751px) {
	.bl-media.--reverse {
		flex-direction: row-reverse;
	}
}
@media screen and (width <= 750px) {
	/* inner */
	.ly-cont,
	.ly-cont-inner {
		width: 43.125rem;
	}

	/* 2カラム */
	.ly-cont--col {
		gap: 5rem;
	}
	.ly-cont-main,
	.ly-cont-side {
		width: 100%;
	}

	/* bl_media */
	.bl-media {
		grid-template: auto/auto;
		grid-template-areas: "imgwrapper" "body";
	}
	.bl-media.img-first {
		grid-template: auto/auto;
		grid-template-areas: "imgwrapper" "title" "body";
	}
	.bl-media:has(.el-media-ttl) {
		grid-template: auto/auto;
		grid-template-areas: "title" "imgwrapper" "body";
	}
	.bl-media:has(.el-media-btmtxt) {
		grid-template: auto/auto;
		grid-template-areas: "title" "imgwrapper" "body" "btm_txt";
	}
	.bl-media-imgwrapper {
		margin-bottom: 2rem;
	}
	.el-media-ttl {
		margin-bottom: 1.5rem;
		font-size: 2rem;
	}
	/* bl_card */
	.bl-card {
		width: 100%;
	}
	.el-card-ttl {
		font-size: 2rem;
	}
}

/* =============================
下層MV - パンくず
============================== */
/* MV */
.bl-lower-mv {
	height: 13.25rem;
	background: url(../images/common/bg--blue.jpg) top center/contain;
}
.el-lower-mv-ttl {
	width: 64rem;
	padding-top: 3.75rem;
	margin: 0 auto;
	font-size: 1.5rem;
	line-height: 1.5;
	letter-spacing: 0.06rem;
	color: #fff;
	text-align: center;
	padding-bottom: 1.75rem;
	position: relative;
}
.el-lower-mv-ttl::after{
	content: '';
	position: absolute;
	font-size: 1.125rem;
	letter-spacing: 0.045rem;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

/* パンくず */
.bl-breadcrumbs{
	position: relative;
	z-index: 5;
}
.bl-breadcrumbs-inner {
	display: flex;
	width: 64rem;
	margin: 0 auto;
	overflow: hidden;
	white-space: nowrap;
	position: absolute;
	bottom: -2.25rem;
	left: 50%;
	transform: translateX(-50%);
}
.bl-breadcrumbs-inner > li {
	font-size: 0.8125rem;
}
.bl-breadcrumbs-inner > li:first-child {
	display: flex;
	align-items: center;
}
.bl-breadcrumbs-inner > li:last-child {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.bl-breadcrumbs-inner > li:first-of-type ~ li::before {
	margin: 0 0.4375rem;
	content: ">";
}
.bl-breadcrumbs-inner .home {
	display: flex;
	align-items: center;
	width: 1rem;
}
@media screen and (width <= 750px) {
	/* MV */
	.bl-lower-mv {
		height: 14rem;
	}
	.el-lower-mv-ttl {
		width: 46.875rem;
		padding-bottom: 2.5rem;
		font-size: 1.875rem;
	}
	.el-lower-mv-ttl::after{
		font-size: 1.625rem;
	}
	/* パンくず */
	.bl-breadcrumbs-inner {
		width: 43.125rem;
		bottom: -3.25rem;
	}
	.bl-breadcrumbs-inner > li {
		font-size: 1.375rem;
	}
	.bl-breadcrumbs-inner > li:first-of-type ~ li::before {
		margin: 0 0.625rem;
	}
	.bl-breadcrumbs-inner .home {
		width: 1.75rem;
	}
}

/* =============================
共通パーツ
============================== */
/* 各sectionメイン見出し */
.el-main-ttl {
	font-size: 2.5rem;
	line-height: 1.2;
	letter-spacing: 0.1rem;
	color: #204988;
	text-align: center;
	margin-bottom: 1.5rem;
	position: relative;
}
.el-intro-txt{
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.05rem;
}
/* bl_bullet-list */
.bl-bullet-list > li {
	position: relative;
	padding-left: 1em;
}
.bl-bullet-list > li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "・";
}
.bl-bullet-list.--square > li {
	padding-left: calc(1em + 0.5rem);
}
.bl-bullet-list.--square > li::before {
	content: "■";
}

/* bl_num-list */
.bl-num-list {
	counter-reset: num;
}
.bl-num-list > li {
	position: relative;
	padding-left: 1.2em;
}
.bl-num-list > li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: counter(num) ".";
	counter-increment: num;
}
.bl-num-list.--circle > li:first-of-type::before {
	content: "①";
}
.bl-num-list.--circle > li:nth-of-type(2)::before {
	content: "②";
}
.bl-num-list.--circle > li:nth-of-type(3)::before {
	content: "③";
}
.bl-num-list.--circle > li:nth-of-type(4)::before {
	content: "④";
}
.bl-num-list.--circle > li:nth-of-type(5)::before {
	content: "⑤";
}
.bl-num-list.--brackets {
	counter-reset: cnt;
}
.bl-num-list.--brackets > li {
	padding-left: 2em;
	counter-increment: cnt;
}
.bl-num-list.--brackets > li::before {
	content: "(" counter(cnt) ") ";
}

/* el_btn */
.bl-btn-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.el-btn {
	width: 19rem;
	height: 5rem;
	font-size: 1.25rem;
	letter-spacing: 0.05rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 0.0625rem;
	color: #fff;
	font-weight: bold;
	border-radius: 5rem;
	background: #0057BE;
	margin: 2.5rem auto 0;
	position: relative;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.el-btn.--white{
	background: #fff;
	color: #0057BE;
	border: 0.125rem solid #0057BE;
}
.el-btn.--more {
	width: 18.375rem;
	height: 3.375rem;
	border-radius: 0.625rem;
	border: 0.125rem solid #204988;
	background: #FFF;
	color: #204988;
	font-size: 1.0625rem;
	letter-spacing: 0.0425rem;
	justify-content: flex-start;
	padding: 0 1.5rem;
}
.el-btn.--more::after {
	content: '';
	position: absolute;
	background: url(../images/common/btn-arrow.svg) top center / contain no-repeat;
	width: 1rem;
	height: 0.625rem;
	top: 50%;
	right: 1.375rem;
	transform: translateY(-50%);
}
.el-btn.--line,
.el-btn.--mail{
	font-size: 1.0625rem;
	width: 12.625rem;
	height: 2.75rem;
	background: #06C755;
	padding-left: 2.375rem;
	border-radius: 0.5rem;
}
.el-btn.--mail{
	background: #0057BE;
}
.el-btn.--line::before,
	.el-btn.--mail::before{
		content: '';
		position: absolute;
		background: url(../images/common/icon-line.svg) top center / contain no-repeat;
		width: 1.875rem;
		height: 1.875rem;
		top: 50%;
		left: 1rem;
		transform: translateY(-50%);
}
.el-btn.--mail::before{
	width: 1.5625rem;
	height: 1.25rem;
	background: url(../images/common/icon-mail.svg) top center / contain no-repeat;
}
/* el_label */
.el-label {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 0.125rem;
	color: #fff;
	background: #000;
}
/* ※ */
.el-att {
	font-size: 0.875rem;
}
.--center{
	text-align: center;
}
span.el-att {
	display: block;
}
.el-link {
	color: #00f;
	text-decoration: underline;
}
.el-txt {
	text-align: center;
}
.el-txt + .el-txt{
	margin-top: 1.3em;
}
.--left{
	text-align: left;
}
@media screen and (width <= 46.875rem) {
	/* 各sectionメイン見出し */
	.el-main-ttl {
		font-size: 2.5rem;
		line-height: 1.4;
		letter-spacing: 0.1rem;
	}

	.el-intro-txt{
		font-size: 2rem;
		line-height: 1.5;
		letter-spacing: 0.08rem;
	}

	/* el_btn */
	.el-btn {
		width: 27.5rem;
		height: 7.25rem;
		font-size: 2rem;
		letter-spacing: 0.08rem;
	}

	.el-btn.--more {
		width: 35.875rem;
		height: 4.375rem;
		font-size: 1.75rem;
		letter-spacing: 0.07rem;
	}

	.el-btn.--more::after {
		width: 1.75rem;
		height: 1rem;
		right: 1.625rem;
	}

	.el-btn.--line,
	.el-btn.--mail {
		font-size: 1.625rem !important;
		letter-spacing: 0.065rem !important;
		width: 18.5rem !important;
		height: 4.125rem !important;
		background: #06C755;
		padding-left: 3.375rem !important;
		border-radius: 0.625rem;
	}

	.el-btn.--mail {
		background: #0057BE;
	}

	.el-btn.--line::before,
		.el-btn.--mail::before {
			width: 2.75rem !important;
			height: 2.75rem !important;
			left: 1.25rem !important;
	}

	.el-btn.--mail::before {
		width: 2.25rem !important;
		height: 1.875rem !important;
	}

	/* el_label */

	/* ※ */
	.el-att {
		font-size: 1.375rem;
	}
}

/* =============================
ヘルプタグ
============================== */
.hp-unit {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.hp-mincho {
	font-family: noto-serif-jp, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: bold;
}
.hp-din{
	font-family: din-2014, sans-serif;
	font-weight: 700;
	font-style: normal;
}
.hp-bold {
	font-weight: bold !important;
}
.hp-uppercase{
	text-transform: uppercase;
}
.hp-italic {
	transform: skewX(-10deg);
}
/* 打ち消し線 */
.hp-strikethrough {
	padding: 0.1875rem 0 0;
	letter-spacing: 0;
	background-image: linear-gradient(#fff, #fff);
	background-repeat: repeat-x;
	background-position: 0 62%;
	background-size: 100% 0.0625rem;
}
/* opacity1 */
.hp-opacity1 {
	opacity: 1 !important;
}
/* 電話リンク */
.hp-tel {
	pointer-events: none;
}
/* アクセントカラー */
.hp-color--yellow {
	color: #FEF25C;
}
.hp-color--orange{
	color: #FF6939;
}
.hp-color--blue{
	color: #00B8EE;
}
.hp-scroll-y {
	overflow-y: scroll;
	/* スクロールバー非表示（IE・Edge） */
	-ms-overflow-style: none;
	/* スクロールバー非表示（Firefox） */
	scrollbar-width: none;
}
/* スクロールバー非表示（Chrome・Safari） */
.hp-scroll-y::-webkit-scrollbar {
	display: none;
}
@media screen and (width <= 750px) {
	/* ユニット */
	.hp-unit {
		display: block;
	}
	/* 電話リンク */
	.hp-tel {
		pointer-events: auto;
	}
}

/* =============================
header
============================== */
.ly-head {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 6.25rem;
	transition: background-color 0.3s ease, transform 0.3s ease;
}
.ly-head.is-sticky{
	background: #fff;
}
.bl-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
/* ロゴ */
.bl-head-logo {
	width: 14.25rem;
	display: block;
}
.bl-head-logo img {
	vertical-align: top;
}
/* ヘッダー右側エリア */
.bl-head-right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.bl-head-right .bl-tel{
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.bl-head-right .el-tel{
	color: #0057BE;
	font-size: 1.875rem;
	font-weight: bold;
	letter-spacing: 0.2rem;
}
/* ボタンエリア */
.bl-head .bl-btn-list {
	justify-content: flex-end;
	gap: 1.5rem;
}
.el-btn.--header.--line,
.el-btn.--header.--mail{
	padding-left: 2rem;
	margin: 0;
}
.el-btn.--header.--line::before,
	.el-btn.--header.--mail::before{
		width: 1.625rem;
		height: 1.625rem;
		left: 0.75rem;
}
.el-btn.--header.--mail::before{
	width: 1.375rem;
	height: 1.125rem;
}
/* ナビ */
.bl-gnav {
	z-index: 100;
	width: 100%;
	transition: background-color 0.3s ease, transform 0.3s ease;
}
.ly-head.is-sticky .bl-gnav{
	background: #fff;
}
.bl-gnav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 64rem;
	height: 2.5rem;
	margin: 0 auto;
}
.bl-gnav-inner > li {
	width: 100%;
	height: 100%;
	border-left: 0.0625rem solid #ccc;
}
.bl-gnav-inner > li:last-of-type {
	border-right: 0.0625rem solid #ccc;
}
.bl-gnav-inner > li > a ,
.el-gnav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-bottom: 0.125rem;
}
.bl-gnav-area{
	position: relative;
}
/* スマホ用非表示 */
.bl-burger {
	display: none;
}
@media screen and (width >= 751px) {
	.ly-main {
		padding-top: 8.875rem;
	}
	.bl-head {
		width: min(calc(1200 / 1280 * 100vw), 1200px);
	}
	/* ロゴ */
	.bl-head-logo {
		width: min(calc(214 / 1280 * 100vw), 214px);
	}
	.bl-head-right{
		gap: min(calc(16 / 1280 * 100vw), 16px);
	}
	.bl-head-right .el-tel-txt{
		font-size: min(calc(12 / 1280 * 100vw), 12px);
		letter-spacing: 0.96px;
		line-height: 1.3;
	}
	/* ボタンエリア */
	.bl-head .bl-btn-list {
		gap: min(calc(16 / 1280 * 100vw), 16px);
	}
	.bl-head .el-btn {
		width: min(calc(166 / 1280 * 100vw), 166px);
		height: min(calc(38 / 1280 * 100vw), 38px);
		font-size: min(calc(14 / 1280 * 100vw), 14px);
	}
	.el-btn.--header.--line, .el-btn.--header.--mail {
		padding-left:  min(calc(32 / 1280 * 100vw), 32px);
	}
	.el-btn.--header.--line::before{
		width: min(calc(26 / 1280 * 100vw), 26px);
		height: min(calc(26 / 1280 * 100vw), 26px);
	}
	.el-btn.--header.--mail::before{
		width: min(calc(22 / 1280 * 100vw), 22px);
		height: min(calc(18 / 1280 * 100vw), 18px);
	}
	.bl-gnav{
		padding-bottom: 1rem;
	}
	.bl-gnav .ut-sm{
		display: none;
	}
	.bl-gnav-inner {
		width: min(calc(1200 / 1280 * 100vw), 1200px);
		height: min(calc(26 / 1280 * 100vw), 26px);
	}
	.bl-gnav-inner > li {
		border-left: min(calc(1 / 1280 * 100vw), 1px) solid #222;
	}
	.bl-gnav-inner > li:last-of-type {
		border-right: min(calc(1 / 1280 * 100vw), 1px) solid #222;
	}
	.bl-gnav-inner > li > a,
	.el-gnav-btn{
		display: block;
		width: 100%;
		text-align: center;
		font-weight: bold;
		font-size: min(calc(16 / 1280 * 100vw), 16px);
	}
	.bl-snav{
		background: #0057BE;
		width: 100%;
		position: absolute;
		top: min(calc(26 / 1280 * 100vw), 26px);
		left: 0;
		z-index: 10;
	}
	.bl-snav li:not(:first-of-type){
		border-top: min(calc(1 / 1280 * 100vw), 1px) solid #fff;
	}
	.bl-snav li > a{
		display: block;
		font-size: min(calc(15 / 1280 * 100vw), 15px);
		color: #fff;
		padding: min(calc(8 / 1280 * 100vw), 8px);
	}
}
@media screen and (width <= 46.875rem) {
	.ly-main {
		padding-top: 8.125rem;
	}
	.ly-head {
		height: 8.125rem;
	}
	.ly-head-inner {
		z-index: 110;
		width: 100%;
		padding-left: 1.25rem;
	}
	/* ロゴ */
	.bl-head-logo {
		width: 15.5rem;
	}
	/* ヘッダー右側エリア */
	.bl-head-right {
		height: 100%;
	}
	.bl-head-right .ut-md {
		display: none;
	}
	/* ボタンエリア */
	.bl-head .bl-btn-list {
		gap: 0;
		height: 100%;
	}
	.el-header-txt{
		width: 20rem;
		height: 3.125rem;
		border-radius: 1.5625rem;
		background: #204988;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #FEF25C;
		font-size: 1.75rem;
		font-weight: bold;
		letter-spacing: 0.07rem;
	}
	/* ハンバーガーボタン */
	.bl-burger {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 8.125rem;
		height: 100%;
	}
	.bl-burger-inner {
		position: relative;
		display: block;
		width: 6.5rem;
		height: 6.5rem;
		background: #222;
	}
	.bl-burger-bars {
		position: relative;
		display: block;
		width: 4.75rem;
		height: 3rem;
		margin: 0 auto;
		transition: all 0.3s ease;
	}
	.bl-burger-bar {
		position: absolute;
		left: 50%;
		width: 4.5rem;
		height: 0.1875rem;
		background: #222;
		transform: translateX(-50%);
		position: relative;
	}
	.bl-burger-bar,
	.bl-burger-bars::before,
	.bl-burger-bars::after {
		position: absolute;
		left: 50%;
		width: 100%;
		height: 0.25rem;
		content: "";
		background: #222;
		transition: all 0.3s ease;
		transform: translate(-50%, -50%);
	}
	.bl-burger-bars::before {
		top: 0;
	}
	.bl-burger-bars::after {
		top: 100%;
	}
	.bl-burger-bar {
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.bl-burger.is-active .bl-burger-bars::before {
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.bl-burger.is-active .bl-burger-bars::after {
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.bl-burger.is-active .bl-burger-bar {
		display: none;
	}
	.el-burger-txt {
		bottom: 0;
		left: 0;
		width: 100%;
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 1.5;
		letter-spacing: 0.06rem;
		margin-top: 0.25rem;
	}
	.bl-burger-txt {
		position: absolute;
		bottom: 0.625rem;
		left: 0;
		width: 100%;
		font-size: 1.5rem;
		color: #fff;
	}
	/* ナビ */
	.bl-gnav {
		position: fixed;
		top: 8.125rem;
		left: 0;
		z-index: 90;
		width: 100%;
		height: 100%;
		background: #fff;
		transition: transform 0.3s ease-in-out;
		transform: translateX(100%);
		height: calc(100dvh - 8.125rem);
		overflow-y: scroll;
		padding-bottom: 4rem;
	}
	.bl-gnav.is-active {
		transition: transform 0.3s ease-in-out;
		transform: translateX(0);
	}
	.bl-gnav-inner {
		flex-direction: column;
		justify-content: flex-start;
		gap: 2.5rem;
		width: 100%;
		height: auto;
		padding: 2.5rem 1.25rem 0;
	}
	.bl-gnav-inner > li {
		border-left: none;
		height: unset;
	}
	.bl-gnav-inner > li:last-of-type {
		border-right: none;
	}
	.bl-gnav-inner > li > a ,
	.el-gnav-btn{
		text-align: center;
		font-size: 2.5rem;
		font-weight: 500;
		line-height: 1.2;
		letter-spacing: 0.1rem;
		position: relative;
	}
	.el-gnav-btn{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-left: 1.5rem;
	}
	.el-gnav-btn::after{
		content: '';
		width: 16px;
		height: 16px;
		border-right: 2px solid #222;
		border-bottom: 2px solid #222;
		margin: 0 0 0.25rem 2rem;
		transform: rotate(45deg);
		transition: transform .3s ease;
	}
	.bl-gnav-area.is-open .el-gnav-btn::after{
		margin: 1rem 0 0 2rem;
		transform: rotate(225deg);
	}
	.bl-gnav-area{
		width: 100%;
	}
	.el-gnav-btn{
		width: 100%;
	}
	.bl-snav{
		position: static;
		overflow: hidden;
		transition: height .3s ease;
	}
	.bl-snav li{
		margin-top: 1rem;
	}
	.bl-snav li > a{
		display: block;
		font-size: 2.5rem;
		text-align: center;
	}
	.bl-gnav .bl-tel {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
		margin-top: 5rem;
	}
	.bl-gnav .el-tel-txt {
		width: 20.1875rem;
		height: 4rem;
		color: #0057BE;
		font-size: 1.75rem;
		font-weight: bold;
		letter-spacing: 0.07rem;
		border: 0.125rem solid #0057BE;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.bl-gnav .el-tel {
		font-size: 3.5rem;
		font-weight: bold;
		letter-spacing: 0.14rem;
		color: #0057BE;
	}
	.bl-gnav .bl-btn-list {
		margin-top: 1.5rem;
	}
}

/* =============================
footer
============================= */
.ly-foot {
	background: #fff;
}
.ly-foot-inner {
	padding: 2.5rem 0;
}
.bl-foot {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* ロゴ */
.bl-foot-logo {
	display: block;
	width: 13.375rem;
	margin-bottom: 0.5rem;
}
.bl-foot-left .el-tel{
	color: #0057BE;
	font-size: 1.875rem;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: 0.075rem;
}
.bl-foot-left .el-tel-txt{
	font-size: 0.875rem;
	line-height: 1.2;
	letter-spacing: 0.07rem;
}

/* ナビ */
.bl-foot-gnav {
	width: 42.5rem;
}
.bl-foot-gnav-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
}
.bl-foot-gnav-inner > li > a {
	position: relative;
	padding-left: 0.875rem;
	font-size: 0.9375rem;
	letter-spacing: 0.1em;
}
.bl-foot-gnav-inner > li > a::before {
	position: absolute;
	top: 0.375rem;
	left: 0;
	width: 0;
	height: 0;
	content: "";
	border-style: solid;
	border-top: 0.3125rem solid transparent;
	border-bottom: 0.3125rem solid transparent;
	border-left: 0.5rem solid #204988;
	border-right: 0;
}
.bl-foot .bl-btn-list{
	margin-top: 1.5rem;
}
.bl-foot .bl-btn-list .el-btn{
	margin-top: 0;
}

/* コピーライト */
.bl-foot-copyright {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 2rem;
	text-align: center;
	background: #204988;
}
.bl-foot-copyright small {
	font-family: Verdana; /* Android */
	font-size: 0.75rem;
	color: #fff;
}

/* ページトップボタン */
.bl-pagetop {
	position: relative;
	width: 64rem;
	height: 0;
	margin: 0 auto;
	text-align: right;
}
.bl-pagetop span {
	z-index: 900;
	width: 5rem;
	height: 5rem;
}
.bl-pagetop img {
	opacity: 0;
}
.bl-pagetop .fade img {
	transition: all 0.5s ease-in-out;
}
.bl-pagetop .in img {
	cursor: pointer;
	opacity: 1;
}

@media screen and (width <= 87.5rem) {
	/* ページトップボタン */
	.bl-pagetop {
		width: 100%;
	}
	.bl-pagetop span {
		right: 1.875rem;
	}
}
@media screen and (width <= 46.875rem) {
	/* footer */
	.bl-foot {
		gap: 0;
	}
	.ly-foot-inner {
		width: 100%;
		height: auto;
		padding: 4rem 3.625rem;
	}
	/* ロゴ */
	.bl-foot-logo {
		width: 30.875rem;
		margin: 0 auto 1rem;
	}
	.bl-foot-left .el-tel{
		font-size: 3.5rem;
		line-height: 1.46;
		letter-spacing: 0.14rem;
	}
	.bl-foot-left .el-tel-txt{
		color: #0057BE;
		font-size: 1.75rem;
		font-weight: bold;
		letter-spacing: 0.07rem;
		width: 20.1875rem;
		height: 4rem;
		border: 0.125rem solid #0057BE;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 1rem;
	}
	.bl-foot .bl-btn-list{
		margin-top: 2.5rem;
		gap: 2.5rem;
	}
	.bl-foot .bl-btn-list > li:first-of-type{
		order: 2;
	}

	/* ナビ */
	.bl-foot-gnav {
		order: 1;
		width: 100%;
		margin-top: 3.5rem;
	}
	.bl-foot-gnav-inner {
		gap: 2.375rem 0.5rem;
	}
	.bl-foot-gnav-inner > li {
		min-width: fit-content;
		width: 18rem;
	}
	.bl-foot-gnav-inner > li > a {
		padding-left: 1.375rem;
		font-size: 1.75rem;
		letter-spacing: 0.07rem;
	}
	.bl-foot-gnav-inner > li > a::before {
		top: 53%;
		left: 0;
		border-width: 0.5625rem 0 0.5625rem 0.875rem;
		transform: translateY(-50%);
	}

	/* コピーライト */
	.bl-foot-copyright {
		height: 3.125rem;
	}
	.bl-foot-copyright small {
		font-size: 1rem;
	}

	/* ページトップボタン */
	.bl-pagetop {
		z-index: 90;
		width: 46.875rem;
	}
	.bl-pagetop span {
		right: 1.5625rem;
		bottom: 1.5625rem;
		width: 7.3125rem;
		height: 7.3125rem;
		border-radius: 7.3125rem;
	}
}

/* =============================
sm-btm
============================= */
.bl-sm-btm{
	display: none;
}
@media screen and (width <= 750px) {
	.bl-sm-btm{
		background: #FF6939;
		padding: 1.25rem 2rem;
		display: flex;
		position: sticky;
		bottom: 0;
		z-index: 5;
	}
	.bl-sm-btm .bl-btn-list{
		gap: 1rem;
	}
	.el-btm-btn{
		width: 13.625rem;
		height: 8rem;
		border-radius: 0.625rem;
		background: #FFF;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		padding-bottom: 0.5rem;
		color: #204988;
		font-size: 1.25rem;
		font-weight: bold;
		letter-spacing: 0.05rem;
		position: relative;
	}
	.el-btm-btn.--line{
		color: #06C755;
	}
	.el-btm-btn.--mail{
		color: #0057BE;
	}
	.el-btm-btn::before{
		content: '';
		position: absolute;
		width: 4rem;
		height: 4rem;
		background: url(../images/common/icon-tel02.svg) top center / contain no-repeat;
		top: 0.875rem;
		left: 50%;
		transform: translateX(-50%);
	}
	.el-btm-btn.--line::before{
		background: url(../images/common/icon-line02.svg) top center / contain no-repeat;
	}
	.el-btm-btn.--mail::before{
		background: url(../images/common/icon-mail02.svg) top center / contain no-repeat;
	}
}
/* =============================
CTA
============================= */
.bl-cta {
	padding: 2.5rem 0 3.75rem;
	background: url(".../images/common/cta-bg.jpg") top center/cover no-repeat;
}
.el-cta-ttl {
	margin-bottom: 1.5rem;
	font-size: 1.875rem;
}

/* =============================
新着
============================== */
.bl-vert-post {
	background: #fff;
	border-radius: 0.625rem;
}
.bl-vert-post + .bl-vert-post{
	margin-top: 1rem;
}
.bl-vert-post > a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1.5rem 4rem;
	color: #222;
}
.bl-post-header {
	display: flex;
	flex: 0 1 17.5rem;
	gap: 2rem;
	align-items: center;
}
.el-date {
	font-size: 0.875rem;
	letter-spacing: 0;
}
.el-cat-label {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 6.125rem;
	width: fit-content;
	min-height: 1.75rem;
	padding: 0 0.5rem 0.125rem;
	font-size: 1rem;
	line-height: 1.5;
}
.el-cat-label:not(.all){
	border: 0.0625rem solid #222;
	background: #fff;
	color: #222;
}
.el-cat-label.all {
	background: #0057BE;
	color: #fff;
}
.el-vert-post-ttl {
	flex: 1;
	overflow: hidden;
	font-size: 1.0625rem;
	font-weight: normal;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
@media screen and (width <= 750px) {
	.bl-vert-post > a {
		gap: 1rem;
		padding: 1.5rem 2rem;
	}
	.bl-post-header {
		flex: 100%;
	}
	.el-date {
		font-size: 1.375rem;
	}
	.el-cat-label {
		min-width: 8rem;
		max-width: 30rem;
		min-height: 2.625rem;
		padding: 0 1rem;
		font-size: 1.375rem;
	}
	.el-vert-post-ttl {
		font-size: 1.75rem;
	}
}

/* =============================
コラム
============================== */
.bl-column .bl-card-unit{
	gap: 2.5rem 2rem;
}
.bl-column .bl-card{
	border: 0.125rem solid #204988;
	border-radius: 1.25rem;
	overflow: hidden;
}
.bl-column .bl-card > a{
	display: flex;
	flex-direction: column;
	flex: auto;
}
.bl-column .bl-card-img-wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 11.125rem;
	overflow: hidden;
}
.bl-column .bl-card-body{
	padding: 1.5rem;
	background: #E3F8FE;
	flex: 1;
}
.bl-column .bl-card .el-cat-label{
	font-size: 0.875rem;
	margin-bottom: 1rem;
}
.bl-column .bl-card .el-card-ttl{
	text-align: left;
	font-size: 1.0625rem;
	font-weight: normal;
	line-height: 1.5;
	margin-bottom: 1rem;
}
@media screen and (width <= 750px){
	.bl-column .bl-card{
		width: 100%;
	}
	.bl-column .bl-card-img-wrapper{
		height: 24.125rem;
	}
	.bl-column .bl-card-body{
		padding: 1.5rem 2rem;
	}
	.bl-column .bl-card .el-cat-label{
		font-size: 1.5rem;
	}
	.bl-column .bl-card .el-card-ttl{
		font-size: 1.75rem;
	}
}

/* =============================
aside
============================== */
.bl-aside {
	padding-bottom: 2rem;
	border: 0.125rem solid #204988;
	border-radius: 0.625rem;
	overflow: hidden;
	background: #fff;
}
.el-aside-ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4rem;
	font-size: 1.375rem;
	font-weight: bold;
	letter-spacing: 0.055rem;
	color: #fff;
	background: #204988;
}
.bl-aside-post-list {
	padding: 0 1.25rem;
	margin-bottom: 1.25rem;
}
.bl-aside-post-list > li {
	padding: 1rem 0;
	border-bottom: 0.0625rem solid #c6c6c6;
}
.bl-aside-post-list > li > a {
	display: block;
	display: box;
	overflow: hidden;
	font-size: 1rem;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.bl-aside .el-btn{
	width: 12.5rem;
	height: 3.25rem;
}
.bl-aside .el-btn::after{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent transparent transparent #fff;
	border-width: 0.5rem 0 0.5rem 0.75rem;
	border-style: solid;
	top: 50%;
	right: 1.125rem;
	transform: translateY(-50%);
}
@media screen and (width <= 750px) {
	/* aside */
	.bl-aside {
		padding-bottom: 2.5rem;
	}
	.el-aside-ttl {
		height: 4.75rem;
		font-size: 1.75rem;
	}
	.bl-aside-post-list {
		padding: 0 2rem;
		margin-bottom: 3rem;
	}
	.bl-aside-post-list > li > a {
		padding: 1.5rem 0;
		font-size: 1.625rem;
	}
	.bl-aside .el-btn{
		width: 22.5rem;
		height: 5rem;
	}
	.bl-aside .el-btn::after{
		border-width: 0.75rem 0 0.75rem 1rem;
		right: 2rem;
	}
}

/* =======================================================
works
======================================================= */
.bl-works-unit{
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}
.bl-works-item{
	width: 20rem;
	border-radius: 1.25rem;
	overflow: hidden;
	background: #fff;
	fill: #FFF;
	filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.15));
	position: relative;
}
.bl-works-item::after{
	content: '';
	position: absolute;
	background: #204988;
	width: 100%;
	height: 1.75rem;
	left: 0;
	bottom: 0;
}
.bl-works-img-wrapper{
	display: flex;
	justify-content: center;
	gap: 0.25rem;
}
.bl-works-img-wrapper > figure{
	width: 9.875rem;
	height: 13.125rem;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.bl-works-img-wrapper .hp-uppercase{
	padding: 0 1rem;
	font-size: 0.875rem;
	height: 1.75rem;
	display: flex;
	align-items: center;
	background: #204988;
	color: #fff;
}
.bl-works-after .hp-uppercase{
	background: #FEF25C;
	color: #204988;
	justify-content: flex-end;
}
.bl-works-body{
	padding: 1rem 1.25rem 2.625rem;
}
.bl-works-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.bl-works-header .el-cat-label{
	font-size: 0.875rem;
	min-width: 3.5rem;
}
.bl-works-item .el-works-ttl{
	font-size: 1.0625rem;
	font-weight: normal;
	line-height: 1.56;
	letter-spacing: 0.0425rem;
	padding-bottom: 1.25rem;
	margin-bottom: 1rem;
	position: relative;
}
.bl-works-item .el-works-ttl::after{
	content: '';
	position: absolute;
	background-image: radial-gradient(circle, #204988 0.125rem, transparent 0.125rem);
	background-size: 0.5625rem 0.25rem;
	background-repeat: repeat-x;
	width: 100%;
	height: 0.25rem;
	bottom: 0;
	left: 0;
}
.bl-works-item dl{
	display: flex;
	gap: 0.5rem;
}
@media screen and (width <= 750px) {
	.bl-works-item{
		width: 38.875rem;
		margin: 0 auto;
	}
	.bl-works-img-wrapper{
		gap: 0.5rem;
	}
	.bl-works-img-wrapper > figure{
		width: 19.1875rem;
		height: 25.75rem;
	}
	.bl-works-img-wrapper .hp-uppercase{
		padding: 0 1.5rem;
		font-size: 1.5rem;
		min-height: 3.75rem;
		height: 3.75rem;
	}
	.bl-works-body{
		padding: 1.5rem 2rem 4rem;
	}
	.bl-works-header{
		gap: 1rem;
		margin-bottom: 1.5rem;
	}
	.bl-works-header .el-cat-label{
		font-size: 1.5rem;
	}
	.bl-works-item .el-works-ttl{
		font-size: 1.75rem;
		padding-bottom: 1.5rem;
		margin-bottom: 1.5rem;
		position: relative;
	}
	.bl-works-item dl{
		display: flex;
		gap: 1rem;
	}
}

/* =============================
ページナビ
============================== */
/* wp-pagenavi */
.wp-pagenavi {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: center;
	margin-top: 2.5rem;
}
.wp-pagenavi > * {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 1.875rem;
	height: 2rem;
	padding: 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0;
	border-radius: 0.25rem;
}
.wp-pagenavi a {
	color: #0057BE;
	background: #fff;
	border: 0.125rem solid #0057BE;
}
.wp-pagenavi .current {
	background: #0057BE;
}
.wp-pagenavi .extend {
	font-size: 1rem;
	color: #545454;
}

/* 詳細ページの前へ 次へ */
.bl-pager {
	position: relative;
	height: 2.625rem;
	margin-top: 4rem;
}
.bl-pager-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.bl-pager-link > a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15.25rem;
	height: 3.25rem;
	color: #0057BE;
	font-size: 1.25rem;
	font-weight: bold;
	letter-spacing: 0.05rem;
	background: #fff;
	border-radius: 1.625rem;
	border: 0.125rem solid #0057BE;
}
.bl-pager-prev > a::before,
.bl-pager-next > a::after {
	position: absolute;
	top: 0.0625rem;
	bottom: 0;
	left: 1.5rem;
	display: block;
	width: 0;
	height: 0;
	margin-top: auto;
	margin-bottom: auto;
	content: "";
	border-style: solid;
}
.bl-pager-prev > a {
	border-radius: 1.625rem;
	border: 0.125rem solid #0057BE;
	background: #FFF;

}
.bl-pager-prev > a::before {
	border-color: transparent #0057BE transparent transparent;
	border-width: 0.5rem 0.75rem 0.5rem 0;
}
.bl-pager-next > a::after {
	right: 1.5rem;
	left: initial;
	border-color: transparent transparent transparent #0057BE;
	border-width: 0.5rem 0 0.5rem 0.75rem;
}

/* カテゴリ */
.bl-cat {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	min-height: 3.5rem;
	padding: 1rem 0;
	margin-bottom: 3rem;
	border-radius: 0.625rem;
	border: 0.125rem solid #204988;
	background: #FFF;
}
.el-cat-ttl {
	color: #204988;
	font-size: 1.125rem;
	font-weight: bold;
	flex: 0 1 8.75rem;
	font-size: 1.125rem;
	text-align: center;
}
.bl-cat-list {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}
@media screen and (width <= 750px) {
	/* wp-pagenavi */
	.wp-pagenavi {
		margin-top: 3.125rem;
	}
	.wp-pagenavi > * {
		min-width: 2.5rem;
		height: 3rem;
		padding-bottom: 0.125rem;
		font-size: 1.75rem;
	}
	.wp-pagenavi .extend {
		display: none;
	}

	/* 前へ 次へ */
	.bl-pager {
		height: 3.75rem;
		margin-top: 3.75rem;
	}
	.bl-pager-link > a {
		width: 16.5rem;
		height: 4.5rem;
		font-size: 1.625rem;
		border-radius: 4rem;
	}
	.bl-pager-prev > a {
		padding-left: 1.25rem;
	}
	.bl-pager-prev > a::before {
		border-width: 0.46875rem 0.6875rem 0.46875rem 0;
	}
	.bl-pager-next > a::after {
		border-width: 0.46875rem 0 0.46875rem 0.6875rem;
	}

	/* カテゴリ */
	.bl-cat {
		gap: 1rem;
		padding: 1.5rem;
		margin-bottom: 2.5rem;
	}
	.el-cat-ttl {
		flex: 100%;
		padding-top: 0;
		font-size: 1.875rem;
	}
	.bl-cat-list {
		flex: 100%;
		gap: 1.25rem 1rem;
	}
}

/* =======================================================
cta
======================================================= */
.bl-cta{
	padding: 4rem 0;
	background: #204988;
}
.bl-cta .ly-cont-inner{
	border-radius: 1.25rem;
	background: #FFF;
	padding: 1.875rem 2.625rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.el-cta-ttl{
	color: #204988;
	text-align: center;
	font-size: 1.875rem;
	font-weight: bold;
	letter-spacing: 0.075rem;
	margin-bottom: 1rem;
}
.el-cta-ttl img{
	width: 4.25rem;
	display: block;
	margin: 0 auto;
}
.bl-cta .el-txt{
	color: #204988;
	font-weight: bold;
}
.bl-cta-right .el-sub-ttl{
	font-weight: bold;
	text-align: center;
	width: 26.75rem;
	height: 2.125rem;
	border-radius: 1.0625rem;
	color: #204988;
	background: #FEF25C;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 0.0625rem;
	margin-bottom: 1rem;
}
.bl-cta .el-tel{
	color: #204988;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.12rem;
	padding-left: 3.5rem;
	position: relative;
}
.bl-cta .el-tel::before{
	content: '';
	position: absolute;
	background: url(../images/common/icon-tel.svg) top center / contain no-repeat;
	width: 3rem;
	height: 3rem;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.bl-cta .bl-btn-list{
	margin-top: 1.5rem;
}
.bl-cta .el-btn{
	margin-top: 0;
}
@media screen and (max-width: 750px) {
	.bl-cta{
		padding: 5rem 0;
	}
	.bl-cta .ly-cont-inner{
		padding: 2.5rem 2rem;
		flex-direction: column;
	}

	.el-cta-ttl{
		font-size: 2.625rem;
		font-weight: bold;
		letter-spacing: 0.105rem;
		margin-bottom: 1.5rem;
	}
	.el-cta-ttl img{
		width: 5.875rem;
	}
	.bl-cta-right .el-sub-ttl{
		width: 39rem;
		height: 3.125rem;
		border-radius: 3.125rem;
		margin: 3rem auto 1.5rem;
	}
	.bl-cta .el-tel{
		font-size: 4.25rem;
		line-height: 1.4;
		letter-spacing: 0.17rem;
		padding-left: 5.125rem;
	}
	.bl-cta .el-tel::before{
		width: 4.125rem;
		height: 4.125rem;
	}
	.bl-cta .bl-btn-list{
		margin-top: 2rem;
		gap: 2rem;
	}
	.bl-cta .el-btn{
		margin-top: 0;
	}
}

/* =======================================================
details
======================================================= */
details::details-content{
	content-visibility: unset;
	display: block grid;
}
@media (prefers-reduced-motion: no-preference){
	details::details-content{
		transition-duration: 0.5s;
		transition-property: grid-template-rows;
	}
}
details:not([open])::details-content{
	grid-template-rows: 0fr;
}
details[open]::details-content{
	grid-template-rows: 1fr;
}
details > div{
	overflow: hidden;
}

/* =======================================================
faq
======================================================= */
.bl-faq .el-main-ttl{
	margin-bottom: 3rem;
}
.bl-faq-item{
	border: 0.125rem solid #204988;
	border-radius: 0.625rem;
	overflow: hidden;
}
.bl-faq-item:not(:first-of-type){
	margin-top: 2rem;
}
.bl-q{
	display: block;
	padding: 1.25rem 6rem;
	background: #204988;
	color: #fff;
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0.05rem;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}
.bl-q::before{
	content: '';
	position: absolute;
	background: url(../images/area/q.svg) top center/ contain no-repeat;
	width: 2.5rem;
	height: 2.5rem;
	letter-spacing: 0.0975rem;
	top: 50%;
	left: 2.375rem;
	transform: translateY(-50%);
}
.bl-q::after{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 0.625rem solid transparent;
	border-left: 0.625rem solid transparent;
	border-top: 1.125rem solid #fff;
	border-bottom: 0;
	top: 50%;
	right: 1.75rem;
	transform: translateY(-50%);
}
.bl-faq-item[open] .bl-q::after{
	border-right: 0.625rem solid transparent;
	border-left: 0.625rem solid transparent;
	border-bottom: 1.125rem solid #fff;
	border-top: 0;
}
.bl-a{
	overflow: hidden;
	position: relative;
}
.bl-a > *{
	padding: 1.875rem 2.375rem;
	position: relative;
}
@media screen and (max-width: 46.875rem){
	.bl-q{
		padding: 1.25rem 5.5rem;
		font-size: 1.875rem;
	}
	.bl-q::before{
		left: 2rem;
	}
	.bl-q::after{
		border-right: 0.75rem solid transparent;
		border-left: 0.75rem solid transparent;
		border-top: 1.5rem solid #fff;
		right: 1.5rem;
	}
	.bl-faq-item[open] .bl-q::after{
		border-right: 0.75rem solid transparent;
		border-left: 0.75rem solid transparent;
		border-bottom: 1.5rem solid #fff;
		border-top: 0;
	}
	.bl-a > *{
		padding: 2rem 2rem;
	}
}