@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 / 490px 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 / 490px 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-flow: nowrap;
	justify-content: space-between;
}
.bl-card {
	width: 320px;
	display: flex;
	flex-flow: column;
}
.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 490px; */
		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: "title" "imgWrapper" "body";
	}
	.bl-media:has(.el-media-btmTxt) {
		grid-template: auto / auto;
		grid-template-areas: "title" "imgWrapper" "body" "btm_txt";
	}
	.bl-media-imgWrapper {
		margin-bottom: 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 {
	margin-top: 134px;
	background-color: #DAE0CD;
	border-bottom: 1px solid #A7660F;
	padding: 40px 0;
}
.bl-lower-mv-ttl {
    text-align: center;
}
.bl-lower-mv-ttl > span {
	display: block;
}
.bl-lower-mv-ttl .bl-mv-ttl-en {
	color: #A7660F;
	font-size: 24px;
}
.bl-lower-mv-ttl .bl-mv-ttl-jp {
	font-size: 18px;
}
/* パンくず */
.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 {
		margin-top: 0;
	    padding: 40px 0;
	}
	.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: 28px;
	}
}
/*=============================
共通パーツ
==============================*/
/* 各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 {
	display: flex;
	font-size: 14px;
	position: relative;
}
.el-att::before {
    content: "※";
    flex: 0 1 auto;
}
.el-att.center::before{
	justify-content: center;
}
.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-head {
	width: 100%;
	height: 84px;
	background: #31180E;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
.bl-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/* ロゴ */
.bl-head-logo {
	width: 182px;
}
.bl-head-logo > a {
	display: block;
}
.bl-head-logo img {
	vertical-align: top;
}
/* ヘッダー右側エリア */
.bl-head-rightArea {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 32px;
}
.bl-head-tel-set {
	display: flex;
	gap: 16px;
	align-items: center;
}
.bl-head-contact-label {
    background-color: #A7660F;
	width: 54px;
	height: 48px;
	color: #FFFFFF;
	font-size: 14px;
	line-height: 1.3em;
	text-align: center;
	padding: 5px 0 4px;
}
.bl-head-btn-tel {
	font-size: 26px;
	color: #FFFFFF;
	line-height: 1.3em;
}
.bl-head-tel {
	display: flex;
	flex-flow: column;
	font-size: 18px;
}
.bl-head-time {
	font-size: 12px;
	color: #FFFFFF;
}
.bl-head-time > span {
	display: inline-block;
	width: 70px;
	background-color: #FFFFFF;
	color: #222222;
	text-align: center;
	margin-right: 8px;
}
.bl-head-btn-contact {
    width: 144px;
	background-color: #818776;
	padding: 10px 0 11px;
	text-align: center;
	color: #FFFFFF;
	outline: 1px solid #FFFFFF;
    outline-offset: -4px;
}

