@charset "utf-8";
/*=======================================================
基本設定
=======================================================*/
:root {
  --color-main-green: #69C6AC;
  --color-main-black: #454A45;
  --color-sub-pink: #FF77D6;
  --color-sub-yellow: #F4FF1B;
  --color-base-white: #F0F9F7;
}
@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-Medium.woff) format("woff");
	font-weight: 500;
	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;
	overflow-wrap: anywhere;
	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: var(--color-main-black);
}
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;
	overflow-wrap: anywhere;
}
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;
    color: #454A45;
}
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%;
}
details {
    display: block;
}
summary {
	cursor: pointer;
}
/* PC SP */
.pc {
	display: initial;
}
.sp {
	display: none;
}
@media only screen and (min-device-width: 1025px) {
	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;
	}
	.pc {
		display: none;
	}
	.sp {
		display: initial;
	}
}

/*=============================
共通レイアウト
==============================*/
/* inner */
.ly-head-inner,
.ly-foot-inner,
.ly-cont,
.ly-cont-inner {
	width: 1024px;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
/* 2カラム */
.ly-cont--col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 64px;
}
.ly-cont-main {
	width: 696px;
}
.ly-cont-side {
	width: 264px;
}
/* bl_media */
.bl-media-list {
	display: flex;
	flex-direction: column;
	gap: 56px;
}
.bl-media {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 64px;
	position: relative;
}
.bl-media-img-wrapper {
	flex: 0 1 384px;
}
.bl-media-body {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.el-media-ttl {
	font-size: 28px;
	font-weight: 500!important;
	margin-bottom: 16px;
}
.el-media-ttl.sp{
	display: none;
}
.el-media-txt + .el-media-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;
	text-align: center;
	margin-bottom: 16px;
}
/* bl_btnList */
.bl-btn-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}
@media screen and (min-width: 751px) {
	.bl-media.--reverse{
		flex-direction: row-reverse;
	}
}
@media screen and (max-width: 750px) {
	/* inner */
	.ly-head-inner,
	.ly-foot-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-img-wrapper {
		flex: 0 1 100%;
	}
	.el-media-ttl.sp {
		display: block;
		font-size: 32px;
		margin-bottom: 24px;
	}
	.el-media-ttl.pc{
		display: none;
	}
	/* bl_card */
	.bl-card {
		width: 100%;
	}
	.el-card-ttl{
		font-size: 32px;
		margin-bottom: 24px;
	}
}
/*=============================
下層MV - パンくず
==============================*/
/* MV */
.bl-lower-mv {
	height: 440px;
	background: url(../images/about/mv-bg.jpg) top center / cover no-repeat;
}
.el-lower-mv-ttl {
	width: 1024px;
	margin: 0 auto;
	padding-top: 234px;
	font-size: 40px;
	font-weight: 500!important;
	color: #fff;
	line-height: 1.5;
	letter-spacing: 2.4px;
	position: relative;
	z-index: 5;
}
.el-lower-mv-ttl::before{
	content: '';
	position: absolute;
	z-index: -1;
}
/* パンくず */
.bl-breadcrumbs-inner {
	width: 1024px;
	margin: 0 auto;
	padding-top: 8px;
	display: flex;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.bl-breadcrumbs-inner > li {
	font-size: 14px;
	color: var(--color-main-green);
	display: flex;
	align-items: center;
	justify-content: center;
}
.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;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
	min-width: 0;
}
.bl-breadcrumbs-inner > li:first-of-type ~ li::before {
	content: '';
	display: inline-block;
	background: url(../images/common/bread-arrow.svg) top center / contain no-repeat;
	width: 7px;
	height: 11px;
	margin: 0 8px;
}
.bl-breadcrumbs-inner .home {
	display: flex;
	align-items: center;
	width: 16px;
	padding-bottom: 2px;
}
@media screen and (max-width: 750px) {
	/* MV */
	.bl-lower-mv {
		height: 400px;
		    background: url(../images/about/mv-bg-sp.jpg) top center / cover no-repeat;
	}
	.el-lower-mv-ttl {
		width: 750px;
		font-size: 40px;
		font-weight: 500;
		letter-spacing: 2.4px;
		padding: 246px 0 0 114px;
	}
	/* パンくず */
	.bl-breadcrumbs-inner {
		width: 690px;
		left: 30px;
		transform: unset;
	}
	.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{
	padding: 128px 0;
}
/* 各sectionメイン見出し */
.el-main-ttl {
	/* display: inline-block; */
	font-size: 32px;
	font-weight: 500!important;
	line-height: 1.5;
	letter-spacing: 1.92px;
	text-align: center;
	margin-bottom: 32px;
	position: relative;
	z-index: 5;
}
.el-main-ttl::before{
	content: '';
	position: absolute;
	z-index: -1;
}
.el-main-ttl::after{
	content: '';
	position: absolute;
	background: url(../images/common/main-ttl-deco.svg) top center / contain no-repeat;
	width: 214px;
	height: 18px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -4px;
	z-index: -1;
}
/* bl_bulletList */
.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_numList */
.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;
	background: #fff;
	/* color: var(--color-main-black); */
	font-size: 18px;
	line-height: 1.55;
	letter-spacing: 0.72px;
	text-align: center;
	position: relative;
	padding-bottom: 2px;
}
.el-btn.--more{
	width: 236px;
	height: 54px;
	padding-top: 1px;
	margin: 48px auto 0;
	overflow: hidden;
}
.el-btn.--more::after{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: none;
	border-top: none;
	border-left: 14px solid transparent;
	border-bottom: 14px solid var(--color-sub-pink);
	bottom: 0;
	right: 0;
	transition: all 0.3s ease;
}
.el-btn.--more:hover::after{
	bottom: -14px;
	right: -14px;
}

