@charset "utf-8";
/*
Author: あそびラボ
Version: 1.5
*/
/*=======================================================
基本設定
=======================================================*/
@font-face {
	font-family: "noto-sans-jp";
	src: url(../fonts/Noto-Sans-JP/NotoSansJP-Regular.woff) format("woff");
	font-weight: normal;
	font-display: swap;
}
@font-face {
	font-family: "noto-sans-jp";
	src: url(../fonts/Noto-Sans-JP/NotoSansJP-Bold.woff) format("woff");
	font-weight: bold;
	font-display: swap;
}
@font-face {
	font-family: "noto-serif-jp";
	src: url(../fonts/Noto-Serif-JP/NotoSerifJP-Regular.woff) format("woff");
	font-weight: normal;
	font-display: swap;
}
@font-face {
	font-family: "noto-serif-jp";
	src: url(../fonts/Noto-Serif-JP/NotoSerifJP-Bold.woff) format("woff");
	font-weight: bold;
	font-display: swap;
}
* {
	margin: 0;
	padding: 0;
}
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	font-style: normal;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	line-break: strict;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*,
*:focus,
a:focus {
	outline: none;
}
body,
.ly-head,
.ly-main,
.ly-foot {
	max-width: 2000px;
}
body {
	background: #fff;
	font-family: "noto-sans-jp", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 17px;
	line-height: 1.6;
	letter-spacing: 0.04em;
	-webkit-text-size-adjust: 100%;
	color: #222;
}
article,
aside,
figcaption,
figure,
picture,
footer,
main,
header,
nav,
section {
	display: block;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
ul,
ol {
	list-style: none;
}
p,
li,
dt,
dd,
th,
td {
	-ms-line-break: strict;
	line-break: strict;
	word-break: break-word;
}
a {
	text-decoration: none;
	color: inherit;
}
img {
	width: 100%;
	height: auto;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}
picture {
	line-height: 0;
}
input,
button,
select,
textarea {
	-webkit-appearance: none;
	border-radius: 0;
	appearance: none;
	background-color: transparent;
	border: none;
	cursor: pointer;
	font-size: 16px;
	outline: none;
}
input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px #fff inset;
}
input[type="checkbox"] {
	display: none;
}
input[type="radio"] {
	display: none;
}
button,
textarea {
	font-family: inherit;
	font-size: 100%;
}
/* PC SP */
.pc {
	display: initial;
}
.sp {
	display: none;
}
@media only screen and (min-device-width: 1025px) {
	/* PCのみホバー効果 */
	a, .hp-hover {
		transition: all 0.3s ease;
	}
	a:hover, .hp-hover:hover{
		opacity: 0.7;
	}
	-label:hover {
		cursor: pointer;
}
}
@media screen and (max-width: 750px) {
	body,
	.ly-head,
	.ly-main,
	.ly-foot {
		min-width: 750px;
		max-width: 750px;
		width: 100%;
	}
	body {
		font-size: 28px;
		line-height: 1.5;
	}
	.sp {
		display: initial;
	}
	.pc {
		display: none;
	}
}

/*=============================
共通レイアウト
==============================*/
/* 全体のWrapper */
.ly-allWrapper {
	overflow: hidden;
	max-width: 2000px;
	margin: 0 auto;
}