/* ナビ */
.bl-gloNav {
	width: 100%;
	background: #DAE0CD;
	z-index: 100;
}
.bl-gloNav-inner {
	width: 1024px;
	margin: 0 auto;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bl-gloNav-inner > li {
	border-left: 1px solid #31180E;
}
.bl-gloNav-inner > li:nth-of-type(7) {
	border-right: 1px solid #31180E;
}
.bl-gloNav-inner > li > a {
	font-size: 16px;
	color: #31180E;
	padding: 0 19px 2px;
}
/* スマホ用非表示 */
.bl-burger {
	display: none;
}

@media screen and (max-width: 750px) {
	.ly-main {
		padding-top: 130px;
	}
	.ly-head {
		height: 130px;
	}
	.ly-head-inner {
		width: 100%;
		z-index: 110;
		padding-left: 32px;
	}
	/* ロゴ */
	.bl-head-logo {
		width: 266px;
	}
	/* ヘッダー右側エリア */
	.bl-head-rightArea {
		height: 100%;
		gap: 0;
	}
	.bl-head-tel-set {
		display: none;
	}
	.bl-head-btn-contact {
		width: 108px;
		height: 108px;
		font-size: 36px;
		padding: 24px 0;
		outline-offset: -8px;
	}
	/* ハンバーガーボタン */
	.bl-burger {
		width: 130px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.bl-burger-inner {
		display: block;
		width: 104px;
		height: 104px;
		position: relative;
	}
	.bl-burger-bar {
		width: 84px;
		height: 4px;
		background: #FFFFFF;
		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%, -17px);
		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%, 17px);
		transition: transform 0.3s ease;
	}
	.bl-burger-txt {
		font-size: 24px;
		color: #FFFFFF;
		width: 100%;
		position: absolute;
        left: -2px;
        bottom: 5px;
	}
	/* ナビ */
	.bl-gloNav {
		width: 100%;
		height: 100%;
		background: #31180E;
		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: 80px 0 0;
		width: 100%;
		height: 100%;
		flex-direction: column;
		justify-content: flex-start;
		overflow: scroll;
		scrollbar-width: none;
		display: flex;
		flex-flow: column;
	}
	.bl-gloNav-inner > li {
		border-left: none;
	}
	.bl-gloNav-inner > li {
		margin-bottom: 56px;
	}
	.bl-gloNav-inner > li:nth-of-type(8),
	.bl-gloNav-inner > li:last-of-type {
        margin-bottom: 0;
	}
	.bl-gloNav-inner > li:nth-of-type(7) {
		border-right: none;
	}
	.bl-gloNav-inner > li > a {
		font-size: 32px;
		color: #fff;
		padding: 0;
	}
	/* 閉じるボタン */
	.bl-gloNav-btn {
		width: 216px;
		padding: 16px 0;
		font-size: 30px;
		margin-top: 80px;
		background: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}
}

