@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 {
	min-width: 1024px;
}
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 {
	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: 100%;
}
/* bl_media */
.bl_mediaList {
	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_btmTxt) {
	grid-template: auto 1fr auto / 496px auto;
	grid-template-areas: 
		"imgWrapper title"
		"imgWrapper body"
		"btm_txt btm_txt";
}
.bl_media_imgWrapper {
	grid-area: imgWrapper;
}
.el_media_ttl {
	grid-area: title;
	font-size: 26px;
	margin-bottom: 16px;
}
.bl_media_body {
	grid-area: body;
	display: flex;
	flex-direction: column;
	gap: 1.3em;
}
.el_media_btmTxt {
	grid-area: btm_txt;
	margin-top: 1.3em;
}
/* bl_card */
.bl_cardUnit {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.bl_card {
	width: 320px;
	padding: 24px;
	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;
	text-align: center;
	margin-bottom: 16px;
}
/* bl_btnList */
.bl_btnList {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}
@media screen and (min-width: 751px) {
	.bl_media.reverse{
		/* grid-template: 1fr auto / auto 496px; */
		grid-template-areas:
			"title imgWrapper"
			"body imgWrapper";
	}
}
@media screen and (max-width: 750px) {
	/* inner */
	.ly_cont,
	.ly_cont_inner {
		width: 690px;
	}
	/* 2カラム */
	.ly_cont__col {
		gap: 80px;
	}
	/* 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: "imgWrapper" "title" "body";
	}
	.bl_media:has(.el_media_btmTxt) {
		grid-template: auto / auto;
		grid-template-areas: "title" "imgWrapper" "body" "btm_txt";
	}
	.bl_media_imgWrapper {
		margin-bottom: 32px;
	}
	.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 {
}
.bl_lower_mv_ttl {
	width: 100%;
	height: 150px;
	margin: 0 auto;
	padding-top: 24px;
	text-align: center;
}
.bl_lower_mv_ttl > span {
	display: block;
}
.bl_lower_mv_ttl .bl_mv_ttl_en {
	color: #fff;
	font-size: 42px;
}
.bl_lower_mv_ttl .bl_mv_ttl_jp {
	color: #fff;
	font-size: 24px;
}
/* パンくず */
.bl_breadcrumbs_inner {
	width: 1024px;
	margin: 0 auto;
	padding-top: 8px;
	display: flex;
	white-space: nowrap;
	overflow: hidden;
}
.bl_breadcrumbs_inner > li {
	font-size: 13px;
}
.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: 40px;
}
@media screen and (max-width: 750px) {
	/* MV */
	.bl_lower_mv {
	}
	.bl_lower_mv_ttl {
		width: 750px;
		height: 200px;
		padding-top: 40px;
	}
	.bl_lower_mv_ttl .bl_mv_ttl_en {
	    font-size: 48px;
    }
    .bl_lower_mv_ttl .bl_mv_ttl_jp {
	    font-size: 32px;
    }
	/* パンくず */
	.bl_breadcrumbs_inner {
		width: 690px;
	}
	.bl_breadcrumbs_inner > li {
		font-size: 22px;
	}
	.bl_breadcrumbs_inner > li:first-of-type ~ li::before {
		margin: 0 10px;
	}
	.bl_breadcrumbs_inner .home {
		width: 70px;
	}
}
/*=============================
共通パーツ
==============================*/
/* 各sectionメイン見出し */
.el_sec_mainTtl {
	line-height: 1.5;
	text-align: center;
	margin-bottom: 32px;
	position: relative;
}
/* bl_bulletList */
.bl_bulletList > li {
	padding-left: 1em;
	position: relative;
}
.bl_bulletList > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.bl_bulletList.bl_bulletList__square > li {
	padding-left: calc(1em + 8px);
}
.bl_bulletList.bl_bulletList__square > li::before {
	content: "■";
}
/* bl_numList */
.bl_numList {
	counter-reset: num;
}
.bl_numList > li {
	padding-left: 1.2em;
	position: relative;
}
.bl_numList > li:before {
	counter-increment: num;
	content: counter(num) ".";
	position: absolute;
	top: 0;
	left: 0;
}
.bl_numList.bl_numList__circle > li:first-of-type::before {
	content: "①";
}
.bl_numList.bl_numList__circle > li:nth-of-type(2)::before {
	content: "②";
}
.bl_numList.bl_numList__circle > li:nth-of-type(3)::before {
	content: "③";
}
.bl_numList.bl_numList__circle > li:nth-of-type(4)::before {
	content: "④";
}
.bl_numList.bl_numList__circle > li:nth-of-type(5)::before {
	content: "⑤";
}
.bl_numList.bl_numList__brackets {
	counter-reset: cnt;
}
.bl_numList.bl_numList__brackets > li {
	padding-left: 2em;
	counter-increment: cnt;
}
.bl_numList.bl_numList__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{
	font-size: 18px;
	font-weight: bold;
}
.el_btn.more::after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
}
/* 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_link {
	text-decoration: underline;
	color: #0000ff;
}
.el_txt {
	text-align: center;
}
@media screen and (max-width: 750px) {
	/* 各sectionメイン見出し */
	.el_sec_mainTtl {
		font-size: 34px;
	}
	/* el_btn */
	.el_btn.more {

	}
	/* 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_color__orange {
	color: #ee9e21 !important;
}
/* 影付き角丸白ボックス */
.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_main {
	padding-top: 88px;
}
.ly_head {
	width: 100%;
	height: 88px;
	background: #222;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
.bl_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: nowrap;
}
/* ロゴ */
.bl_head_logo {
	width: 290px;
}
.bl_head_logo > a {
	display: block;
}
.bl_head_logo img {
	vertical-align: top;
}
/* ナビ */
.bl_gloNav {
    color: #fff;
	z-index: 100;
}
.bl_gloNav_inner {
	width: 530px;
	margin: 0 auto;
	height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl_gloNav_inner > li > a {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 2px;
}

/* スマホ用非表示 */
.bl_burger {
	display: none;
}

@media screen and (max-width: 750px) {
	.ly_main {
		padding-top: 140px;
	}
	.ly_head {
		height: 140px;
	}
	.ly_head::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-left: 20px;
	}
	/* ロゴ */
	.bl_head_logo {
		width: 440px;
	}
	.bl_head_logo > a {
	}
	/* ハンバーガーボタン */
	.bl_burger {
		width: 130px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.bl_burger_inner {
		display: block;
		width: 104px;
		height: 104px;
		background: #222;
		position: relative;
	}
	.bl_burger_bar {
		width: 72px;
		height: 4px;
		background: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	.bl_burger_bar:first-child {
		top: 16px;
		transition: transform 0.3s ease;
	}
	.bl_burger_bar:nth-child(2) {
		top: 34px;
		transition: opacity 0.3s ease;
	}
	.bl_burger_bar:nth-child(3) {
		bottom: 48px;
		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_burger_txt {
		font-size: 24px;
		color: #fff;
		width: 100%;
		position: absolute;
		left: 0;
		bottom: 10px;
	}
	/* ナビ */
	.bl_gloNav {
		width: 100%;
		height: 100%;
		background: #222;
		position: fixed;
		top: 130px;
		left: 0;
		z-index: 90;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
	}
	.bl_gloNav.is_active {
		transform: translateX(0);
		transition: transform 0.3s ease-in-out;
	}
	.bl_gloNav_inner {
		padding: 40px 20px 0;
		width: 100%;
		height: 100%;
		flex-direction: column;
		justify-content: flex-start;
		overflow: scroll;
	}
	.bl_gloNav_inner > li > a {
		padding: 40px 0;
		font-size: 32px;
		color: #fff;
	}
	.bl_gloNav_inner > li:nth-of-type(6) > a {
		padding-bottom: 80px;
	}
	/* 閉じるボタン */
	.bl_gloNav_btn {
		width: 310px;
		height: 88px;
		font-size: 32px;
		background: #74babe;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		padding: 0 0 3px 40px;
	}
	.bl_gloNav_btn::before {
		content: "";
		position: absolute;
		background: url(./images/common/cross.svg) top center / contain no-repeat;
		width: 24px;
		height: 24px;
		top: 50%;
		transform: translateY(-50%);
		left: 72px;
	}
}

/*=============================
footer
=============================*/
.ly_main {
	min-height: calc(100vh - 204px); /* pxはfooterの高さ */
}
.ly_foot {
	background: #222;
}
.ly_foot_inner {
	padding: 34px 0;
}
.bl_foot {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
}
.bl_foot_leftArea {
	grid-row: span 2 / span 2;
}
/* ロゴ */
.bl_foot_logo {
	display: block;
	width: 230px;
	margin-bottom: 16px;
}
/* 住所など */
.bl_foot_add {
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.53;
	color: #fff;
	text-indent: -3em;
    padding-left: 3em;
}
.bl_foot_tel {
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.53;
	color: #fff;
}
/* ナビ */
.bl_foot_gloNav {
	width: 580px;
}
.bl_foot_gloNav_inner {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
}
.bl_foot_gloNav_inner > li > a {
	padding-left: 16px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #fff;
}
/* SNS */
.bl_foot_snsIconArea {
    grid-column-start: 2;
    grid-row-start: 2;
}
.bl_foot_sns_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 16px;
}
.bl_foot_sns_list > li  {
	width: 28px;
}
/* コピーライト */
.bl_foot_copyright {
	width: 100%;
	height: 32px;
	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 {
	background-color: #74babe;
	border-radius: 50%;
	font-size: 16px;
	text-align: center;
	padding-top: 8px;
	color: #fff;
	width: 66px;
	height: 66px;
	z-index: 900;
}
.bl_pagetop .fade {
	transition: all 0.5s ease-in-out;
	opacity: 0;
}
.bl_pagetop .in {
	opacity: 1;
	cursor: pointer;
}
@media screen and (max-width: 1400px) {
	/* ページトップボタン */
	.bl_pagetop {
		width: 100%;
	}
	.bl_pagetop span {
		right: 30px;
	}
}
@media screen and (max-width: 750px) {
	.ly_main {
		min-height: calc(100vh - 826px); /* pxはfooterの高さ */
	}
	/* footer */
	.bl_foot {
		display: block;
	}
	.ly_foot_inner {
		display: flex;
		flex-flow: column;
		width: 100%;
		height: auto;
		padding: 0 0 40px;
		gap: 32px;
	}
	.bl_foot_leftArea {
		order: 2;
		width: 100%;
	}
	/* ロゴ */
	.bl_foot_logo {
		width: 466px;
		margin: 0 auto 16px;
	}
	/* 住所とか */
	.bl_foot_add {
		font-size: 28px;
		font-weight: normal;
		margin-left: 155px;
	}
	.bl_foot_tel {
	    font-size: 28px;
		margin-left: 155px;
    }
	/* ナビ */
	.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 #b7b7b7;
	}
	.bl_foot_gloNav_inner > li:nth-child(-n + 5) {
		border-right: 2px solid #b7b7b7;
	}
	.bl_foot_gloNav_inner > li > a {
		width: 100%;
		height: 100%;
		font-size: 28px;
		padding-left: 42px;
		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;
	}
	/* SNS */
    .bl_foot_snsIconArea {
	    order: 3;
    }
	.bl_foot_sns_list {
        justify-content: center;
	}
    .bl_foot_sns_list > li {
	    width: 60px;
    }
	/* コピーライト */
	.bl_foot_copyright {
		height: 50px;
	}
	.bl_foot_copyright small {
		font-size: 16px;
	}
	/* ページトップボタン */
	.bl_pagetop {
		width: 750px;
		z-index: 90;
	}
	.bl_pagetop span {
		width: 117px;
		height: 117px;
		font-size: 26px;
		padding-top: 20px;
		border-radius: 117px;
		right: 25px;
		bottom: 25px;
	}
}
/*=============================
CTA
=============================*/
.bl_cta {
	padding: 80px 0;
}
.el_cta_ttl {
	font-size: 30px;
	text-align: center;
	color: #fff;
	margin-bottom: 24px;
}
.el_cta_txt {
	text-align: center;
	color: #fff;
	margin-bottom: 24px;
}
.bl_cta .el_moreBtn {
	width: 280px;
	height: 50px;
	border-radius: 30px;
	display: flex;
	margin: auto;
	justify-content: center;
	align-items: center;
	background: #74babe;
	color: #fff;
	font-size: 20px;
	position: relative;
}
@media screen and (max-width: 750px) {
	.el_cta_ttl {
	    font-size: 42px;
	    margin-bottom: 32px;
    }
	.el_cta_txt {
	    margin-bottom: 32px;
    }
	.bl_cta .el_moreBtn {
		width: 480px;
		height: 100px;
		border-radius: 60px;
		font-size: 32px;
	}
}
/*=============================
新着
==============================*/
.bl_vertPosts {
	border-bottom: 1px solid #bfbfbf;
}
.bl_vertPosts > a {
	padding: 0 16px 16px 0;
	color: #222;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.bl_vertPosts:not(:first-of-type) > a {
	padding-top: 16px;
}
.bl_vertPosts_header {
	flex: 0 1 280px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.bl_vertPosts_date {
	font-size: 14px;
	letter-spacing: 0;
	color: #fff;
	background: #333;
	font-weight: bold;
	width: 104px;
	height: 30px;
	display: flex;
	justify-content: center;
	padding-top: 3px;
}
.el_vertPosts_ttl {
	flex: 1;
	font-size: 20px;
	font-weight: bold;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
@media screen and (max-width: 750px) {
	.bl_vertPosts > a {
		gap: 16px;
		padding-bottom: 24px;
	}
	.bl_vertPosts:not(:first-of-type) > a {
		padding-top: 24px;
	}
	.bl_vertPosts_header {
		flex: 100%;
	}
	.bl_vertPosts_date {
		width: 206px;
		height: 60px;
		font-size: 26px;
		padding-top: 8px;
	}
	.el_vertPosts_ttl {
		font-size: 32px;
	}
}
/*=============================
ページナビ
==============================*/
/* 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;
	min-width: 26px;
	height: 32px;
	padding: 0 5px 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0;
}
.wp-pagenavi a {
	background: #d4d4d4;
}
.wp-pagenavi .current {
	background: #74babe;
}
.wp-pagenavi .extend {
	color: #545454;
	font-size: 16px;
}
/* 詳細ページの前へ 次へ */
.bl_pager {
	position: relative;
	height: 42px;
}
.bl_pager_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl_pager_link > a {
	width: 170px;
	height: 40px;
	color: #fff;
	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;
	background: #74babe;
}
.bl_pager_prev > a::before {
	border-width: 5px 9px 5px 0;
	border-color: transparent #fff transparent transparent;
}
.bl_pager_next > a {
	padding-right: 10px;
	border: 1px solid #74babe;
	color: #74babe;
}
.bl_pager_next > a::after {
	left: initial;
	right: 17px;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent #74babe;

}
/* カテゴリ */
.bl_cat {
	width: 100%;
	min-height: 56px;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 24px;
	padding: 8px 0;
}
.el_cat_ttl {
	font-size: 18px;
	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;
		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;
	}
}