/* inner */
.ly-head-inner,
.ly-foot-inner,
.ly-cont,
.ly-cont-inner {
	max-width: 1024px;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.ly-cont-inner::before {
	content: "";
	position: absolute;
}
/* 2カラム */
.ly-cont--col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 44px;
}
.ly-cont-main {
	width: 700px;
}
.ly-cont-side {
	width: 280px;
}
/* bl-media */
.bl-media-list {
	display: grid;
	gap: 56px;
}
.bl-media {
	display: grid;
	grid-template: auto 1fr / 496px auto;
	grid-template-areas: "imgWrapper body";
	gap: 0 32px;
}
.bl-media:has(.el-media-ttl) {
	grid-template-areas: 
		"imgWrapper title"
		"imgWrapper body"
		"btm-txt btm-txt";
}
.bl-media:has(.bl-media-btm-txt) {
	grid-template: auto 1fr auto / 496px auto;
	grid-template-areas: 
		"imgWrapper title"
		"imgWrapper body"
		"btm-txt btm-txt";
}
.bl-media-img-wrapper {
	grid-area: imgWrapper;
}
.el-media-ttl {
	grid-area: title;
	font-size: 26px;
	line-height: 1.5;
	margin-bottom: 16px;
}
.bl-media-body {
	grid-area: body;
	display: flex;
	flex-direction: column;
	gap: 1.3em;
}
.el-media-btm-txt {
	grid-area: btm-txt;
	margin-top: 1.3em;
}
/* bl-card */
.bl-card-unit {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}
.bl-card {
	width: 320px;
	position: relative;
}
.bl-card:has(.bl-card-link){
	padding: 0;
}
.bl-card-link{
	display: block;
	width: 100%;
	height: 100%;
	padding: 24px;
}
.el-card-ttl{
	font-size: 22px;
	margin-bottom: 16px;
}
/* bl-btn-list */
.bl-btn-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}
@media screen and (min-width: 751px) {
	.bl-media.reverse{
		grid-template-areas:
			"title imgWrapper"
			"body imgWrapper";
	}
}
@media screen and (max-width: 1024px) {
	.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-btm-txt) {
		grid-template: auto / auto;
		grid-template-areas: "title" "imgWrapper" "body" "btm-txt";
	}
	.bl-media-img-wrapper {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 750px) {
	/* inner */
	.ly-cont,
	.ly-cont-inner {
		width: 690px;
	}
	/* 2カラム */
	.ly-cont--col {
		gap: 80px;
	}
	.ly-cont-main,
	.ly-cont-side {
		width: 100%;
	}
	.el-media-ttl {
		font-size: 32px;
		margin-bottom: 24px;
	}
	/* bl-card */
	.bl-card {
		width: 100%;
	}
	.el-card-ttl{
		font-size: 32px;
	}
}
/*=============================
下層MV - パンくず
==============================*/
/* MV */
.bl-lower-mv {
	height: 450px;
	background: url(../images/common/mv-bg.jpg) top center / cover no-repeat;
	padding-top: 160px;
}
.el-lower-mv-ttl {
	width: 1024px;
	margin: 0 auto;
	padding-top: 66px;
	font-size: 24px;
	color: #309CEB;
	position: relative;
}
.el-lower-mv-ttl::before{
	content: '';
	position: absolute;
	height: 50px;
	top: 0;
	left: 0;
}
/* パンくず */
.bl-breadcrumbs-inner {
	width: 1024px;
	height: 30px;
	margin: 0 auto;
	padding-top: 8px;
	display: flex;
	white-space: nowrap;
	overflow: hidden;
}
.bl-breadcrumbs-inner > li {
	font-size: 14px;
}
.bl-breadcrumbs-inner > li:first-child{
	display: flex;
	align-items: center;
}
.bl-breadcrumbs-inner > li:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}
.bl-breadcrumbs-inner > li:first-of-type ~ li::before {
	content: ">";
	margin: 0 7px;
}
.bl-breadcrumbs-inner .home {
	display: flex;
	align-items: center;
	width: 16px;
}
@media screen and (max-width: 750px) {
	/* MV */
	.bl-lower-mv {
		height: 450px;
		background: url(../images/common/mv-bg-sp.jpg) top center / cover no-repeat;
		padding: 152px 0 0 60px!important;
	}
	.el-lower-mv-ttl {
		width: 750px;
		font-size: 30px;
		letter-spacing: 2.52px;
	}
	/* パンくず */
	.bl-breadcrumbs-inner {
		width: 690px;
		height: 41px;
	}
	.bl-breadcrumbs-inner > li {
		font-size: 22px;
	}
	.bl-breadcrumbs-inner > li:first-of-type ~ li::before {
		margin: 0 10px;
	}
	.bl-breadcrumbs-inner .home {
		width: 28px;
	}
}
/*=============================
共通パーツ
==============================*/
/* 各sectionメイン見出し */
.el-main-ttl {
	font-size: 32px;
	line-height: 1.5;
	text-align: center;
	padding-top: 104px;
	position: relative;
	margin: 0 auto 24px;
}
.el-main-ttl.left{
	display: inline-block;
	text-align: left;
}
.el-main-ttl::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 68px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.el-main-ttl::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background: #222;
	top: 88px;
	left: 50%;
	transform: translateX(-50%);
}
.el-main-ttl.left::before,
.el-main-ttl.left::after{
	left: 0;
	transform: unset;
}
/* bl-bullet-list */
.bl-bullet-list > li {
	padding-left: 1em;
	position: relative;
}
.bl-bullet-list > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.bl-bullet-list.bl-bullet-list--square > li {
	padding-left: calc(1em + 8px);
}
.bl-bullet-list.bl-bullet-list--square > li::before {
	content: "■";
}
/* bl-num-list */
.bl-num-list {
	counter-reset: num;
}
.bl-num-list > li {
	padding-left: 1.2em;
	position: relative;
}
.bl-num-list > li:before {
	counter-increment: num;
	content: counter(num) ".";
	position: absolute;
	top: 0;
	left: 0;
}
.bl-num-list.bl-num-list--circle > li:first-of-type::before {
	content: "①";
}
.bl-num-list.bl-num-list--circle > li:nth-of-type(2)::before {
	content: "②";
}
.bl-num-list.bl-num-list--circle > li:nth-of-type(3)::before {
	content: "③";
}
.bl-num-list.bl-num-list--circle > li:nth-of-type(4)::before {
	content: "④";
}
.bl-num-list.bl-num-list--circle > li:nth-of-type(5)::before {
	content: "⑤";
}
.bl-num-list.bl-num-list--brackets {
	counter-reset: cnt;
}
.bl-num-list.bl-num-list--brackets > li {
	padding-left: 2em;
	counter-increment: cnt;
}
.bl-num-list.bl-num-list--brackets > li::before {
	content: "(" counter(cnt) ") ";
}
/* el-btn */
.el-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-bottom: 2px;
}
.el-btn.more{
	width: 320px;
	height: 60px;
	font-size: 18px;
	font-weight: bold;
	background: linear-gradient(
		to right, 
		#50CFF5,
		#1C84D1,
		#145EB4 
	);
	color: #fff;
	border-radius: 60px;
	margin: 0 auto;
	z-index: 3;
}
.el-btn.more::after{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent #fff;
	margin-top: 2px;
	margin-left: 16px;
}
/* el-label */
.el-label {
	background: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2px;
}
/* ※ */
.el-att {
	font-size: 14px;
	padding-left: 1em;
	position: relative;
}
.el-att::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
.el-att.center{
	text-align: center;
	padding-left: 0;
}
.el-att.center::before{
	position: relative;
}
.el-att01,
.el-att02,
.el-att03 {
	padding-left: 2.5em;
}
.el-att01::before {
	content: "※1";
}
.el-att02::before {
	content: "※2";
}
.el-att03::before {
	content: "※3";
}
span.el-att {
	display: block;
}
.el-txt {
	text-align: center;
}
@media screen and (max-width: 750px) {
	/* 各sectionメイン見出し */
	.el-main-ttl {
		width: 630px;
		font-size: 36px;
		letter-spacing: 2.16px;
		margin: 0 auto 24px;
	}
	.el-main-ttl::before{
		height: 70px;
	}
	.el-main-ttl.left{
		display: block;
		text-align: center;
	}
	.el-main-ttl.left::before,
	.el-main-ttl.left::after{
		left: 50%;
		transform: translateX(-50%);
	}
	/* el-btn */
	.el-btn.more {
		width: 500px;
		height: 90px;
		font-size: 30px;
	}
	.el-btn.more::after{
		border-width: 9px 0 9px 15px;
		margin-left: 24px;
	}
	/* el-label */
	.el-label {
	}
	/* ※ */
	.el-att {
		font-size: 22px;
	}
}