/*=============================
footer
=============================*/
.ly-main {
	min-height: calc(100vh - 200px); /* pxはfooterの高さ */
}
.ly-foot {
	background: #31180E;
}
.ly-foot-inner {
	padding: 32px 0 40px;
}
.bl-foot {
    display: grid;
    grid-template: repeat(1, auto) / 1fr 1fr;
}
.bl-foot-leftArea {
	grid-row: span 2 / span 2;
}
/* ロゴ */
.bl-foot-logo {
	display: block;
	width: 182px;
}
/* ナビ */
.bl-foot-gloNav {
	width: 672px;
}
.bl-foot-gloNav-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}
.bl-foot-gloNav-inner > li > a {
	padding-left: 16px;
	font-size: 15px;
	letter-spacing: 0.1em;
	color: #fff;
	position: relative;
}
.bl-foot-gloNav-inner > li > a::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #FFD490;
	position: absolute;
	top: 6px;
	left: 0;
}
/* コピーライト */
.bl-foot-copyright {
	background-color: #000000;
	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 {
	width: 66px;
	height: 66px;
	z-index: 900;
}
.bl-pagetop img {
	opacity: 0;
}
.bl-pagetop .fade img {
	transition: all 0.5s ease-in-out;
}
.bl-pagetop .in img {
	opacity: 1;
	cursor: pointer;
}
@media screen and (max-width: 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: 56px;
	}
	.bl-foot-leftArea {
		order: 2;
		width: 100%;
	}
	/* ロゴ */
	.bl-foot-logo {
		width: 352px;
		margin: 0 auto 16px;
	}
	/* ナビ */
	.bl-foot-gloNav {
		width: 100%;
		order: 1;
	}
	.bl-foot-gloNav-inner {
		display: grid;
		grid-template: repeat(6, auto) / 1fr 1fr;
		grid-auto-flow: column;
		gap: 0;
	}
	.bl-foot-gloNav-inner > li:first-of-type {
        grid-column: 1 / -1;
		display: flex;
	}
	.bl-foot-gloNav-inner > li {
		height: 100px;
		font-weight: normal;
		border-bottom: 2px solid #b7b7b7;
	}
	.bl-foot-gloNav-inner > li:nth-child(-n + 6) {
		border-right: 2px solid #b7b7b7;
	}
	.bl-foot-gloNav-inner > li:first-of-type {
        border-right: none;
	}
	.bl-foot-gloNav-inner > li > a {
		width: 100%;
		height: 100%;
		font-size: 28px;
		padding-left: 48px;
		display: flex;
		align-items: center;
	}
	.bl-foot-gloNav-inner > li > a::before {
		border-width: 9px 0 9px 14px;
		top: 50%;
		transform: translateY(-50%);
		left: 24px;
	}
	.bl-foot-gloNav-inner > li:first-of-type > a {
        justify-content: center;
		padding-left: 0;
	}
	.bl-foot-gloNav-inner > li:first-of-type > a::before {
		left: 304px;
	}
	/* コピーライト */
	.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;
	background-color: #818776;
}
.bl-cta .el-sec-mainTtl {
	font-size: 44px;
	color: #FFFFFF;
	position: relative;
}
.bl-cta .el-sec-mainTtl::after {
	position: absolute;
	content: "";
	width: 76px;
	height: 7px;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #FFFFFF;
}
.el-cta-sub-ttl {
	text-align: center;
	font-size: 26px;
	color: #FFD490;
}
.el-cta-txt {
	text-align: center;
	color: #fff;
}
.el-cta-txt > a {
    text-decoration: underline;
}
.bl-contact-set {
	width: 100%;
	background-color: #FFFFFF;
	display: flex;
	flex-flow: nowrap;
	justify-content: center;
	margin: 40px auto;
	justify-content: space-between;
	padding: 32px 0;
}
.bl-contact-set > div {
	width: 512px;
	text-align: center;
	position: relative;
}
.bl-contact-tell::after {
	position: absolute;
	content: "";
	width: 1px;
	height: 144px;
	background-color: #A7660F;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.el-contact-ttl {
	font-size: 24px;
}
.bl-contact-tell-btn {
	font-size: 32px;
	color: #A7660F;
}
.bl-contact-time > span {
	display: inline-block;
	padding: 0 10px 0;
	background-color: #A7660F;
	font-size: 14px;
	color: #FFFFFF;
	text-align: center;
	margin-right: 8px;
}
.bl-contact-time > span:nth-of-type(2) {
	margin-left: 24px;
}
.bl-contact-line-btn{
    width: 182px;
	height: 36px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #A7660F;
	color: #FFFFFF;
	font-size: 18px;
	position: relative;
	margin: 8px auto 16px;
}
.bl-contact-line-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 #FFFFFF;
}
.el-ctaBtn {
	width: 330px;
	height: 50px;
	border-radius: 30px;
	display: flex;
	margin: 24px auto 0;
	justify-content: center;
	align-items: center;
	background: #FFFFFF;
	color: #A7660F;
	font-size: 18px;
	position: relative;
}
.el-ctaBtn::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 #A7660F;
}
@media screen and (max-width: 750px) {
    .bl-cta {
	    padding: 64px 0;
    }
    .bl-cta .el-sec-mainTtl {
	    font-size: 60px;
    }
    .el-cta-sub-ttl {
	    font-size: 32px;
    }
    .bl-contact-set {
	    flex-flow: column;
		align-items: center;
	    margin: 40px auto;
	    gap: 64px;
	    padding: 32px 0;
    }
    .bl-contact-set > div {
	    width: 100%;
    }
    .bl-contact-tell::after {
	    width: 590px;
	    height: 1px;
	    top: 208px;
        right: 55px;
    }
    .el-contact-ttl {
	    font-size: 32px;
    }
    .bl-contact-tell-btn {
	    font-size: 56px;
    }
    .bl-contact-time > span {
	    padding: 0 10px 0;
	    font-size: 26px;
	    margin-right: 16px;
    }
    .bl-contact-time > span:nth-of-type(2) {
	    margin-left: 32px;
    }
    .bl-contact-line-btn{
        width: 326px;
	    height: 72px;
		border-radius: 60px;
	    font-size: 28px;
	    margin: 16px auto 24px;
    }
    .bl-contact-line-btn::after {
	    right: 30px;
		border-width: 11px 0 11px 18px;
    }
    .el-ctaBtn {
		width: 100%;
		height: 100px;
		margin: 32px auto 0;
		border-radius: 60px;
		font-size: 32px;
    }
    .el-ctaBtn::after {
	    right: 30px;
	    border-width: 11px 0 11px 18px;
    }
}
/*=============================
CTA-more
=============================*/
.el-cta-more-sub-ttl {
	font-size: 17px;
	color: #FFFFFF;
	text-align: center;
}
.bl-cta-more-contact-set {
	width: 100%;
	background-color: #FFFFFF;
	display: flex;
	flex-flow: nowrap;
	justify-content: center;
	margin: 40px auto 0;
	justify-content: space-between;
	padding: 32px 0;
}
.bl-cta-more-contact-set > div {
	width: 512px;
	text-align: center;
	position: relative;
}
.bl-cta-more-contact-tell::after {
	position: absolute;
	content: "";
	width: 1px;
	height: 144px;
	background-color: #A7660F;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
@media screen and (max-width: 750px) {
	.el-cta-more-sub-ttl {
	    font-size: 28px;
    }
    .bl-cta-more-contact-set {
	    flex-flow: column;
		align-items: center;
	    margin: 40px auto;
	    gap: 64px;
	    padding: 32px 0;
    }
    .bl-cta-more-contact-set > div {
        width: 100%;
    }
    .bl-cta-more-contact-tell::after {
	    width: 590px;
	    height: 1px;
	    top: 168px;
        right: 55px;
    }
}
/*=============================
新着
==============================*/
.bl-vertPosts {
	border-bottom: 1px solid #A7660F;
}
.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;
}
.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: #9A9A9A;
}
.el-catLabel.news {
	background: #A7660F;
}
.el-catLabel.media {
	background: #818776;
}
.el-vertPosts-ttl {
	flex: 1;
	font-size: 17px;
	font-weight: normal;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
@media screen and (max-width: 750px) {
	.bl-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 {
		font-size: 22px;
	}
	.el-catLabel {
		min-width: 128px;
		max-width: 480px;
		min-height: 42px;
		font-size: 22px;
		padding: 0 16px;
	}
	.el-vertPosts-ttl {
		font-size: 28px;
	}
}
/*=============================
aside
==============================*/
.bl-aside {
	padding-bottom: 24px;
	border: 1px solid #A7660F;
}
.el-aside-ttl {
	height: 50px;
	color: #fff;
	background: #A7660F;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
}
.bl-aside-postList {
	padding: 16px 16px 24px;
}
.bl-aside-postList > li {
	border-bottom: 1px solid #A7660F;
	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;
	color: #FFFFFF;
	font-size: 18px;
	letter-spacing: 1.08px;
	background-color: #A7660F;
	border-radius: 30px;
	display: flex;
	margin: auto;
	justify-content: center;
	padding: 10px 16px 12px;
	position: relative;
}
.bl-aside .el-btn::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;
	left: initial;
	right: 17px;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent #FFFFFF;
}
@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: 344px;
	    font-size: 28px;
	    padding: 16px 24px 18px;
		border-radius: 50px;
    }
    .bl-aside .el-btn::after {
	    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: #B2B2B2;
}
.wp-pagenavi .current {
	background: #A7660F;
}
.wp-pagenavi .extend {
	color: #B2B2B2;
	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;
	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 #A7660F;
	color: #A7660F;
}
.bl-pager-prev > a::before {
	border-width: 5px 9px 5px 0;
	border-color: transparent #A7660F transparent transparent;
}
.bl-pager-next > a {
	padding-right: 10px;
	background-color: #A7660F;
	color: #fff;
}
.bl-pager-next > a::after {
	left: initial;
	right: 17px;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent #fff;

}
/* カテゴリ */
.bl-cat {
	width: 100%;
	min-height: 56px;
	background: #F6F3EF;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
	padding: 8px 0;
}
.el-cat-ttl {
	font-size: 18px;
	flex: 0 1 140px;
	text-align: center;
	color: #A7660F;
}
.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;
	}
}