.el-btn.--green{
	background: var(--color-main-green);
	color: #fff;
}
.el-btn.--black{
	background: var(--color-main-black);
	color: #fff;
}
.el-btn.sp{
	display: none;
}
/* el-more */
.el-more{
	font-size: 16px;
	color: var(--color-main-green);
	padding-right: 18px;
	line-height: 1;
	letter-spacing: 0.64px;
	position: relative;
}
.el-more::after{
	content: '';
	position: absolute;
	background: url(../images/common/more.svg) top center / contain no-repeat;
	width: 7px;
	height: 11px;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	transition: all 0.3s ease;
}
.el-more:hover::after{
	right: -8px;
}
.el-more-bar{
	width: 100%;
	height: 34px;
	background: var(--color-main-green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 60px;
	margin-top: 16px;
	position: relative;
}
.el-more-bar::after{
	content: '';
	position: absolute;
	background: url(../images/common/more-arrow.svg) top center / contain no-repeat;
	width: 36px;
	height: 6px;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}
.el-more-bar:hover::after{
	right: 8px;
}
/* el_label */
.el-label {
	background: var(--color-main-green);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2px;
}
/* ※ */
.el-att {
	display: flex;
	font-size: 14px;
	position: relative;
}
.el-att::before {
  content: "※";
  flex: 0 1 auto;
}
.el-att.--center{
	justify-content: center;
}
.el-att-01,
.el-att-02,
.el-att-03 {
	padding-left: 2.5em;
}
.el-att-01::before {
	content: "※1";
}
.el-att-02::before {
	content: "※2";
}
.el-att-03::before {
	content: "※3";
}
span.el-att {
	display: block;
}
.el-link {
	text-decoration: underline;
	color: #0000ff;
}
.el-txt.--center {
	text-align: center;
}
.el-txt.--middle{
	font-size: 20px;
	font-weight: 500;
}
.el-txt + .el-txt{
	margin-top: 1.3em;
}
@media screen and (max-width: 750px) {
	/* 各sectionメイン見出し */
	.el-main-ttl {
		display: flex;
		justify-content: center;
		text-align: center;
		font-size: 36px;
		font-weight: 500;
		line-height: 1.5;
		letter-spacing: 2.16px;
		margin-bottom: 40px;
	}
	.el-main-ttl::after{
		width: 240px;
		height: 20px;
	}
	/* el_btn */
	.el-btn{
		font-size: 28px;
		line-height: 1.42;
		letter-spacing: 1.12px;
	}
	.el-btn.--more {
		width: 312px;
		height: 78px;
		margin-top: 56px;
	}
	.el-btn.--more::after{
		border-left: 26px solid transparent;
		border-bottom: 26px solid var(--color-sub-pink);
	}
	.el-btn.pc{
		display: none;
	}
	.el-btn.sp{
		display: flex;
	}
	/* el-more */
	.el-more{
		font-size: 26px;
		line-height: 1.38;
		letter-spacing: 1.04px;
		padding-right: 34px;
	}
	.el-more::after{
		width: 16px;
		height: 18px;
	}
	.el-more:hover::after{
		right: -16px;
	}
	.el-more-bar{
		width: 100%;
		height: 56px;
		padding-right: 92px;
		margin-top: 24px;
	}
	.el-more-bar::after{
		width: 53px;
		height: 10px;
		right: 24px;
	}
	.el-more-bar:hover::after{
		right: 16px;
	}
	/* ※ */
	.el-att {
		font-size: 22px;
	}
	.el-txt.--middle{
		font-size: 30px;
		line-height: 1.5;
		letter-spacing: 1.8px;
	}
}

/*=============================
ヘルプタグ
==============================*/
/* ユニット */
.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-opacity-1 {
	opacity: 1 !important;
}
/* 電話リンク */
.hp-tel {
	pointer-events: none;
}
/* アクセントカラー */
.hp-color.--pink {
	color: #FF77D6 !important;
}
.hp-color.--green {
	color: #69C6AC !important;
}
.hp-color.--yellow {
	color: #F4FF1B !important;
}
/* 影付き角丸白ボックス */
.hp-shadow-radius-white-box {
	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: 100;
	padding-bottom: 6px;
	background: rgba(255, 255, 255, 0.6);
}
.bl-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
}
/* ロゴ */
.bl-head-logo {
	width: 232px;
}
.bl-head-logo > a {
	display: block;
height: 54px;
}
.bl-head-logo img {
	vertical-align: top;
}
/* ヘッダー右側エリア */
.bl-head-right {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 6px;
}
/* ボタンエリア */
.bl-head .bl-btn-list {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 0;
}
.bl-head .el-btn {
	width: 110px;
	height: 38px;
	font-size: 14px;
	font-weight: normal;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.bl-head .el-btn::after{
	border-left: 10px solid transparent;
	border-bottom: 10px solid var(--color-sub-pink);
}
.bl-head-right .el-sns{
	display: block;
	width: 28px;
	margin: 0 16px 2px 0;
}
.bl-head-right .el-sns:nth-of-type(2){
	margin-right: 24px;
}
/* ナビ */
.bl-gnav {
	width: 100%;
	z-index: 100;
	padding-bottom: 4px;
}
.bl-gnav-inner {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.bl-gnav-inner > li > a {
	font-size: 15px;
	/* line-height: 22px; */
	line-height: 1.46;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}
.bl-gnav-inner .sp{
	display: none;
}
/* スマホ用非表示 */
.bl-burger {
	display: none;
}

@media screen and (max-width: 750px) {
	.ly-head {
		padding-bottom: 0;
	}
	.ly-head-inner {
		width: 100%;
		z-index: 110;
		padding: 36px 40px 32px;
	}
	/* ロゴ */
	.bl-head-logo {
		width: 266px;
		height: 61px;
		z-index: 9999;
	}
	.bl-head-logo > a {
		height: 61px;
	}
	/* ボタンエリア */
	.bl-head .bl-btn-list{
		display: none;
	}
	/* ハンバーガーボタン */
	.bl-burger {
		display: block;
		position: absolute;
		top: 49px;
		right: 40px;
		width: 48px;
		height: 38px;
		z-index: 9999;
	}
	.bl-burger-inner {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.bl-burger-bar {
		position: absolute;
		width: 100%;
		height: 2px;
		background: var(--color-main-black);
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.5s ease;
		}
	.bl-burger-bar:first-child {
		top: calc(-3px / 2);
	}
	.bl-burger-bar:nth-child(2) {
		top: calc(100% / 2 - 3px / 2);
	}
	.bl-burger-bar:nth-child(3) {
		top: calc(100% - 3px / 2);
	}
	.bl-burger.is-active .bl-burger-bar:first-child {
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.bl-burger.is-active .bl-burger-bar:nth-child(2) {
		opacity: 0;
	}
	.bl-burger.is-active .bl-burger-bar:nth-child(3) {
		top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
	}
	.bl-burger-txt {
		font-size: 24px;
		text-transform: uppercase;
		color: #fff;
		width: 100%;
		position: absolute;
		left: 0;
		bottom: -50px;
	}
	/* ナビ */
	.bl-gnav {
		width: 100%;
		height: 100%;
		background: #fff;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 90;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
	}
	.bl-gnav.is-active {
		transform: translateX(0);
		transition: transform 0.3s ease-in-out;
	}
	.bl-gnav-inner {
		padding: 160px 0 0;
		width: 100%;
		height: 100%;
		flex-direction: column;
		justify-content: flex-start;
		gap: 48px;
		overflow: scroll;
	}
	.bl-gnav-inner > li > a {
		font-size: 36px;
	}
	.bl-gnav-inner .bl-btn-list.sp{
		display: flex;
		gap: 72px;
		margin-top: 32px;
	}
	.bl-gnav-inner .bl-btn-list .el-sns{
		width: 90px;
		margin: 0;
	}
	
	/* 閉じるボタン */
	.el-gnav-btn {
		width: 100%;
		height: 80px;
		font-size: 30px;
		background: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}
	.el-gnav-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: 32px;
	}
}

/*=============================
footer
=============================*/
.ly-foot {
	background: var(--color-main-green);
}
.ly-foot-inner {
	padding: 64px 0;
}
.bl-foot {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* ロゴ */
.bl-foot-logo {
	display: block;
	width: 130px;
}
.bl-foot-left .el-btn{
	width: 166px;
	height: 38px;
	font-size: 14px;
	letter-spacing: 0.56px;
	border: 0.75px solid #FFF;
	margin-top: 16px;
}
.bl-foot-left .el-btn.--more::after{
	border-left: 10px solid transparent;
	border-bottom: 10px solid var(--color-sub-pink);
}
/* ナビ */
.bl-foot-gnav {
	width: 670px;
}
.bl-foot-gnav-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
}
.bl-foot-gnav-inner > li > a {
	font-size: 15px;
	font-style: normal;
	color: #fff;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}
.ly-foot-inner >.el-btn{
	display: none;
}
/* コピーライト */
.bl-foot-copyright {
	width: 100%;
	height: 32px;
	background: var(--color-main-black);
	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;
}
.bl-btn-list.--bottom {
	display: none;
}
@media screen and (max-width: 1400px) {
	/* ページトップボタン */
	.bl-pagetop {
		width: 100%;
	}
	.bl-pagetop span {
		right: 30px;
	}
}
@media screen and (max-width: 750px) {
	/* footer */
	.ly-foot-inner {
		width: 100%;
		height: auto;
		padding: 128px 76px;
	}
	.bl-foot-left {
		width: 100%;
		order: 1;
		margin-bottom: 68px;
	}
	/* ロゴ */
	.bl-foot-logo {
		width: 348px;
		margin: 0 auto 0 0;
	}
	.bl-foot-left .el-btn{
		display: none;
	}
	/* ナビ */
	.bl-foot-gnav {
		width: 100%;
		order: 2;
	}
	.bl-foot-gnav-inner {
		display: grid;
		grid-template: repeat(5, auto) / 1fr 1fr;
		grid-auto-flow: column;
		gap: 32px 64px;
	}
	.bl-foot-gnav-inner > li > a {
		font-size: 28px;
		line-height: 1.5;
		letter-spacing: 1.12px;
	}
	.bl-foot-gnav-inner > li > a::before {
		border-width: 9px 0 9px 14px;
		top: 50%;
		transform: translateY(-50%);
		left: 30px;
	}
	.ly-foot-inner > .el-btn{
		display: flex;
		width: 312px;
		height: 78px;
		border: 2.147px solid #FEFFFF;
		font-size: 24px;
		line-height: 40px;
		letter-spacing: 0.96px;
		margin: 80px 0 0;
		order: 3;
	}
	/* コピーライト */
	.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;
		border-radius: 117px;
		right: 25px;
		bottom: 25px;
	}
	.bl-btn-list.--bottom{
		flex-wrap: nowrap;
		display: flex;
		position: sticky;
		bottom: 0;
		width: 100%;
		gap: 0;
		z-index: 9999;
	}
	.bl-btn-list.--bottom .el-btn{
		width: 250px;
		height: 140px;
		line-height: 1.5;
	}
}

/*=============================
entry
=============================*/
.bl-entry {
	background: url(../images/common/entry-bg.jpg) top center / cover no-repeat;
}
.bl-entry .ly-cont-inner{
	display: flex;
	gap: 50px;
}
.bl-online-cont{
	width: 356px;
}
.el-online-ttl{
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 1.44px;
	text-align: center;
	margin-bottom: 48px;
}
.bl-online-item > dt{
	color: #fff;
	text-align: center;
	font-size: 15px;
}
.bl-online-item .el-btn{
	margin-top: 16px;
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}
.bl-entry-cont{
	width: 600px;
}
.bl-entry-cont .el-main-ttl{
	color: #fff;
	margin-bottom: 48px;
}
.bl-entry-list{
	display: flex;
	justify-content: center;
	gap: 24px;
}
.bl-entry-item > dt{
	color: #fff;
	text-align: center;
	font-size: 15px;
	
}
.bl-entry-item .el-btn{
	width: 198px;
	margin-top: 16px;
}
@media screen and (max-width: 750px) {
	.bl-entry {
		background: url(../images/common/entry-bg-sp.jpg) top center / cover no-repeat;
	}
	.bl-entry .ly-cont-inner{
		flex-direction: column;
		justify-content: center;
		gap: 144px;
	}
	.bl-online-cont{
		width: 100%;
		order: 2;
	}
	.el-online-ttl{
		font-size: 28px;
		line-height: 1.4;
		letter-spacing: 1.68px;
	}
	.bl-online-item{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 40px;
	}
	.bl-online-item > dt{
		width: 200px;
		font-size: 24px;
		text-align: center;
		letter-spacing: 0.96px;
	}
	.bl-online-item .el-btn{
		margin-top: 0;
		width: 312px;
		font-size: 26px;
	}
	.bl-entry-cont{
		width: 100%;
	}
	.bl-entry-cont .el-main-ttl{
		margin-bottom: 64px;
	}
	.bl-entry-list{
		gap: 32px;
		order: 1;
	}
	.bl-entry-item > dt{
		font-size: 24px;
		letter-spacing: 0.96px;
	}
	.bl-entry-item .el-btn{
		width: 312px;
		margin-top: 32px;
	}
}

/*=============================
faq
=============================*/
.bl-faq .el-main-ttl{
	color: var(--color-main-green);
}
.bl-faq-item{
	border-bottom: 1px solid var(--color-main-green);
}
.bl-q {
    display: block;
	color: var(--color-main-green);
    padding: 40px 64px 40px 40px;
    font-size: 20px;
    font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.2px;
	position: relative;
}
.bl-q::before {
    content: 'Q';
    position: absolute;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1.2px;
    top: 48%;
    left: 0;
	transform: translateY(-50%);
}
.bl-q::after {
    content: '＋';
    position: absolute;
    line-height: 1;
	width: 40px;
	height: 40px;
	border: 1px solid;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2px;
    top: 50%;
    right: 0;
	transform: translateY(-50%);
}
.bl-faq-item[open] .bl-q::after {
    content: '－';
}
.bl-a{
	overflow: hidden;
	position: relative;
}
.bl-a > * {
    padding: 0 64px 40px 40px;
	position: relative;
}
.bl-a > *:first-of-type::before {
    content: 'A';
    position: absolute;
    font-family: "noto-serif-jp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1.2px;
    top: calc(50% - 22px);
    left: 0;
    transform: translateY(-50%);
}
/* アコーディオン */
.bl-faq details::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  .bl-faq details::details-content {
    transition-duration: 0.5s;
    transition-property: grid-template-rows;
  }
}
.bl-faq details:not([open])::details-content {
  grid-template-rows: 0fr;
}
.bl-faq details[open]::details-content {
  grid-template-rows: 1fr;
}
@media screen and (max-width: 750px) {
	.bl-q {
	    padding: 40px 80px 40px 60px;
	    font-size: 30px;
	}
	.bl-q::before {
		font-size: 30px;
	}
	.bl-q::after {
		width: 64px;
		height: 64px;
	}
	.bl-a > * {
	    padding: 0 64px 40px 60px;
	}
	.bl-a > *:first-of-type::before {
	    font-size: 28px;
	}
}

/*=======================================================
process
=======================================================*/
.bl-process{
    background: var(--color-main-green);
	overflow: hidden;
}
.bl-process .el-main-ttl{
	color: #fff;
	margin-bottom: 48px;
}
.bl-process .el-txt{
	color: #fff;
}
.bl-process-list{
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 96px;
	position: relative;
	z-index: 5;
}
.bl-process-list::before{
	content: '';
	position: absolute;
	background: url(../images/common/process-bg.svg) top center / contain no-repeat;
	width: 2000px;
	height: 150px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.bl-process-item{
	width: 240px;
	text-align: center;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 1.12px;
}
.bl-process-item > span{
	width: fit-content;
	display: block;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-main-green);
	border-bottom: 1px solid;
	margin: 0 auto 8px;
}
.bl-web{
	width: 1104px;
	margin: 96px 0 0 -40px;
	border: 1px solid #fff;
	padding: 32px 40px 48px;
}
.el-web-ttl{
	font-size: 28px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.68px;
	text-align: center;
	color: #fff;
}
.el-web-ttl > span:first-of-type{
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1.2px;
	display: block;
}
.bl-web .bl-process-list{
	padding: 18px 0;
	margin: 48px 0 0;
	gap: 70px;
	height: 142px;
	overflow: hidden;
}
.bl-web .bl-process-list::before{
	background: url(../images/common/process02-bg.svg) top center / contain no-repeat;
	width: 1024px;
	height: 142px;
}
.bl-web .bl-process-item{
	width: 180px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.58;
}
.bl-web .bl-process-list + .el-txt{
	margin-top: 24px;
}
@media screen and (max-width: 750px) {
	.bl-process .el-main-ttl{
		margin-bottom: 64px;
	}
	.bl-process-list{
		width: 750px;
		height: 236px;
		gap: 64px;
		padding-left: 30px;
		margin-left: -30px;
	}
	.bl-process-list::before{
		background: url(../images/common/process-bg-sp.svg) top center / contain no-repeat;
		width: 750px;
		height: 236px;
	}
	.bl-process-item{
		width: 180px;
		height: 144px;
		font-size: 32px;
	}
	.bl-process-item:nth-of-type(3) > span{
		margin-bottom: 24px;
	}
	.bl-web{
		width: 100%;
		margin: 64px auto 0;
		padding: 48px 22px;
	}
	.el-web-ttl{
		font-size: 36px;
		line-height: 1.38;
		letter-spacing: 1.28px;
	}
	.el-web-ttl > span:first-of-type{
		font-size: 28px;
		line-height: 1.38;
		letter-spacing: 1.28px;
	}
	.bl-web .bl-process-list{
		margin: 58px 0 0;
		gap: 0;
		width: auto;
		height: 180px;
	}
	.bl-web .bl-process-list::before{
		background: url(../images/common/process02-bg-sp.svg) top center / contain no-repeat;
		width: 643px;
		height: 180px;
	}
	.bl-web .bl-process-item{
		width: 160px;
		font-size: 28px;
		line-height: 1.5;
		padding-left: 32px;
		display: flex;
		flex-direction: column;
	}
	.bl-web .bl-process-item > span{
		margin-bottom: 12px;
	}
	.bl-web .bl-process-item:not(:first-of-type) > span{
		margin-bottom: 32px;
	}
	.bl-web .bl-process-list + .el-txt{
		margin-top: 32px;
		letter-spacing: 1.12px;
	}
}

/*=============================
cta
=============================*/
.bl-cta{
	background: var(--color-main-green);
	color: #fff;
	padding: 40px 48px 48px 96px;
	width: 800px;
	margin: 0 auto;
	position: relative;
}
.bl-cta::before {
    content: '';
    position: absolute;
    background: url(../images/common/cta-oguri.png) top center / contain no-repeat;
	width: 112px;
	height: 322px;
	bottom: -26px;
    right: -16px;
}
.el-cta-ttl{
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 1.12px;
	color: var(--color-main-green);
	height: 56px;
	display: flex;
	align-items: center;
	margin-bottom: 34px;
	position: relative;
	z-index: 5;
}
.el-cta-ttl::before{
	content: '';
	position: absolute;
	background: #fff;
	width: 478px;
	height: 56px;
	top: 50%;
	left: -96px;
	transform: translateY(-50%);
	z-index: -1;
}
.bl-cta .el-company{
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.96px;
	margin-bottom: 8px;
}
.bl-cta .el-address{
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.8px;
}
.bl-cta-list{
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.bl-cta-list > div{
	display: flex;
	align-items: center;
	gap: 24px;
	font-weight: 500;
}
.bl-cta-list > div > dt{
	width: 110px;
	height: 32px;
	border: 1px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bl-cta-list > div > dd{
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.8px;
}
.bl-cta .el-link{
	margin-top: 16px;
	display: block;
	color: #fff;
	font-weight: 500;
}
@media screen and (max-width: 750px) {
	.bl-cta{
		padding: 40px 56px;
		width: 100%;
	}
	.bl-cta::before {
		width: 128px;
		height: 370px;
		bottom: 168px;
	}
	.el-cta-ttl{
		font-size: 34px;
		height: 64px;
	}
	.el-cta-ttl::before{
		width: 510px;
		height: 64px;
		top: 50%;
		left: -56px;
	}
	.bl-cta .el-company{
		font-size: 32px;
		margin-bottom: 16px;
	}
	.bl-cta .el-address{
		font-size: 28px;
	}
	.bl-cta-list{
		margin-top: 32px;
		gap: 24px;
	}
	.bl-cta-list > div > dt{
		width: 160px;
		height: 54px;
	}
	.bl-cta-list > div > dd{
		font-size: 26px;
	}
	.bl-cta .el-link{
		margin-top: 24px;
	}
}

/*=======================================================
recruit
=======================================================*/
.bl-recruit{
	background: var(--color-base-white);
}
.bl-recruit .el-main-ttl{
	margin-bottom: 48px;
	
}
.bl-recruit .el-main-ttl::after{
	background: url(../images/common/main-ttl-deco-green.svg) top center / contain no-repeat;
}
.bl-recruit-tbody th{
	width: 246px;
	font-size: 16px;
	font-weight: normal;
	color: #fff;
	text-align: left;
	background: var(--color-main-green);
	padding: 30px 24px 30px 40px;
	border-bottom: 2px solid var(--color-base-white);
}
.bl-recruit-tbody td{
	width: 774px;
	font-size: 16px;
	min-height: 86px;
	padding: 30px 56px;
	background: #fff;
	border-bottom: 2px solid var(--color-base-white);
}
.bl-recruit-tbody tr:last-of-type th,
.bl-recruit-tbody tr:last-of-type td{
	border-bottom: none;
}
.bl-recruit-tbody td p + p{
	margin-top: 24px;
}
.bl-recruit-tbody td p:has(.hp-box){
	margin-top: 8px;
}
.bl-recruit-tbody td .hp-box{
	display: inline-block;
	padding: 8px;
	border: 1px solid var(--accent01, #FF77D6);
}
.bl-recruit-tbody td .bl-time{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.bl-recruit-tbody td .bl-time > div{
	display: flex;
	gap: 16px;
}
.bl-recruit-tbody td .bl-time > div > dt{
	background: var(--color-main-green);
	color: #fff;
	padding: 0 16px;
}
.bl-recruit-tbody td .bl-time + p{
	margin-top: 24px;
}
@media screen and (max-width: 750px) {
	.bl-recruit .el-main-ttl::after{
		background: url(../images/common/main-ttl-deco-green.svg) top center / contain no-repeat;
	}
	.bl-recruit-tbody tr{
		display: flex;
		flex-direction: column;
	}
	.bl-recruit-tbody th{
		width: 100%;
		font-size: 28px;
		padding: 24px;
		border-bottom: none;
	}
	.bl-recruit-tbody td{
		width: 100%;
		font-size: 26px;
		min-height: auto;
		padding: 24px;
	}
	.bl-recruit-tbody td p + p{
		margin-top: 32px;
	}
	.bl-recruit-tbody td p:has(.hp-box){
		margin-top: 16px;
	}
	.bl-recruit-tbody td .hp-box{
		padding: 16px;
		border: 1px solid var(--accent01, #FF77D6);
	}
	.bl-recruit-tbody td .bl-time{
		gap: 16px;
	}
	.bl-recruit-tbody td .bl-time > div{
		gap: 24px;
	}
	.bl-recruit-tbody td .bl-time > div > dt{
		padding: 0 24px;
	}
	.bl-recruit-tbody td .bl-time + p{
		margin-top: 32px;
	}
}


/*=======================================================
career
=======================================================*/
.bl-career .el-main-ttl{
	margin-bottom: 54px;
}
.bl-career .bl-table{
	display: flex;
	gap: 16px;
}
.bl-career .bl-thead{
	width: 192px;
	background: var(--color-base-white);
	padding: 210px 16px 16px;
}
.bl-career .bl-thead th{
	display: block;
	text-align: center;
	width: 160px;
	height: 26px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.64px;
}
.bl-career .bl-thead th{
	margin-top: 16px;
}
.bl-career .bl-thead .el-base{
	margin-top: 0;
	height: 36px;
	border: 1px solid;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bl-career .bl-thead .el-example{
	height: 36px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bl-career .bl-tbody{
	width: 192px;
	background: var(--color-main-green);
	padding: 0 0 16px;
}
.bl-career .bl-tbody.--gblue{
	background: #6CC0D5;
}
.bl-career .bl-tbody.--blue{
	background: #75A0DC;
}
.bl-career .bl-tbody.--purple{
	background: #9887E3;
}
.bl-career .bl-tbody th{
	width: 192px;
	height: 44px;
	display: block;
	color: var(--color-main-green);
	border: 1px solid var(--color-main-green);
	border: 1px solid initial;
	padding: 0 6px;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0.68px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	margin-bottom: 16px;
}
.bl-career .bl-tbody.--gblue th{
	color: #6CC0D5;
	border: 1px solid;
}
.bl-career .bl-tbody.--blue th{
	color: #75A0DC;
	border: 1px solid;
}
.bl-career .bl-tbody.--purple th{
	color: #9887E3;
	border: 1px solid;
}
.bl-career .bl-tbody td{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	margin: 16px auto 0;
	width: 160px;
	height: 26px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}
.bl-career .bl-tbody .el-period{
	height: auto;
	font-size: 14px;
}
.bl-career .bl-table-img-wrapper{
	width: 98px;
	margin: 16px auto 0;
}
.bl-career .bl-tbody .el-base{
	border: 1px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 36px;
	font-size: 20px;
	padding-bottom: 1px;
}
.bl-career .bl-tbody .el-example{
	height: 36px;
	font-size: 20px;
	font-weight: bold;
	color: var(--color-main-green);
	letter-spacing: 0.8px;
	background: #fff;
	padding-bottom: 1px;
}
.bl-career .bl-tbody.--gblue .el-example{
	color: #6CC0D5;
}
.bl-career .bl-tbody.--blue .el-example{
	color: #75A0DC;
}
.bl-career .bl-tbody.--purple .el-example{
	color: #9887E3;
}
.bl-career .bl-tab-list.sp{
	display: none;
}
.bl-career .bl-table-wrapper{
	display: none;
}
@media screen and (max-width: 750px) {
	.bl-career .el-main-ttl{
		margin-bottom: 64px;
	}
	.bl-career .bl-tab-list.sp{
		display: flex;
		gap: 10px;
	}
	.bl-career .bl-tab-item{
		width: 160px;
		height: 94px;
		font-size: 26px;
		font-weight: 400;
		line-height: 1.23;
		letter-spacing: 1.04px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		border: none;
		background: #CDCDCD;
		color: #fff;
	}
	.bl-career .bl-tab-item.--academy.--active{
		color: var(--color-main-green);
		border: 1px solid;
		background: #fff;
	}
	.bl-career .bl-tab-item.--jr.--active{
		color: #6CC0D5;
		border: 1px solid;
		background: #fff;
	}
	.bl-career .bl-tab-item.--therapist.--active{
		color: #75A0DC;
		border: 1px solid;
		background: #fff;
	}
	.bl-career .bl-tab-item.--manager.--active{
		color: #9887E3;
		border: 1px solid;
		background: #fff;
	}
	.bl-table-wrapper{
		display: none;
		padding: 40px;
		background: var(--color-main-green);
	}
	.bl-table-wrapper.--active{
		display: flex;
		align-items: center;
		gap: 40px;
	}
	.bl-table-wrapper.--jr{
		background: #6CC0D5;
	}
	.bl-table-wrapper.--therapist{
		background: #75A0DC;
	}
	.bl-table-wrapper.--manager{
		background: #9887E3;
	}
	.bl-career .bl-table.pc{
		display: none;
	}
	.bl-career .bl-table{
		display: flex;
		gap: 40px;
	}
	.bl-career .bl-thead{
		width: 160px;
		padding: 0;
		background: none;
		color: #fff;
	}
	.bl-career .bl-thead th{
		width: 160px;
		height: 48px;
		font-size: 28px;
		letter-spacing: 1.12px;
	}
	.bl-career .bl-thead .el-base{
		height: 48px;
	}
	.bl-career .bl-thead .el-example{
		height: 48px;
		color: var(--color-main-green);
	}
	.bl-career .--jr .bl-thead .el-example{
		color: #6CC0D5;
	}
	.bl-career .--therapist .bl-thead .el-example{
		color: #75A0DC;
	}
	.bl-career .--manager .bl-thead .el-example{
		color: #9887E3;
	}
	.bl-career .bl-tbody{
		width: auto;
		padding: 0;
		background: unset;
	}
	.bl-career .bl-tbody td{
		height: 48px;
		font-size: 28px;
	}
	.bl-career .el-period{
		color: #fff;
		font-size: 22px;
		text-align: center;
		margin-top: 16px;
	}
	.bl-career .bl-table-img-wrapper{
		width: 190px;
		margin: 0;
	}
	.bl-career .bl-tbody .el-base{
		height: 48px;
		font-size: 28px;
		margin: 0;
	}
	.bl-career .bl-tbody .el-example{
		height: 48px;
		font-size: 28px;
	}
	.bl-career .--jr .bl-tbody .el-example{
		color: #6CC0D5;
	}
	.bl-career .--therapist .bl-tbody .el-example{
		color: #75A0DC;
		
	}
	.bl-career .--manager .bl-tbody .el-example{
		color: #9887E3;
	}
}

/*=============================
新着
==============================*/
.bl-vert-posts {
	border-bottom: 1px solid #454A45;
}
.bl-vert-posts > a {
	padding: 0 0 40px 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}
.bl-vert-posts:not(:first-of-type) > a {
	padding-top: 40px;
}
.bl-vert-posts-header {
	flex: 0 1 100%;
	display: flex;
	align-items: center;
	gap: 24px;
}
.bl-vert-posts-date {
	font-size: 14px;
	letter-spacing: 0;
}
.el-cat-label {
	min-width: 82px;
	max-width: 144px;
	min-height: 22px;
	font-size: 14px;
	color: #fff;
	background: #ccc;
	line-height: 1.5;
	letter-spacing: 0;
	padding: 0 12px 2px;
	border-radius: 220px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.el-cat-label.news {
	background: var(--color-main-green);
}
.el-cat-label.media {
	background: var(--color-sub-pink);
}
.el-vert-posts-ttl {
	flex: 100%;
	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: 24px;
		letter-spacing: 0.96px;
	}
	.el-cat-label {
		min-width: 128px;
		max-width: 480px;
		min-height: 42px;
		font-size: 22px;
		padding: 0 16px;
	}
	.el-vert-posts-ttl {
		font-size: 26px;
	}
}

/*=============================
aside
==============================*/
.el-aside-ttl {
	color: #69C6AC;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.64px;
	margin-bottom: 12px;
}
.bl-aside-post-list {
	padding: 24px 24px 40px;
	border: 1px solid #69C6AC;
	border-bottom: none;
}
.bl-aside-post-list > li {
	border-bottom: 1px solid #69C6AC;
}
.bl-aside-post-list > li:last-of-type{
	border-bottom: 0;
}
.bl-aside-post-list > li > a {
	padding: 16px 0;
	font-size: 16px;
	line-height: 1.5;
	display: block;
}
.bl-aside-post-list > li:first-of-type > a {
	padding-top: 0;
}
.bl-aside-post-list > li:last-of-type > a {
	padding-bottom: 0;
}
.bl-aside .el-more-bar{
	font-size: 16px;
	margin-top: 0;
}
@media screen and (max-width: 750px) {
	/* aside */
	.bl-aside {
		padding-bottom: 40px;
	}
	.el-aside-ttl {
		font-size: 28px;
		margin-bottom: 16px;
	}
	.bl-aside-post-list {
		padding: 40px 40px 56px;
	}
	.bl-aside-post-list > li > a {
		padding: 24px 0;
		font-size: 26px;
	}
	.bl-aside .el-more-bar{
		font-size: 28px;
		padding-bottom: 2px;
	}
}

/*=============================
ページナビ
==============================*/
/* wp-pagenavi */
.wp-pagenavi {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.wp-pagenavi > * {
	font-size: 16px;
	font-weight: bold;
	min-width: 34px;
	height: 40px;
	padding: 0 5px 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.64px;
	color: var(--color-main-black);
	border: 1px solid;
}
.wp-pagenavi a {
	background: #fff;
}
.wp-pagenavi .current {
	color: #fff;
	background: var(--color-main-green);
	border: none;
}
.wp-pagenavi .extend {
	color: var(--color-main-black);
	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: 176px;
	height: 40px;
	border-radius: 20px;
	color: #fff;
	font-size: 16px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 1px;
}
.bl-pager-prev > a,
.bl-pager-next > a {
	padding-left: 36px;
	background: #fff;
	color: #69C6AC;
	border: 1px solid #69C6AC;
}
.bl-pager-prev > a::before,
.bl-pager-next > a::after {
	content: '';
	position: absolute;
	width: 36px;
	height: 6px;
	background: url(../images/common/arrow-left.svg) top center / contain no-repeat;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}
.bl-pager-prev > a:hover::before{
	left: 8px;
}
.bl-pager-next > a {
	padding: 0 36px 0 0;
}
.bl-pager-next > a::after {
	background: url(../images/common/arrow-right.svg) top center / contain no-repeat;
	left: inherit;
	right: 16px;
}
.bl-pager-next > a:hover::after{
	right: 8px;
}
/* カテゴリ */
.bl-cat {
	margin-bottom: 64px;
}
.bl-cat-list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 64px;
}
.el-cat-item{
	font-size: 16px;
	padding: 4px 20px;
}
.el-cat-item.--selected{
	border-bottom: 1px solid var(--color-main-green);
	color: var(--color-main-green);
}
@media screen and (max-width: 750px) {
	/* wp-pagenavi */
	.wp-pagenavi {
		margin-top: 64px;
	}
	.wp-pagenavi > * {
		font-size: 28px;
		min-width: 44px;
		height: 54px;
		padding-bottom: 2px;
	}
	.wp-pagenavi .extend {
		display: none;
	}
	/* 前へ 次へ */
	.bl-pager {
		height: 60px;
		margin-top: 60px;
	}
	.bl-pager-link > a {
		width: 270px;
		height: 60px;
		border-radius: 30px;
		font-size: 26px;
	}
	.bl-pager-prev > a {
		padding-left: 64px;
	}
	.bl-pager-prev > a::before,
	.bl-pager-next > a::after {
		width: 53px;
		height: 10px;
		left: 24px;
	}
	.bl-pager-next > a::after{
		left: inherit;
		right: 24px;
	}
	.bl-pager-next > a {
		padding: 0 64px 0 0;
	}
	.bl-pager-prev > a:hover::before{
		left: 16px;
	}
	.bl-pager-next > a:hover::after{
		right: 16px;
	}
	/* カテゴリ */
	.bl-cat-list {
		flex: 100%;
	}
	.el-cat-item{
		font-size: 26px;
	}
}
