@charset "utf-8";
/*=======================================================
基本設定
=======================================================*/
@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;
	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: 20px;
	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;
	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: #222;
}
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;
	}
	.el-btn.shamo:hover{
		opacity: 1;
	}
	.el-btn.shamo::before {
	content: '';
	position: absolute;
	background: url(../images/lp/btn-shamo.png) top center / contain no-repeat;
	width: 104px;
	height: 120px;
	top: -87px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	opacity: 0;
	z-index: -1;
	transition: opacity .2s ease, transform .2s ease; 
	}
	.el-btn.shamo:hover::before {
	opacity: 1;
	transform: translateX(-50%) translateY(0); 
	}
}
@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-all-wrapper {
	overflow: hidden;
	max-width: 2000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

/* 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-media-list {
	display: grid;
	gap: 56px;
}
.bl-media {
	display: grid;
	grid-template: auto 1fr / 496px auto;
	grid-template-areas: "imgWrapper body";
	gap: 0 32px;
}
.bl-media:has(.el-media-ttl) {
	grid-template-areas: 
		"imgWrapper title"
		"imgWrapper body"
		"btm_txt btm_txt";
}
.bl-media:has(.bl-media-btmTxt) {
	grid-template: auto 1fr auto / 496px auto;
	grid-template-areas: 
		"imgWrapper title"
		"imgWrapper body"
		"btm_txt btm_txt";
}
.bl-media-img-wrapper {
	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-btm-txt {
	grid-area: btm_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{
		/* grid-template: 1fr auto / auto 496px; */
		grid-template-areas:
			"title imgWrapper"
			"body imgWrapper";
	}
}
@media screen and (max-width: 750px) {
	/* inner */
	.ly-cont,
	.ly-cont-inner {
		width: 690px;
	}
	/* 2カラム */
	.ly-cont--col {
		gap: 80px;
	}
	.ly-cont-main,
	.ly-cont-side {
		width: 100%;
	}
	/* bl_media */
	.bl-media {
		grid-template: auto / auto;
		grid-template-areas: "imgWrapper" "body";
	}
	.bl-media.img-first{
		grid-template: auto / auto;
		grid-template-areas: "imgWrapper" "title" "body";
	}
	.bl-media:has(.el-media-ttl) {
		grid-template: auto / auto;
		grid-template-areas: "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 {
	height: 150px;
	background: url(../images/common/mv-bg.jpg) top center / cover no-repeat;
	background: #ccc; /* 仮 */
}
.el-lower-mv-ttl {
	width: 1024px;
	margin: 0 auto;
	padding-top: 56px;
	font-size: 26px;
	text-align: center;
}
/* パンくず */
.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: 16px;
}
@media screen and (max-width: 750px) {
	/* MV */
	.bl-lower-mv {
		height: 200px;
	}
	.el-lower-mv-ttl {
		width: 750px;
		font-size: 30px;
	}
	/* パンくず */
	.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-main-ttl {
	line-height: 1.5;
	margin: 0 auto 32px;
	position: relative;
}
.el-deco-ttl{
	font-weight: bold;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 16px;
	position: relative;
}
.el-deco-ttl::before,
.el-deco-ttl::after{
	content: '';
	margin-right: 8px;
}
.el-deco-ttl::after{
	margin: 0 0 0 8px;
}
.el-main-ttl .el-deco-ttl{
	font-size: 34px;
	color: #D74257;
	letter-spacing: 2.04px;
}
.el-main-ttl .el-deco-ttl::before{
	background: url(../images/lp/deco-ttl-l.svg) top center / contain no-repeat;
	width: 28px;
	height: 36px;
}
.el-main-ttl .el-deco-ttl::after{
	background: url(../images/lp/deco-ttl-r.svg) top center / contain no-repeat;
	width: 28px;
	height: 36px;
}
.el-deco-ttl.small{
	font-size: 22px;
	letter-spacing: 1.32px;
}
.el-deco-ttl.small::before{
	background: url(../images/lp/deco-ttl-l--lgreen.svg) top center / contain no-repeat;
	width: 22px;
	height: 28px;
}
.el-deco-ttl.small::after{
	background: url(../images/lp/deco-ttl-r--lgreen.svg) top center / contain no-repeat;
	width: 22px;
	height: 28px;
}
.el-deco-ttl.small.blue::before{
	background: url(../images/lp/deco-ttl-l--blue.svg) top center / contain no-repeat;
}
.el-deco-ttl.small.blue::after{
	background: url(../images/lp/deco-ttl-r--blue.svg) top center / contain no-repeat;
}
.el-deco-ttl.small.red::before{
	background: url(../images/lp/deco-ttl-l--red.svg) top center / contain no-repeat;
}
.el-deco-ttl.small.red::after{
	background: url(../images/lp/deco-ttl-r--red.svg) top center / contain no-repeat;
}
.el-deco-ttl.middle{
	font-size: 26px;
	letter-spacing: 1.56px;
	margin-bottom: 24px;
}
.el-deco-ttl.middle::before{
	background: url(../images/lp/deco-ttl-l--lgreen.svg) top center / contain no-repeat;
	width: 30px;
	height: 40px;
}
.el-deco-ttl.middle::after{
	background: url(../images/lp/deco-ttl-r--lgreen.svg) top center / contain no-repeat;
	width: 30px;
	height: 40px;
}
.el-deco-ttl.middle.blue::before{
	background: url(../images/lp/deco-ttl-l--blue.svg) top center / contain no-repeat;
}
.el-deco-ttl.middle.blue::after{
	background: url(../images/lp/deco-ttl-r--blue.svg) top center / contain no-repeat;
}
.el-deco-ttl.middle.red::before{
	background: url(../images/lp/deco-ttl-l--red.svg) top center / contain no-repeat;
}
.el-deco-ttl.middle.red::after{
	background: url(../images/lp/deco-ttl-r--red.svg) top center / contain no-repeat;
}
.el-toggle-ttl{
	font-size: 26px;
	color: #fff;
	text-align: center;
	line-height: 1.5;
	letter-spacing: 1.56px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F4AA02;
	padding: 14px 64px 15px;
	margin-top: 80px;
	position: relative;
	cursor: pointer;
}
.el-toggle-ttl::after{
	content: '▼';
	position: absolute;
	line-height: 1;
	top: 51%;
	transform: translateY(-50%);
	right: 24px;
}
.el-toggle-ttl.open::after{
	content: '▲';
}
.bl-toggle-cont{
	display: none;
	padding: 48px;
	background: #fff;
	border: 2px solid #F4AA02;
	border-top: none;
	border-radius: 0px 0px 32px 32px;
}
.el-toggle-ttl.blue{
	background: #3AAAE1;
}
.el-toggle-ttl.blue + .bl-toggle-cont{
	border: 2px solid #3AAAE1;
}
.el-toggle-ttl.pink{
	background: #F88496;
}
.el-toggle-ttl.pink + .bl-toggle-cont{
	border: 2px solid #F88496;
}
.el-toggle-ttl.green{
	background: #3CB407;
}
.el-toggle-ttl.green + .bl-toggle-cont{
	border: 2px solid #3CB407;
}
.el-toggle-ttl.red{
	background: #D74257;
}
.el-toggle-ttl.red + .bl-toggle-cont{
	border: 2px solid #D74257;
}
.el-toggle-ttl.turquoise{
	background: #009095;
}
.el-toggle-ttl.turquoise + .bl-toggle-cont{
	border: 2px solid #009095;
}
/* 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_num-list */
.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; */
	padding-left: 0;
	counter-increment: cnt;
}
.bl-num-list.bl-num-list--brackets > li::before {
	content: "(" counter(cnt) ") ";
	position: relative;
}
.bl-aiu-list > li::before{
	content: 'ア.';
}
.bl-aiu-list > li:nth-of-type(2)::before{
	content: 'イ.';
}
.bl-aiu-list > li:nth-of-type(3)::before{
	content: 'ウ.';
}
/* el_btn */
.el-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-bottom: 2px;
}
.el-btn.more{
	font-size: 24px;
	letter-spacing: 0.96px;
	background: #F4AA02;
	color: #fff;
	font-weight: bold;
	line-height: 1.5;
	padding: 16px 84px 17px 48px;
	display: block;
	width: fit-content;
	margin: 96px auto 0;
	border-radius: 80px;
}
.el-btn.more::after{
	content: '';
	position: absolute;
	background: url(../images/common/btn-arrow.svg) top center / contain no-repeat;
	width: 28px;
	height: 28px;
	top: 50%;
	transform: translateY(-50%);
	right: 48px;
}
/* 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{
	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;
}
.el-txt.small{
	font-size: 15px;
}
.el-txt.big{
	font-size: 32px;
}
@media screen and (max-width: 750px) {
	.el-main-ttl .el-deco-ttl{
		font-size: 36px;
		letter-spacing: 2.16px;
	}
	.el-deco-ttl{
		font-size: 30px;
	}
	/* .el-deco-ttl::after{
		width: 44px;
		height: 56px;
		margin-left: 8px;
	} */
	/* .el-deco-ttl::before{
		background: url(../images/lp/deco-ttl-l--lgreen02.svg) top center / contain no-repeat;
		width: 44px;
		height: 56px;
	}
	.el-deco-ttl::after{
		background: url(../images/lp/deco-ttl-r--lgreen02.svg) top center / contain no-repeat;
		width: 44px;
		height: 56px;
	}
	.el-deco-ttl.blue::before{
		background: url(../images/lp/deco-ttl-l--blue02.svg) top center / contain no-repeat;
	}
	.el-deco-ttl.blue::after{
		background: url(../images/lp/deco-ttl-r--blue02.svg) top center / contain no-repeat;
	}
	.el-deco-ttl.red::before{
		background: url(../images/lp/deco-ttl-l--red02.svg) top center / contain no-repeat;
	}
	.el-deco-ttl.red::after{
		background: url(../images/lp/deco-ttl-r--red02.svg) top center / contain no-repeat;
	} */
	.el-deco-ttl.small{
		font-size: 30px;
		letter-spacing: 1.8px;
	}
	.el-deco-ttl.small::before,
	.el-deco-ttl.small::after{
		background: url(../images/lp/deco-ttl-l--lgreen02.svg) top center / contain no-repeat;
		width: 44px;
		height: 56px;
	}
	.el-deco-ttl.small::after{
		background: url(../images/lp/deco-ttl-r--lgreen02.svg) top center / contain no-repeat;
	}
	.el-deco-ttl.small.blue::before{
		background: url(../images/lp/deco-ttl-l--blue02.svg) top center / contain no-repeat;
	}
	.el-deco-ttl.small.blue::after{
		background: url(../images/lp/deco-ttl-r--blue02.svg) top center / contain no-repeat;
	}
	.el-deco-ttl.small.red::before{
		background: url(../images/lp/deco-ttl-l--red02.svg) top center / contain no-repeat;
	}
	.el-deco-ttl.small.red::after{
		background: url(../images/lp/deco-ttl-r--red02.svg) top center / contain no-repeat;
	}
	.el-deco-ttl.middle{
		font-size: 32px;
	}
	.el-deco-ttl.middle::before{
		width: 30px;
		height: 40px;
	}
	.el-deco-ttl.middle::after{
		width: 30px;
		height: 40px;
	}
	.el-toggle-ttl{
		font-size: 34px;
		padding: 8px 64px 9px;
		margin-top: 56px;
	}
	.bl-toggle-cont{
		padding: 40px;
	}
	/* el_btn */
	.el-btn.more{
		font-size: 30px;
		letter-spacing: 1.8px;
		padding: 22px 108px 24px 48px;
	}
	.el-btn.more::after{
		width: 44px;
		height: 44px;
		right: 48px;
	}
	/* el_label */
	.el-label {
	}
	/* ※ */
	.el-att {
		font-size: 22px;
	}
	.el-txt.small{
		font-size: 22px;
	}
	.el-txt.big{
		font-size: 34px;
	}
}

