@charset "utf-8";
/*
Author: あそびラボ
Version: 1.3
*/
/*=======================================================
基本設定
=======================================================*/
@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:hover,
	.hp_hover:hover {
		opacity: 0.7;
		transition: all 0.3s ease;
	}
	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;
}
/* 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: flex;
	flex-wrap: wrap;
	gap: 56px;
}
.bl_media {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	position: relative;
}
.bl_media__rev {
	flex-direction: row-reverse;
}
.bl_media_imgWrapper {
	flex: 0 1 496px;
}
.bl_media_body {
	flex: 1;
}
.bl_media_body > *:not(:first-of-type) {
	margin-top: 24px;
}
.bl_media_ttl {
	font-size: 26px;
	line-height: 1.4;
	padding-bottom: 28px;
	margin-bottom: 16px;
	position: relative;
}
.bl_media_ttl::after {
	content: "";
	position: absolute;
	background: url(./images/common/media_ttl_line.svg) top center / contain no-repeat;
	width: 496px;
	height: 11px;
	bottom: 0;
	left: 0;
}
/* bl_card */
.bl_cardUnit {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}
.bl_card {
	width: 320px;
	position: relative;
}
/* bl_btnList */
.bl_btnList {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}
@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_imgWrapper {
		flex: 0 1 100%;
	}
	.bl_media_ttl {
		font-size: 40px;
		text-align: center;
		padding-bottom: 38px;
		margin-bottom: 24px;
	}
	.bl_media_ttl::after {
		width: 690px;
		height: 14px;
	}
	/* bl_card */
	.bl_cardUnit {
		gap: 48px;
	}
	.bl_card {
		width: 100%;
	}
}
/*=============================
下層MV - パンくず
==============================*/
/* MV */
.bl_lower_mv {
	height: 400px;
	background: url(./images/common/lower_mv_bg.png) top center / cover no-repeat;
}
.bl_lower_mv_ttl {
	width: 1024px;
	margin: 0 auto;
	/* padding-top: 156px; */
	padding: 156px 0 30px 0;
	/* line-height: 1.38; */
	color: #fff;
	font-size: 24px;
	text-align: center;
	position: relative;
}
.bl_lower_mv_ttl::after {
	content: "";
	position: absolute;
	font-size: 18px;
	color: #bea34d;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
/* パンくず */
.bl_breadcrumbs {
	margin-top: -60px;
}
.bl_breadcrumbs_inner {
	width: 1024px;
	margin: 0 auto;
	padding-top: 8px;
	display: flex;
	align-items: center;
}
.bl_breadcrumbs_inner > li {
	font-size: 13px;
}
.bl_breadcrumbs_inner > li:first-of-type ~ li::before {
	content: ">";
	margin: 0 7px;
}
.bl_breadcrumbs_inner .home {
	display: block;
	width: 16px;
	padding-bottom: 3px;
}
@media screen and (max-width: 750px) {
	/* MV */
	.bl_lower_mv {
		height: 400px;
		background: url(./images/common/lower_mv_bg_sp.png) top center / cover no-repeat;
	}
	.bl_lower_mv_ttl {
		width: 750px;
		font-size: 34px;
		padding: 149px 0 44px;
	}
	.bl_lower_mv_ttl::after {
		font-size: 28px;
	}
	/* パンくず */
	.bl_breadcrumbs {
		margin-top: 0;
	}
	.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 {
	font-size: 32px;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 40px;
	position: relative;
}
.el_sec_mainTtl > .el_sTtl {
	display: table;
	background: #0d4255;
	font-size: 18px;
	font-family: initial;
	color: #fff;
	padding: 4px 10px 2px;
	margin: 0 auto 12px;
}
.el_deco_ttl {
	display: flex;
	justify-content: center;
	align-items: center;
}
.el_deco_ttl::before,
.el_deco_ttl::after {
	content: "";
	background: url(./images/common/deco_ttl_left.svg) top center / contain no-repeat;
	width: 86px;
	height: 40px;
	margin-right: 20px;
}
.el_deco_ttl::after {
	background: url(./images/common/deco_ttl_right.svg) top center / contain no-repeat;
	margin: 0 0 0 20px;
}
.el_box_ttl {
	color: #fff;
	background: url(./images/common/box_ttl_bg.svg) top center / contain no-repeat;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2px;
}
.el_sec_sTtl {
	font-size: 28px;
	text-align: center;
	padding-bottom: 20px;
	margin-bottom: 48px;
	position: relative;
}
.el_sec_sTtl::after {
	content: "";
	position: absolute;
	width: 80px;
	height: 4px;
	border-bottom: 4px solid;
	border-image: linear-gradient(90deg, #225365 40px, #8e2f3f 40px);
	border-image-slice: 1;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
/* bl_bulletList */
.bl_bulletList > li {
	padding-left: 1em;
	position: relative;
}
.bl_bulletList > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}
.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: "⑤";
}
/* el_btn */
.el_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-bottom: 2px;
	font-size: 18px;
	font-weight: bold;
}
.el_btn::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent #fff;
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
}
.el_mainBtn {
	color: #fff;
	width: 344px;
	height: 72px;
	background: url(./images/common/mainBtn_bg.svg) top center / contain no-repeat;
	margin: 40px auto 0;
}
.el_mainBtn::after {
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent #fff;
	right: 36px;
}
.el_mainBtn__white {
	color: #7c6522;
	background: url(./images/common/mainBtn_bg__white.svg) top center / contain no-repeat;
}
.el_mainBtn__white::after {
	border-color: transparent transparent transparent #7c6522;
}
/* el_label */
.el_label {
	background: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2px;
}
/* ※ */
.el_att {
	padding-left: 1em;
	position: relative;
}
.el_att::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
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: 44px;
		margin-bottom: 40px;
	}
	.el_sec_mainTtl > .el_sTtl {
		font-size: 32px;
		padding: 2px 12px 3px;
		margin: 0 auto 24px;
	}
	.el_deco_ttl {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.el_deco_ttl::before,
	.el_deco_ttl::after {
		width: 86px;
		height: 40px;
	}
	.el_box_ttl {
		background: url(./images/common/box_ttl_bg_sp.svg) top center / contain no-repeat;
		height: 88px;
	}
	.el_sec_sTtl {
		font-size: 40px;
		padding-bottom: 30px;
		margin-bottom: 56px;
	}
	.el_sec_sTtl::after {
		width: 130px;
		height: 6px;
		border-bottom: 6px solid;
		border-image: linear-gradient(90deg, #225365 64px, #8e2f3f 64px);
		border-image-slice: 1;
	}
	/* el_btn */
	.el_btn {
		font-size: 30px;
	}
	.el_btn::after {
		border-width: 10px 0 10px 18px;
		/* right: 16px; */
	}
	.el_mainBtn {
		width: 630px;
		height: 132px;
		margin: 56px auto 0;
	}
	.el_mainBtn::after {
		/* border-width: 5px 0 5px 9px; */
		/* border-color: transparent transparent transparent #7C6522; */
		right: 70px;
	}
	/* el_label */
	.el_label {
	}
}
/*=============================
ヘルプタグ
==============================*/
/* ユニット */
.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__gold {
	color: #e7c65d !important;
	font-weight: bold;
}
.hp_color__red {
	color: #9a162b !important;
	font-weight: bold;
}
/* 影付き角丸白ボックス */
.hp_shadowRadiusWhiteBox {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 750px) {
	/* ユニット */
	.hp_unit {
		display: block;
	}
	/* 電話リンク */
	.hp_tel {
		pointer-events: auto;
	}
}
/*=============================
header
==============================*/
.ly_main {
	/* padding-top: 140px; */
}
.ly_head {
	width: 100%;
	height: 78px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
.ly_head.is_sticky {
	background: #0d4255;
	border-bottom: 2px solid #bea24d;
}
.bl_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* flex-wrap: wrap; */
}
.bl_head_leftArea {
	/* display: flex; */
	/* align-items: center; */
	/* gap: 24px; */
	/* position: relative; */
	z-index: 110;
}
/* ロゴ */
.bl_head_logo {
	font-size: 20px;
	color: #fff;
}
.bl_head_logo_e-polation {
	display: none;
}
.bl_head_logo > a {
	display: block;
}
/* ヘッダー右側エリア */
.bl_head_rightArea {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	display: none;
}
/* ボタンエリア */
.bl_head_btnList {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
}
.bl_head_btn {
	width: 192px;
	height: 46px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: url(./images/common/head_ctaBtn_bg.svg) top center / contain no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 2px 34px;
	position: relative;
}
.bl_head_btn::before {
	content: "";
	position: absolute;
	background: url(./images/common/icon_mail.svg) top center / contain no-repeat;
	width: 20px;
	height: 14px;
	top: 50%;
	left: 26px;
	transform: translateY(-50%);
}
.bl_head_btn.sp {
	display: none;
}
/* ナビ */
.bl_gloNav {
	/* width: 100%; */
	z-index: 100;
}
.bl_gloNav_inner {
	/* width: 1024px; */
	margin: 0 auto;
	/* height: 40px; */
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 56px;
}
.bl_gloNav_inner > li {
	/* width: 100%; */
	position: relative;
}
.bl_gloNav_inner > li:not(:first-of-type)::before {
	content: "";
	position: absolute;
	background: url(./images/common/icon_diamond.svg) top center / contain no-repeat;
	width: 14px;
	height: 18px;
	top: 51%;
	left: -50.5%;
	transform: translateY(-50%);
}
.bl_gloNav_inner > li:last-of-type::before {
	content: none;
}
.bl_gloNav_inner > li > a {
	color: #fff;
	font-weight: bold;
	position: relative;
}
/* スマホ用非表示 */
.bl_burger {
	display: none;
}
@media screen and (max-width: 750px) {
	.ly_main {
		/* padding-top: 130px; */
	}
	.ly_head {
		height: 120px;
	}
	.ly_head.is_sticky::after {
		/* content: none; */
		content: "";
		background: #0d4255;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		box-shadow: 0 0 16px rgb(0 0 0 / 32%);
	}
	.ly_head_inner {
		width: 100%;
		/* z-index: 130; */
		padding-left: 30px;
	}
	/* ロゴ */
	.bl_head_logo {
		font-size: 34px;
	}
	/* ヘッダー右側エリア */
	.bl_head_rightArea {
		height: 100%;
		display: flex;
	}
	/* ボタンエリア */
	.bl_head_btnList {
		gap: 0;
		height: 100%;
	}
	.bl_head_btnItem {
		height: 100%;
	}
	.bl_head_btn.sp {
		width: 184px;
		height: 120px;
		display: flex;
		background: url(./images/common/head_ctaBtn_bg_sp.svg) top center / contain no-repeat;
		font-size: 36px;
		padding-left: 0;
		z-index: 110;
	}
	.bl_head_btn.sp::before {
		content: none;
	}
	.bl_head_btn.pc {
		display: none;
	}
	.bl_head_btnItem.pc {
		display: none;
	}
	/* ハンバーガーボタン */
	.bl_burger {
		width: 120px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 130;
	}
	.bl_burger_inner {
		display: block;
		width: 120px;
		height: 120px;
		background: #0d4255;
		position: relative;
	}
	.bl_burger_bar {
		width: 84px;
		height: 4px;
		background: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	.bl_burger_bar:first-child {
		top: 20px;
		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: 52px;
		transition: transform 0.3s ease;
	}
	.bl_burger.is_active .bl_burger_bar:first-child {
		transform: rotate(-28deg) translate(-60%, 4px);
		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(28deg) translate(-52%, 5px);
		transition: transform 0.3s ease;
	}
	.bl_burger_txt {
		width: 84px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 9px;
	}
	/* ナビ */
	.bl_gloNav {
		width: 100%;
		height: 100%;
		background: url(./images/common/nav_bg.jpg) top center / cover no-repeat;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 120;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
		padding-top: 0;
	}
	.is_sticky .bl_gloNav {
		background: url(./images/common/nav_bg.jpg) top center / cover no-repeat;
	}
	.bl_gloNav.is_active {
		transform: translateX(0);
		transition: transform 0.3s ease-in-out;
	}
	.bl_gloNav_inner {
		padding: 196px 20px 0;
		width: 100%;
		flex-direction: column;
		justify-content: flex-start;
		gap: 56px;
		overflow: scroll;
	}
	.bl_gloNav_inner > li:not(:first-of-type)::before {
		content: none;
	}
	.bl_gloNav_inner > li:last-of-type {
		border-right: none;
	}
	.bl_gloNav_inner > li > a {
		font-size: 32px;
		color: #fff;
	}
	/* 閉じるボタン */
	.bl_gloNav_btn {
		width: 240px;
		height: 80px;
		font-size: 34px;
		background: #9d8237;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		padding: 0 0 2px 40px;
		margin: 56px auto 0;
	}
	.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: 48px;
	}
}
/*=============================
footer
=============================*/
.ly_main {
	min-height: calc(100vh - 159px); /* pxはfooterの高さ */
}
.ly_foot {
	background: #f8f5ea;
	border-top: 2px solid #bea24d;
}
.ly_foot_inner {
	padding: 40px 0;
}
.bl_foot {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
/* ロゴ */
.bl_foot_logo {
	font-size: 28px;
	font-weight: bold;
	color: #0d4255;
	padding-bottom: 2px;
}
/* 住所など */
.bl_foot_add {
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.53;
	color: #fff;
}
/* ナビ */
.bl_foot_gloNav {
	width: 490px;
}
.bl_foot_gloNav_inner {
	display: flex;
	flex-wrap: wrap;
	gap: 26px 28px;
}
.bl_foot_gloNav_inner > li {
	padding-left: 18px;
	font-size: 15px;
	letter-spacing: 0.1em;
	position: relative;
}
.bl_foot_gloNav_inner > li::before {
	content: "";
	position: absolute;
	background: url(./images/common/icon_diamond.svg) top center / contain no-repeat;
	width: 14px;
	height: 18px;
	top: 3.5px;
	left: -4px;
}
/* コピーライト */
.bl_foot_copyright {
	width: 100%;
	height: 32px;
	background: #0d4255;
	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: 72px;
	height: 72px;
	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 - 478px); /* pxはfooterの高さ */
	}
	/* footer */
	.ly_foot {
		border-top: none;
	}
	.bl_foot {
		gap: 40px;
	}
	.ly_foot_inner {
		width: 100%;
		height: auto;
		padding: 0 0 40px;
	}
	.bl_foot_leftArea {
		order: 2;
		width: 100%;
	}
	/* ロゴ */
	.bl_foot_logo {
		margin: 0 auto;
		order: 2;
		font-size: 34px;
		text-align: center;
	}
	/* 住所とか */
	.bl_foot_add {
		font-size: 24px;
		font-weight: normal;
		text-align: center;
	}
	/* ナビ */
	.bl_foot_gloNav {
		width: 100%;
		order: 1;
	}
	.bl_foot_gloNav_inner {
		gap: 0;
	}
	.bl_foot_gloNav_inner > li {
		width: 50%;
		height: 100px;
		font-size: 28px;
		font-weight: normal;
		border-bottom: 2px solid #bfa14d;
		padding-left: 0;
	}
	/* .bl_foot_gloNav_inner > li:first-of-type{
		width: 100%;
		border-right: none!important;
	} */
	.bl_foot_gloNav_inner > li::before {
		border-width: 9px 0 9px 14px;
		width: 19px;
		height: 23px;
		top: 50%;
		transform: translateY(-50%);
		left: 30px;
	}
	/* .bl_foot_gloNav_inner > li:first-of-type::before{
		left: 308px
	} */
	.bl_foot_gloNav_inner > li:nth-child(-n + 6) {
		border-right: 2px solid #bfa14d;
	}
	.bl_foot_gloNav_inner > li:first-child {
		order: 1;
	}
	.bl_foot_gloNav_inner > li:nth-child(2) {
		order: 3;
	}
	.bl_foot_gloNav_inner > li:nth-child(3) {
		order: 5;
	}
	.bl_foot_gloNav_inner > li:nth-child(4) {
		order: 2;
	}
	.bl_foot_gloNav_inner > li:nth-child(5) {
		order: 4;
	}
	.bl_foot_gloNav_inner > li:nth-child(6) {
		order: 6;
	}
	.bl_foot_gloNav_inner > li > a {
		width: 100%;
		height: 100%;
		padding: 0 0 3px 56px;
		display: flex;
		align-items: center;
	}
	/* .bl_foot_gloNav_inner > li:first-of-type > a {
		padding-left: 340px;
	} */
	/* コピーライト */
	.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_vertPosts {
	border-bottom: 1px solid #bfbfbf;
}
.bl_vertPosts > a {
	padding-bottom: 16px;
	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: #5e5e5e;
}
.el_catLabel.news {
	background: #41b3b2;
}
.el_catLabel.media {
	background: #ac96cf;
}
.bl_vertPosts_ttl {
	flex: 1;
	font-size: 17px;
	font-weight: normal;
}
@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;
	}
	.bl_vertPosts_ttl {
		font-size: 28px;
	}
}
/*=============================
aside
==============================*/
.bl_aside {
	padding-bottom: 25px;
	border: 1px solid #a79178;
}
.bl_aside_ttl {
	height: 50px;
	color: #fff;
	background: #464646;
	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;
}
.bl_aside_postList > li > a {
	padding: 16px 25px;
	font-size: 16px;
	display: block;
}
@media screen and (max-width: 750px) {
	/* aside */
	.bl_aside {
		padding-bottom: 40px;
	}
	.bl_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;
	}
}
/*=============================
ページナビ
==============================*/
/* wp-pagenavi */
.wp-pagenavi {
	font-family: "noto-serif-jp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.wp-pagenavi > * {
	font-size: 17px;
	font-weight: bold;
	color: #fff;
	border-radius: 5px;
	min-width: 30px;
	height: 32px;
	padding: 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0;
}
.wp-pagenavi a {
	background: #d4d4d4;
}
.wp-pagenavi .current {
	background: #7C6522;
}
.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;
	border-radius: 20px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 1px;
}
.bl_pager_prev > a::before,
.bl_pager_next > a::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-top: auto;
	margin-bottom: auto;
	border-style: solid;
	position: absolute;
	top: 1px;
	left: 17px;
	bottom: 0;
}
.bl_pager_prev > a {
	padding-right: 10px;
	border: 1px solid #808080;
	color: #808080;
}
.bl_pager_prev > a::before {
	left: initial;
	right: 17px;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent #808080;
}
.bl_pager_next > a {
	padding-left: 10px;
	background: #0e5351;
}
.bl_pager_next > a::after {
	border-width: 5px 9px 5px 0;
	border-color: transparent #fff transparent transparent;
}
@media screen and (max-width: 750px) {
	/* wp-pagenavi */
	.wp-pagenavi {
		margin-top: 50px;
	}
	.wp-pagenavi > * {
		font-size: 28px;
		min-width: 40px;
		height: 48px;
		padding-bottom: 2px;
	}
	.wp-pagenavi .extend {
		display: none;
	}
	/* 前へ 次へ */
	.bl_pager {
		height: 60px;
		margin-top: 60px;
	}
	.bl_pager_link > a {
		width: 230px;
		height: 60px;
		border-radius: 30px;
		font-size: 26px;
	}
	.bl_pager_prev > a {
		padding-right: 20px;
	}
	.bl_pager_prev > a::before {
		border-width: 7.5px 0 7.5px 11px;
	}
	.bl_pager_next > a {
		padding-left: 20px;
	}
	.bl_pager_next > a::after {
		border-width: 7.5px 0 7.5px 11px;
		border-width: 7.5px 11px 7.5px 0;
	}
}
/*=======================================================
cta
=======================================================*/
.bl_products_imgWrapper{
	border: 1px solid #707070;
}
.bl_products_imgWrapper > img{
	object-fit: cover;
}
.bl_products_imgWrapper.no_img{
	height: 330px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bl_products_imgWrapper.no_img > img{
	width: 80%;
}
.bl_products_ttl{
	font-size: 17px;
	margin-top: 16px;
	line-height: 1.32;
}
.bl_products_ttl > span{
	display: block;
}
.bl_products_item .bl_price{
	margin-top: 16px;
}
@media screen and (max-width: 750px) {
	.bl_products_imgWrapper.no_img{
		height: 470px;
	}
	.bl_products_ttl{
		font-size: 28px;
		text-align: center;
		margin-top: 24px;
	}
	.bl_popular_item .bl_price{
		margin-top: 24px;
		font-size: 28px;
	}
}