/*=============================
ヘルプタグ
==============================*/
/* ユニット */
.hp-unit {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
/* 明朝体 */
.hp-mincho {
	font-family: "noto-serif-jp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: bold;
}
/* bold */
.hp-bold {
	font-weight: bold !important;
}
/* italic */
.hp-italic {
	transform: skewX(-10deg);
}
/* 打ち消し線 */
.hp-strikethrough {
	padding: 3px 0 0 8px;
	background-image: linear-gradient(#222, #222);
	background-position: 0 50%;
	background-size: 100% 1px;
	background-repeat: repeat-x;
	letter-spacing: 0;
}
/* opacity1 */
.hp-opacity1 {
	opacity: 1 !important;
}
/* 電話リンク */
.hp-tel {
	pointer-events: none;
}
.hp-link {
	text-decoration: underline;
	color: #0000ff;
}
/* アクセントカラー */
.hp-color--orange {
	color: #ee9e21 !important;
}
.hp-marker.yellow{
	background-color: rgba(255, 218, 95, 0.7);
}
/* 影付き角丸白ボックス */
.hp-shadowRadiusWhiteBox {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.35);
}
.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 (max-width: 750px) {
	/* ユニット */
	.hp-unit {
		display: block;
	}
	/* 電話リンク */
	.hp-tel {
		pointer-events: auto;
	}
}

/*=============================
header
==============================*/
.ly-head {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 120;
}
.ly-head.is-sticky{
	background: linear-gradient(to right, #50CFF5, #1C84D1, #145EB4);
}
.bl-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	max-width: 1400px;
}
/* ロゴ */
.bl-head-logo {
	order: 1;
}
.bl-head-logo img:first-of-type,
.bl-head-logo img:nth-of-type(2){
	width: 368px;
}
.bl-head-logo img:nth-of-type(3),
.bl-head-logo img:nth-of-type(4){
	width: 158px;
}
.bl-head-logo > a {
	display: block;
}
.bl-head-logo img {
	vertical-align: top;
}
.bl-head-logo img:first-of-type,
.bl-head-logo img:nth-of-type(2),
.bl-head-logo img:nth-of-type(4){
	display: none;
}
.is-sticky .bl-head-logo img:first-of-type,
.is-sticky .bl-head-logo img:nth-of-type(2),
.is-sticky .bl-head-logo img:nth-of-type(3){
	display: none;
}
.is-sticky .bl-head-logo img:nth-of-type(4){
	display: block;
}
/* ヘッダー右側エリア */
.bl-head-rightArea {
	display: flex;
	justify-content: flex-end;
	gap: 80px;
}
.bl-head-tel{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	line-height: 1.1;
	font-size: 28px;
	font-weight: bold;
	color: #309CEB;
	order: 3;
}
.is-sticky .bl-head-tel{
	color: #fff;
}
.bl-head-tel dl{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}
.bl-head-tel dt{
	width: 50px;
	height: 18px;
	font-size: 11px;
	border-radius: 18px;
	background: #309CEB;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2px;
}
.bl-head-tel dt{
	color: #fff;
}
.is-sticky .bl-head-tel dt{
	background: #fff;
	color: #309CEB;
}
.bl-head-tel dd{
	font-size: 12px;
	font-weight: normal;
}
.bl-sns-list{
	display: flex;
	gap: 4px;
	margin-left: -21px;
	margin-top: 24px;
	order: 4;
}
.nav .bl-sns-list{
	margin-left: -8px;
}
.bl-sns-list.sp{
	display: none;
}
.bl-sns-item{
	width: 28px;
}
/* ボタンエリア */
.bl-head-btn-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
}
.bl-head-btn {
	width: 200px;
	height: 40px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: #028F96;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 40px;
}
.bl-head-tel.sp{
	display: none!important;
}
/* ナビ */
.bl-glo-nav {
	z-index: 100;
	order: 2;
}
.is-sticky .bl-glo-nav {
	background: none;
}
.bl-glo-nav-inner {
	max-width: 1024px;
	width: auto;
	margin: 0 auto;
	display: flex;
}
.bl-glo-nav-inner > li {
	width: calc(52px + 32px);
	color: #309CEB;
	display: block;
	border-left: 2px solid #309CEB;
	position: relative;
}
.bl-glo-nav-inner > li:nth-of-type(2){
	width: calc(106px + 32px);
}
.bl-glo-nav-inner > li:nth-of-type(3){
	width: calc(94px + 32px);
}
.bl-glo-nav-inner > li:nth-of-type(4){
	width: calc(142px + 32px);
}
.bl-glo-nav-inner > li:nth-of-type(5){
	width: calc(108px + 32px);
}
.bl-glo-nav-inner > li:nth-of-type(6) {
	width: calc(78px + 32px);
}
.bl-glo-nav-inner > li:nth-of-type(7){
	width: calc(124px + 32px);
	border-right: 2px solid #309CEB;
}
.bl-glo-nav-inner > li > a{
	display: block;
	text-align: center;
	font-size: 15px;
	width: 100%;
	height: 100%;
	padding: 32px 0 3px;
	position: relative;
}
.bl-glo-nav-inner > li > a::before{
	content: '';
	position: absolute;
	width: 52px;
	height: 20px;
	top: 4px;
	left: 50%;
	transform: translateX(-50%);
}
.bl-glo-nav-inner > li > a::before{
	background: url(../images/common/top--blue.svg) top center / contain no-repeat;
}
.bl-glo-nav-inner > li:nth-of-type(2) > a::before{
	background: url(../images/common/service--blue.svg) top center / contain no-repeat;
	width: 106px;
}
.bl-glo-nav-inner > li:nth-of-type(3) > a::before{
	background: url(../images/common/effort--blue.svg) top center / contain no-repeat;
	width: 94px;
}
.bl-glo-nav-inner > li:nth-of-type(4) > a::before{
	background: url(../images/common/company--blue.svg) top center / contain no-repeat;
	width: 142px;
}
.bl-glo-nav-inner > li:nth-of-type(5) > a::before{
	background: url(../images/common/recruit--blue.svg) top center / contain no-repeat;
	width: 108px;
}
.bl-glo-nav-inner > li:nth-of-type(6) > a::before{
	background: url(../images/common/news--blue.svg) top center / contain no-repeat;
	width: 78px;
}
.bl-glo-nav-inner > li:nth-of-type(7) > a::before{
	background: url(../images/common/contact--blue.svg) top center / contain no-repeat;
	width: 124px;
}
.is-sticky .bl-glo-nav-inner > li{
	border-left: 2px solid #fff;
}
.is-sticky .bl-glo-nav-inner > li > a{
	color: #fff;
}
.is-sticky .bl-glo-nav-inner > li:nth-of-type(7){
	border-right: 2px solid #fff;
}
.is-sticky .bl-glo-nav-inner > li > a::before{
	background: url(../images/common/top.svg) top center / contain no-repeat;
}
.is-sticky .bl-glo-nav-inner > li:nth-of-type(2) > a::before{
	background: url(../images/common/service.svg) top center / contain no-repeat;
}
.is-sticky .bl-glo-nav-inner > li:nth-of-type(3) > a::before{
	background: url(../images/common/effort.svg) top center / contain no-repeat;
}
.is-sticky .bl-glo-nav-inner > li:nth-of-type(4) > a::before{
	background: url(../images/common/company.svg) top center / contain no-repeat;
}
.is-sticky .bl-glo-nav-inner > li:nth-of-type(5) > a::before{
	background: url(../images/common/recruit.svg) top center / contain no-repeat;
}
.is-sticky .bl-glo-nav-inner > li:nth-of-type(6) > a::before{
	background: url(../images/common/news.svg) top center / contain no-repeat;
}
.is-sticky .bl-glo-nav-inner > li:nth-of-type(7) > a::before{
	background: url(../images/common/contact.svg) top center / contain no-repeat;
}
.bl-glo-nav .el-btn.sp{
	display: none!important;
}
/* スマホ用非表示 */
.bl-burger {
	display: none;
	order: 4;
}
@media screen and (max-width: 1399px){
	.bl-head{
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 24px 40px;
		padding: 16px 24px;
	}
	.bl-head-logo{
		order: 1;
	}
	.bl-glo-nav{
		width: 100%;
		order: 4;
	}
	.bl-glo-nav-inner{
		justify-content: center;
	}
	.bl-head-tel{
		order: 2;
	}
	.bl-sns-list{
		order: 3;
		margin-left: -32px;
	}
	.bl-lower-mv{
		padding-top: 204px;
	}
}
@media screen and (min-width: 751px) {
	.ly-head.nav .bl-head-logo {
		margin-right: 16px;
	}
}
@media screen and (max-width: 750px) {
	.ly-head {
		height: 148px;
	}
	.ly-head.is-sticky::after {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		box-shadow: 0 0 16px rgb(0 0 0 / 32%);
	}
	.ly-head-inner {
		width: 100%;
		z-index: 110;
		padding: 24px 30px;
		justify-content: space-between!important;
		align-items: flex-start;
	}
	.is-sticky .ly-head-inner,
	.ly-head-inner:has(.is-active) {
		align-items: center;
	}
	/* ロゴ */
	.bl-head-logo {
		width: 420px;
		height: 46px;
	}
	.ly-head:has(.is-active) .bl-head-logo {
		z-index: 100;
	}
	.bl-head-logo img{
		width: 420px!important;
		height: 46px!important;
	}
	.bl-head-logo img:nth-of-type(3),
	.bl-head-logo img:nth-of-type(4){
		display: none;
	}
	.bl-head-logo img:first-of-type{
		display: block;
	}
	.bl-head:has(.is-active) .bl-head-logo img:first-of-type{
		display: none;
	}
	.is-sticky .bl-head-logo img:nth-of-type(2),
	.bl-head:has(.is-active) .bl-head-logo img:nth-of-type(2){
		display: block;
	}
	.is-sticky .bl-head-logo img:nth-of-type(4){
		display: none;
	}
	/* ヘッダー右側エリア */
	.bl-head-rightArea {
		height: 100%;
	}
	.bl-head-tel.pc{
		display: none;
	}
	.bl-sns-list.pc{
		display: none;
	}
	/* ハンバーガーボタン */
	.bl-burger {
		width: 100px;
		height: 100px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 16px;
		z-index: 100;
	}
	.bl-burger-inner {
		display: block;
		width: 100px;
		height: 100px;
		background: #309CEB;
		position: relative;
		border-radius: 16px;
	}
	.is-active .bl-burger-inner {
		background: none;
	}
	.bl-burger-bar {
		width: 70px;
		height: 4px;
		background: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	.bl-burger-bar:first-child {
		top: 33px;
		transition: transform 0.3s ease;
	}
	.bl-burger-bar:nth-child(2) {
		top: 49px;
		transition: opacity 0.3s ease;
	}
	.bl-burger-bar:nth-child(3) {
		bottom: 31px;
		transition: transform 0.3s ease;
	}
	.bl-burger.is-active .bl-burger-bar:first-child {
		transform: rotate(-45deg) translate(-51%, -11px);
		transition: transform 0.3s ease;
	}
	.bl-burger.is-active .bl-burger-bar:nth-child(2) {
		opacity: 0;
		transition: opacity 0.3s ease;
	}
	.bl-burger.is-active .bl-burger-bar:nth-child(3) {
		transform: rotate(45deg) translate(-50%, 13px);
		transition: transform 0.3s ease;
	}
	/* ナビ */
	.bl-glo-nav {
		width: 100%;
		height: 100%;
		background: linear-gradient(150deg, #50CFF5 0%, #1C84D1 50%, #145EB4 100%);
		border-radius: 16px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 90;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
		padding: 140px 0 0;
		overflow: scroll;
	}
	.bl-glo-nav.is-active {
		transform: translateX(0);
		transition: transform 0.3s ease-in-out;
	}
	.is-sticky .bl-glo-nav {
		background: linear-gradient(150deg, #50CFF5 0%, #1C84D1 50%, #145EB4 100%);
	}
	.bl-glo-nav .bl-nav-logo{
		width: 420px;
		display: block;
		margin: 0 auto 80px;
	}
	.bl-glo-nav-inner {
		width: 100%;
		flex-direction: column;
		padding: 0;
	}
	.bl-glo-nav-inner > li {
		font-size: 30px;
		letter-spacing: 1.2px;
		text-align: left;
		width: 100%!important;
		max-width: 100%!important;
		border-left: none!important;
		border-right: none!important;
		border-bottom: 2px solid #fff;
		color: #fff;
	}
	.bl-glo-nav-inner > li:nth-of-type(7){
		display: none;
	}
	.bl-glo-nav-inner > li:last-of-type {
		border-right: none;
	}
	.bl-glo-nav-inner > li > a{
		font-size: 30px;
		font-weight: bold;
		text-align: left;
		padding: 32px 60px;
	}
	.bl-glo-nav-inner > li > a::before{
		content: none;
	}
	.bl-glo-nav-inner > li > a::after{
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		border-style: solid;
		border-color: transparent transparent transparent #fff;
		border-width: 9px 0 9px 14px;
		top: 50%;
		transform: translateY(-50%);
		right: 60px;
	}
	.bl-glo-nav .el-btn.yellow{
		display: flex!important;
		width: 570px;
		height: 90px;
		border-radius: 45px;
		background: #FFCB1C;
		background: linear-gradient(
			to right,
			#FFF690,
			#FFC930,
			#FFC62B,
			#F7AB00
		);
		color: #01266C;
		font-size: 30px;
		font-weight: bold;
		margin: 64px auto 0;
	}
	.bl-glo-nav .bl-head-tel.sp{
		display: block!important;
		width: 570px;
		background: #fff;
		border-radius: 16px;
		padding: 40px 64px 40px 172px;
		color: #FFCB1C;
		font-size: 42px;
		letter-spacing: 2.52px;
		line-height: 1.44;
		margin: 56px auto 0;
		position: relative;
	}
	.bl-glo-nav .bl-head-tel.sp::before{
		content: '';
		position: absolute;
		background: url(../images/common/icon-contact.svg) top center / contain no-repeat;
		width: 80px;
		height: 80px;
		top: 50%;
		left: 64px;
		transform: translateY(-50%);
	}
	.bl-glo-nav .bl-head-tel.sp dl{
		gap: 16px;
		letter-spacing: 1.68px;
	}
	.bl-glo-nav .bl-head-tel.sp dl dt{
		font-size: 28px;
		color: #222;
		background: none;
		width: auto;
		height: auto;
	}
	.bl-glo-nav .bl-head-tel.sp dl dd{
		font-size: 28px;
		font-weight: bold;
		color: #222;
	}
	.bl-glo-nav .bl-sns-list.sp{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 40px;
		margin: 56px auto 0;
	}
	.bl-glo-nav .bl-sns-item{
		width: 60px;
	}
}

/*=============================
footer
=============================*/
.ly-foot {
	background: linear-gradient(to right, #50CFF5, #1C84D1, #145EB4);
	position: relative;
}
.ly-foot-inner {
	padding: 56px 94px 56px 0;
	position: relative;
}
.ly-foot-inner::before{
	content: '';
	position: absolute;
	background: url(../images/common/footer-illust01.svg) top center / contain no-repeat;
	width: 214px;
	height: 180px;
	top: -178px;
	left: -214px;
}
.ly-foot-inner::after{
	content: '';
	position: absolute;
	background: url(../images/common/footer-illust02.svg) top center / contain no-repeat;
	width: 436px;
	height: 180px;
	top: -178px;
	right: -357px;
}
.bl-foot {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* ロゴ */
.bl-foot-logo {
	display: block;
	width: 208px;
}
.bl-foot .bl-sns-list{
	gap: 16px;
	margin: 24px 0 0;
}
.bl-foot .bl-sns-item{
	width: 30px;
}
/* ナビ */
.bl-foot-gloNav-inner {
	display: grid;
	grid-template: repeat(4, auto) / 168px 1fr;
	grid-auto-flow: column;
	gap: 16px 24px;
}
.bl-foot-gloNav-inner > li > a {
	padding-left: 16px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #fff;
	position: relative;
}
.bl-foot-gloNav-inner > li > a::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	top: 6px;
	left: 0;
}
/* コピーライト */
.bl-foot-copyright {
	width: 100%;
	height: 32px;
	background: linear-gradient(to right, #50CFF5, #1C84D1, #145EB4);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.bl-foot-copyright small {
	color: #fff;
	font-size: 12px;
	font-family: Verdana; /* Android */
}
/* ページトップボタン */
.bl-pagetop {
	width: 1024px;
	height: 0;
	margin: 0 auto;
	text-align: right;
	position: relative;
}
.bl-pagetop span {
	width: 66px;
	height: 66px;
	z-index: 900;
}
.bl-pagetop img {
	opacity: 0;
}
.bl-pagetop .fade img {
	transition: all 0.5s ease-in-out;
}
.bl-pagetop .in img {
	opacity: 1;
	cursor: pointer;
}
@media screen and (max-width: 1660px) {
	.ly-foot-inner::before{
		left: -100px;
	}
	.ly-foot-inner::after{
		right: -80px;
	}
}
@media screen and (max-width: 1425px) {
	.ly-foot-inner::before{
		left: 30px;
	}

}
@media screen and (max-width: 1400px) {
	/* ページトップボタン */
	.bl-pagetop {
		width: 100%;
	}
	.bl-pagetop span {
		right: 30px;
	}
}
@media screen and (max-width: 750px) {
	/* footer */
	.ly-foot::before{
		content: '';
		position: absolute;
		background: url(../images/common/footer-finish-sp.svg) top center / contain no-repeat;
		width: 180px;
		height: 74px;
		bottom: 54px;
		left: 30px;
	}
	.ly-foot::after{
		content: '';
		position: absolute;
		background: url(../images/common/track-illust01.png) top center / contain no-repeat;
		width: 128px;
		height: 54px;
		bottom: 48px;
		right: 190px;
		animetion: ;
	}
	.ly-foot.is-active::after{
		animation: footer-track 3s ease-in-out 0.5s forwards;
	}
	@keyframes footer-track {
		from {
			right: 190px;
		}
		to {
			right: 530px;
		}
	}
	.bl-foot {
		gap: 56px;
	}
	.ly-foot-inner {
		width: 100%;
		height: auto;
		padding: 0 0 98px;
	}
	.ly-foot-inner::before{
		width: 140px;
		height: 118px;
		top: -118px;
		left: 30px;
	}
	.ly-foot-inner::after{
		width: 238px;
		height: 98px;
		top: -98px;
		right: 30px;
	}
	.bl-foot-leftArea {
		order: 2;
		width: 100%;
	}
	/* ロゴ */
	.bl-foot-logo {
		width: 208px;
		margin: 0 auto 16px;
	}
	/* 住所とか */
	.bl-foot-add {
		font-size: 24px;
		font-weight: normal;
		text-align: center;
	}
	/* ナビ */
	.bl-foot-gloNav {
		width: 100%;
		order: 1;
	}
	.bl-foot-gloNav-inner {
		display: grid;
		grid-template: repeat(4, auto) / 1fr 1fr;
		grid-auto-flow: column;
		gap: 0;
	}
	.bl-foot-gloNav-inner > li {
		height: 100px;
		font-weight: normal;
		border-bottom: 2px solid #fff;
	}
	.bl-foot-gloNav-inner > li:nth-child(-n + 4) {
		border-right: 2px solid #fff;
	}
	.bl-foot-gloNav-inner > li > a {
		width: 100%;
		height: 100%;
		font-size: 28px;
		font-weight: normal;
		padding-left: 56px;
		display: flex;
		align-items: center;
	}
	.bl-foot-gloNav-inner > li > a::before {
		border-width: 9px 0 9px 14px;
		top: 50%;
		transform: translateY(-50%);
		left: 30px;
	}
	/* コピーライト */
	.bl-foot-copyright {
		height: 54px;
		background: #A7A9AC;
	}
	.bl-foot-copyright small {
		font-size: 16px;
	}
	/* ページトップボタン */
	.bl-pagetop {
		width: 750px;
		z-index: 90;
	}
	.bl-pagetop span {
		width: 108px;
		height: 108px;
		border-radius: 117px;
		right: 25px;
		bottom: 25px;
	}
}
/*=============================
CTA
=============================*/
.bl-cta {
	background: url(../images/common/cta-bg.png) top center / cover no-repeat;
	padding: 264px 0 292px;
}
.bl-cta .ly-cont-inner::before{
	content: '';
	position: absolute;
	background: url(../images/common/cta-illust01.svg) top center / contain no-repeat;
	width: 396px;
	height: 162px;
	top: -350px;
	left: 0;
}
.bl-cta .ly-cont-inner::after{
	content: '';
	position: absolute;
	background: url(../images/common/cta-illust02.svg) top center / contain no-repeat;
	width: 188px;
	height: 122px;
	top: -200px;
	right: -124px;
}
.bl-cta .el-main-ttl {
	font-size: 26px;
	width: 424px;
	margin-bottom: 32px;
}
.bl-cta .el-main-ttl::before{
	background: url(../images/common/contact-ttl.svg) top center / contain no-repeat;
}
.bl-cta-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 64px;
	margin-top: 64px;
}
.bl-cta-item{
	width: 480px;
	padding: 116px 0 32px;
	background: #fff;
	border-radius: 32px;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 1.92px;
	position: relative;
}
.bl-cta-item:nth-of-type(2){
	padding-top: 126px;
}
.bl-cta-item::before{
	content: '';
	position: absolute;
	background: url(../images/common/icon-tel.svg) top center / contain no-repeat;
	width: 64px;
	height: 64px;
	top: 32px;
	left: 50%;
	transform: translateX(-50%);
}
.bl-cta-item:nth-of-type(2)::before{
	background: url(../images/common/icon-mail.svg) top center / contain no-repeat;
}
.bl-cta-item dl{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-top: 8px;
	letter-spacing: 0.48px;
}
.bl-cta-item dt{
	width: 80px;
	height: 18px;
	font-size: 12px;
	font-weight: bold;
	border-radius: 18px;
	background: #FFDA5F;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bl-cta-item dd{
	font-size: 12px;
	font-weight: normal;
}
@media screen and (max-width: 1230px) {
	.bl-cta .ly-cont-inner::after{
		right: 0;
	}
	.bl-cta-list{
		gap: 32px;
	}
	.bl-cta-item{
		width: 48%;
	}
}
@media screen and (max-width: 1200px) {
	.bl-cta .ly-cont-inner::before{
		top: -260px;
		left: 32px;
	}
}
@media screen and (max-width: 1024px) {
	.bl-cta .ly-cont-inner{
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media screen and (max-width: 945px) {
	.bl-cta-item{
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	.bl-cta {
		background: url(../images/common/cta-bg-sp.png) top center / cover no-repeat;
		padding: 150px 0 154px;
	}
	.bl-cta .ly-cont-inner{
		padding-left: 0;
		padding-right: 0;
	}
	.bl-cta .ly-cont-inner::before{
		width: 240px;
		height: 98px;
		top: -151px;
		left: 9px;
	}
	.bl-cta .ly-cont-inner::after{
		width: 138px;
		height: 90px;
		top: -200px;
		right: 124px;
	}	
	.bl-cta .el-main-ttl {
		font-size: 36px;
		width: 630px;
		margin-bottom: 24px;
	}
	.bl-cta .el-txt{
		letter-spacing: 0;
	}
	.bl-cta-list{
		gap: 30px;
	}
	.bl-cta-item{
		width: 330px;
		padding: 120px 0 32px;
		font-size: 36px;
		letter-spacing: 2.16px;
		position: relative;
	}
	.bl-cta-item:nth-of-type(2){
		padding-top: 149px;
	}
	.bl-cta-item::before{
		width: 80px;
		height: 80px;
	}
	.bl-cta-item dl{
		flex-direction: column;
		gap: 16px;
		margin-top: 16px;
		letter-spacing: 0.48px;
	}
	.bl-cta-item dt{
		width: 118px;
		height: 32px;
		font-size: 20px;
	}
	.bl-cta-item dd{
		font-size: 24px;
	}
	.bl-cta-item .el-btn{
		width: 280px;
		height: 70px;	
	}

}
/*=============================
新着
==============================*/
.bl-vert-posts {
	border-bottom: 2px solid #222;
}
.bl-vert-posts > a {
	padding: 0 16px 16px 0;
	color: #222;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.bl-vert-posts:not(:first-of-type) > a {
	padding-top: 16px;
}
.bl-vert-posts-header {
	flex: 0 1 280px;
	display: flex;
	align-items: center;
	gap: 16px;

}
.bl-vert-posts-date {
	font-size: 14px;
	letter-spacing: 0;
}
.el-cat-label {
	min-width: 100px;
	max-width: 144px;
	min-height: 28px;
	font-size: 16px;
	background: #ccc;
	line-height: 1.5;
	letter-spacing: 0;
	border-radius: 28px;
	padding: 0 8px 2px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.el-cat-label.all {
	background: #222222;
	color: #fff;
}
.el-cat-label.news {
	background: #FFDA5F;
}
.el-cat-label.media {
	background: #309CEB;
	color: #fff;
}
.el-vert-posts-ttl {
	flex: 1;
	font-size: 17px;
	font-weight: normal;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
@media screen and (max-width: 750px) {
	.bl-vert-posts > a {
		gap: 16px;
		padding-bottom: 24px;
	}
	.bl-vert-posts:not(:first-of-type) > a {
		padding-top: 24px;
	}
	.bl-vert-posts-header {
		flex: 100%;
	}
	.bl-vert-posts-date {
		font-size: 22px;
	}
	.el-cat-label {
		min-width: 128px;
		max-width: 480px;
		min-height: 42px;
		font-size: 22px;
		padding: 0 16px;
	}
	.el-vert-posts-ttl {
		font-size: 28px;
	}
}

/*=============================
aside
==============================*/
.bl-aside {
	padding-bottom: 25px;
	border: 2px solid #222222;
	background: #fff;
}
.el-aside-ttl {
	width: calc(100% + 4px);
	height: 50px;
	color: #fff;
	background: #309CEB;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	margin: -2px 0 0 -2px;
}
.bl-aside-post-list {
	margin-bottom: 20px;
	margin: 0 14px;
}
.bl-aside-post-list > li {
	border-bottom: 1px solid #222;
	padding: 16px 0;
}
.bl-aside-post-list > li > a {
	font-size: 16px;
	display: block;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.bl-aside .el-btn{
	width: 150px;
	height: 42px;
	background: #309CEB 0% 0% no-repeat padding-box;
	border-radius: 6px;
	margin-top: 24px;
}
@media screen and (max-width: 750px) {
	/* aside */
	.bl-aside {
		padding-bottom: 40px;
	}
	.el-aside-ttl {
		height: 76px;
		margin-bottom: 16px;
		font-size: 28px;
	}
	.bl-aside-post-list {
		margin-bottom: 34px;
	}
	.bl-aside-post-list > li > a {
		padding: 24px 30px;
		font-size: 26px;
	}
	.bl-aside .el-btn{
		width: 500px;
		height: 90px;
		font-size: 30px;
	}
}
/*=============================
ページナビ
==============================*/
/* wp-pagenavi */
.wp-pagenavi {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.wp-pagenavi > * {
	font-size: 17px;
	font-weight: bold;
	color: #fff;
	border-radius: 4px;
	min-width: 30px;
	height: 32px;
	padding: 0 5px 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0;
}
.wp-pagenavi a {
	background: #FFFFFF;
	color: #222;
}
.wp-pagenavi .current {
	background: #309CEB;
}
.wp-pagenavi .extend {
	color: #545454;
	font-size: 16px;
}
/* 詳細ページの前へ 次へ */
.bl-pager {
	position: relative;
	height: 42px;
	margin-top: 48px;
}
.bl-pager-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl-pager-link > a {
	width: 170px;
	height: 40px;
	border-radius: 6px;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 1px;
}
.bl-pager-prev > a::before,
.bl-pager-next > a::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-top: auto;
	margin-bottom: auto;
	border-style: solid;
	position: absolute;
	top: 1px;
	left: 17px;
	bottom: 0;
}
.bl-pager-prev > a {
	padding-left: 10px;
	border: 2px solid #222;
	color: #222;
	background: #fff;
}
.bl-pager-prev > a::before {
	border-width: 5px 9px 5px 0;
	border-color: transparent #222 transparent transparent;
}
.bl-pager-next > a {
	padding-right: 10px;
	background: #FFDA5F;
}
.bl-pager-next > a::after {
	left: initial;
	right: 17px;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent #222;
}
/* カテゴリ */
.bl-cat {
	width: 100%;
	min-height: 56px;
	background: #fff;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 36px;
	padding: 8px 0;
	border: 2px solid #222;
}
.el-cat-ttl {
	font-size: 18px;
	font-weight: bold;
	flex: 0 1 140px;
	text-align: center;
}
.bl-cat-list {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
}
@media screen and (max-width: 750px) {
	/* wp-pagenavi */
	.wp-pagenavi {
		margin-top: 50px;
	}
	.wp-pagenavi > * {
		font-size: 28px;
		min-width: 40px;
		height: 48px;
		padding-bottom: 2px;
	}
	.wp-pagenavi .extend {
		display: none;
	}
	/* 前へ 次へ */
	.bl-pager {
		height: 60px;
		margin-top: 60px;
	}
	.bl-pager-link > a {
		width: 230px;
		height: 60px;
		border-radius: 6px;
		font-size: 26px;
	}
	.bl-pager-prev > a {
		padding-left: 20px;
	}
	.bl-pager-prev > a::before {
		border-width: 7.5px 11px 7.5px 0;
	}
	.bl-pager-next > a {
		padding-right: 20px;
	}
	.bl-pager-next > a::after {
		border-width: 7.5px 0 7.5px 11px;
	}
	/* カテゴリ */
	.bl-cat {
		padding: 24px;
		margin-bottom: 40px;
		gap: 16px;
	}
	.el-cat-ttl {
		font-size: 30px;
		flex: 100%;
		padding-top: 0;
	}
	.bl-cat-list {
		flex: 100%;
		gap: 20px 16px;
	}
}
