@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: 700px;
}
.ly_cont_side {
	width: 280px;
}
/* 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;
}
.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;
	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;
	}
	.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: "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_cardUnit {
	    gap: 40px;
    }
	.bl_card {
		width: 100%;
	}
	.el_card_ttl{
		font-size: 32px;
	}
}
/*=============================
下層MV - パンくず
==============================*/
/* MV */
.bl_lower_mv {
	width: 100%;
	height: 140px;
	background: url(./images/common/mv-bg.jpg) top center / cover no-repeat;
}
.bl_lower_mv_ttl {
	margin: 0 auto;
	padding-top: 40px;
	text-align: center;
}
.bl_lower_mv_ttl > span {
	display: block;
}
.bl_lower_mv_ttl .bl_mv_ttl_en {
	color: #815DC6;
	font-size: 24px;
	letter-spacing: 0.96px;
	line-height: 1.5;
	margin-bottom: 8px;
}
.bl_lower_mv_ttl .bl_mv_ttl_jp {
	font-size: 18px;
	letter-spacing: 0.72px;
	line-height: 1.5;
}
/* パンくず */
.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: 18px;
}
@media screen and (max-width: 750px) {
	/* MV */
	.bl_lower_mv {
	    height: 214px;
	    background: url(./images/common/mv-bg-sp.jpg) top center / cover no-repeat;
	}
	.bl_lower_mv_ttl {
		padding-top: 56px;
	}
	.bl_lower_mv_ttl .bl_mv_ttl_en {
	    font-size: 34px;
		margin-bottom: 16px;
    }
    .bl_lower_mv_ttl .bl_mv_ttl_jp {
	    font-size: 28px;
    }
	/* パンくず */
	.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: 24px;
	}
}
/*=============================
共通パーツ
==============================*/
/* 各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__pink {
	color: #FF277A !important;
}
.hp_color__purple {
	color: #815DC6 !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: 100px;
}
.ly_head {
	width: 100%;
	height: 100px;
	background-color: #FFFFFF;
	box-shadow: 0px 3px 6px #00000029;
	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: 202px;
}
.bl_head_logo > a {
	display: block;
}
.bl_head_logo img {
	vertical-align: top;
}
/* ナビ */
.bl_gloNav {
    color: #815DC6;
	font-weight: bold;
	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: 120px;
	}
	.ly_head {
		height: 120px;
	}
	.ly_head::after {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
	}
	.ly_head_inner {
		width: 100%;
		z-index: 110;
		padding-left: 20px;
	}
	/* ロゴ */
	.bl_head_logo {
		width: 318px;
	}
	.bl_head_logo > a {
	}
	/* ハンバーガーボタン */
	.bl_burger {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.bl_burger_inner {
		display: block;
		width: 120px;
		height: 120px;
		background: #815DC6;
		position: relative;
	}
	.bl_burger_bar {
		width: 72px;
		height: 4px;
		background: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	.bl_burger_bar:first-child {
		top: 22px;
		transition: transform 0.3s ease;
	}
	.bl_burger_bar:nth-child(2) {
		top: 42px;
		transition: opacity 0.3s ease;
	}
	.bl_burger_bar:nth-child(3) {
		bottom: 54px;
		transition: transform 0.3s ease;
	}
	.bl_burger.is_active .bl_burger_bar:first-child {
		transform: rotate(-45deg) translate(-55%, -8px);
		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(-51%, 12px);
		transition: transform 0.3s ease;
	}
	.bl_burger_txt {
		font-size: 26px;
		color: #fff;
		width: 100%;
		position: absolute;
		left: 0;
		bottom: 10px;
	}
	/* ナビ */
	.bl_gloNav {
		width: 100%;
		height: 100%;
		background: url(./images/common/nav-bg-sp.jpg) top center / cover no-repeat;
		position: fixed;
		top: 120px;
		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(5) > a {
		padding-bottom: 80px;
	}
	/* 閉じるボタン */
	.bl_gloNav_btn {
		width: 310px;
		height: 88px;
		font-size: 32px;
		background: #FF277A;
		color: #fff;
		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 - 200px); /* pxはfooterの高さ */
}
.ly_foot {
	background: #FFFFFF;
	box-shadow: 0px -3px 6px #00000029;
}
.ly_foot_inner {
	padding: 34px 0;
}
.bl_foot {
    display: flex;
    justify-content: space-between;
}
/* ロゴ */
.bl_foot_logo {
	display: block;
	width: 202px;
	margin-bottom: 16px;
}
/* 住所など */
.bl_foot_add {
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.53;
	text-indent: -3em;
    padding-left: 3em;
}
.bl_foot_tel {
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.53;
}
/* ナビ */
.bl_foot_gloNav {
	width: 544px;
}
.bl_foot_gloNav_inner {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
}
.bl_foot_gloNav_inner > li > a {
	padding-left: 16px;
	font-size: 14px;
	letter-spacing: 0.1em;
	position: relative;
}
.bl_foot_gloNav_inner > li > a::after {
	content: "";
	position: absolute;
    width:0;
    height:0;
    border-style:solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #815DC6;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
/* コピーライト */
.bl_foot_copyright {
	background-color: #815DC6;
	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: #FF277A;
	box-shadow: 0px 3px 6px #00000029;
	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: 318px;
		margin: 0 auto 16px;
	}
	/* 住所とか */
	.bl_foot_add {
		font-size: 28px;
		font-weight: normal;
		text-align: center;
	}
	.bl_foot_tel {
	    font-size: 28px;
		text-align: center;
    }
	/* ナビ */
	.bl_foot_gloNav {
		width: 100%;
		order: 1;
	}
	.bl_foot_gloNav_inner {
		display: grid;
		grid-template: repeat(3, 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: 50px;
		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_gloNav_inner > li > a::after {
        border-width: 7.5px 0 7.5px 12px;
	    left: 20px;
    }
	/* コピーライト */
	.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;
	}
}
/*=============================
ポップアップ
=============================*/
.popup_check {
  display: none;
}

.popup_overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  cursor: pointer;
}

/* チェック状態のときに表示 */
.popup_check:checked + .popup_open + .popup_overlay {
  display: block;
}

/* モーダル本体 */
.popup_body {
  background: #fff;
  width: 496px;
  max-width: 90%;
  padding: 32px 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: auto; /* pointer 無効化 */
}

/* 開くボタン */
.popup_open {
  cursor: pointer;
}

/* 閉じるボタン */
.popup_close {
  width: 120px;
  height: 32px;
  background: #815DC6;
  color: #FFFFFF;
  padding-left: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px auto 0;
  position: relative;
  cursor: pointer;
  padding-bottom: 2px;
}
.popup_close::before {
  content: "×";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
	.popup_body {
	    width: 690px;
		padding: 32px 40px;
	}
	.popup_close {
        width: 200px;
        height: 64px;
        margin: 40px auto 0;
    }
    .popup_close::before {
        left: 32px;
    }
}
/*=============================
Bnr
=============================*/
.bl_bnr {
	padding: 56px 0;
}
.el_bnr {
	display: flex;
	justify-content: center;
}
.el_bnr > picture {
	width: 848px;
	object-fit:cover;
}
@media screen and (max-width: 750px) {
	.bl_bnr {
	    padding: 64px 0;
    }
	.el_bnr > picture {
	    width: 100%;
    }
}
/*=============================
新着
==============================*/
.bl_vertPosts {
	border-bottom: 1px solid #B9B9B9;
	padding: 0 16px 16px 0;
	color: #222;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.bl_vertPosts:not(:first-of-type) {
	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;
	display: flex;
	justify-content: center;
	margin-bottom: 3px;
}
.el_catLabel {
	min-width: 100px;
	max-width: 144px;
	min-height: 28px;
	font-size: 16px;
	color: #fff;
	background: #ccc;
	line-height: 1.5;
	letter-spacing: 0;
	padding: 0 8px 2px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.el_catLabel.all {
	background: #5e5e5e;
}
.el_catLabel.news {
	background: #815DC6;
}
.el_vertPosts_ttl {
	flex: 1;
	font-size: 17px;
	font-weight: lighter;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
@media screen and (max-width: 750px) {
	.bl_vertPosts {
		gap: 16px;
		padding-bottom: 24px;
	}
	.bl_vertPosts:not(:first-of-type) {
		padding-top: 24px;
	}
	.bl_vertPosts_header {
		flex: 100%;
	}
	.bl_vertPosts_date {
		font-size: 26px;
	}
	.el_catLabel {
		min-width: 128px;
		max-width: 480px;
		min-height: 42px;
		font-size: 22px;
		padding: 0 16px;
	}
	.el_vertPosts_ttl {
		font-size: 32px;
	}
}
/*=============================
aside
==============================*/
.bl_aside {
	padding-bottom: 25px;
	border: 1px solid #815DC6;
}
.el_aside_ttl {
	height: 50px;
	color: #fff;
	background: #815DC6;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
}
.bl_aside_postList {
	margin-bottom: 20px;
}
.bl_aside_postList > li {
	border-bottom: 1px solid #C6C6C6;
	padding: 16px 25px;
}
.bl_aside_postList > li > a {
	/* padding: 16px 25px; */
	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;
	border-radius: 30px;
	display: flex;
	margin: auto;
	justify-content: center;
	align-items: center;
	background: #FF277A;
	color: #fff;
	font-size: 20px;
	position: relative;
	letter-spacing: 1.08px;
}
.bl_aside .el_btn::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	border-style: solid;
	border-width: 5.5px 0 5.5px 9px;
	border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 750px) {
	/* aside */
	.bl_aside {
		padding-bottom: 40px;
	}
	.el_aside_ttl {
		height: 76px;
		margin-bottom: 15px;
		font-size: 28px;
	}
	.bl_aside_postList {
		margin-bottom: 35px;
	}
	.bl_aside_postList > li > a {
		padding: 24px 30px;
		font-size: 26px;
	}
	.bl_aside .el_btn{
		width: 260px;
		height: 70px;
		border-radius: 60px;
		font-size: 32px;
	}
	.bl_aside .el_btn::after{
		right: 30px;
		border-width: 7.5px 0 7.5px 11px;
	}
}
/*=============================
ページナビ
==============================*/
/* 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: #B9B9B9;
}
.wp-pagenavi .current {
	background: #FF277A;
}
.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;
	box-shadow: 0px 3px 6px #00000029;
    border-radius: 30px;
	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: 1px solid #815DC6;
	color: #815DC6;
}
.bl_pager_prev > a::before {
	border-width: 5px 9px 5px 0;
	border-color: transparent #815DC6 transparent transparent;
}
.bl_pager_next > a {
	padding-right: 10px;
	background-color: #815DC6;
	color: #FFFFFF;
}
.bl_pager_next > a::after {
	left: initial;
	right: 17px;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent #FFFFFF;
}
/* カテゴリ */
.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;
	}
}
/*=============================
エディタ
==============================*/
/* ビジュアルエディタのフォント変更 */
#tinymce {
	font-family: "noto-sans-jp", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体",
		"Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* 記事内見出し */
.el_post_lv2Heading{
	margin: 0 0 25px;
	padding: 5px 10px 6px 25px;
	background: #74babe;
	color: #fff;
	font-size: 22px;
	line-height: 1.4;
	font-family: "noto-serif-jp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: bold;
}
p + .el_post_lv2Heading{
	margin-top: 2em;
}
/* 記事内小見出し */
.el_post_lv3Heading{
	margin: 0 0 20px;
	padding: 0 0 8px 20px;
	border-bottom: 1px solid #74babe;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	position: relative;
	font-family: "noto-serif-jp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.el_post_lv3Heading::before{
	content: "";
	display: block;
	width: 7px;
	height: calc(100% - 10px);
	background: #74babe;
	position: absolute;
	top: 0;
	left: 0;
}
p + .el_post_lv3Heading{
	margin-top: 2em;
}
/* テキスト */
#tinymce p,.bl_post_cont p{
	margin-bottom:3em;
}
.el_post_sTxt{
	font-size: 0.8em;
}
.el_post_lTxt{
	font-size: 1.2em;
}
.el_post_llTxt{
	font-size: 1.4em;
}
.el_post_xlTxt{
	font-size: 1.8em;
}
/* リンクタグ */
#tinymce a,.bl_post_cont a{
	color: #e25e31;
	text-decoration: underline;
}
/* イタリック文字 */
#tinymce em,.bl_post_cont em{
	font-family: "游ゴシック", "游ゴシック体";
	font-weight: 500;
	font-style: italic;
}
/* 蛍光マーカー */
.underline_red {
	background: linear-gradient(transparent 60%, #ff7f7f 60%);
}
.underline_blue {
	background: linear-gradient(transparent 60%, #66ccff 60%);
}
.underline_green {
	background: linear-gradient(transparent 60%, #66FFCC 60%);
}
.underline_yellow {
	background: linear-gradient(transparent 60%, #ffff66 60%);
}
/* インデント */
.txt_indent{
	display: inline-block;
	padding: 0 0 0 1em;
}
/* マージン */
.m_20{
	margin-bottom: 20px!important;
}
.m_30{
	margin-bottom: 30px!important;
}
.m_40{
	margin-bottom: 40px!important;
}
/* 画像 */
#tinymce img,.bl_post img{
	max-width: 100%;
	width: auto;
	height: auto;
	display:block;
	float: none!important;
}
#tinymce img.alignright,
.bl_post img.alignright{
	margin: 0 0 0 auto;
}
#tinymce img.alignleft,
.bl_post img.alignleft{
	margin: 0 auto 0 0;
}
#tinymce img.aligncente,
.bl_post img.aligncenter{
	margin: 0 auto;
}
/* テーブル */
#tinymce table,
.bl_post table {
	border: 1px solid #000!important;
}
#tinymce table th,#tinymce table td,
.bl_post table th,.bl_post table td {
	border: 1px solid #000!important;
	padding: 10px!important;
	background: #fff!important;
}
@media screen and (max-width : 750px){
	/* 記事内見出し */
	.el_post_lv2Heading{
		padding: 15px 20px;
		font-size: 28px;
	}
	/* 記事内小見出し */
	.el_post_lv3Heading{
		padding-bottom: 10px;
		padding-left: 25px;
		font-size: 28px;
	}
}
/* Mac,iPad Safari */
@media only screen and (min-device-width:768px){
	_::-webkit-full-page-media, _:future, :root .bl_post_lv2Heading{
		padding-top: 5px;
	}
	_::-webkit-full-page-media, _:future, :root .bl_post_lv3Heading::before {
		height: calc(100% - 7px);
	}
}