/*=============================
ヘルプタグ
==============================*/
/* ユニット */
.hp-unit {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
/* 明朝体 */
.hp-mincho {
	font-family: "noto-serif-jp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: bold;
}
/* bold */
.hp-bold {
	font-weight: bold !important;
}
/* italic */
.hp-italic {
	transform: skewX(-10deg);
}
/* 打ち消し線 */
.hp-strikethrough {
	padding: 3px 0 0 8px;
	background-image: linear-gradient(#222, #222);
	background-position: 0 50%;
	background-size: 100% 1px;
	background-repeat: repeat-x;
	letter-spacing: 0;
}
/* opacity1 */
.hp-opacity1 {
	opacity: 1 !important;
}
/* 電話リンク */
.hp-tel {
	pointer-events: none;
}
/* アクセントカラー */
.hp-color--orange {
	color: #ee9e21 !important;
}
/* 影付き角丸白ボックス */
.hp-shadowRadiusWhiteBox {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.35);
}
.hp-scroll-y {
	overflow-y: scroll;
	/*スクロールバー非表示（IE・Edge）*/
	-ms-overflow-style: none;
	/*スクロールバー非表示（Firefox）*/
	scrollbar-width: none;
}
/*スクロールバー非表示（Chrome・Safari）*/
.hp-scroll-y::-webkit-scrollbar {
	display: none;
}
@media screen and (max-width: 750px) {
	/* ユニット */
	.hp-unit {
		display: block;
	}
	/* 電話リンク */
	.hp-tel {
		pointer-events: auto;
	}
}

/*=============================
header
==============================*/
.ly-main {
	/* padding-top: 140px; */
}
.ly-head {
	width: 100%;
	/* padding: 24px 0 24px; */
	height: 100px;
	/* background: #fff; */
	/* position: fixed; */
	top: 0;
	left: 0;
	z-index: 100;
}
.bl-head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
/* ロゴ */
.bl-head-logo {
	width: 164px;
	height: 60px;
	position: relative;
}
.bl-head-logo::before{
	content: '';
	position: absolute;
	background: url(../images/lp/shamo01.png) top center / contain no-repeat;
	width: 58px;
	height: 72px;
	top: -7px;
	right: -72px;
}
.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;
}
/* ボタンエリア */
.bl-head-btn-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
}
.bl-head-btn {
	width: 200px;
	height: 48px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* ナビ */
.bl-gloNav {
	width: 100%;
	background: #fff;
	z-index: 100;
}
.bl-gloNav-inner {
	width: 1024px;
	margin: 0 auto;
	height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl-gloNav-inner > li {
	width: 100%;
	height: 100%;
	border-left: 1px solid #ccc;
}
.bl-gloNav-inner > li:last-of-type {
	border-right: 1px solid #ccc;
}
.bl-gloNav-inner > li > a {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 2px;
}
/* スマホ用非表示 */
.bl-burger {
	display: none;
}

@media screen and (max-width: 750px) {
	.ly-main {
		/* padding-top: 130px; */
	}
	.ly-head {
		/* height: 130px; */
	}
	/* .ly-head::after {
		content: "";
		background: #fff;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		box-shadow: 0 0 16px rgb(0 0 0 / 32%);
	} */
	.ly-head-inner {
		width: 100%;
		z-index: 110;
		padding-left: 30px;
	}
	/* ハンバーガーボタン */
	.bl-burger {
		width: 130px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.bl-burger-inner {
		display: block;
		width: 104px;
		height: 104px;
		background: #222;
		position: relative;
	}
	.bl-burger-bar {
		width: 72px;
		height: 4px;
		background: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	.bl-burger-bar:first-child {
		top: 16px;
		transition: transform 0.3s ease;
	}
	.bl-burger-bar:nth-child(2) {
		top: 34px;
		transition: opacity 0.3s ease;
	}
	.bl-burger-bar:nth-child(3) {
		bottom: 48px;
		transition: transform 0.3s ease;
	}
	.bl-burger.is-active .bl-burger-bar:first-child {
		transform: rotate(-45deg) translate(-51%, -11px);
		transition: transform 0.3s ease;
	}
	.bl-burger.is-active .bl-burger-bar:nth-child(2) {
		opacity: 0;
		transition: opacity 0.3s ease;
	}
	.bl-burger.is-active .bl-burger-bar:nth-child(3) {
		transform: rotate(45deg) translate(-50%, 13px);
		transition: transform 0.3s ease;
	}
	.bl-burger-txt {
		font-size: 24px;
		color: #fff;
		width: 100%;
		position: absolute;
		left: 0;
		bottom: 10px;
	}
	/* ナビ */
	.bl-gloNav {
		width: 100%;
		height: 100%;
		background: rgba(0 0 0 /0.9);
		position: fixed;
		top: 130px;
		left: 0;
		z-index: 90;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
	}
	.bl-gloNav.is-active {
		transform: translateX(0);
		transition: transform 0.3s ease-in-out;
	}
	.bl-gloNav-inner {
		padding: 40px 20px 0;
		width: 100%;
		height: 100%;
		flex-direction: column;
		justify-content: flex-start;
		overflow: scroll;
	}
	.bl-gloNav-inner > li {
		width: 100%;
		height: auto;
		border-left: none;
		border-bottom: 2px solid #fff;
	}
	.bl-gloNav-inner > li:last-of-type {
		border-right: none;
	}
	.bl-gloNav-inner > li > a {
		padding: 40px 0;
		font-size: 30px;
		color: #fff;
	}
	/* 閉じるボタン */
	.bl-gloNav-btn {
		width: 100%;
		height: 80px;
		font-size: 30px;
		background: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}
	.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: 32px;
	}
}

/*=============================
footer
=============================*/
.ly-foot {
	background: url(../images/common/footer-bg.png) top center / cover no-repeat;
	margin-top: -320px;
	z-index: 100;
}
.ly-foot-inner {
	padding: 310px 0 180px;
}
.ly-foot-inner::after{
	content: '';
	position: absolute;
	background: url(../images/lp/shamo03.png) top center / contain no-repeat;
	width: 82px;
	height: 108px;
	right: 238px;
	bottom: 180px;
}
/* ロゴ */
.bl-foot-logo {
	display: block;
	width: 164px;
	margin: 0 auto 24px;
}
.bl-foot .el-txt{
	font-weight: bold;
}
.bl-foot-add {
	font-size: 17px;
	text-align: center;
	letter-spacing: 0.68px;
	margin: 32px auto 0;
}
.bl-tel-fax{
	display: flex;
	justify-content: center;
	font-size: 17px;
	letter-spacing: 0.68px;
}
.bl-tel-fax > div{
	display: flex;
}
.bl-tel-fax > div:not(:last-of-type)::after{
	content: '\00A0/\00A0';
}
.bl-tel-fax > div > dt{
	/* position: relative; */
}
.bl-tel-fax > div > dt::after{
	content: '：';
}
.bl-tel-fax > div > dd{
	
}
/* sns */
.bl-foot .bl-sns-list{
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-top: 24px;
}
.bl-foot .bl-sns-item{
	width: 32px;
}
.bl-foot .bl-sns-item > a{
	display: block;
}
/* コピーライト */
.bl-foot-copyright {
	width: 100%;
	height: 32px;
	background: #3CB407;
	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: 170px;
	height: 160px;
	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;
	border-radius: 80px;
} */
.bl-subsidy-btn {
	width: 1024px;
	height: 0;
	margin: 0 auto;
	text-align: right;
	position: relative;
}
.bl-subsidy-btn a {
	width: 170px;
	height: 160px;
	z-index: 900;
}
.bl-subsidy-btn img {
	opacity: 0;
}
.bl-subsidy-btn .fade img {
	transition: all 0.5s ease-in-out;
}
.bl-subsidy-btn .in img {
	opacity: 1;
	cursor: pointer;
	border-radius: 80px;
}
@media screen and (max-width: 1400px) {
	/* ページトップボタン */
	/* .bl-pagetop {
		width: 100%;
	}
	.bl-pagetop span {
		right: 30px;
	} */
	.bl-subsidy-btn {
		width: 100%;
	}
	.bl-subsidy-btn a {
		right: 30px;
	}
}
@media screen and (max-width: 750px) {
	/* footer */
	.ly-foot{
		background: url(../images/common/footer-bg-sp.png) top center / cover no-repeat;
		margin-top: -130px;
	}
	.bl-foot {
		padding: 200px 0 280px;
	}
	.ly-foot-inner {
		width: 100%;
		height: auto;
	}
	.ly-foot-inner::after{
		content: '';
		position: absolute;
		background: url(../images/lp/shamo03.png) top center / contain no-repeat;
		width: 100px;
		height: 132px;
		left: 50%;
		transform: translateX(-50%);
		bottom: 106px;
	}
	/* ロゴ */
	.bl-foot-logo {
		width: 228px;
		margin: 0 auto 24px;
	}
	.bl-foot .el-txt{
		font-size: 36px;
		line-height: 1.45;
		letter-spacing: 2.16px;
	}
	/* 住所 */
	.bl-foot-add {
		font-size: 28px;
		font-weight: normal;
		text-align: center;
	}
	.bl-tel-fax{
		font-size: 28px;
	}
	/* sns */
	.bl-foot .bl-sns-list{
		margin-top: 32px;
	}
	.bl-foot .bl-sns-item{
		width: 56px;
	}
	/* コピーライト */
	.bl-foot-copyright {
		height: 50px;
	}
	.bl-foot-copyright small {
		font-size: 16px;
	}
	/* ページトップボタン */
	/* .bl-pagetop {
		width: 750px;
		z-index: 90;
	}
	.bl-pagetop span {
		width: 170px;
		height: 160px;
		border-radius: 117px;
		right: 25px;
		bottom: 25px;
	} */
	.bl-subsidy-btn {
		width: 750px;
		z-index: 90;
	}
	.bl-subsidy-btn a {
		width: 170px;
		height: 160px;
		border-radius: 117px;
		right: 25px;
		bottom: 25px;
	}
}