@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS
/*----------------------------------------------------------*/
:root {
	--main: #0080d9; /*rgba(0,128,217,1)*/
	--sub: #00a9d5;
	--base: #1a335b;
	--text: #323232;
	--act: #ffa500;
	--gray: #eff2f1;
	--green: #3ca53c;
	--gradient: linear-gradient(to right, #0080d9 0%, #00a9d5 100%);
	--gradient2: linear-gradient(to right, #d46630 0%, #ff9166 100%);
	--gradient3: linear-gradient(to right, #388075 0%, #54b0a5 100%);
	--font-jp: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-en: "Lexend Deca", sans-serif;
	--font-all: "Lexend Deca", YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--ease: all 0.3s ease;
}
*{
	margin: 0;
	padding: 0;
}
*:focus {
	outline: none;
}
html{
	box-sizing:border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
	background: #fff;
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}
html {
visibility: hidden;
}
html.wf-active {
visibility: visible;
}
::placeholder {
	color: #ccc;
}
body {
	font-family: var(--font-jp);
	font-style: normal;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	overflow-x: hidden;
	counter-reset: count;
	animation: fadeIn 2.5s ease 0s 1 normal;
	letter-spacing: normal;
	color: var(--text);
}

/*構成*/
#all_wrap {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
}
.widget {
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*構成*/
	#all_wrap {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
		padding-top: 50px;
	}
	.l-footer {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.widget {
		margin-bottom: 0;
	}
}


.content a { color: var(--main); font-weight: 500; text-decoration: underline; transition: var(--ease); }
.content a:hover { color: var(--sub); font-weight: 500; text-decoration: none; transition: var(--ease); }
img { width: 100%; height: auto; }

.content .size-full,
.content .size-large,
.content .size-medium,
.content .size-thumbnail {
	margin-bottom: 1em;
}

#all_wrap .content a.wp-block-button__link {
	display: block;
	width: 50%;
	color: #fff;
	transition: ease 0.2s;
	position: relative;
	padding: 10px 20px;
	margin: 0 auto;
}
#all_wrap .content a.wp-block-button__link:hover { text-decoration: none; opacity: 0.8; transition: ease 0.2s; }
#all_wrap .content a.wp-block-button__link::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(-45deg);
	-webkit-transform: translate(0,-50%) rotate(-45deg);
	transition: ease 0.2s;
}
#all_wrap .content a.wp-block-button__link:hover::after {
	right: 18px;
	transition: ease 0.2s;
}

/* スクロールの幅の設定 */
html::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* スクロールの背景の設定 */
html::-webkit-scrollbar-track {
	border-radius: 0;
	box-shadow: 0 0 4px #fff inset;
}

/* スクロールのつまみ部分の設定 */
html::-webkit-scrollbar-thumb {
	border-radius: 0;
	background: #c8c8c8;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

#all_wrap .single_content a { color: var(--text); font-weight: 500; transition: ease 0.2s; }
#all_wrap .single_content a:hover { color: #var(--text); font-weight: 500; text-decoration: underline; transition: ease 0.2s; }


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap { position: relative; overflow: hidden; }
	#all_wrap .content a.wp-block-button__link {
		display: block;
		width: 90%;
		color: #fff;
		transition: ease 0.2s;
		position: relative;
		padding: 10px 50px;
		margin: 0 auto;
	}
}

/*ページトップ*/
#to_top {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 40px;
	height: 40px;
	background: var(--base);
	border-radius: 50%;
	position: fixed;
	bottom: 25px;
	right: 25px;
	transition: var(--ease);
	opacity: 0;
	visibility: hidden;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
#to_top.fixed {
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
}
#to_top::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: calc(50% + 2px);
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
	-webkit-transform: rtranslate(-50%,-50%) rotate(-45deg);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページトップ*/
	#to_top {
		width: 30px;
		height: 30px;
		bottom: 15px;
		right: 15px;
	}
}

/*reCAPTCHA*/
.grecaptcha-badge {
	z-index: 999;
}


/************************************************************/
/*　共通
/************************************************************/
#all_wrap .contHead,
#all_wrap .content .contHead {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: baseline;
	column-gap: 30px;
	position: relative;
}
#all_wrap .contHead.mb0,
#all_wrap .content .contHead.mb0 {
	margin-bottom: 0;
}
#all_wrap .contHead > em,
#all_wrap .content .contHead > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 55px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	font-style: normal;
	white-space: nowrap;
	transition: var(--ease);
}
#all_wrap .contHead > h2,
#all_wrap .content .contHead > h2 {
	display: inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: relative;
	font-size: 17px;
	line-height: 1;
	font-weight: bold;
	color: var(--main);
	font-style: normal;
	white-space: nowrap;
	transition: var(--ease);
}
#all_wrap .contHead > h2::before,
#all_wrap .content .contHead > h2::before {
	content: '';
	display: block;
	width: 13px;
	height: 19px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/slash.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
/*-白*/
#all_wrap .contHead.white > em {
	color: #fff;
}
#all_wrap .contHead.white > h2 {
	color: #fff;
}
#all_wrap .contHead.white > h2::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/slash_w.svg');
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .contHead,
	#all_wrap .content .contHead {
		width: 100%;
		margin: 0 auto 20px;
		column-gap: 10px;
	}
	#all_wrap .contHead.mb0,
	#all_wrap .content .contHead.mb0 {
		margin-bottom: 0;
	}
	#all_wrap .contHead > em,
	#all_wrap .content .contHead > em {
		font-size: 30px;
	}
	#all_wrap .contHead > h2,
	#all_wrap .content .contHead > h2 {
		column-gap: 10px;
		font-size: 12px;
	}
	#all_wrap .contHead > h2::before,
	#all_wrap .content .contHead > h2::before {
		content: '';
		display: block;
		width: auto;
		height: 12px;
		aspect-ratio: 99 / 150;
	}
	/*-白*/
	#all_wrap .contHead.white > em {
		color: #fff;
	}
	#all_wrap .contHead.white > h2 {
		color: #fff;
	}
	#all_wrap .contHead.white > h2::before {
		background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/slash_w.svg');
	}
}

/*タイトル*/
#all_wrap header.ttl {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
}
#all_wrap header.ttl > h2 {
	width: 100%;
	padding: 15px;
	margin: 0 auto;
	position: relative;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 700;
	color: #fff;
	border: none;
	background: var(--gradient);
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 20px;
}
#all_wrap header.ttl > h2 span {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: #fff;
	font-size: 12px;
	line-height: 1;
	font-weight: 600;
	color: var(--main);
	border-radius: 22px;
}
/*- 採用情報*/
#all_wrap #recruit header.ttl {
	margin-bottom: 20px;
}
#all_wrap #recruit header.ttl > h2 {
	background: var(--gradient3);
	margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*タイトル*/
	#all_wrap header.ttl {
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
	}
	#all_wrap header.ttl > h2 {
		width: 100%;
		padding: 10px;
		font-size: 18px;
		column-gap: 10px;
	}
	#all_wrap header.ttl > h2 span {
		display: inline-block;
		padding: 5px 10px;
		font-size: 10px;
		border-radius: 20px;
	}
	/*- 採用情報*/
	#all_wrap #recruit header.ttl {
		margin-bottom: 10px;
	}
}

/*本文*/
#all_wrap .content {
	font-size: 15px;
	line-height: 2;
	padding: 0;
	margin: 0 auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*本文*/
	#all_wrap .content {
		font-size: 14px;
		line-height: 2;
		padding: 0;
		margin: 0 auto;
	}
}

/************************************************************/
/*　コンテンツ整形
/************************************************************/
#all_wrap p {
	font-size: 15px;
	line-height: 2;
	font-weight: 400;
	font-feature-settings: "palt" 1;
	font-style: normal;
}
#all_wrap .content p {
	font-size: 15px;
	line-height: 2;
	padding: 0;
	margin: 0 auto 20px;
}
#all_wrap img.alignleft {
	margin-right: 30px;
	margin-bottom: 30px;
}
#all_wrap img.alignright {
	margin-left: 30px;
	margin-bottom: 30px;
}
#all_wrap p strong {
	font-weight: 600;
}

/*下マージン*/
#all_wrap .content .mb0,
#all_wrap .content .mb0 { margin-bottom: 0px !important; }
#all_wrap .content .mb5,
#all_wrap .content .mb5 { margin-bottom: 5px !important; }
#all_wrap .content .mb10,
#all_wrap .content .mb10 { margin-bottom: 10px !important; }
#all_wrap .content .mb20,
#all_wrap .content .mb20 { margin-bottom: 20px !important; }
#all_wrap .content .mb30,
#all_wrap .content .mb30 { margin-bottom: 30px !important; }
#all_wrap .content .mb40,
#all_wrap .content .mb40 { margin-bottom: 40px !important; }
#all_wrap .content .mb50,
#all_wrap .content .mb50 { margin-bottom: 50px !important; }
#all_wrap .content .mb60,
#all_wrap .content .mb60 { margin-bottom: 60px !important; }
#all_wrap .content .mb70,
#all_wrap .content .mb70 { margin-bottom: 70px !important; }
#all_wrap .content .mb80,
#all_wrap .content .mb80 { margin-bottom: 80px !important; }
#all_wrap .content .mb90,
#all_wrap .content .mb90 { margin-bottom: 90px !important; }
#all_wrap .content .mb100,
#all_wrap .content .mb100 { margin-bottom: 100px !important; }
#all_wrap .content .mb150,
#all_wrap .content .mb150 { margin-bottom: 150px !important; }
#all_wrap .content .mb200,
#all_wrap .content .mb200 { margin-bottom: 200px !important; }

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap p {
		font-size: 14px;
		line-height: 2em;
		font-weight: 500;
		font-feature-settings: "palt" 1;
		font-style: normal;
	}
	#all_wrap .content p {
		font-size: 14px;
		line-height: 2em;
		padding: 0;
		margin-bottom: 10px;
	}

	/*下マージン*/
	#all_wrap .content .mb0,
	#all_wrap .content .mb0 { margin-bottom: 0px !important; }
	#all_wrap .content .mb5,
	#all_wrap .content .mb5 { margin-bottom: 5px !important; }
	#all_wrap .content .mb10,
	#all_wrap .content .mb10 { margin-bottom: 10px !important; }
	#all_wrap .content .mb20,
	#all_wrap .content .mb20 { margin-bottom: 20px !important; }
	#all_wrap .content .mb30,
	#all_wrap .content .mb30 { margin-bottom: 30px !important; }
	#all_wrap .content .mb40,
	#all_wrap .content .mb40 { margin-bottom: 30px !important; }
	#all_wrap .content .mb50,
	#all_wrap .content .mb50 { margin-bottom: 30px !important; }
	#all_wrap .content .mb60,
	#all_wrap .content .mb60 { margin-bottom: 30px !important; }
	#all_wrap .content .mb70,
	#all_wrap .content .mb70 { margin-bottom: 35px !important; }
	#all_wrap .content .mb80,
	#all_wrap .content .mb80 { margin-bottom: 40px !important; }
	#all_wrap .content .mb90,
	#all_wrap .content .mb90 { margin-bottom: 45px; !important }
	#all_wrap .content .mb100,
	#all_wrap .content .mb100 { margin-bottom: 50px; !important }
	#all_wrap .content .mb150,
	#all_wrap .content .mb150 { margin-bottom: 70px; !important }
	#all_wrap .content .mb200,
	#all_wrap .content .mb200 { margin-bottom: 100px; !important }
}

/*== スマホ・PC 非表示 ==*/
.pc_none { display: none !important; }
.sp_none { display: block !important; }
@media only screen and (max-width: 768px){
	.pc_none { display: block !important; }
	.sp_none { display: none !important; }
}

/************************************************************/
/*　JS
/************************************************************/

/*lightbox*/
.nivo-lightbox-effect-fade {
	visibility: hidden;
	opacity: 0;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	background-size: 20px 20px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	width: 20px;
	height: 20px;
}

/************************************************************/
/*　フェードアニメーション
/************************************************************/
/*フェードアップ*/
.fut {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fut.delay {
	animation-delay: 0.8s;
}
.fut.delay2 {
	animation-delay: 1.1s;
}
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*フェードダウン*/
.fdt {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fdt.delay {
	animation-delay: 0.8s;
}
.fdt.delay2 {
	animation-delay: 1.1s;
}
.fadeDown {
	animation-name: fadeDownAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeDownAnime {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*フェードイン*/
.fade {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fade.delay {
	animation-delay: 0.8s;
}
.fade.delay2 {
	animation-delay: 1.1s;
}
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/*フェードショー*/
.show::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	transform-origin: right;
	z-index: 11;
	animation-delay: 0.7s;
}
.show.delay::before {
	animation-delay: 1s;
}
.show.delay2::before {
	animation-delay: 1.2s;
}
.showopen::before {
	animation-name: fadeShowAnime;
	animation-duration: 1s;
	animation-timing-function: cubic-bezier(0.4, 0.4, 0, 1);
	animation-fill-mode: forwards;
}
@keyframes fadeShowAnime {
	from {
		width: 100%;
	}
	to {
		width: 0%;
	}
}
/*ズームアウト（画像用）*/
.zoomout {
	animation-name: zoomout;
	animation-duration: 5s;
	animation-fill-mode: forwards;
}
@keyframes zoomout {
	from {
		transform: translate(-50%,-50%) scale(1.1);
		transform-origin: center;
	}
	to {
		transform: translate(-50%,-50%) scale(1);
		transform-origin: center;
	}
}

/************************************************************/
/*　構成
/************************************************************/
.l-main {
	width: calc(100%);
	padding: 60px;
	margin: 0;
	z-index: 1;
	position: relative;
	overflow: hidden;
}
.l-main.full {
	width: calc(100%);
	padding: 0;
	margin: 0;
	z-index: 1;
	position: relative;
}
#all_wrap .l-wrapper {
	width: calc(100% - 100px);
	max-width: 1100px;
	padding: 100px 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}
#all_wrap .l-wrapper.single {
	width: calc(100% - 100px);
	max-width: 1100px;
	padding: 100px 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}
.l-wrapper-full {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
.l-wrapper-cat {
	position: relative;
	width: calc(100% - 100px);
	max-width: 1100px;
	padding: 100px 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}

.wrapper {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.wrapper.cat {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}

#all_wrap .l-wrapper .l-main {
	width: 100%;
	min-width: 770px;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .l-wrapper-full .l-main {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .l-wrapper-cat .l-main {
	width: 100%;
	padding: 0;
	margin: 0;
}

.page {
	width: 100%;
}
.dividerBottom {
	margin-bottom: 0;
}
.pageContents .content,
.archiveContents .content {
	padding: 0;
	margin: 0 auto;
}
#all_wrap .l-wrapper-full .pageContents .content, #all_wrap .l-wrapper-full .archiveContents .content {
	margin: 0;
	padding: 0;
}
#all_wrap .l-wrapper-full .sitemap_content {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto 100px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .l-main {
		width: 100%;
		max-width: 100%;
		padding: 30px;
		margin: 0 auto;
	}
	#all_wrap .l-main.full {
		width: calc(100%);
		padding: 0;
		margin: 0;
		z-index: 1;
		position: relative;
	}
	#all_wrap.main_page .l-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap.sub_page .l-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 30px;
		margin: 0 auto;
		flex-wrap: wrap;
		grid-row-gap: 30px;
	}
	#all_wrap .l-wrapper.single {
		width: 100%;
		max-width: 100%;
		padding: 30px;
		margin: 0 auto;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: stretch;
		column-gap: 0;
	}

	#all_wrap .l-wrapper .l-main {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .l-wrapper-full .l-main {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}

	.l-wrapper {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.l-wrapper-full {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	.l-wrapper-full.cat {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 30px;
	}
	.l-wrapper-cat {
		position: relative;
		width: 100%;
		padding: 30px 0;
		margin: 0 auto;
	}

	.page {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.content {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.postContents {
		width: calc(100%);
		margin: 0 auto;
		padding: 0;
	}
	.pageContents .content,
	.archiveContents .content {
		padding: 0;
		margin: 0 auto;
	}

	/*グーグルマップ表示*/
	.l-wrapper iframe {
		width: 100%;
	}

}

#all_wrap .pager {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	margin-top: 50px;
}

/*構成*/
.wrapper {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: space-between;
}
.topMain {
	width: calc(100% - 250px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	.topMain {
		width: calc(100%);
		padding: 0;
		margin: 0;
		position: relative;
		order: 1;
	}
}

/************************************************************/
/*　見出し　＆　パンくず
/************************************************************/

h1,h2,h3,h4,h5,h6,b,strong {
	font-family: var(--font-ttl);
	font-weight: 500;
	font-style: normal;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	font-size: 1em;
}

/*ページビジュアル*/
#pagevisual {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#pagevisual > figure {
	width: 100%;
	height: 300px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#pagevisual > figure::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: var(--gradient);
	opacity: 0.75;
}
#pagevisual > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap #page_title {
	width: 100%;
	min-width: 100%;
	height: 100%;
	padding: 0 60px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: flex-start;
	align-items: flex-start;
	grid-row-gap: 10px;
	z-index: 5;
}
#all_wrap #page_title > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 60px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
	white-space: nowrap;
	text-transform: uppercase;
}
#all_wrap #page_title > h1 {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: relative;
	font-size: 17px;
	line-height: 1;
	font-weight: bold;
	text-align: left;
	color: #fff;
	font-style: normal;
	white-space: nowrap;
}
#all_wrap #page_title > h1.page_title_prd {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: relative;
	font-size: 50px;
	line-height: 1;
	font-weight: bold;
	text-align: left;
	color: #fff;
	font-style: normal;
	white-space: nowrap;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページビジュアル*/
	#pagevisual > figure {
		width: 100%;
		height: 100px;
	}
	#all_wrap #page_title {
		width: 100%;
		min-width: 100%;
		height: 100%;
		padding: 0 30px;
		grid-row-gap: 5px;
		z-index: 5;
	}
	#all_wrap #page_title > em {
		font-size: 30px;
	}
	#all_wrap #page_title > h1 {
		column-gap: 5px;
		font-size: 12px;
	}
	#all_wrap #page_title > h1.page_title_prd {
		column-gap: 5px;
		font-size: 25px;
	}
}

/*メイン事業ページビジュアル*/
#main_pagevisual {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: var(--gradient);
	display: flex;
	justify-content: space-between;
}
#main_pagevisual.bousui {
	background: #def1ff;
}
#main_pagevisual.ryokka {
	background: #dbeedf;
}
#main_pagevisual.taiyoukou {
	background: #ffebc7;
}
#main_pagevisual > .main_pagevisual_info {
	width: 600px;
	padding: 100px 0 0 60px;
	margin: 0;
	position: relative;
	overflow: hidden;
}
#main_pagevisual > .main_pagevisual_info > header {
	width: 100%;
	padding: 0 0 20px;
	margin: 0 auto 30px;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: baseline;
	column-gap: 30px;
	position: relative;
	border-bottom: 1px solid rgba(0,0,0,0.5);
}
#main_pagevisual > .main_pagevisual_info > header > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 60px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	font-style: normal;
	white-space: nowrap;
	transition: var(--ease);
}
#main_pagevisual > .main_pagevisual_info > header > h1 {
	display: inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: relative;
	font-size: 50px;
	line-height: 1;
	letter-spacing: 0.05em;
	font-weight: bold;
	color: var(--text);
	font-style: normal;
	white-space: nowrap;
	transition: var(--ease);
}
#main_pagevisual > .main_pagevisual_info > header > h2::before {
	content: '';
	display: block;
	width: 13px;
	height: 19px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/slash_b.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#main_pagevisual > .main_pagevisual_info > em {
	display: inline-block;
	padding: 3px 10px;
	margin: 0 0 15px;
	background: var(--text);
	border-radius: 20px;
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	font-style: normal;
}
#main_pagevisual > .main_pagevisual_info > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	position: relative;
}
#main_pagevisual > .main_pagevisual_info .main_pagevisual_logo {
	display: block;
	width: auto;
	height: 100px;
}
#main_pagevisual > .main_pagevisual_info .main_pagevisual_logo img {
	width: auto;
	height: 100%;
}
#main_pagevisual > figure {
	width: calc(100% - 600px);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 0 0 0 10px;
}
#main_pagevisual > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#main_pagevisual > .breadcrumb {
	width: calc(100%);
	max-width: 100%;
	padding: 20px 60px;
	margin: 0 auto;
	background: none;
	border: none;
	overflow-x: scroll;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	-ms-overflow-style: none;
	scrollbar-width: none;
	z-index: 10;
}
#main_pagevisual > .breadcrumb li::before,
#main_pagevisual > .breadcrumb li::after,
#main_pagevisual > .breadcrumb a {
	color: var(--text);
	border-color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*メイン事業ページビジュアル*/
	#main_pagevisual {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		background: none;
		display: flex;
		justify-content: space-between;
	}
	#main_pagevisual > .main_pagevisual_info {
		width: 100%;
		padding: 60px 30px 30px;
		margin: 0;
		position: relative;
		overflow: hidden;
		z-index: 1;
	}
	#main_pagevisual > .main_pagevisual_info::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: #fff;
		opacity: 0.8;
		z-index: -1;
	}
	#main_pagevisual.bousui > .main_pagevisual_info::before {
		background: #fff;
	}
	#main_pagevisual.ryokka > .main_pagevisual_info::before {
		background: #fff;
	}
	#main_pagevisual.taiyoukou > .main_pagevisual_info::before {
		background: #fff;
	}
	#main_pagevisual > .main_pagevisual_info > header {
		padding: 0 0 15px;
		margin: 0 auto 15px;
		column-gap: 10px;
	}
	#main_pagevisual > .main_pagevisual_info > header > em {
		font-size: 30px;
	}
	#main_pagevisual > .main_pagevisual_info > header > h2 {
		display: inline-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		column-gap: 10px;
		font-size: 12px;
	}
	#main_pagevisual > .main_pagevisual_info > header > h2::before {
		width: auto;
		height: 12px;
		aspect-ratio: 99 / 150;
	}
	#main_pagevisual > .main_pagevisual_info > header > h1 {
		font-size: 30px;
	}
	#main_pagevisual > .main_pagevisual_info > em {
		padding: 3px 10px;
		margin: 0 0 10px;
		font-size: 12px;
		background: var(--main);
		color: #fff;
	}
	#main_pagevisual.bousui > .main_pagevisual_info > em {
		background: var(--sub);
	}
	#main_pagevisual.ryokka > .main_pagevisual_info > em {
		background: var(--green);
	}
	#main_pagevisual.taiyoukou > .main_pagevisual_info > em {
		background: var(--act);
	}
	#main_pagevisual > .main_pagevisual_info > h1 {
		font-size: 20px;
	}
	#main_pagevisual > .main_pagevisual_info .main_pagevisual_logo {
		display: block;
		width: auto;
		height: 50px;
	}
	#main_pagevisual > .main_pagevisual_info .main_pagevisual_logo img {
		width: auto;
		height: 100%;
	}
	#main_pagevisual > figure {
		width: calc(100%);
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 0;
		z-index: 0;
	}
	#main_pagevisual > .breadcrumb {
		width: calc(100%);
		max-width: 100%;
		padding: 10px 30px;
	}
}

/*h2*/
#all_wrap .content h2 {
	display: block;
	width: 100%;
	padding: 0 0 10px;
	margin: 2em auto 1em;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	font-feature-settings: "palt" 1;
	font-style: normal;
	border: none;
	border-bottom: 1px solid var(--text);
	background: none;
	position: relative;
}
#all_wrap .content h2:first-of-type {
	margin-top: 0;
}
#all_wrap .content h2 small {
	font-size: 14px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h2*/
	#all_wrap .content h2 {
		display: block;
		width: 100%;
		padding: 0;
		margin: 1em auto 10px;
		font-size: 20px;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--text);
		font-feature-settings: "palt" 1;
		font-style: normal;
		border: none;
		background: none;
		position: relative;
	}
	#all_wrap .content h2:first-of-type {
		margin-top: 0;
	}
}

/*h3*/
#all_wrap .content h3 {
	padding: 10px 10px 10px 15px;
	margin: 1em auto 1em;
	border: none;
	background: #fafafa;
	border-left: 5px solid var(--base);
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	position: relative;
}
#all_wrap .content h3:first-of-type {
	margin-top: 0;
}
#all_wrap .content h3.none {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h3*/
	#all_wrap .content h3 {
		padding: 10px 10px 10px 10px;
		margin: 1em auto 1em;
		border: none;
		background: #fafafa;
		border-left: 5px solid var(--base);
		font-size: 15px;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--text);
		position: relative;
	}
	#all_wrap .content h3:first-of-type {
		margin-top: 0;
	}
}

/*h4*/
#all_wrap .content h4 {
	display: block;
	padding: 0;
	margin: 1em auto 10px;
	position: relative;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4em;
	position: relative;
	color: var(--text);
}
#all_wrap .content h4:first-of-type {
	margin-top: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h4*/
	#all_wrap .content h4 {
		display: block;
		padding: 0;
		margin: 1em auto 0.5em;
		position: relative;
		font-weight: 700;
		font-size: 15px;
		line-height: 1.4em;
		position: relative;
		color: var(--text);
	}
}

/*h5*/
#all_wrap .content h5 {
	display: block;
	padding: 0;
	margin: 0.5em auto 5px;
	position: relative;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4em;
	position: relative;
	color: var(--text);
}
#all_wrap .content h5:first-of-type {
	margin-top: 0;
}

/************************************************************/
/*　ページネーション
/************************************************************/
.pager {
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}
.pager > li {
	line-height: 1;
	padding: 0;
	margin: 0 5px 0 0;
	text-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-feature-settings: "palt";
	color: var(--text);
	border: 1px solid var(--text);
}
.pager > li:hover {
	border: 1px solid var(--text);
	background: none;
}
.pager > li.pager__item-current {
	padding: 5px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--text);
	border: 1px solid var(--text);
	color: #fff;
}
.pager > li.pager__item-next,
.pager > li.pager__item-prev {
	background: none;
	border-radius: 0;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-feature-settings: "palt";
}
.pager > li a {
	text-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-weight: normal;
	font-feature-settings: "palt";
	transition: ease 0.2s;
	line-height: 1;
	background: none;
}
.pager > li a:hover {
	background: var(--text);
	color: #fff;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-weight: normal;
	font-feature-settings: "palt";
	transition: ease 0.2s;
	line-height: 1;
}

/************************************************************/
/*　パンくず
/************************************************************/
/*パンくず*/
.breadcrumb {
	width: calc(100%);
	max-width: 100%;
	padding: 15px 60px;
	margin: 0 auto;
	background: #1a335b;
	border: none;
	overflow-x: scroll;
	position: relative;
	z-index: 5;
	-ms-overflow-style: none;
	scrollbar-width: none;
	z-index: 10;
}
#all_wrap .breadcrumb .container {
	width: calc(100%);
	max-width: 100%;
}
.breadcrumb::-webkit-scrollbar { 
	display:none;
}
.breadcrumb > ul {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 10px;
	color: #fff;
	justify-content: flex-start;
	font-family: var(--font-jp);
}
.breadcrumb a {
	font-size: 10px;
	line-height: 1;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: var(--ease);
	color: #fff;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
}
.breadcrumb a:hover {
	text-decoration: none;
	transition: var(--ease);
	color: #fff;
}
.breadcrumb__list {
	padding: 0;
}
.breadcrumb__item {
	position: relative;
	display: table-cell;
	white-space: nowrap;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 10px;
	line-height: 1;
	color: #fff;
}
.breadcrumb__item::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -2px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パンくず*/
	.breadcrumb {
		width: 100%;
		max-width: 100%;
		padding: 10px 30px;
		margin: 0 auto;
		border: none;
		overflow-x: scroll;
		position: relative;
		z-index: 5;
		-ms-overflow-style: none;
		scrollbar-width: none;
		z-index: 10;
	}
	#all_wrap .breadcrumb .container {
		width: 100%;
		max-width: 100%;
	}
	.breadcrumb::-webkit-scrollbar {
		display: none;
	}
	.breadcrumb::before {
		display: none;
	}
	.breadcrumb::after {
		display: none;
	}
	.breadcrumb > ul {
		width: 100%;
		padding: 0;
		margin: 0;
		font-size: 10px;
		background: none;
		justify-content: flex-start;
	}
	.breadcrumb a {
		font-size: 10px;
		line-height: 1;
		padding: 0;
		margin: 0;
		text-decoration: none;
		transition: ease 0.2s;
	}
	.breadcrumb a:hover {
		text-decoration: none;
		transition: ease 0.2s;
		opacity: 0.8;
	}
	.breadcrumb__list {
		padding: 0;
		display: block;
	}
	.breadcrumb__item {
		position: relative;
		display: table-cell;
		white-space: nowrap;
		padding-right: 15px;
		padding-left: 15px;
		font-size: 10px;
		line-height: 1;
	}
	.breadcrumb__item::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -2px;
		width: 5px;
		height: 5px;
	}
}


/************************************************************/
/*　フォントサイズ
/************************************************************/
.content table {
	font-size: 15px;
	color: #fff;
}


/************************************************************/
/*　ヘッダー
/************************************************************/
#header_min {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	#header_min {
		display: flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
		width: 100%;
		height: 70px;
		padding: 0;
		margin: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		background: #fff;
	}
	#header_min > #logo {
		width: auto;
		height: 60px;
		margin: 0 auto 0 60px;
	}
	#header_min > #logo img {
		width: auto;
		height: 100%;
	}
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header_min {
		display: flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
		width: 100%;
		height: 50px;
		padding: 0;
		margin: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		background: #fff;
	}
	#header_min > #logo {
		width: auto;
		height: 40px;
		margin: 0 auto 0 20px;
	}
}

/************************************************************/
/*　ヘッダー固定
/************************************************************/

/************************************************************/
/*　ハンバーガーメニュー
/************************************************************/
/* ドロワーメニュー */
.navicon {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	/* ドロワーメニュー */
	.navicon {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100;
		width: 70px;
		height: 70px;
		min-width: 70px;
	}
	.humburger {
		width: 35px;
		height: 20px;
		padding: 0;
		margin: 0;
		background: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 12px;
	}
	.humburger > span {
		width: 35px;
		display: inline-block;
		transition: var(--ease);
		position: relative;
		height: 1px;
		background: #fff;
		margin: auto;
	}
	.humburger span::before {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		right: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::after {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		left: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::before {
		top: -10px;
	}
	.humburger span::after {
		top: 10px;
	}
	#navTgl:checked + .open .humburger span {
		background: #fff;
	}
	#navTgl:checked + .open .humburger span::before {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger span::after {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger {
		background: none;
	}

	#navTgl {
		display: none;
	}
	label.open,
	label.close {
		cursor: pointer;
	}
	.open {
		opacity: 1;
		z-index: 10001;
		width: 70px;
		height: 70px;
		padding: 10px 10px;
		color: #fff;
		background: var(--base);
		border-radius: 0;
		box-sizing: border-box;
		font-size: 3em;
		text-align: center;
		transition: var(--ease);
		position: relative;
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		column-gap: 10px;
	}
	#navTgl:checked + .open,
	.open:hover {
		background: var(--base);
		transition: var(--ease);
	}
	.close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: var(--ease);
	}
	#navTgl:checked ~ .close {
		pointer-events: auto;
	}
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* ドロワーメニュー */
	.navicon {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100;
		width: 50px;
		height: 50px;
		min-width: 50px;
	}
	.humburger {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		background: )none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 12px;
	}
	.humburger > span {
		width: 20px;
		display: inline-block;
		transition: var(--ease);
		position: relative;
		height: 1px;
		background: #fff;
		margin: auto;
	}
	.humburger span::before {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		right: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::after {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		left: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::before {
		top: -5px;
	}
	.humburger span::after {
		top: 5px;
	}
	#navTgl:checked + .open .humburger span {
		background: #fff;
	}
	#navTgl:checked + .open .humburger span::before {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger span::after {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger {
		background: none;
	}

	#navTgl {
		display: none;
	}
	label.open,
	label.close {
		cursor: pointer;
	}
	.open {
		opacity: 1;
		z-index: 10001;
		width: 50px;
		height: 50px;
		padding: 10px 10px;
		color: #fff;
		background: var(--text);
		border-radius: 0;
		box-sizing: border-box;
		font-size: 3em;
		text-align: center;
		transition: var(--ease);
		position: relative;
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		column-gap: 10px;
	}
	#navTgl:checked + .open,
	.open:hover {
		background: var(--main);
		transition: var(--ease);
	}
	.close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: var(--ease);
	}
	#navTgl:checked ~ .close {
		pointer-events: auto;
	}
}

/*パネル*/
#menu.menuNav {
	position: fixed;
	top: 0;
	right: 0;
	width: 500px;
	height: calc(100vh);
	background: none;
	transition: var(--ease);
	padding: 0;
	overflow: hidden;
	z-index: 99;
	transform: translateX(500px);
}
#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav {
	width: 500px;
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/*メニュー*/
#menuNavBox {
	width: 100%;
	height: 100%;
	padding: 75px 50px 50px;
	margin: 0;
	background-color: #fff;
	overflow-y: scroll;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
	position: fixed;
	top: 0;
	left: 0;
	transition: var(--ease);
	visibility: hidden;
	opacity: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav #menuNavBox {
	width: 100%;
	transition: var(--ease);
	visibility: visible;
	opacity: 1;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パネル*/
	#menu.menuNav {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		transform: unset;
		opacity: 0;
		visibility: hidden;
	}
	#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav {
		width: 100%;
		transition: var(--ease);
		opacity: 1;
		visibility: visible;
		transform: unset;
	}

	/*メニュー*/
	#menuNavBox {
		width: 100%;
		height: 100%;
		padding: 0 20px 70px;
		margin: 0;
		background: #fff;
		backdrop-filter: blur(5px);
		overflow-y: scroll;
		-ms-overflow-style: none;    /* IE, Edge 対応 */
		scrollbar-width: none;       /* Firefox 対応 */
		position: fixed;
		top: 0;
		left: 0;
		transition: var(--ease);
		visibility: hidden;
		opacity: 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 30px;
	}
	#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav #menuNavBox {
		width: 100%;
		transition: var(--ease);
		visibility: visible;
		opacity: 1;
	}
	#all_wrap #menuNavBox .logo {
		width: 100%;
		height: 50px;
		padding: 10px 0;
		margin: 0;
	}
	#all_wrap #menuNavBox .logo img {
		width: auto;
		height: 30px;
	}
}

#all_wrap #menu-panel-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	border-top: 1px solid rgba(0,0,0,0.1);
}
#all_wrap #menu-panel-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-panel-menu > li.menu-item-has-children::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: none;
	border-top: 1px solid #555;
	border-right: 1px solid #555;
	position: absolute;
	top: 15px;
	right: 10px;
	transform: rotate(135deg);
}
#all_wrap #menu-panel-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	width: 100%;
	padding: 15px 10px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	position: relative;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2em;
	color: #000;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-panel-menu > li > a:hover {
	opacity: 0.8;
	color: #000;
	text-decoration: none;
	transition: var(--ease);
}
/*-段落ちメニュー*/
#all_wrap #menu-panel-menu .sub-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: none;
}
#all_wrap #menu-panel-menu .opened .sub-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: block;
}
#all_wrap #menu-panel-menu .sub-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-panel-menu .sub-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 10px 10px 10px 20px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
	color: #000;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-panel-menu .sub-menu > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 1px;
	background: #000;
}
#all_wrap #menu-panel-menu .sub-menu > li > a:hover {
	opacity: 0.8;
	font-size: 14px;
	line-height: 1.2em;
	color: #000;
	text-decoration: none;
	transition: var(--ease);
}
/* 孫メニュー */
#all_wrap #menu-panel-menu .sub-menu .sub-menu > li > a {
	padding-left: 30px;
	font-size: 13px;
}
#all_wrap #menu-panel-menu .sub-menu .sub-menu > li > a::before {
	width: 5px;
	height: 1px;
	background: #000;
	margin-left: 10px;
}
/* 初期状態で非表示 */
.menu-item-has-children .sub-menu {
	display: none;
}
/* openクラスが付いた時に表示 */
.menu-item-has-children.open .sub-menu {
	display: block;
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
	width: 100%;
	height: 600px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
}
#logo {
	width: calc(100% - 60px);
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#logo img {
	width: 100%;
	height: auto;
}
/* 画面高さ1080px以下のとき */
@media screen and (max-height: 600px) {
	#logo {
		width: 120px !important;
	}
}
/* 画面高さ1080px以上のとき */
@media screen and (min-height: 600px) {
	#logo {
		width: calc(100% - 60px) !important;
	}
}

/*メインナビ*/
#mainNav {
	width: calc(100%);
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
	position: relative;
	z-index: 10;
}
#all_wrap #menu-header-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
}
#all_wrap #menu-header-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
	transition: var(--ease);
}
#all_wrap #menu-header-menu > li:hover {
	background: var(--base);
	color: #fff;
	transition: var(--ease);
}
#all_wrap #menu-header-menu > li a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 7px 30px;
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 500;
	text-decoration: none;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap #menu-header-menu > li:hover a {
	color: #fff;
	transition: var(--ease);
}
/* 画面高さ1080px以下のとき */
@media screen and (max-height: 600px) {
	#all_wrap #menu-header-menu > li a {
		padding: 5px 30px;
		font-size: 13px;
	}
}
/* 画面高さ1080px以上のとき */
@media screen and (min-height: 600px) {
	#all_wrap #menu-header-menu > li a {
		padding: 7px 30px;
		font-size: 15px;
	}
}
/* ================================
▼ 子メニュー（第二階層）
================================ */
#all_wrap #menu-header-menu li > .sub-menu {
	width: 0;                 /* ← 最初は閉じておく */
	height: 100vh;
	padding: 150px 0;
	margin: 0;
	background: var(--base);
	position: fixed;
	top: 0;
	left: 249px;
	z-index: 1000;            /* ← ほかの要素より前に出す */
	display: flex;
	flex-direction: column;
	list-style: none;
	transition: width 0.3s ease;
	overflow: hidden;
}

#all_wrap #menu-header-menu > li:hover > .sub-menu {
	width: 250px;
}

#all_wrap #menu-header-menu li > .sub-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
}

#all_wrap #menu-header-menu li > .sub-menu > li:last-child {
	border-bottom: none;
}

#all_wrap #menu-header-menu li > .sub-menu > li::before,
#all_wrap #menu-header-menu li > .sub-menu > li::after {
	display: none;
}

#all_wrap #menu-header-menu li > .sub-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 15px 30px;
	margin: 0;
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	text-align: left;

	/* ▼ ここが重要：非表示の間はクリック無効 */
	pointer-events: none;
}

#all_wrap #menu-header-menu > li:hover .sub-menu > li > a {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;     /* ← 表示されたらクリック有効 */
}

#all_wrap #menu-header-menu li > .sub-menu > li > a:hover {
	color: var(--base);
	background: #fff;
	transition: var(--ease);
}

/* ================================
▼ 孫メニュー（第三階層）
================================ */
#all_wrap #menu-header-menu li li > .sub-menu {
	width: 0;
	height: 100vh;
	padding: 150px 0;
	margin: 0;
	background: var(--gray);
	position: fixed;
	top: 0;
	left: 499px;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	list-style: none;
	transition: width 0.3s ease;
	overflow: hidden;
}

#all_wrap #menu-header-menu li li:hover > .sub-menu {
	width: 250px;
}

#all_wrap #menu-header-menu li li > .sub-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 15px 30px;
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
	color: var(--text);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;

	/* ▼ ここも同様にクリック無効→有効に切り替える */
	pointer-events: none;
}

#all_wrap #menu-header-menu li li:hover .sub-menu > li > a {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

#all_wrap #menu-header-menu li li > .sub-menu > li > a:hover {
	color: #fff;
	background: var(--base);
}

/*ボタン*/
#all_wrap #menu-btn-menu {
	width: calc(100% - 60px);
	padding: 0;
	margin: auto auto 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
/* 画面高さ1080px以下のとき */
@media screen and (max-height: 600px) {
	#all_wrap #menu-btn-menu {
		margin: 0 auto;
	}
}
/* 画面高さ1080px以上のとき */
@media screen and (min-height: 600px) {
	#all_wrap #menu-btn-menu {
		margin: auto auto 0;
	}
}
#all_wrap #menu-btn-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-btn-menu > li a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 8px;
	padding: 12px 20px;
	margin: 0;
	background: var(--main);
	border-radius: 5px;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-btn-menu > li.download a {
	background: var(--sub);
	transition: var(--ease);
}
#all_wrap #menu-btn-menu > li a:hover {
	background: var(--base);
	transition: var(--ease);
}
#all_wrap #menu-btn-menu > li a img {
	width: auto;
	height: 12px;
	padding: 0;
	margin: 0;
}
#all_wrap #menu-btn-menu > li a span {
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
}
/*バナー*/
#all_wrap #menu-btn-menu > li.none a {
	display: block;
	padding: 0;
	margin: 0;
	background: none;
	border-radius: 0;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-btn-menu > li.none a:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
#all_wrap #menu-btn-menu > li.none a img {
	width: 100%;
	height: auto;
}


/*SNS*/
#snsNav {
	width: 100%;
	margin: 0 auto;
}
#all_wrap #menu-sns-menu {
	width: calc(100% - 60px);
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 15px;
}
#all_wrap .l-footer #menu-sns-menu {
	width: calc(100%);
}
#all_wrap #menu-sns-menu > li {
	width: auto;
	height: 15px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
}
#all_wrap #menu-sns-menu > li img {
	width: auto;
	height: 15px;
}
/*情報*/
.mainVisual_info {
	width: calc(100%);
	padding: 100px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	z-index: 0;
}
/*動画*/
.video {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
.video::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjZMAE/xkpF/yPbgQA570FARf4sc8AAAAASUVORK5CYII=');
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.15;
}
.video video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#mainVisual {
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: space-between;
	}
	
	/*SNS*/
	#snsNav {
		width: 100%;
		margin: 0 auto;
	}
	#all_wrap #menu-sns-menu {
		width: calc(100%);
		column-gap: 15px;
	}
	#all_wrap #menu-sns-menu > li {
		width: auto;
		height: 25px;
	}
	#all_wrap #menu-sns-menu > li img {
		width: auto;
		height: 25px;
	}
}

/************************************************************/
/*　サイドバー
/************************************************************/
.l-sidebar {
	width: 250px;
	min-width: 250px;
	padding: 30px 0;
	margin: 0;
	position: relative;
	border-right: 1px solid #d6d6d6;
	box-sizing: border-box;
	z-index: 100;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	.l-sidebar {
		display: none;
	}
}
.sideNav {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
	height: 90vh;
	min-height: unset;
	position: sticky;
	top: 30px;
	left: 0;
}
/* 画面高さ1080px以下のとき */
@media screen and (max-height: 600px) {
	.sideNav {
		grid-row-gap: 20px;
	}
}
/* 画面高さ1080px以上のとき */
@media screen and (min-height: 600px) {
	.sideNav {
		grid-row-gap: 50px;
	}
}

.l-sidebar .widget.widget_nav_menu {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	z-index: 0;
}
.l-sidebar .widget.widget_nav_menu::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
}
#all_wrap .l-sidebar .widget.widget_nav_menu h2.heading-widget {
	width: 100%;
	padding: 15px 10px;
	margin: 0;
	background: var(--text);
	font-size: 15px;
	line-height: 1;
	color: #fff;
	border-radius: 0;
	text-align: center;
}
#all_wrap .l-sidebar .widget.widget_nav_menu ul.menu {
	width: 100%;
	padding: 0 10px 10px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--text);
	border: none;
}
#all_wrap .l-sidebar .widget.widget_nav_menu ul.menu > li {
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .l-sidebar .widget.widget_nav_menu ul.menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	position: relative;
	padding: 10px;
	margin: 0;
	background: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--text);
	border: none;
	border-bottom: 1px solid #ddd;
	transition: var(--ease);
}
#all_wrap .l-sidebar .widget.widget_nav_menu ul.menu > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	transform: rotate(45deg);
}
#all_wrap .widget.widget_nav_menu ul.menu > li > a:hover {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--text);
	background: #f5f5f5;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.l-sidebar {
		display: none;
	}
}

/************************************************************/
/*　フッター
/************************************************************/
.l-footer {
	width: 100%;
	padding: 50px 60px;
	margin: 0;
	background: #1a335b;
	position: relative;
}
.footerWrap {
	width: 100%;
	min-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 80px;
}
.footerLeft {
	width: calc(50% - 40px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 20px;
}
.footerRight {
	width: calc(50% - 40px);
	padding: 0;
	margin: 0;
	position: relative;
}
/*情報*/
.widget_info {
	width: calc(50% - 15px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .widget_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .widget_info > h2 img {
	width: 100%;
	height: auto;
}
#all_wrap .widget_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-align: left;
}
#all_wrap .widget_info > p {
	text-align: justify;
	word-break: break-all;
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0;
	color: #fff;
	font-size: 11px;
	line-height: 1.4em;
	text-align: left;
}
#all_wrap .l-footer #menu-sns-menu {
	column-gap: 20px;
	justify-content: flex-start;
	align-items: flex-end;
}
#all_wrap .l-footer #menu-sns-menu > li {
	width: fit-content;
}

/*バナー*/
#all_wrap #menu-sideban-menu {
	width: calc(50% - 15px);
	max-width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap #menu-sideban-menu > li {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-sideban-menu > li img {
	width: 100%;
	height: auto;
}

/*メニュー*/
#all_wrap #menu-footer-menu {
	width: 100%;
	max-width: 500px;
	padding: 0;
	margin: 0 0 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap #menu-footer-menu::before,
#all_wrap #menu-footer-menu::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 13.4px);
}
#all_wrap #menu-footer-menu::before {
	order: 1;
}
#all_wrap #menu-footer-menu > li {
	width: calc(100% / 3 - 13.4px);
	padding: 0;
	margin: 0;
	position: relative;
	text-align: left;
}
#all_wrap #menu-footer-menu > li a {
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	transition: var(--ease);
}
#all_wrap #menu-footer-menu > li a:hover {
	text-decoration: underline;
	opacity: 0.8;
	transition: var(--ease);
}
.copyright {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: right;
	font-size: 10px;
	line-height: 1;
	font-style: normal;
	font-weight: 400;
	color: #fff;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.l-footer {
		width: 100%;
		padding: 40px 30px;
	}
	.footerWrap {
		width: 100%;
		min-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.footerLeft {
		width: 100%;
		min-width: 100%;
	}
	.footerRight {
		width: calc(100%);
	}
	.widget_info {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .widget_info > h3 {
		font-size: 18px;
		text-align: center;
	}
	#all_wrap .widget_info > p {
		text-align: center;
	}
	#all_wrap .l-footer #menu-sns-menu {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		column-gap: 10px;
		justify-content: center;
		margin: 0 auto 30px;
	}
	#all_wrap .l-footer #menu-sns-menu > li {
		width: fit-content;
	}
	

	/*バナー*/
	#all_wrap #menu-sideban-menu {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		grid-row-gap: 15px;
		margin: 0 auto 30px;
	}
	#all_wrap #menu-sideban-menu > li {
		width: 70%;
		height: auto;
		padding: 0;
		margin: 0 auto;
	}

	/*メニュー*/
	#all_wrap #menu-footer-menu {
		width: 100%;
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap #menu-footer-menu::before,
	#all_wrap #menu-footer-menu::after {
		content: '';
		display: none;
	}
	#all_wrap #menu-footer-menu > li {
		width: calc(100% / 2 - 10px);
	}
	.copyright {
		width: 100%;
		padding: 0;
		margin: 30px auto 0;
		position: relative;
		text-align: center;
		font-size: 10px;
		line-height: 1;
		font-style: normal;
		font-weight: 400;
		color: #fff;
	}
}



/************************************************************/
/*　アーカイブ　リスト
/************************************************************/

/************************************************************/
/*　リスト
/************************************************************/
.content ul {
	list-style: none;
	padding: 0;
	margin: 5px auto 20px;
}
.content ul li {
	width: 100%;
	padding: 0 0 0 15px;
	margin: 0 0 5px;
	list-style: none;
	border: none;
	background: none;
	position: relative;
	line-height: 1.5em;
}
.content ul li::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	padding: 0;
	margin: 0;
	background: var(--text);
	position: absolute;
	top: 0.7em;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	border-radius: 50%;
}

.content ol {
	list-style: none;
	padding: 0;
	margin: 10px auto 10px;
}
.content ol li {
	padding: 0 0 0 30px;
	margin: 0 0 5px;
	list-style: none;
	border: none;
	background: none;
	position: relative;
	line-height: 1.8em;
}
.content ol li::before {
	font-family: var(--font-en);
	counter-increment: count;
	content: counter(count);
	background: #fff;
	border: 1px solid var(--text);
	color: var(--text);
	width: 2.2rem;
	height: 2.2rem;
	line-height: 2rem;
	font-size: 1rem;
	font-weight: lighter;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 1.6em;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	border-radius: 50%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

	.l-wrapper-full .pageContents .content ul.harf li,
	.l-wrapper-full .postContents .content ul.harf li {
		width: 100%;
		margin: 0 auto 10px
	}
	.l-wrapper-full .pageContents .content ul.harf li:last-child,
	.l-wrapper-full .postContents .content ul.harf li:last-child {
		margin-bottom: 0;
	}
}


/************************************************************/
/*　テーブル
/************************************************************/

/*表*/
#all_wrap table {
	overflow: hidden;
	table-layout: fixed;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 10px;
	border-radius: 0;
	background: #fff;
	border: 10px solid #e3e3e3;
}
#all_wrap table th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	border-bottom: 1px solid #e3e3e3;
	text-align: left;
	vertical-align: middle;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 900;
	background: none;
	color: var(--text);
	width: 170px;
	padding: 20px;
	margin: 0;
}
#all_wrap table td {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	border-bottom: none;
	padding: 20px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid #e3e3e3;
}
#all_wrap table td.ttl {
	display: table-cell;
	border: none;
	background: #fafafa;
	vertical-align: inherit;
	border-bottom: none;
	padding: 10px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid var(--text);
}
#all_wrap .content table td > p:last-of-type {
	margin-bottom: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*表*/
	#all_wrap table {
		overflow: hidden;
		table-layout: fixed;
		border: none;
		background: #fff;
		padding: 0;
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		border: none;
	}
	#all_wrap table th {
		font-style: normal;
		font-feature-settings: "palt";
		border: none;
		border-bottom: none;
		background: rgba(0,0,0,0.1);
		vertical-align: inherit;
		padding: 10px 15px;
		margin: 0;
		width: 100%;
		min-width: 100%;
		font-size: 14px;
		display: block;
		text-align: left;
	}
	#all_wrap table td {
		border: none;
		background: #fff;
		vertical-align: inherit;
		border-bottom: none;
		padding: 10px 15px;
		margin: 0;
		border-left: 1px solid rgba(0,0,0,0.1);
		border-right: 1px solid rgba(0,0,0,0.1);
		border-bottom: 1px solid rgba(0,0,0,0.1);
		font-size: 14px;
		width: 100%;
		min-width: 100%;
		display: block;
	}
}

/************************************************************/
/*　お問い合わせ&テーブル
/************************************************************/

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px)
}

/*新フォーム*/
#all_wrap .content .contactform,
#all_wrap .contactform {
	width: 100%;
	max-width: 850px;
	padding: 50px;
	margin: 0 auto 40px;
	background: #fafafa;
	position: relative;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#all_wrap .content .contactform > li {
	padding: 30px 0;
	margin: 0;
	position: relative;
	list-style: none;
	border-bottom: 1px solid #d2d2d2;
}
#all_wrap .content .contactform > li:first-child {
	padding-top: 0;
}
#all_wrap .content .contactform > li:last-child {
	border: none;
}
#all_wrap .content .contactform > li::before,
#all_wrap .content .contactform > li::after {
	display: none;
}
#all_wrap .contactform > li p {
	margin: 0 auto;
}
#all_wrap .contactform > li h3 {
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	padding: 0;
	margin: 0 auto 15px;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .contactform > li h3 .att {
	display: inline;
	padding: 3px 7px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	background: #e03131;
	border-radius: 3px;
}
#all_wrap .contactform > li h3::before,
#all_wrap .contactform > li h3::after {
	display: none;
}
#all_wrap .contactform > li input {
	border-radius: 0;
	border: 1px solid #ccc;
	box-shadow: none;
	font-size: 15px;
	padding: 15px;
}
#all_wrap .contactform > li input[type="radio"] {
	width: 12px;
}
#all_wrap .contactform > li.add span:first-of-type input {
	margin: 0 0 10px;
}
#all_wrap .contactform > li input[type="file"] {
	border-radius: 0;
	border: none;
	box-shadow: none;
	font-size: 15px;
	padding: 0;
}
#all_wrap .contactform > li input.wpcf7-text {
	width: 100%;
	padding: 15px;
	margin: 0;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 15px;
	line-height: 1;
	background: #fff;
	outline: none;
}
#all_wrap .contactform > li input.wpcf7-text.w50 {
	width: 50%;
}
#all_wrap .contactform > li input.wpcf7-text.w25 {
	width: 25%;
}
/*ラジオボタン*/
#all_wrap .contactform > li .wpcf7-radio {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
}
#all_wrap .contactform > li .wpcf7-list-item {
	display: inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 5px;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
#all_wrap .contactform > li .wpcf7-list-item label {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
}
/*チェックボックス*/
#all_wrap .wpcf7-checkbox {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
	position: relative;
}
#all_wrap .wpcf7-checkbox span {
	cursor: pointer;
}
/*テキストエリア*/
#all_wrap .contactform > li textarea {
	width: 100%;
	padding: 15px;
	margin: 0;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 15px;
	line-height: 2;
	background: #fff;
	outline: none;
}
#all_wrap .txt_cent {
	text-align: center;
}
#all_wrap .txt_cent input[type="submit"] {
	-webkit-appearance: none;
}
#all_wrap .txt_cent input[type="submit"] {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	padding: 15px 50px;
	margin: 0;
	background: var(--base);
	border-radius: 50px;
	font-family: var(--font-jp);
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	z-index: 0;
	transition: var(--ease);
	cursor: pointer;
}
#all_wrap .txt_cent input[type="submit"]::after {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	transition: var(--ease);
}
#all_wrap .txt_cent input[type="submit"]:hover {
	background: var(--sub);
	transition: var(--ease);
}

#all_wrap .wpcf7 .ajax-loader {
	display: none;
}
.wpcf7-spinner {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.contactform_area {
		width: 100%;
		padding: 20px;
		margin: 0 auto;
		background: #fafafa;
		position: relative;
	}
	/*新フォーム*/
	#all_wrap .content .contactform,
	#all_wrap .contactform {
		width: calc(100%);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		background: none;
		grid-row-gap: 20px;
	}
	#all_wrap .contactform > li h3 {
		font-size: 15px;
		margin: 0 auto 10px;
	}
	#all_wrap .contactform > li input {
		font-size: 14px;
		padding: 10px;
	}
	#all_wrap .contactform > li.add span:first-of-type input {
		margin: 0 0 10px;
	}
	#all_wrap .contactform > li input[type="file"] {
		font-size: 14px;
	}
	#all_wrap .contactform > li input.wpcf7-text {
		width: 100%;
		padding: 10px;
		font-size: 14px;
	}
	#all_wrap .contactform > li input.wpcf7-text.w50 {
		width: 100%;
	}
	#all_wrap .contactform > li input.wpcf7-text.w25 {
		width: 50%;
	}
	/*ラジオボタン*/
	#all_wrap .contactform > li .wpcf7-radio {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 15px;
		grid-row-gap: 5px;
	}
	#all_wrap .contactform > li .wpcf7-list-item {
		display: inline-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		column-gap: 5px;
		padding: 0;
		margin: 0;
		cursor: pointer;
	}
	/*チェックボックス*/
	#all_wrap .wpcf7-checkbox {
		column-gap: 20px;
		grid-row-gap: 5px;
		position: relative;
	}
	#all_wrap .wpcf7-checkbox span {
		cursor: pointer;
	}
	/*テキストエリア*/
	#all_wrap .contactform > li textarea {
		width: 100%;
		padding: 10px;
		font-size: 14px;
	}
	#all_wrap .txt_cent {
		text-align: center;
	}

	#all_wrap .wpcf7 .ajax-loader {
		display: none;
	}
	.wpcf7-spinner {
		display: none;
	}
}

/*表削除*/
#all_wrap .pageContents .content .tablenone,
#all_wrap .postContents .content .tablenone {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}
#all_wrap .pageContents .content .tablenone tbody,
#all_wrap .pageContents .content .tablenone th,
#all_wrap .pageContents .content .tablenone td,
#all_wrap .pageContents .content .tablenone tr,
#all_wrap .pageContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .pageContents .content .tablenone tr:nth-child(even) td {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}
#all_wrap .postContents .content .tablenone tbody,
#all_wrap .postContents .content .tablenone th,
#all_wrap .postContents .content .tablenone td,
#all_wrap .postContents .content .tablenone tr,
#all_wrap .postContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .postContents .content .tablenone tr:nth-child(even) td {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

}


/************************************************************/
/*　Google Map
/************************************************************/
.google-maps {
	position: relative;
	padding-bottom: 30%;
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.access_info p {
	font-size: 1.1em;
	line-height: 2em;
	margin-bottom: 20px;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.access_info p {
		width: 90%;
		padding: 0;
		margin: 0 auto;
		font-size: 1.1em;
		line-height: 2em;
		margin-bottom: 20px;
		text-align: center;
	}
	.top_gmap iframe {
		height: 200px;
	}
}



/************************************************************/
/*　全体
/************************************************************/


/************************************************************/
/*　サイトマップ
/************************************************************/
#sitemap {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
}
.sitemap ul {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
}
.sitemap ul li {
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	list-style: none;
}
.sitemap ul li a {
	display: block;
	padding: 15px 15px 15px 30px;
	margin: 0;
	font-family: var(--font-jp);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	position: relative;
	transition: var(--ease);
	color: var(--text);
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.sitemap ul li a:hover {
	transition: var(--ease);
	opacity: 0.8;
}
.sitemap ul li a::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	width: 5px;
	height: 5px;
	border-top: 1px solid rgba(0,0,0,0.2);
	border-right: 1px solid rgba(0,0,0,0.2);
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
	transition: ease 0.2s;
}
.sitemap ul li a > span {
	display: none;
}
.sitemap ul.sub-menu {
	padding-left: 20px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.sitemap ul {
		width: calc(100%);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.sitemap ul .sub-menu {
		padding: 0 0 0 10px;
	}
	.sitemap ul li a {
		font-size: 14px;
	}
}

/*スマホ改行
------------------------------------------------------------*/

.pc { display:block !important; }
.sp { display:none !important; }
@media screen and (max-width: 768px){   
	.pc { display:none !important; }
	.sp { display:block !important; }
}


/************************************************************/
/*　本文ギャラリー
/************************************************************/

/*プラグイン*/
#swipebox-overlay {
	background: rgba(0, 0, 0, 0.8);
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
	display: inline-block;
	max-height: 90%;
	max-width: 90%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}
/*ギャラリー*/
#all_wrap .content .gallery {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto 30px;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .content .gallery::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 13.4px);
}
#all_wrap .content .gallery dl {
	width: calc(100% / 3 - 13.4px);
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .content .gallery dt {
	padding: 0;
	margin: 0;
	text-align: center;
}
#all_wrap .content .gallery dd {
	padding: 0;
	margin: 0;
	text-align: center;
}
#all_wrap .content .gallery dl img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
/*閉じる*/
.tos-close {
	height: 40px;
	top: 10px;
	left: 10px;
	right: unset;
}
.tos-close span:after,
.tos-close span:before {
	width: 10px;
	height: 10px;
	margin-top: -4px;
	margin-left: 0;
	margin-right: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .content .gallery {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .content .gallery::after {
		content: '';
		display: none;
	}
	#all_wrap .content .gallery dl {
		width: calc(100% / 2 - 10px);
		grid-row-gap: 5px;
	}
}

/************************************************************/
/*　Youtube
/************************************************************/
#all_wrap .youtube {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0;
	position: relative;
	aspect-ratio: 16 / 9;
	height: 56.25%;
	overflow: hidden;
	text-align: center;
}
#all_wrap .youtube.full {
	width: 100%;
	max-width: 100%;
}
#all_wrap .youtube > iframe {
	width: 100%;
	height: 100%;
	position: relative;
	top: unset;
	left: unset;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .youtube {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		aspect-ratio: 16 / 9;
		height: 56.25%;
		overflow: hidden;
		text-align: center;
	}
	#all_wrap .youtube > iframe {
		width: 100%;
		height: 100%;
		position: relative;
		top: unset;
		left: unset;
	}
}


/************************************************************/
/*　アーカイブ
/************************************************************/
#all_wrap .archiveList {
	width: calc(100%);
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .archiveList::after {
	content: '';
	display: block;
	width: 31%;
}
#all_wrap .archiveList > li {
	width: 31%;
	padding: 0;
	margin: 0 0 40px;
}
#all_wrap .archiveList > li::before,
#all_wrap .archiveList > li::after {
	display: none;
}
#all_wrap .archiveList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 5px;
}
#all_wrap .archiveList > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .archiveList > li figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .archiveList > li .date {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: lighter;
	line-height: 1em;
	color: #c8c8c8;
	font-style: normal;
	white-space: nowrap;
	padding: 0;
	margin: 0 0 5px;
}
#all_wrap .archiveList > li > h3,
#all_wrap .content .archiveList > li > h3 {
	padding: 0;
	margin: 0 auto 5px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4em;
	font-style: normal;
	border: none;
	background: none;
}
#all_wrap .archiveList > li > p {
	font-size: 14px;
	line-height: 1.7em;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .archiveList {
		width: calc(100%);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#all_wrap .archiveList::after {
		content: '';
		display: none;
	}
	#all_wrap .archiveList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .archiveList > li::before,
	#all_wrap .archiveList > li::after {
		display: none;
	}
	#all_wrap .archiveList > li figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		text-align: center;
		overflow: hidden;
		border-radius: 5px;
	}
	#all_wrap .archiveList > li figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	#all_wrap .archiveList > li figure img {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		object-fit: cover;
	}
	#all_wrap .archiveList > li .date {
		display: inline-block;
		font-family: var(--font-en);
		font-size: 12px;
		font-weight: lighter;
		line-height: 1em;
		color: #c8c8c8;
		font-style: normal;
		white-space: nowrap;
		padding: 0;
		margin: 0 0 5px;
	}
	#all_wrap .archiveList > li > h3,
	#all_wrap .content .archiveList > li > h3 {
		padding: 0;
		margin: 0 auto 5px;
		font-size: 15px;
		font-weight: 700;
		line-height: 1.4em;
		font-style: normal;
		border: none;
		background: none;
	}
	#all_wrap .archiveList > li > p {
		font-size: 14px;
		line-height: 1.7em;
		padding: 0;
		margin: 0;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}

/************************************************************/
/*　記事詳細
/************************************************************/
.singleContent {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto 100px;
}
.singleHeader {
	width: 100%;
	max-width: 850px;
	padding: 0 0 15px;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	border-bottom: 1px solid var(--text);
}
.singleHeader_data {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
	position: relative;
}
.singleHeader_data > .date {
	display: block;
	font-family: var(--font-en);
	font-weight: lighter;
	font-size: 12px;
	line-height: 1;
	color: var(--text);
	padding: 0;
	margin: 0;
}
#all_wrap .tagList {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .tagList > .tag {
	display: inline-block;
	padding: 3px 5px;
	margin: 0;
	background: var(--text);
	border-radius: 3px;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	position: relative;
}
#all_wrap .singleHeader > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 25px;
	line-height: 1.4em;
	color: var(--text);
	text-align: left;
	border: none;
	background: none;
}

.tags {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.tags > span {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	color: #8c8c8c;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.singleContent {
		margin-bottom: 50px;
	}
	.singleHeader {
		width: 100%;
		padding: 0 0 15px;
		margin: 0 auto 20px;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
	}
	#all_wrap .singleHeader > h1 {
		font-size: 18px;
	}
}

/*==============================*/
/*目次*/
/*==============================*/
#all_wrap .content .toc {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
#all_wrap .content .toc-title {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: var(--main);
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	position: relative;
	top: 15px;
	left: 0;
	z-index: 2;
}
#all_wrap .content .toc .toc-list {
	padding: 30px;
	margin: 0;
	position: relative;
	list-style: none;
	background: #f4f4f4;
}
#all_wrap .content .toc .toc-list li ul {
	margin: 10px 0 !important;
	padding: 0 0 0 1.2em;
}
#all_wrap .content .toc .toc-list li {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li a {
	display: inline-block;
	padding: 0 0 0 2em;
	position: relative;
	text-decoration: none;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li ul li a {
	display: inline-block;
	padding: 0 0 0 2em;
	position: relative;
	text-decoration: none;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: lighter;
	line-height: 1.6em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li a:hover {
	text-decoration: underline;
	opacity: 0.8;
}
#all_wrap .content .toc .toc-list li a strong,
#all_wrap .content .toc .toc-list li a span {
	font-family: var(--font-jp);
	font-weight: lighter;
	font-size: 14px !important;
}
#all_wrap .content .contentstable-number {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .content .toc .toc-list > li > a > .contentstable-number::after {
	content: '.';
}
#all_wrap .content .toc-toggle > a {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
}
/*タグ*/
.post-tag {
	margin-top: 5px;
}
.post-tag,
.post-tag a {
	font-size: 14px;
	text-decoration: none;
}
.post-tag a:hover {
	text-decoration: underline;
	color: #0c61a8;
	text-decoration: underline;
}
@media only screen and (max-width: 768px){
	#all_wrap .content .toc .toc-list {
		padding: 20px;
		margin: 0;
		position: relative;
		list-style: none;
		background: #f4f4f4;
	}
	/*タグ*/
	.post-tag,
	.post-tag a {
		font-size: 12px;
	}
	.toc .toc-list {
		padding: 25px 20px 20px;
	}
}

/*==============================*/
/*記事詳細（関連記事）*/
/*==============================*/
.relatedPost {
	max-width: 850px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
.relatedPost > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto;
	background: var(--text);
	position: relative;
	z-index: 0;
}
.relatedPost > header > em {
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}
#all_wrap .relatedPost > header > h2 {
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
}

/* 記事一覧*/
#all_wrap .relatedList {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#all_wrap .relatedList > li {
	padding: 20px 0;
	margin: 0 auto;
	border-bottom: 1px dotted #999;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
	position: relative;
}
.relatedList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.relatedList > li figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.relatedList > li figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.relatedList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .relatedList_info {
	width: calc(100% - 20px - 150px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .relatedList_info > h3 {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 500;
	color: #19244c;
	background: none;
	border: none;
	transition: var(--ease);
}
.relatedList_info > .date {
	font-size: 12px;
	line-height: 1;
	color: #999;
}
#all_wrap .relatedList > li:hover .relatedList_info > h3 {
	text-decoration: underline;
	transition: var(--ease);
	color: var(--main);
	background: none;
	border: none;
}
@media screen and (max-width: 768px) {
	.relatedPost {
		margin: 0 auto;
	}
	#all_wrap .relatedList > li {
		padding: 10px 0;
		column-gap: 10px;
	}
	.relatedList > li figure {
		width: 80px;
	}
	#all_wrap .relatedList_info {
		width: calc(100% - 10px - 80px);
	}
	#all_wrap .relatedList_info > h3 {
		font-size: 14px;
	}
	.relatedList_info > .date {
		font-size: 11px;
	}
	#all_wrap .relatedList_info > h3 {
		font-size: 13px;
	}
	.relatedList_info > .date {
		font-size: 10px;
	}
}

/************************************************************/
/*　ブログ　詳細＆サイドバー 
/************************************************************/

/*==============================*/
/*記事詳細（関連記事）*/
/*==============================*/
#all_wrap .editor {
	padding: 0;
	margin: 50px auto 50px;
	position: relative;
}
#all_wrap .editor > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
	z-index: 0;
}
#all_wrap .editor > header > em {
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-decoration: none;
}
#all_wrap .editor > header > h2 {
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	padding: 0;
	margin: 0;
}
#all_wrap .editorBox {
	width: 100%;
	padding: 20px;
	margin: 0;
	background: #fff;
	border: 5px solid var(--main);
	border-top: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
}
#all_wrap .editorBox > figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 50%;
}
#all_wrap .editorBox > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .editorBox > figure img {
	width: 100%;
	max-width: unset;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover
}
#all_wrap .editorBox_info {
	width: calc(100% - 150px - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	grid-row-gap: 5px;
}
#all_wrap .editorBox_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: bold;
	border: none;
	background: none;
}
#all_wrap .editorBox_info > h3 > small {
	font-size: 12px;
	font-weight: lighter;
}
#all_wrap .editorBox_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 12px;
	line-height: 1.7em;
}

@media screen and (max-width: 768px) {
	#all_wrap .editorBox > figure {
		width: 100px;
	}
	#all_wrap .editorBox_info {
		width: calc(100% - 100px - 20px);
	}
	#all_wrap .editorBox_info > h3 {
		font-size: 15px;
	}
	#all_wrap .editorBox {
		width: 100%;
		padding: 15px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .editorBox > figure {
		width: 150px;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .editorBox_info {
		width: calc(100%);
	}
	#all_wrap .editorBox_info > h3 {
		width: 100%;
		font-size: 15px;
		text-align: center;
	}
}


/*前後の記事*/
#all_wrap .prevNext {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .prevNext__pop {
	background-color: var(--text);
}
#all_wrap .eyecatch {
	background: var(--text);
}
#all_wrap .heading-secondary {
	color: var(--text);
}
#all_wrap .prevNext__text {
	padding: 0;
	margin: 0;
	color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*前後の記事*/
	#all_wrap .prevNext {
		width: 90%;
		padding: 0;
		margin: 0 auto;
	}
}

/*プロフィール*/
#all_wrap .profile {
	border: none;
	margin-top: 0;
	padding: 20px;
	background: var(--text);
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
#all_wrap .profile__text {
	background: none;
	font-size: 15px;
	padding: 0 0 0 13px;
	margin-bottom: 15px;
	margin-top: 40px;
	border-left: 2px solid #d3c8a8;
	font-style: italic;
	text-align: left;
	color: #d3c8a8;
}
#all_wrap .profile__contents {
	width: 80%;
	padding: 0;
	margin: 0;
}
#all_wrap .profile__name {
	color: #d3c8a8;
	font-size: 19px;
	line-height: 1.4em;
	font-style: italic;
	padding: 0 0 10px;
	margin: 0 auto 10px;
	border-bottom: 1px solid #d3c8a8;
}
#all_wrap .profile__author {
	width: 15%;
	text-align: left;
	padding: 0;
	margin: 0 20px 0 0;
}
#all_wrap .profile__author img {
	width: 100%;
	height: auto;
	margin: 0;
}
#all_wrap .profile__list {
	display: none;
}
#all_wrap .profile__description {
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*プロフィール*/
	#all_wrap .profile {
		border: none;
		margin-top: 0;
		padding: 20px;
		background: var(--text);
		display: -webkit-flex;
		display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#all_wrap .profile__text {
		background: none;
		font-size: 15px;
		padding: 0 0 0 13px;
		margin-bottom: 15px;
		margin-top: 40px;
		border-left: 2px solid #d3c8a8;
		font-style: italic;
		text-align: left;
		color: #d3c8a8;
	}
	#all_wrap .profile__contents {
		width: 80%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .profile__name {
		color: #d3c8a8;
		font-size: 19px;
		line-height: 1.4em;
		font-style: italic;
		padding: 0 0 10px;
		margin: 0 auto 10px;
		border-bottom: 1px solid #d3c8a8;
	}
	#all_wrap .profile__author {
		width: 15%;
		text-align: left;
		padding: 0;
		margin: 0 0 0 0;
	}
	#all_wrap .profile__author img {
		width: 100%;
		height: auto;
		margin: 0;
	}
	#all_wrap .profile__list {
		display: none;
	}
	#all_wrap .profile__description {
		padding: 0;
		margin: 0;
	}
}

/************************************************************/
/*　共通
/************************************************************/
#all_wrap .sec {
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
#all_wrap .sec.mb50 {
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#all_wrap .sec.mb0 {
	padding: 0;
	margin: 0 auto;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .sec {
		padding: 0;
		margin: 0 auto 50px;
		position: relative;
	}
	#all_wrap .sec.mb50 {
		padding: 0;
		margin: 0 auto 30px;
		position: relative;
	}
	#all_wrap .sec.mb0 {
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
}

#all_wrap .box {
	padding: 0;
	margin: 0;
	position: relative;
}

/*mt*/
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt100 { margin-top: 100px !important; }
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*mt*/
	.mt10 { margin-top: 10px !important; }
	.mt15 { margin-top: 10px !important; }
	.mt20 { margin-top: 10px !important; }
	.mt30 { margin-top: 15px !important; }
	.mt40 { margin-top: 20px !important; }
	.mt50 { margin-top: 25px !important; }
	.mt100 { margin-top: 50px !important; }
}

/*リスト*/
.content ul {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: disc;
	list-style-position: inside;
}
.content ul > li {
	padding: 0;
	margin: 0;
	margin-bottom: 5px;
}
.content ul > li:last-child {
	margin-bottom: 0;
}
.content ul > li::before,
.content ul > li::after {
	display: none;
}


/************************************************************/
/*　トップページ About
/************************************************************/
#topAbout {
	width: 100%;
	min-width: 1100px;
	padding: 120px 0 60px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: flex-end;
	align-items: flex-end;
	z-index: 1;
}
#topAbout::after {
	content: '';
	display: block;
	width: 50%;
	height: 100%;
	padding: 0;
	margin: 0;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/japan.svg');
	background-repeat: no-repeat;
	background-size: 110%;
	background-position: left bottom 220px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.topAbout_info {
	width: calc(100% - 500px);
	padding: 0 60px;
	margin: 0;
	position: relative;
}
#all_wrap .topAbout_info > h3 {
	padding: 0 0 20px;
	margin: 0 auto 20px;
	background: none;
	border-bottom: 1px solid #d6d6d6;
	position: relative;
	font-size: 28px;
	line-height: 1.4em;
	font-weight: bold;
	color: var(--text);
}
#all_wrap .topAbout_info > h3::before {
	content: '';
	display: block;
	width: 85px;
	height: 1px;
	background: var(--sub);
	position: absolute;
	bottom: -1px;
	left: 0;
}
#all_wrap .topAbout_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*画像*/
#topAbout > figure {
	width: 500px;
	min-width: 500px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-content: flex-end;
	align-items: flex-end;
}
#topAbout > figure > span:nth-of-type(1) {
	display: block;
	width: 80%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px 0 0 10px;
	z-index: 2;
}
#topAbout > figure > span:nth-of-type(1)::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#topAbout > figure > span:nth-of-type(2) {
	display: block;
	width: 200px;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: -150px;
	left: 0;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
	z-index: 2;
}
#topAbout > figure > span:nth-of-type(2)::before {
	content: '';
	display: block;
	padding: 50%;
}
#topAbout > figure > span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topAbout {
		width: 100%;
		min-width: 100%;
		padding: 40px 0;
		margin: 0 auto;
		flex-wrap: wrap;
		grid-row-gap: 30px;
		z-index: 1;
	}
	#topAbout::after {
		width: 100%;
		height: 100%;
		z-index: -1;
	}
	.topAbout_info {
		width: calc(100% - 60px);
		margin: 0 auto;
		padding: 0;
	}
	#all_wrap .topAbout_info > h3 {
		padding: 0 0 15px;
		margin: 0 auto 10px;
		font-size: 20px;
	}

	/*画像*/
	#topAbout > figure {
		width: 100%;
		min-width: 100%;
	}
	#topAbout > figure > span:nth-of-type(2) {
		display: block;
		width: 130px;
		bottom: 30px;
		left: 0;
		border-radius: 0 10px 10px 0;
	}
	#topAbout > figure > span:nth-of-type(2)::before {
		content: '';
		display: block;
		padding: 120% 0 0;
	}
}

/************************************************************/
/*　トップページ Service
/************************************************************/
#topService {
	width: 100%;
	min-width: 1100px;
	padding: 80px 120px 80px 60px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#topService::before {
	content: '';
	display: block;
	width: calc(100% - 60px);
	height: 100%;
	padding: 0;
	margin: 0;
	background: #def1ff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 0 50px 0 0;
}
#topService.blue-01::before {
	background: #def1ff;
}
#topService.blue-02::before {
	background: #b8e2ff;
}
#topService.green-01::before {
	background: #dbeedf;
}
#topService.orange-01::before {
	background: #ffebc7;
}
#topService.green-02::before {
	background: #cfeee3;
}
/*タブボックス*/
.tabBox {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 30px;
	width: 100%;
	position: relative;
}
.tabBox > label {
	width: calc(100% / 5 - 8px);
	padding: 15px 10px;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	background: var(--base);
	border-radius: 5px;
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	opacity: 0.3;
	position: relative;
	transition: var(--ease);
	cursor: pointer;
}
.tabBox > label:hover {
	opacity: 1;
	background: var(--base);
}
.tabBox > label::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 0 0 auto;
	background: none;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}
.tabBox > label em {
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	font-style: normal;
}
.tabBox input {
	display: none;
	transition: var(--ease);
}
.tabBox > div {
	display: none;
	width: 100%;
	padding: 0;
	background: none;
	transition: var(--ease);
	order: 1;
}
.tabBox label:has(:checked) {
	opacity: 1;
	background: var(--base);
	box-sizing: border-box;
	transition: var(--ease);
}
.tabBox label:has(:checked) + div {
	display: block;
	transition: var(--ease);
}
/*ボックス*/
.topServiceBox {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 50px;
}
.topService_info {
	width: calc(100% - 50px - 550px);
	padding: 0;
	margin: 0;
	position: relative;
}
.topService_info > em {
	display: inline-block;
	padding: 7px 10px;
	margin: 0 0 10px;
	border-radius: 25px;
	font-family: var(--font-en);
	font-size: 12px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	background: var(--main);
}
#topService.blue-01 .topService_info > em {
	background: var(--main);
}
#topService.blue-02 .topService_info > em {
	background: var(--main);
}
#topService.green-01 .topService_info > em {
	background: var(--green);
}
#topService.green-02 .topService_info > em {
	background: var(--green);
}
#topService.green-03 .topService_info > em {
	background: var(--green);
}

#all_wrap .topService_info > h2 {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 35px;
	line-height: 1.2em;
	font-weight: bold;
}
#all_wrap .topService_info > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*-more*/
.viewmore {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	position: relative;
}
.viewmore > a {
	display: inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: var(--base);
	transition: var(--ease);
}
.viewmore > a::before {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	aspect-ratio: 1/1;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/more_navy.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
.viewmore > a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
.viewmore.white > a {
	color: var(--text);
}
.viewmore.white > a::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/more_blue.svg');
}
/*-画像*/
.topServiceBox > figure {
	width: 550px;
	max-width: 550px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
.topServiceBox > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.topServiceBox > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topService {
		width: 100%;
		min-width: 100%;
		padding: 40px 30px;
	}
	#topService::before {
		width: calc(100%);
		border-radius: 0;
	}
	/*タブボックス*/
	.tabBox {
		column-gap: 10px;
		grid-row-gap: 10px;
		width: 100%;
	}
	.tabBox > label {
		width: calc(100% / 2 - 5px);
		padding: 10px 10px;
		column-gap: 10px;
		border-radius: 5px;
		font-size: 14px;
	}
	/*ボックス*/
	.topServiceBox {
		width: 100%;
		padding: 10px 0 0;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.topService_info {
		width: calc(100%);
	}
	.topService_info > em {
		display: inline-block;
		padding: 7px 10px;
		margin: 0 0 10px;
		border-radius: 25px;
		font-size: 12px;
	}

	#all_wrap .topService_info > h2 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 20px;
	}
	#all_wrap .topService_info > p {
		padding: 0;
		margin: 0 auto 10px;
	}
	/*-more*/
	.viewmore > a {
		column-gap: 10px;
		font-size: 15px;
	}
	.viewmore > a::before {
		width: 20px;
		height: 20px;
	}
	/*-画像*/
	.topServiceBox > figure {
		width: 100%;
		max-width: 100%;
	}
}

/************************************************************/
/*　トップページ Works
/************************************************************/
#topWorks {
	width: 100%;
	min-width: 100%;
	padding: 0 0 0 60px;
	margin: 0 auto;
	background: #def1ff;
	position: relative;
	z-index: 0;
}
#topWorks.blue-01 {
	background: #def1ff;
}
#topWorks.blue-02 {
	background: #b8e2ff;
}
#topWorks.green-01 {
	background: #dbeedf;
}
#topWorks.orange-01 {
	background: #ffebc7;
}
#topWorks.green-02 {
	background: #cfeee3;
}
#topWorks::before {
	content: '';
	display: block;
	width: 100%;
	height: 200px;
	background: #eff2f1;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.topWorks_wrap {
	width: 100%;
	padding: 80px 0;
	margin: 0;
	background: #6fb3e2;
	border-radius: 50px 0 0 0;
	position: relative;
	z-index: 0;
}
.topWorks_wrap::before {
	content: '';
	display: block;
	width: 100%;
	height: 200px;
	background: #eff2f1;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
#all_wrap .topWorks_wrap > .contHead {
	width: calc(100% - 120px);
}
/*リスト*/
#all_wrap #topWorks .slider {
	width: calc(100% - 100px);
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
}
#topWorks .slider .slick-track {
	display: flex;
	column-gap: 20px;
}
#topWorks .slider .slick-slide {
	padding: 0;
	margin: 0 !important;
	background: none;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	flex-wrap: wrap;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
#topWorks .slider li::before,
#topWorks .slider li::after {
	display: none;
}
#topWorks .slider li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#topWorks .slider li figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#topWorks .slider li figure::before {
	content: '';
	display: block;
	padding-top: 120%;
}
#topWorks .slider li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
#topWorks .slider li:hover figure img {
	transform: translate(-50%,-50%) scale(1.05);
	-webkit-transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#topWorks .slider li .topWorksList_info {
	width: 100%;
	height: 100%;
	padding: 20px 80px 20px 20px;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0) 100%);
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	justify-content: flex-end;
	align-content: flex-end;
	align-items: flex-end;
	grid-row-gap: 10px;
}
#topWorks .slider li .topWorksList_info::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	position: absolute;
	bottom: 20px;
	right: 20px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/arrow_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 7px auto;
	background-color: var(--main);
	border-radius: 50%;
	transform: scale(-1,1);
}
#all_wrap #topWorks .slider li .topWorksList_info h3 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.4em;
	text-align: left;
	font-weight: 700;
	color: #fff;
	border: none;
	background: none;
	position: relative;
	transition: var(--ease);
}
#topWorks .slider li:hover .topWorksList_info h3 {
	color: var(--sub);
	transition: var(--ease);
}
.tagList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.tagList > span {
	display: inline-block;
	font-size: 10px;
	line-height: 1;
	color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topWorks {
		width: 100%;
		min-width: 100%;
		padding: 0;
	}
	#topWorks::before {
		width: 100%;
		height: 100px;
	}
	.topWorks_wrap {
		width: 100%;
		padding: 40px 0;
		border-radius: 0;
	}
	.topWorks_wrap::before {
		height: 100px;
	}
	#all_wrap .topWorks_wrap > .contHead {
		width: calc(100% - 60px);
	}
	/*リスト*/
	#all_wrap #topWorks .slider {
		width: calc(100% - 40px);
		padding: 0;
		margin: 0 auto;
	}
	#topWorks .slider .slick-track {
		display: flex;
		column-gap: 0;
	}
	#topWorks .slider .slick-slide {
		padding: 0;
		margin: 0 10px !important;
	}
	#topWorks .slider li .topWorksList_info {
		width: 100%;
		height: 100%;
		padding: 20px;
		grid-row-gap: 5px;
	}
	#topWorks .slider li .topWorksList_info::before {
		display: none;
	}
	#all_wrap #topWorks .slider li .topWorksList_info h3 {
		font-size: 12px;
		line-height: 1.4em;
	}
	.tagList {
		width: 100%;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	.tagList > span {
		display: inline-block;
		font-size: 0.8rem;
	}
}


/*Nextボタン*/
#all_wrap #topWorks .slider .slick-next {
	width: 40px;
	height: 40px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	background: #eff2f1;
	border: none;
	border-radius: 50%;
	position: absolute;
	top: -70px;
	right: 10px;
	display: block;
	cursor: pointer;
	text-indent: -9999px;
	transition: var(--ease);
	z-index: 20;
	outline: none;
}
#all_wrap #topWorks .slider .slick-next::after {
	content: '';
	display: block;
	width: 13px;
	height: 11px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/arrow_blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	border: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(-1,1);
	-webkit-transform: translate(-50%,-50%) scale(-1,1);
	transition: var(--ease);
}
#all_wrap #topWorks .slider .slick-next:hover {
	background: var(--sub);
	transition: var(--ease);
}
/*Prevボタン*/
#all_wrap #topWorks .slider .slick-prev {
	width: 40px;
	height: 40px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	background: #eff2f1;
	border: none;
	border-radius: 50%;
	position: absolute;
	top: -70px;
	right: 60px;
	display: block;
	cursor: pointer;
	text-indent: -9999px;
	transition: var(--ease);
	z-index: 20;
	outline: none;
}
#all_wrap #topWorks .slider .slick-prev::after {
	content: '';
	display: block;
	width: 13px;
	height: 11px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/arrow_blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	border: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(1,1);
	-webkit-transform: translate(-50%,-50%) scale(1,1);
	transition: var(--ease);
}
#all_wrap #topWorks .slider .slick-prev:hover {
	background: var(--sub);
	transition: var(--ease);
}
#all_wrap #topWorks .slider .slick-next:hover::after,
#all_wrap #topWorks .slider .slick-prev:hover::after{
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/arrow_w.svg');
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*Nextボタン*/
	#all_wrap #topWorks .slider .slick-next {
		width: 30px;
		height: 30px;
		top: -50px;
		right: 10px;
	}
	/*Prevボタン*/
	#all_wrap #topWorks .slider .slick-prev {
		width: 30px;
		height: 30px;
		top: -50px;
		right: 50px;
	}
}

/************************************************************/
/*　トップページ Company
/************************************************************/
#topCompany {
	width: 100%;
	padding: 0 60px 120px;
	margin: 0 auto;
	background: #eff2f1;
	position: relative;
	z-index: 0;
}
#all_wrap .topCompanyList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 4px;
}
#all_wrap .topCompanyList > li {
	width: calc(50% / 2 - 2px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 4px;
}
#all_wrap .topCompanyList > li.main {
	width: calc(50% - 4px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 4px;
}
#all_wrap .topCompanyList > li::before,
#all_wrap .topCompanyList > li::after {
	display: none;
}
#all_wrap .topCompanyList_box {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.topCompanyList_box > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	opacity: 0.6;
}
.topCompanyList_box > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 10px;
}
.topCompanyList_box > figure::before {
	content: '';
	display: block;
	padding-top: calc(75% - 4px);
}
.topCompanyList_box > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
.topCompanyList_box:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transition: var(--ease);
}
#all_wrap .topCompanyList_box > h3 {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: calc(100% - 40px);
	padding: 15px 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 3;
	border-top: 1px solid rgba(255,255,255,0.5);
	font-size: 16px;
	line-height: 1;
	color: #fff;
	font-weight: 500;
}
#all_wrap .topCompanyList_box > h3::after {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	aspect-ratio: 1/1;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/more_blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCompany {
		width: 100%;
		padding: 0 30px 40px;
	}
	#all_wrap .topCompanyList {
		width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
		flex-wrap: wrap;
	}
	#all_wrap .topCompanyList > li {
		width: calc((100% - 10px) / 2);
		grid-row-gap: 10px;
	}
	#all_wrap .topCompanyList > li.main {
		width: 100%;
		grid-row-gap: 10px;
	}
	.topCompanyList_box > figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	.topCompanyList_box {
		width: 100%;
	}
	#all_wrap .topCompanyList_box > h3 {
		width: calc(100% - 40px);
		padding: 12px 0;
		font-size: 14px;
	}
	#all_wrap .topCompanyList_box > h3::after {
		content: '';
		display: block;
		width: 14px;
		height: 14px;
	}
}

/************************************************************/
/*　トップページ スカイプロムナード
/************************************************************/
#topSkypro {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: none;
	position: relative;
	z-index: 0;
	background: #fafafa;
}
.topSkypro_info {
	width: calc(100%);
	padding: 50px 120px 50px 60px;
	margin: 0;
	background: none;
	border-radius: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 100px;
	z-index: 2;
}
#all_wrap .topSkypro_info > h2 {
	width: 350px;
	min-width: 350px;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .topSkypro_info > h2 img {
	width: 100%;
	height: auto;
}
#all_wrap .topSkypro_info > dl {
	width: 500px;
	min-width: 500px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 20px;
}
#all_wrap .topSkypro_info > dl dt {
	width: 120px;
	min-width: 120px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .topSkypro_info > dl dt img {
	width: 100%;
	height: auto;
}
#all_wrap .topSkypro_info > dl dd {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .topSkypro_info > dl dd p {
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	font-size: 14px;
	line-height: 1.5em;
}
#all_wrap .topSkypro_info > dl dd > a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 10px 10px 12px;
	margin: 0;
	background: #fff;
	border: 1px solid #c09b30;
	border-radius: 5px;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: #c09b30;
	text-align: center;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .topSkypro_info > dl dd > a:hover {
	background: #c09b30;
	border: 1px solid #c09b30;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topSkypro {
		width: 100%;
	}
	#topSkypro::before {
		height: calc(100%);
		background: #eff2f1;
	}
	#topSkypro > figure {
		border-radius: 0;
	}
	.topSkypro_info {
		width: calc(100%);
		padding: 30px;
		border-radius: 0;
		column-gap: 0;
		z-index: 2;
		flex-wrap: wrap;
	}
	#all_wrap .topSkypro_info > h2 {
		width: 50%;
		min-width: auto;
		padding: 0;
		margin: 0 0 20px;
	}
	#all_wrap .topSkypro_info > dl {
		width: 100%;
		min-width: 100%;
		column-gap: 15px;
		align-items: flex-start;
	}
	#all_wrap .topSkypro_info > dl dt {
		width: 80px;
		min-width: 80px;
		position: absolute;
		top: 0;
		left: 0;
	}
	#all_wrap .topSkypro_info > dl dd {
		width: calc(100%);
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .topSkypro_info > dl dd p {
		padding: 0 0 0 95px;
		margin: 0 auto 15px;
	}
	#all_wrap .topSkypro_info > dl dd > a {
		column-gap: 10px;
		padding: 10px;
		font-size: 12px;
	}
}

/************************************************************/
/*　トップページ News
/************************************************************/
#topNews {
	width: 100%;
	padding: 120px 60px;
	margin: 0 auto;
	background: none;
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}
#topNews > header {
	width: 230px;
	min-width: 230px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	grid-row-gap: 10px;
}
#all_wrap #topNews > header > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 60px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	font-style: normal;
	white-space: nowrap;
}
#all_wrap #topNews > header > h2 {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: relative;
	font-size: 17px;
	line-height: 1;
	font-weight: bold;
	color: var(--main);
	font-style: normal;
	white-space: nowrap;
}
#all_wrap #topNews > header > h2::before {
	content: '';
	display: block;
	width: 13px;
	height: 19px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/slash.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#all_wrap #topNews > header > .viewmore {
	margin: auto 0 0;
}
/*リスト*/
#all_wrap .newsList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap .newsList.top {
	width: calc(100% - 50px - 250px);
}
#all_wrap .newsList > li {
	width: 100%;
	padding: 20px 0;
	margin: 0;
	position: relative;
	border-bottom: 1px solid #eaeaea;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 15px;
}
#all_wrap .newsList > li .date {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	color: #323232;
}
#all_wrap .newsList > li .catname {
	display: inline-block;
	min-width: 65px;
	padding: 3px 5px;
	background: #6cbc59;
	border-radius: 3px;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	text-align: center;
}
#all_wrap .newsList > li .catname.media {
	background: #6984c7;
}
#all_wrap .newsList > li .catname.product {
	background: #de625d;
}
#all_wrap .newsList > li h3 {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
}
#all_wrap .newsList > li h3 a {
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	text-decoration: none;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .newsList > li h3 a:hover {
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	text-decoration: none;
	color: var(--main);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topNews {
		width: 100%;
		padding: 40px 30px 40px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#topNews > header {
		width: 100%;
		min-width: 100%;
		flex-direction: unset;
		align-items: baseline;
		column-gap: 10px;
		grid-row-gap: 0;
	}
	#all_wrap #topNews > header > em {
		font-size: 30px;
	}
	#all_wrap #topNews > header > h2 {
		column-gap: 10px;
		font-size: 12px;
	}
	#all_wrap #topNews > header > h2::before {
		width: auto;
		height: 12px;
		aspect-ratio: 99 / 150;
	}
	/*リスト*/
	#all_wrap .newsList.top {
		width: calc(100%);
	}
	#all_wrap .newsList > li {
		width: 100%;
		padding: 12px 10px;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 5px;
	}
	#all_wrap .newsList > li .date {
		display: inline-block;
		font-size: 10px;
		line-height: 1;
		color: #323232;
	}
	#all_wrap .newsList > li .catname {
		display: inline-block;
		min-width: fit-content;
		font-size: 0.8rem;
	}
	#all_wrap .newsList > li h3 {
		width: 100%;
	}
	#all_wrap .newsList > li h3 a {
		font-size: 12px;
		line-height: 1.4em;
		font-weight: 400;
	}
	#all_wrap .newsList > li h3 a:hover {
		font-size: 12px;
		line-height: 1.4em;
		font-weight: 400;
	}
}

/************************************************************/
/*　トップページ Recruit
/************************************************************/
#topRecruit {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: var(--gradient);
	position: relative;
	z-index: 0;
	border-radius: 50px 50px 0 0;
	overflow: hidden;
}
#topRecruit::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/topRecruit_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#topRecruit > header {
	width: 100%;
	min-width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	grid-row-gap: 10px;
}
#all_wrap #topRecruit > header > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 55px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
	white-space: nowrap;
}
#all_wrap #topRecruit > header > h2 {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: relative;
	font-size: 17px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	white-space: nowrap;
}
#all_wrap #topRecruit > header > h2::before {
	content: '';
	display: block;
	width: 13px;
	height: 19px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/slash_w.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
/*ボタン*/
#all_wrap .recruitBtn {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 15px;
	grid-row-gap: 15px;
}
#all_wrap .recruitBtn > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .recruitBtn > li a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 15px 50px;
	margin: 0;
	background: #1a335b;
	border: 1px solid #1a335b;
	border-radius: 10px;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: var(--ease);
}
#all_wrap .recruitBtn > li a::after {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(45deg);
}
#all_wrap .recruitBtn > li a:hover {
	background: var(--sub);
	border: 1px solid #fff;
	font-size: 15px;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
/*-お問い合わせ*/
.topRecruit_contact {
	width: calc(100% - 200px);
	max-width: 850px;
	min-width: 800px;
	padding: 60px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 20px;
	transition: var(--ease);
}
.topRecruit_contact::before {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	aspect-ratio: 1/1;
	background: var(--main);
	position: absolute;
	top: 50%;
	right: 55px;
	transform: translate(0,-50%);
	z-index: 0;
	opacity: 0.4;
	border-radius: 50%;
	transition: var(--ease);
}
.topRecruit_contact:hover::before {
	transform: translate(0,-50%) scale(1.1);
	transition: var(--ease);
}
.topRecruit_contact::after {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	aspect-ratio: 1/1;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/more_blue.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translate(0,-50%);
	z-index: 1;
}
.topRecruit_contact > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .topRecruit_contact .contHead {
	margin: 0;
}
#all_wrap .topRecruit_contact .contHead em {
	color: var(--main);
}
#all_wrap .topRecruit_contact:hover .contHead em,
#all_wrap .topRecruit_contact:hover .contHead h2 {
	color: var(--sub);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topRecruit {
		width: 100%;
		padding: 30px 0;
		border-radius: 20px 20px 0 0;
	}
	#topRecruit::before {
		background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/topRecruit_bg_sp.webp');
	}
	#topRecruit > header {
		width: 100%;
		min-width: 100%;
		margin: 0 auto 20px;
		flex-direction: unset;
		justify-content: center;
		align-content: center;
		align-items: baseline;
		grid-row-gap: 0;
		column-gap: 10px;
	}
	#all_wrap #topRecruit > header > em {
		font-size: 30px;
	}
	#all_wrap #topRecruit > header > h2 {
		font-size: 12px;
		width: auto;
	}
	#all_wrap #topRecruit > header > h2::before {
		width: auto;
		height: 12px;
		aspect-ratio: 99 / 150;
	}
	/*ボタン*/
	#all_wrap .recruitBtn {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .recruitBtn > li {
		width: calc((100% - 10px) / 2);
	}
	#all_wrap .recruitBtn > li a {
		column-gap: 10px;
		padding: 12px 30px;
		border-radius: 10px;
		font-size: 14px;
		justify-content: center;
		text-align: center;
		white-space: nowrap;
	}
	#all_wrap .recruitBtn > li a::after {
		width: 5px;
		height: 5px;
		right: 10px;
	}
	#all_wrap .recruitBtn > li a:hover {
		font-size: 14x;
	}
	/*-お問い合わせ*/
	.topRecruit_contact {
		width: calc(100% - 60px);
		max-width: 100%;
		min-width: calc(100% - 60px);
		padding: 20px;
		border-radius: 20px;
	}
	.topRecruit_contact::before {
		width: 40px;
		height: 40px;
		right: 20px;
	}
	.topRecruit_contact::after {
		content: '';
		display: block;
		width: 30px;
		height: 30px;
		right: 25px;
	}
}

/************************************************************/
/*　CTA　お問い合わせ
/************************************************************/
#topContact {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: var(--gradient);
	position: relative;
	z-index: 0;
	border-radius: 50px 50px 0 0;
	overflow: hidden;
}
#topContact::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/f_fownload_default.webp');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 1280px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	opacity: 0.2;
}
#topContact.bousui::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/f_fownload_bousui.webp');
}
#topContact.ryokka::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/f_fownload_ryokka.webp');
}
#topContact.taiyoukou::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/f_fownload_taiyoukou.webp');
}
#topContact > header {
	width: 100%;
	min-width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	grid-row-gap: 10px;
}
#all_wrap #topContact > header > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 60px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
	white-space: nowrap;
}
#all_wrap #topContact > header > h2 {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: relative;
	font-size: 17px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	white-space: nowrap;
}
#all_wrap #topContact > header > h2::before {
	content: '';
	display: block;
	width: 13px;
	height: 19px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/slash_w.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#all_wrap #topContact > header > h3 {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: relative;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	white-space: nowrap;
	text-align: center;
}
/*ボタン*/
#all_wrap .contactBtn {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 15px;
	grid-row-gap: 15px;
}
#all_wrap .contactBtn > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .contactBtn > li a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 15px 100px;
	margin: 0;
	background: #fff;
	border: 1px solid #fff;
	border-radius: 10px;
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	color: var(--main);
	text-decoration: none;
	position: relative;
	transition: var(--ease);
}
#all_wrap .contactBtn > li a::before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_download.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .contactBtn > li a::after {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(45deg);
}
#all_wrap .contactBtn > li a:hover {
	opacity: 0.8;
	text-decoration: none;
	transition: var(--ease);
}
/*-お問い合わせ*/
.topContact_contact {
	width: calc(100% - 200px);
	max-width: 850px;
	min-width: 800px;
	padding: 60px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 20px;
	transition: var(--ease);
}
.topContact_contact::before {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	aspect-ratio: 1/1;
	background: var(--main);
	position: absolute;
	top: 50%;
	right: 55px;
	transform: translate(0,-50%);
	z-index: 0;
	opacity: 0.4;
	border-radius: 50%;
	transition: var(--ease);
}
.topContact_contact:hover::before {
	transform: translate(0,-50%) scale(1.1);
	transition: var(--ease);
}
.topContact_contact::after {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	aspect-ratio: 1/1;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/more_blue.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translate(0,-50%);
	z-index: 1;
}
.topContact_contact > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .topContact_contact .contHead {
	margin: 0;
}
#all_wrap .topContact_contact .contHead em {
	color: var(--main);
}
#all_wrap .topContact_contact:hover .contHead em,
#all_wrap .topContact_contact:hover .contHead h2 {
	color: var(--sub);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topContact {
		width: 100%;
		padding: 20px 0;
		border-radius: 20px 20px 0 0;
	}
	#topContact::before {
		background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/f_fownload_default_sp.webp');
	}
	#topContact.bousui::before {
		background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/f_fownload_bousui_sp.webp');
	}
	#topContact.ryokka::before {
		background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/f_fownload_ryokka_sp.webp');
	}
	#topContact.taiyoukou::before {
		background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/f_fownload_taiyoukou_sp.webp');
	}
	#topContact > header {
		margin: 0 auto 10px;
		grid-row-gap: 10px;
	}
	#all_wrap #topContact > header > em {
		font-size: 30px;
	}
	#all_wrap #topContact > header > h2 {
		font-size: 12px;
	}
	#all_wrap #topContact > header > h2::before {
		width: auto;
		height: 12px;
		aspect-ratio: 99 / 150;
	}
	#all_wrap #topContact > header > h3 {
		column-gap: 10px;
		font-size: 18px;
	}
	/*ボタン*/
	#all_wrap .contactBtn {
		margin: 0 auto;
	}
	#all_wrap .contactBtn > li a {
		column-gap: 10px;
		padding: 12px 30px;
		font-size: 16px;
	}
	#all_wrap .contactBtn > li a::before {
		width: 15px;
		height: 15px;
	}
	#all_wrap .contactBtn > li a::after {
		right: 15px;
	}
	/*-お問い合わせ*/
	.topContact_contact {
		width: calc(100%);
		max-width: 100%;
		min-width: 100%;
		padding: 20px;
		border-radius: 20px;
	}
	.topContact_contact::before {
		width: 40px;
		height: 40px;
		right: 20px;
	}
	.topContact_contact::after {
		content: '';
		display: block;
		width: 30px;
		height: 30px;
		right: 25px;
	}
}

/************************************************************/
/*　固定ページ 会社情報 Company
/************************************************************/
#all_wrap .companyList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .companyList > li {
	width: 300px;
	padding: 0;
	margin: 0;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
#all_wrap .companyList > li::before,
#all_wrap .companyList > li::after {
	display: none;
}
#all_wrap .companyList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	opacity: 0.6;
}
#all_wrap .companyList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 10px;
}
#all_wrap .companyList > li > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#all_wrap .companyList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
#all_wrap .companyList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transition: var(--ease);
}
#all_wrap .companyList > li > h3 {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: calc(100% - 40px);
	padding: 15px 0;
	margin: 0 auto;
	background: none;
	border: none;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 3;
	border-top: 1px solid rgba(255,255,255,0.5);
	font-size: 16px;
	line-height: 1;
	color: #fff;
	font-weight: 500;
}
#all_wrap .companyList > li > h3::after {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	aspect-ratio: 1/1;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/more_blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}


/*リスト*/
#all_wrap .company_flex {
	width: 100%;
	min-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	flex-wrap: wrap;
	column-gap: 4px;
	grid-row-gap: 4px;
}
#all_wrap .company_flex > li {
	width: calc((100% - 12px) / 4);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 4px;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
#all_wrap .company_flex > li.wide {
	width: calc(50% - 2px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 4px;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
#all_wrap .company_flex > li::before,
#all_wrap .company_flex > li::after {
	display: none;
}
#all_wrap .company_flex > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	opacity: 0.6;
}
#all_wrap .company_flex > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 10px;
}
#all_wrap .company_flex > li > figure::before {
	content: '';
	display: block;
	padding-top: calc(75% - 4px);
}
#all_wrap .company_flex > li.wide > figure::before {
	padding-top: calc((75% / 2) - 4px);
}
#all_wrap .company_flex > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
#all_wrap .company_flex > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transition: var(--ease);
}
#all_wrap .company_flex > li > h3 {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: calc(100% - 40px);
	padding: 15px 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 3;
	border-top: 1px solid rgba(255,255,255,0.5);
	font-size: 16px;
	line-height: 1;
	color: #fff;
	font-weight: 500;
}
#all_wrap .company_flex > li > h3::after {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	aspect-ratio: 1/1;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/more_blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*リスト*/
	#all_wrap .company_flex {
		width: 100%;
		min-width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .company_flex > li {
		width: calc((100% - 10px) / 2);
		grid-row-gap: 10px;
	}
	#all_wrap .company_flex > li.wide {
		width: 100%;
	}
	#all_wrap .company_flex > li > h3 {
		width: calc(100% - 40px);
		padding: 10px 0;
		font-size: 12px;
	}
	#all_wrap .company_flex > li > h3::after {
		width: 14px;
		height: 14px;
	}
}


/************************************************************/
/*　固定ページ 会社概要 About
/************************************************************/
#about {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*表*/
#all_wrap table.companyTabale {
	overflow: hidden;
	table-layout: fixed;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 10px;
	border-radius: 0;
	background: #fff;
	border: none;
}
#all_wrap table.companyTabale th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	border-bottom: 1px solid #e3e3e3;
	text-align: left;
	vertical-align: middle;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 900;
	background: none;
	color: var(--text);
	width: 170px;
	padding: 20px;
	margin: 0;
}
#all_wrap table.companyTabale td {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	border-bottom: none;
	padding: 20px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid #e3e3e3;
}
#all_wrap .content table.companyTabale td > p:last-of-type {
	margin-bottom: 0;
}
/* - メンバー*/
#all_wrap .content .member {
	width: auto;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0.5em;
}
#all_wrap .content .member > li {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 3em;
}
#all_wrap .content .member > li span {
	width: 5em;
	padding: 0;
	margin: 0;
	position: relative;
	display: inline-block;
}
/* - 見出し*/
#all_wrap table.companyTabale td > h4 {
	font-size: 15px;
	padding: 0;
	margin: 0 auto 5px;
	border: none;
	background: none;
}
/* - リンク*/
#all_wrap span.link {
	display: block;
	padding: 0;
	margin: 0;
	text-align: right;
}
#all_wrap span.link > a {
	font-size: 14px;
	line-height: 1;
	color: var(--main);
	position: relative;
	display: inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
}
#all_wrap span.link > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 10px;
	background: var(--main);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
/* - リスト*/
#all_wrap .content .disc {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0.5em;
}
#all_wrap .content .disc.mb20 {
	margin-bottom: 20px;
}
#all_wrap .content .disc > li {
	font-size: 14px;
	line-height: 1.2em;
	padding: 0 0 0 1em;
	margin: 0;
	position: relative;
}
#all_wrap .content .disc > li::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--text);
	position: absolute;
	top: 0.45em;
	left: 0;
	line-height: 1.2em;
	transform: unset;
}
/* - アクセスマップ*/
.accessmap {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.accessmap::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.accessmap iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#about {
		width: 100%;
		max-width: 100%;
	}
	/*表*/
	#all_wrap table.companyTabale {
		border-top: 1px solid #e3e3e3;
	}
	#all_wrap table.companyTabale th {
		display: block;
		border-bottom: 1px solid #e3e3e3;
		background: #fafafa;
		font-size: 14px;
		width: 100%;
		padding: 10px;
		margin: 0;
	}
	#all_wrap table.companyTabale td {
		display: block;
		padding: 20px 10px 20px;
	}
	#all_wrap .content table.companyTabale td > p:last-of-type {
		margin-bottom: 0;
	}
	/* - メンバー*/
	#all_wrap .content .member {
		width: auto;
		padding: 0;
		margin: 0;
		position: relative;
		list-style: none;
		display: flex;
		flex-direction: column;
		grid-row-gap: 0.5em;
	}
	#all_wrap .content .member > li {
		display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		column-gap: 3em;
	}
	#all_wrap .content .member > li span {
		width: 5em;
		padding: 0;
		margin: 0;
		position: relative;
		display: inline-block;
	}
	/* - 見出し*/
	#all_wrap table.companyTabale td > h4 {
		font-size: 15px;
		padding: 0;
		margin: 0 auto 5px;
		border: none;
		background: none;
	}
	/* - リンク*/
	#all_wrap span.link {
		display: block;
		padding: 0;
		margin: 0;
		text-align: right;
	}
	#all_wrap span.link > a {
		font-size: 14px;
		line-height: 1;
		color: var(--main);
		position: relative;
		display: inline-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		column-gap: 5px;
	}
	#all_wrap span.link > a::before {
		content: '';
		display: block;
		width: 5px;
		height: 10px;
		background: var(--main);
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
	}
	/* - リスト*/
	#all_wrap .content .disc {
		padding: 0;
		margin: 0;
		position: relative;
		list-style: none;
		display: flex;
		flex-direction: column;
		grid-row-gap: 0.5em;
	}
	#all_wrap .content .disc.mb20 {
		margin-bottom: 20px;
	}
	#all_wrap .content .disc > li {
		font-size: 14px;
		line-height: 1.2em;
		padding: 0 0 0 1em;
		margin: 0;
		position: relative;
	}
	#all_wrap .content .disc > li::before {
		content: '';
		display: inline-block;
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background: var(--text);
		position: absolute;
		top: 0.45em;
		left: 0;
		line-height: 1.2em;
		transform: unset;
	}
	/* - アクセスマップ*/
	.accessmap {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
		text-align: center;
	}
	.accessmap::before {
		content: '';
		display: block;
		padding-top: 65%;
	}
	.accessmap iframe {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
}

/************************************************************/
/*　固定ページ メッセージ
/************************************************************/
#message {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#message {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		position: relative;
	}
}

/************************************************************/
/*　固定ページ CSR活動 csr
/************************************************************/
#csr {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*社外活動*/
.sdgs_ttl {
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .sdgs_ttl > h3 {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
}
#all_wrap .sdgs_ttl > p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*SDGs*/
.sdgs_info {
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
.sdgs_info > figure {
	width: 100%;
	max-width: 500px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.sdgs_info > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .sdgs_info > h3 {
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: lighter;
	text-align: center;
	border: none;
	background: none;
}
#all_wrap .sdgs_info > h3 strong {
	font-weight: 700;
}
#all_wrap .sdgs_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap .csr_health {
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#all_wrap .csr_health > h3 {
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
}
/* - リスト*/
#all_wrap .sdgs_list {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap .sdgs_list > li {
	width: 100%;
	padding: 0 0 30px;
	margin: 0 auto 30px;
	position: relative;
	border-bottom: 1px solid rgb(234, 234, 234);
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 20px;
}
#all_wrap .sdgs_list > li > figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .sdgs_list > li > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .sdgs_list > li > .sdgs_list_info {
	width: calc(100% - 20px - 150px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .sdgs_list > li > .sdgs_list_info h4 {
	padding: 0;
	margin: 0 auto 3px;
	border: none;
	background: none;
	position: relative;
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
}
#all_wrap .sdgs_list > li > .sdgs_list_info > p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 13px;
	line-height: 1.5em;
}
#all_wrap .sdgs_list > li > .sdgs_list_info > p:last-of-type {
	margin-bottom: 0;
}
/* -健康づくり */
#all_wrap .csr_health .sdgs_list > li > .sdgs_list_info > p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 15px;
	line-height: 2em;
}
#all_wrap .csr_health .sdgs_list > li > .sdgs_list_info > p:last-of-type {
	margin-bottom: 0;
}
/* - 改革推進*/
#all_wrap .csr_reform_box {
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	clear: both;
}
#all_wrap .floatleft {
	width: 280px;
	padding: 0 20px 20px 0;
	margin: 0;
	position: relative;
	float: left;
}
#all_wrap .csr_reform_box > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/* - ポイントリスト*/
#all_wrap .csr_reform_point {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#all_wrap .csr_reform_point > li {
	padding: 0;
	padding-left: 90px;
	margin: 0 auto;
	position: relative;
}
#all_wrap .csr_reform_point > li > em {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	grid-row-gap: 3px;
	width: 70px;
	min-width: 70px;
	height: 70px;
	padding: 5px 0 0;
	background: var(--main);
	border-radius: 50%;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	font-style: normal;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
#all_wrap .csr_reform_point > li:nth-of-type(even) > em {
	background: var(--sub);
}
#all_wrap .csr_reform_point > li > h4 {
	padding: 0;
	margin: 0 auto 5px;
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 700;
	text-align: left;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .csr_reform_point > li > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 13px;
	line-height: 1.5em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#csr {
		width: 100%;
		max-width: 100%;
	}
	/*社外活動*/
	#all_wrap .sdgs_ttl > h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 20px;
	}
	/*SDGs*/
	.sdgs_info {
		padding: 0;
		margin: 0 auto 30px;
	}
	.sdgs_info > figure {
		width: 100%;
		max-width: 500px;
		padding: 0;
		margin: 0 auto;
		text-align: center;
		position: relative;
	}
	.sdgs_info > figure img {
		width: 100%;
		height: auto;
	}
	#all_wrap .sdgs_info > h3 {
		padding: 0;
		margin: 0 auto;
		font-size: 16px;
	}
	#all_wrap .sdgs_info > h3 strong {
		font-weight: 700;
		display: block;
		margin: 0 auto;
	}
	#all_wrap .sdgs_info > p {
		padding: 0;
		margin: 0 auto;
		text-align: center;
	}
	#all_wrap .csr_health {
		padding: 0;
		margin: 0 auto 50px;
		position: relative;
	}
	#all_wrap .csr_health > h3 {
		padding: 0;
		margin: 0 auto;
		position: relative;
		border: none;
		background: none;
	}
	/* - リスト*/
	#all_wrap .sdgs_list {
		width: 100%;
	}
	#all_wrap .sdgs_list > li {
		width: 100%;
		padding: 0 0 20px;
		margin: 0 auto 20px;
		column-gap: 15px;
		align-items: flex-start;
	}
	#all_wrap .sdgs_list > li > figure {
		width: 100px;
	}
	#all_wrap .sdgs_list > li > .sdgs_list_info {
		width: calc(100% - 15px - 100px);
	}
	#all_wrap .sdgs_list > li > .sdgs_list_info h4 {
		padding: 0;
		margin: 0 auto 3px;
		font-size: 15px;
	}
	#all_wrap .sdgs_list > li > .sdgs_list_info > p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 13px;
		line-height: 1.5em;
	}
	/* -健康づくり */
	#all_wrap .csr_health .sdgs_list > li > .sdgs_list_info > p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 15px;
		line-height: 2em;
	}
	/* - 改革推進*/
	#all_wrap .csr_reform_box {
		padding: 0;
		margin: 0 auto 50px;
		position: relative;
		clear: both;
	}
	#all_wrap .floatleft {
		width: 160px;
		padding: 0 15px 15px 0;
		margin: 0;
		position: relative;
		float: left;
	}
	/* - ポイントリスト*/
	#all_wrap .csr_reform_point {
		width: 100%;
	}
	#all_wrap .csr_reform_point > li {
		padding: 0;
		padding-left: 90px;
	}
	#all_wrap .csr_reform_point > li > em {
		grid-row-gap: 3px;
		width: 70px;
		min-width: 70px;
		height: 70px;
		top: 0;
		left: 0;
		transform: translate(0,0);
	}
	#all_wrap .csr_reform_point > li > h4 {
		padding: 0;
		margin: 0 auto 5px;
		font-size: 15px;
	}
}

/************************************************************/
/*　固定ページ 営業所一覧
/************************************************************/
#office {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*ナビゲーション*/
#all_wrap #pageNavi {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#all_wrap .pageNaviList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 15px;
}
#all_wrap .pageNaviList::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 10px);
}
#all_wrap .pageNaviList > li {
	width: calc(100% / 3 - 10px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .pageNaviList > li > a {
	width: calc(100%);
	padding: 15px 10px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	background: var(--base);
	border-radius: 5px;
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: var(--ease);
	cursor: pointer;
}
#all_wrap .pageNaviList > li > a:hover {
	background: var(--sub);
	transition: var(--ease);
}
#all_wrap .pageNaviList > li > a::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 0 0 auto;
	background: none;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}
/*MAP*/
#all_wrap .map {
	margin: 0 auto 30px;
}
#all_wrap .map > img {
	width: 100%;
	height: auto;
}
/*オフィスリスト*/
#all_wrap .officeList {
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .officeList > li {
	width: 100%;
	padding: 20px;
	margin: 0 auto;
	background: rgba(0,128,217,0.1);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 20px;
}
#all_wrap .officeList > li > h3 {
	width: 150px;
	max-width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
	background: none;
	border: none;
}
#all_wrap .officeList > li > .officeList_info {
	width: calc(100% - 20px - 150px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .officeList_info > p {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 13px;
	line-height: 1.5em;
}
/* - TELリスト*/
#all_wrap .officeTel {
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 20px;
}
#all_wrap .officeTel > span {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-family: var(--font-en);
	font-weight: 500;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .officeTel > span::before {
	content: '';
	display: block;
	width: 15px;
	min-width: 15px;
	height: 15px;
	padding: 0;
	margin: 0;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .officeTel > span.tel::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_tel.svg');
}
#all_wrap .officeTel > span.fax::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_fax.svg');
}
#all_wrap .officeTel > span.mail::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_mail.svg');
}
/* - ボタン*/
#all_wrap .officeBtn {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 20px;
}
#all_wrap .officeBtn > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	width: fit-content;
	padding: 10px 20px;
	margin: 0;
	background: var(--main);
	border-radius: 5px;
	position: relative;
	font-size: 14px;
	line-height: 1;
	font-family: var(--font-all);
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .officeBtn > a::before {
	content: '';
	display: block;
	width: 13px;
	min-width: 13px;
	height: 13px;
	padding: 0;
	margin: 0;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .officeBtn > a.mail::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_mail_w-1.svg');
}
#all_wrap .officeBtn > a.map::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_map_w.svg');
}
#all_wrap .officeBtn > a:hover {
	background: var(--base);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#office {
		width: 100%;
		max-width: 100%;
	}
	/*ナビゲーション*/
	#all_wrap #pageNavi {
		margin: 0 auto 30px;
	}
	#all_wrap .pageNaviList {
		width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .pageNaviList::after {
		content: '';
		display: block;
		width: calc((100% - 20px) / 3);
	}
	#all_wrap .pageNaviList > li {
		width: calc((100% - 20px) / 3);
	}
	#all_wrap .pageNaviList > li > a {
		width: calc(100%);
		padding: 10px 10px;
		column-gap: 10px;
		border-radius: 5px;
		font-size: 12px;
	}
	#all_wrap .pageNaviList > li > a::after {
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
	/*オフィスリスト*/
	#all_wrap .officeList {
		grid-row-gap: 20px;
	}
	#all_wrap .officeList > li {
		width: 100%;
		padding: 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .officeList > li > h3 {
		width: 100%;
		max-width: 100%;
		font-size: 18px;
		text-align: left;
	}
	#all_wrap .officeList > li > .officeList_info {
		width: calc(100%);
		grid-row-gap: 10px;
	}
	#all_wrap .officeList_info > p {
		width: 100%;
		font-size: 14px;
		line-height: 1.4em;
	}
	/* - TELリスト*/
	#all_wrap .officeTel {
		margin: 0 auto 5px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 5px;
	}
	#all_wrap .officeTel > span {
		width: 100%;
		font-size: 14px;
	}
	#all_wrap .officeTel > span::before {
		width: 13px;
		min-width: 13px;
		height: 13px;
	}
	/* - ボタン*/
	#all_wrap .officeBtn {
		width: 100%;
		column-gap: 10px;
	}
	#all_wrap .officeBtn > a {
		column-gap: 5px;
		width: calc(100% / 2 - 5px);
		padding: 10px 10px;
		font-size: 12px;
		justify-content: center;
	}
	#all_wrap .officeBtn > a::before {
		content: '';
		display: block;
		width: 12px;
		min-width: 12px;
		height: 12px;
	}
}

/************************************************************/
/*　固定ページ 太陽光発電
/************************************************************/
#taiyoukou {
	background: #ffebc7;
}
/*ナビゲーション*/
#all_wrap #serviceNav {
	width: 100%;
	padding: 30px 60px;
	margin: 0 auto;
	position: relative;
}
#all_wrap .serviceNavList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap .serviceNavList > li {
	width: calc(100% / 5 - 8px);
	min-width: 210px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .serviceNavList > li > a {
	width: calc(100%);
	min-height: 55px;
	padding: 10px 15px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	background: var(--text);
	border-radius: 5px;
	font-size: 14px;
	line-height: 1.2;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: var(--ease);
	cursor: pointer;
}
#all_wrap .serviceNavList > li > a:hover {
	background: var(--sub);
	transition: var(--ease);
}
#all_wrap .serviceNavList > li > a::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 0 0 auto;
	background: none;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}
/* - Fixed */
#all_wrap #serviceNav.fixNav {
	display: none;
	position: fixed;
	width: calc(100% - 250px);
	padding: 15px 60px;
	margin: 0 auto;
	background: rgba(255,255,255,0.8);
	top: 0;
	right: 0;
	z-index: 100;
}
#all_wrap #serviceNav.fixed {
	width: calc(100% - 250px);
	padding: 15px 60px;
	margin: 0 auto;
	background: rgba(255,255,255,0.8);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	#all_wrap #serviceNav.fixed {
		width: calc(100%);
		top: 70px;
	}
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ナビゲーション*/
	#all_wrap #serviceNav {
		width: 100%;
		padding: 30px 30px;
	}
	#all_wrap .serviceNavList {
		width: 100%;
		justify-content: space-between;
	}
	#all_wrap .serviceNavList > li {
		width: calc(100% / 2 - 5px);
		min-width: calc(100% / 2 - 5px);
	}
	#all_wrap .serviceNavList > li > a {
		width: calc(100%);
		height: 100%;
		min-height: auto;
		padding: 10px 10px;
		font-size: 12px;
	}
	/* - Fixed */
	/* - Fixed */
	#all_wrap #serviceNav.fixNav {
		display: none;
		position: fixed;
		width: calc(100%);
		padding: 10px;
		margin: 0 auto;
		background: rgba(255,255,255,0.8);
		top: 50px;
		right: 0;
		z-index: 100;
	}
	#all_wrap #serviceNav.fixed {
		width: calc(100%);
		padding: 10px;
		margin: 0 auto;
		background: rgba(255,255,255,0.8);
		position: fixed;
		top: 50px;
		right: 0;
		z-index: 100;
	}
	#all_wrap #serviceNav.fixed .serviceNavList > li > a {
		width: calc(100%);
		height: 100%;
		min-height: auto;
		padding: 10px 10px;
		font-size: 10px;
	}
}

/*==============================*/
/* パッケージ内容 */
/*==============================*/
#package {
	width: 100%;
	min-width: 1100px;
	padding: 140px 120px 80px 60px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#package::before {
	content: '';
	display: block;
	width: calc(100% - 60px);
	height: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
	position: absolute;
	top: 60px;
	left: 0;
	z-index: -1;
	border-radius: 0 50px 0 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#package {
		width: 100%;
		min-width: 100%;
		padding: 30px;
	}
	#package::before {
		content: '';
		display: block;
		width: calc(100%);
		height: 100%;
		top: 0;
		left: 0;
		z-index: -1;
		border-radius: 0;
	}
}
/* - タイトル*/
#all_wrap .sec_ttl {
	width: 100%;
	padding: 0 0 30px;
	margin: 0 auto 40px;
	position: relative;
}
#all_wrap .sec_ttl::after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	background: var(--act);
	position: absolute;
	bottom: 0;
	left: 0;
}
#all_wrap .sec_ttl > h2 {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	text-align: left;
	font-size: 40px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--act);
	position: relative;
}
#all_wrap .sec_ttl.blue::after {
	background: var(--sub);
}
#all_wrap .sec_ttl.blue > h2 {
	color: var(--sub);
}
#all_wrap .sec_ttl.green::after {
	background: var(--green);
}
#all_wrap .sec_ttl.green > h2 {
	color: var(--green);
}
#all_wrap .sec_ttl.purple::after {
	background: #4d4a98;
}
#all_wrap .sec_ttl.purple > h2 {
	color: #4d4a98;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* - タイトル*/
	#all_wrap .sec_ttl {
		padding: 0 0 15px;
		margin: 0 auto 15px;
	}
	#all_wrap .sec_ttl::after {
		width: 80px;
	}
	#all_wrap .sec_ttl > h2 {
		font-size: 20px;
	}
}

/* - about */
.package_about {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 50px;
}
.package_about > figure {
	width: 500px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
.package_about > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.package_about > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.package_about_info {
	width: calc(100% - 50px - 500px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .package_about_info > h3 {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}
#all_wrap .package_about_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* - about */
	.package_about {
		width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.package_about > figure {
		width: 100%;
	}
	.package_about_info {
		width: calc(100%);
	}
	#all_wrap .package_about_info > h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 20px;
	}
}

/* - リスト*/
.package_cont {
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .package_cont > h2 {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}
#all_wrap .package_list {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 40px;
}
#all_wrap .package_list > li {
	width: calc(100% / 3 - 26.7px);
	padding: 0;
	margin: 0;
	position: relative;
	background: var(--act);
	border-radius: 10px;
}
#all_wrap .package_list > li::before,
#all_wrap .package_list > li::after {
	content: '';
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text);
	border-radius: 0;
	position: absolute;
	top: 50%;
	right: -30px;
	left: unset;
	transform: translate(0,-50%);
}
#all_wrap .package_list > li::after {
	transform: translate(0,-50%) rotate(90deg);
}
#all_wrap .package_list > li:last-child::before,
#all_wrap .package_list > li:last-child::after {
	display: none;
}
#all_wrap .package_list > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px 10px 0 0;
}
#all_wrap .package_list > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .package_list > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .package_list_info {
	padding: 20px;
	margin: 0;
	position: relative;
}
#all_wrap .package_list_info > h3 {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 600;
	color: #fff;
}
#all_wrap .package_list_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
	line-height: 1.4em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* - リスト*/
	#all_wrap .package_cont > h2 {
		padding: 0;
		margin: 0 auto 20px;
		font-size: 20px;
	}
	#all_wrap .package_list {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .package_list > li {
		width: calc(100% / 2 - 10px);
	}
	#all_wrap .package_list > li::before,
	#all_wrap .package_list > li::after {
		display: none;
	}
	#all_wrap .package_list > li::after {
		display: none;
	}
	#all_wrap .package_list > li:last-child::before,
	#all_wrap .package_list > li:last-child::after {
		display: none;
	}
	#all_wrap .package_list > li > figure {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		overflow: hidden;
		text-align: center;
		border-radius: 10px 10px 0 0;
	}
	#all_wrap .package_list > li > figure::before {
		content: '';
		display: block;
		padding-top: 65%;
	}
	#all_wrap .package_list > li > figure img {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		object-fit: cover;
	}
	#all_wrap .package_list_info {
		padding: 10px;
		margin: 0;
		position: relative;
	}
	#all_wrap .package_list_info > h3 {
		padding: 0;
		margin: 0 auto 5px;
		font-size: 16px;
	}
	#all_wrap .package_list_info > p {
		font-size: 12px;
		line-height: 1.4em;
	}
	/*5列*/
	#all_wrap .feature_list.five .package_list_info {
		padding: 10px;
		margin: 0;
		position: relative;
	}
	#all_wrap .feature_list.five .package_list_info > h3 {
		padding: 0;
		margin: 0 auto 5px;
		font-size: 16px;
	}
	#all_wrap .feature_list.five .package_list_info > p {
		font-size: 12px;
		line-height: 1.4em;
	}
}

/*==============================*/
/* ハルソーラー */
/*==============================*/
#all_wrap #harusolar {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
#all_wrap .box > h3,
#all_wrap .whitebox .box > h3,
#all_wrap .haru_box01 > h3 {
	padding: 0;
	margin: 0 auto 15px;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
#all_wrap .haru_box01 > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .haru_box01 > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .haru_box01 > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #harusolar {
		width: 100%;
		padding: 30px;
	}
	#all_wrap .box > h3,
	#all_wrap .whitebox .box > h3,
	#all_wrap .haru_box01 > h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 18px;
	}
}
/*特徴*/
#all_wrap .haru_feature {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 0;
}
#all_wrap .haru_feature:last-of-type {
	margin-bottom: 0;
}
#all_wrap .haru_feature > h3 {
	width: 100%;
	padding: 10px 20px;
	margin: 0 auto 20px;
	position: relative;
	background: #eff2f1;
	border: none;
	border-radius: 5px;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}
#all_wrap .haru_feature > h3 em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
	color: var(--act);
	font-style: normal;
}
#all_wrap .haru_feature.blue > h3 em {
	color: var(--main);
}
#all_wrap .haru_feature > .haru_feature_left,
#all_wrap .haru_feature > .haru_feature_right {
	width: calc(100% / 2 - 15px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .haru_feature h4 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
}
#all_wrap .haru_feature p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .haru_feature.blue p strong {
	color: var(--main);
}
#all_wrap #harusolar .worksFlow > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: unset;
	text-align: center;
}
#all_wrap #harusolar .worksFlow > li > figure::before {
	display: none;
}
#all_wrap #harusolar .worksFlow > li > figure img {
	width: 100%;
	height: auto;
	position: relative;
	top: unset;
	left: unset;
	transform: unset;
	object-fit: unset;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*特徴*/
	#all_wrap .haru_feature {
		width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		column-gap: 0;
		grid-row-gap: 0;
	}
	#all_wrap .haru_feature > h3 {
		width: 100%;
		padding: 10px 20px;
		margin: 0 auto 15px;
		font-size: 16px;
	}
	#all_wrap .haru_feature > h3 em {
		font-size: 16px;
	}
	#all_wrap .haru_feature > .haru_feature_left {
		margin-bottom: 10px;
	}
	#all_wrap .haru_feature > .haru_feature_left,
	#all_wrap .haru_feature > .haru_feature_right {
		width: calc(100%);
	}
	#all_wrap .haru_feature h4 {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
	}
}

/*==============================*/
/* スライドバインダールーフ */
/*==============================*/
#all_wrap #sbr {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
.whitebox {
	width: 100%;
	padding: 50px;
	margin: 0;
	position: relative;
	background: #fff;
	border-radius: 10px;
}
.whitebox.mb50 {
	margin-bottom: 50px;
}
#all_wrap .whitebox > h3 {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}
.sbr_box01 {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
}
.sbr_box01_left {
	width: 33%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	grid-row-gap: 10px;
}
.sbr_box01_right {
	width: calc(64% - 40px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	grid-row-gap: 20px;
}
.sbr_box01_left::after {
	content: '';
	display: block;
	width: 20px;
	height: 35px;
	background: var(--act);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	right: -40px;
	transform: translate(0,-50%);
}
/* - dl */
.sbr_box01_left > dl {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
}
.sbr_box01_left > dl dt {
	width: 100%;
	padding: 10px 10px 12px;
	margin: 0;
	background: var(--gray);
	border-radius: 0 0 10px 10px;
	text-align: center;
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
}
.sbr_box01_left > dl dd {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px 10px 0 0;
}
.sbr_box01_left > dl dd::before {
	content: '';
	display:  block;
	padding-top: 56.25%;
}
.sbr_box01_left > dl dd img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.sbr_box01_left > span.plus {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.sbr_box01_left > span.plus::before,
.sbr_box01_left > span.plus::after {
	content: '';
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text);
	border-radius: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.sbr_box01_left > span.plus::after {
	transform: translate(-50%,-50%) rotate(90deg);
}
/* - right */
#all_wrap .sbr_box01_right > h3 {
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	text-align: center;
}
#all_wrap .sbr_box01_right > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .sbr_box01_right > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .sbr_box01_right > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .sbr_box01_right > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #sbr {
		width: 100%;
		padding: 30px;
	}
	.whitebox {
		width: 100%;
		padding: 20px;
	}
	.whitebox.mb50 {
		margin-bottom: 20px;
	}
	#all_wrap .whitebox > h3 {
		margin: 0 auto 10px;
		font-size: 20px;
	}
	.sbr_box01 {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.sbr_box01_left {
		width: 100%;
		flex-direction: unset;
		grid-row-gap: 0;
		column-gap: 10px;
	}
	.sbr_box01_right {
		width: 100%;
		flex-direction: column;
		grid-row-gap: 15px;
	}
	.sbr_box01_left::after {
		content: '';
		display: block;
		width: 35px;
		height: 20px;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		position: absolute;
		top: unset;
		right: unset;
		left: 50%;
		bottom: -30px;
		transform: translate(-50%,0);
	}
	/* - dl */
	.sbr_box01_left > dl {
		width: 100%;
	}
	.sbr_box01_left > dl dt {
		width: 100%;
		padding: 10px 10px 12px;
		font-size: 14px;
	}
	.sbr_box01_left > span.plus {
		display: block;
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	/* - right */
	#all_wrap .sbr_box01_right > h3 {
		font-size: 18px;
	}
}

/* メンテナンスフリーの屋根 */
#all_wrap .optionList {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
}
#all_wrap .optionList > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	align-content: center;
	align-items: center;
}
#all_wrap .optionList > li > h3 {
	width: 120px;
	min-width: 120px;
	padding: 15px;
	margin: 0;
	background: var(--act);
	border-radius: 10px;
	font-size: 15px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-align: center;
	border: none;
	position: relative;
}
#all_wrap .optionList > li > h3::before,
#all_wrap .optionList > li > h3::after {
	display: none;
}
#all_wrap .optionList > li > p {
	width: calc(100% - 10px - 120px);
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 1.7em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* メンテナンスフリーの屋根 */
	#all_wrap .optionList {
		width: 100%;
		margin: 0 auto 30px;
		grid-row-gap: 20px;
	}
	#all_wrap .optionList > li {
		width: 100%;
		column-gap: 0;
		grid-row-gap: 10px;
		flex-wrap: wrap;
	}
	#all_wrap .optionList > li > h3 {
		display: inline-block;
		width: auto;
		min-width: auto;
		padding: 10px 15px;
		font-size: 15px;
		border-radius: 5px;
	}
	#all_wrap .optionList > li > p {
		width: calc(100%);
	}
}
/* - ボックス*/
#all_wrap .box.mb80 {
	margin-bottom: 80px;
}
/* - 写真横並び2列*/
#all_wrap .photoFlex {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	grid-row-gap: 20px;
	flex-wrap: wrap;
}
#all_wrap .photoFlex.min {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	grid-row-gap: 20px;
	flex-wrap: wrap;
}
#all_wrap .photoFlex > span {
	display: block;
	width: calc(100% / 2 - 10px);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .photoFlex > span::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .photoFlex > span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.sbr_box04 > figure.image {
	width: 100%;
	max-width: 500px;
	margin: 0 auto 2em;
}
.sbr_box04 > figure.image img {
	width: 100%;
	height: auto;
}
/* - 横並びFlex */
#all_wrap .content .flexbox {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
	grid-row-gap: 20px;
	flex-wrap: wrap;
}
#all_wrap .content .flexbox.small {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
	grid-row-gap: 50px;
	flex-wrap: wrap;
}
#all_wrap .content .flexbox.small.center {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
	grid-row-gap: 50px;
	flex-wrap: wrap;
}
#all_wrap .content .flexbox.small.left {
	justify-content: flex-start;
}
#all_wrap .content .flexbox.border {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #d6d6d6;
}
#all_wrap .content .flexbox.center {
	align-content: center;
	align-items: center;
}
#all_wrap .content .flexbox > div {
	width: calc(100% / 2 - 25px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .content .flexbox > div figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .content .flexbox > div figure img {
	width: 100%;
	height: auto;
}
#all_wrap .content .flexbox > div.full {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .content .flexbox > div.full iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}
#all_wrap .content .flexbox > div > h3 {
	padding: 0;
	margin: 0 auto 15px;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
#all_wrap .content .flexbox > div > p {
	padding: 0;
	margin: 0;
	margin-top: 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .flexbox > div > p.small,
#all_wrap .content p.small {
	font-size: 12px;
	line-height: 1.4em;
}
#all_wrap .content .flexbox > .full {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.aligncenter {
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* - 横並びFlex */
	#all_wrap .content .flexbox {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .content .flexbox.small {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .content .flexbox.small.center {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .content .flexbox.border {
		padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: 1px solid #d6d6d6;
	}
	#all_wrap .content .flexbox > div {
		width: calc(100%);
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .content .flexbox > div > h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 20px;
	}
	#all_wrap .content .flexbox > div > p {
		padding: 0;
		margin: 0;
		margin-top: 10px;
	}
	#all_wrap .content .flexbox > div.none {
		display: none;
	}
	
	#all_wrap .photoFlex.min {
		width: 100%;
		max-width: 100%;
	}
}

/* 施工手順 */
#all_wrap .worksFlow {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 40px;
}
#all_wrap .worksFlow > li {
	width: calc(100% / 4 - 30px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .worksFlow > li::after {
	content: '';
	display: block;
	width: 10px;
	height: 18px;
	background: var(--sub);
	position: absolute;
	top: 40px;
	right: -25px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
#all_wrap .worksFlow > li:last-child::after {
	display: none;
}
#all_wrap .worksFlow > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .worksFlow > li > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .worksFlow > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .worksFlow > li > h4 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: left;
	position: relative;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	border: none;
	background: none;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 2px;
}
#all_wrap .worksFlow > li > h4 em {
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	font-style: normal;
}
/*ハルソーラー用*/
#all_wrap .worksFlow.three > li {
	width: calc((100% - 80px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .worksFlow.three > li::after {
	content: '';
	display: block;
	width: 10px;
	height: 18px;
	background: var(--act);
	position: absolute;
	top: 80px;
	right: -25px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
/*流れ画像*/
.taiyoukou_flow_img {
	width: 100%;
	max-width: 750px;
	padding: 0;
	margin: 0 auto;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* 施工手順 */
	#all_wrap .worksFlow {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .worksFlow > li {
		width: calc(100% / 2 - 10px);
		grid-row-gap: 5px;
	}
	#all_wrap .worksFlow > li::after {
		content: '';
		display: block;
		width: 6px;
		height: 13px;
		background: var(--sub);
		position: absolute;
		top: 40px;
		right: -13px;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
	}
	#all_wrap .worksFlow > li > h4 {
		font-size: 12px;
		column-gap: 2px;
	}
	#all_wrap .worksFlow > li > h4 em {
		font-family: var(--font-en);
		font-size: 12px;
	}
	/*ハルソーラー用*/
	#all_wrap .worksFlow.three > li {
		width: calc(100% / 2 - 10px);
		grid-row-gap: 5px;
	}
	#all_wrap .worksFlow.three > li::after {
		content: '';
		display: block;
		width: 6px;
		height: 13px;
		background: var(--act);
		position: absolute;
		top: 40px;
		right: -13px;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
	}
}

/*==============================*/
/* 施工事例 */
/*==============================*/
#works {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
#all_wrap .works_sec {
	padding: 0 0 50px;
	margin: 0 auto 50px;
	border-bottom: 1px solid #d6d6d6;
}
/*タイトル*/
#all_wrap .works_sec > h3 {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
#all_wrap .works_sec > h4 {
	padding: 10px 15px 12px;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: #eff2f1;
	border-radius: 10px;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
/*リスト*/
#all_wrap .worksList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 40px;
}
#all_wrap .worksList.mb50 {
	margin-bottom: 50px;
}
#all_wrap .worksList::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 20px);
}
#all_wrap .worksList > li {
	width: calc(100% / 3 - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .worksList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .worksList > li > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .worksList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .worksList_info {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .worksList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: none;
	border: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 15px;
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
}
#all_wrap .worksList_info > h3 a {
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .worksList_info > h3 a:hover {
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--sub);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .worksList_info > h3::after {
	content: '';
	display: block;
	width: 17px;
	height: 17px;
	min-width: 17px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/works_arrow.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#works {
		width: 100%;
		padding: 30px;
	}
	#all_wrap .works_sec {
		padding: 0 0 20px;
		margin: 0 auto 20px;
	}
	/*タイトル*/
	#all_wrap .works_sec > h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 20px;
	}
	#all_wrap .works_sec > h4 {
		padding: 10px 15px 12px;
		margin: 0 auto 15px;
		background: #eff2f1;
		border-radius: 5px;
		font-size: 15px;
	}
	/*リスト*/
	#all_wrap .worksList {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 30px;
	}
	#all_wrap .worksList.mb50 {
		margin-bottom: 30px;
	}
	#all_wrap .worksList::after {
		content: '';
		display: none;
	}
	#all_wrap .worksList > li {
		width: calc(100% / 2 - 10px);
		grid-row-gap: 5px;
	}
	#all_wrap .worksList_info > h3 {
		column-gap: 10px;
		font-size: 14px;
	}
	#all_wrap .worksList_info > h3 a {
		font-size: 14px;
	}
	#all_wrap .worksList_info > h3 a:hover {
		font-size: 14px;
	}
	#all_wrap .worksList_info > h3::after {
		content: '';
		display: block;
		width: 14px;
		height: 14px;
		min-width: 14px;
	}
}

/*==============================*/
/* 太陽光発電とは */
/*==============================*/
/*区間画像*/
.sec_img {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background: #fff;
	z-index: 0;
}
.sec_img::before {
	content: '';
	display: block;
	width: calc(100% - 60px);
	height: 50px;
	padding: 0;
	margin: 0;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	border-radius: 0 50px 0 0;
}
.sec_img > figure {
	width: 100%;
	height: 500px;
	padding: 0;
	margin: 0 auto;
	border-radius: 50px 50px 0 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	background: #fff;
}
.sec_img > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*区間画像*/
	.sec_img {
		width: 100%;
	}
	.sec_img::before {
		content: '';
		display: none
	}
	.sec_img > figure {
		width: 100%;
		height: 200px;
		border-radius: 0;
	}
}
/*太陽光発電とは*/
#whats {
	width: 100%;
	padding: 0 60px 80px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
/* - リスト*/
#all_wrap .whatList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
	position: relative;
}
#all_wrap .whatList > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
}
#all_wrap .whatList > dl > dt {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
	background: var(--main);
	width: 100%;
	padding: 20px 50px 22px;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
	transition: var(--ease);
	border-radius: 10px;
}
#all_wrap .whatList > dl > dt h3 {
	padding: 0;
	margin: 0;
	text-align: left;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 600;
	color: #fff;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .whatList > dl > dt:hover {
	color: var(--sub);
	transition: var(--ease);
}
#all_wrap .whatList > dl > dt.active {
	color: var(--sub);
	transition: var(--ease);
	border-radius: 10px 10px 0 0;
}
#all_wrap .whatList > dl > dt span {
	display: block;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	background: #fff;
	border-radius: 50%;
	position: relative;
}
#all_wrap .whatList > dl > dt span::before {
	content: '';
	display: block;
	width: 15px;
	height: 2px;
	background: var(--main);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .whatList > dl > dt span::after {
	content: '';
	display: block;
	width: 15px;
	height: 2px;
	background: var(--main);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(90deg);
	-webkit-transform: translate(-50%,-50%) rotate(90deg);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .whatList > dl > dt.active span::after {
	transform: translate(-50%,-50%) rotate(0deg);
	-webkit-transform: translate(-50%,-50%) rotate(0deg);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .whatList > dl > dd {
	margin: 0 auto;
	padding: 50px;
	background: #eff2f1;
	border-radius: 5px;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
	border-radius: 0 0 10px 10px;
}
/*メリット*/
#all_wrap .meritList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap .meritList > li {
	width: 100%;
	padding: 0 0 30px;
	margin: 0 auto 30px;
	position: relative;
	border-bottom: 1px solid #d6d6d6;
}
#all_wrap .meritList > li:last-child {
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
#all_wrap .meritList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	background: none;
	border: none;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 15px;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}
#all_wrap .meritList > li > h3 em {
	display: inline-block;
	padding: 5px 10px;
	margin: 2px 0 0;
	background: #fff;
	border-radius: 20px;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	font-family: var(--font-all);
	color: var(--act);
	font-style: normal;
}
#all_wrap .meritList > li > p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*仕組み*/
#all_wrap .flexInfo {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
#all_wrap .flexInfo > div {
	width: calc(100% - 30px - 320px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .flexInfo > div > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	background: none;
	border: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}
#all_wrap .flexInfo > div > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .flexInfo > figure {
	width: 100%;
	max-width: 320px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .flexInfo > figure img {
	width: 100%;
	height: auto;
}
/*売電*/
.taiyou_sales {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
.taiyou_sales:last-of-type {
	margin-bottom: 0;
}
#all_wrap .taiyou_sales > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	background: none;
	border: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}
#all_wrap .taiyou_sales > h4 {
	width: 100%;
	padding: 10px 20px;
	margin: 0 auto 15px;
	position: relative;
	background: #fff;
	border: none;
	border-radius: 5px;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}
#all_wrap .taiyou_sales > h4 em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
	color: var(--act);
	font-style: normal;
}
#all_wrap .taiyou_sales > p {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .taiyou_sales > figure {
	width: 100%;
	padding: 30px;
	margin: 0 auto 30px;
	background: #fff;
	border-radius: 10px;
	position: relative;
	text-align: center;
}
#all_wrap .taiyou_sales > figure:last-of-type {
	margin-bottom: 0;
}
#all_wrap .taiyou_sales > figure img {
	width: 100%;
	max-width: 500px;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*太陽光発電とは*/
	#whats {
		width: 100%;
		padding: 30px;
	}
	/* - リスト*/
	#all_wrap .whatList {
		width: 100%;
		grid-row-gap: 10px;
	}
	#all_wrap .whatList > dl {
		width: 100%;
	}
	#all_wrap .whatList > dl > dt {
		column-gap: 10px;
		width: 100%;
		padding: 15px;
	}
	#all_wrap .whatList > dl > dt h3 {
		font-size: 15px;
	}
	#all_wrap .whatList > dl > dt span {
		display: block;
		width: 20px;
		height: 20px;
	}
	#all_wrap .whatList > dl > dt span::before {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
	}
	#all_wrap .whatList > dl > dt span::after {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
	}
	#all_wrap .whatList > dl > dd {
		border-radius: 5px;
		font-size: 14px;
		line-height: 1.7em;
		padding: 20px;
	}
	/*メリット*/
	#all_wrap .meritList {
		width: 100%;
	}
	#all_wrap .meritList > li {
		width: 100%;
		padding: 0 0 20px;
		margin: 0 auto 20px;
	}
	#all_wrap .meritList > li:last-child {
		border: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}
	#all_wrap .meritList > li > h3 {
		width: 100%;
		margin: 0 auto 10px;
		column-gap: 10px;
		font-size: 15px;
	}
	#all_wrap .meritList > li > h3 em {
		padding: 5px 10px;
		border-radius: 20px;
		font-size: 12px;
		white-space: nowrap;
	}
	/*仕組み*/
	#all_wrap .flexInfo {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	#all_wrap .flexInfo > div {
		width: calc(100%);
	}
	#all_wrap .flexInfo > div > h3 {
		margin: 0 auto 10px;
		font-size: 20px;
	}
	#all_wrap .flexInfo > figure {
		width: 100%;
		max-width: 100%;
	}
	/*売電*/
	.taiyou_sales {
		margin: 0 auto 20px;
	}
	#all_wrap .taiyou_sales > h3 {
		margin: 0 auto 10px;
		font-size: 20px;
	}
	#all_wrap .taiyou_sales > h4 {
		width: 100%;
		padding: 10px 20px;
		margin: 0 auto 15px;
		position: relative;
		background: #fff;
		border: none;
		border-radius: 5px;
		display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		column-gap: 10px;
		font-size: 18px;
		line-height: 1.4em;
		font-weight: 600;
		color: var(--text);
		text-align: left;
	}
	#all_wrap .taiyou_sales > h4 em {
		display: inline-block;
		font-family: var(--font-en);
		font-size: 20px;
		line-height: 1;
		font-weight: 600;
		color: var(--act);
		font-style: normal;
	}
	#all_wrap .taiyou_sales > p {
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .taiyou_sales > figure {
		width: 100%;
		padding: 20px;
		margin: 0 auto 20px;
	}
	#all_wrap .taiyou_sales > figure img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}

/*==============================*/
/* Q&A */
/*==============================*/
#all_wrap #faq,
#all_wrap #faq-bousui,
#all_wrap #faq-ryokka,
#all_wrap #faq-taiyoukou {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
#all_wrap #faq-ryokka {
	background: #fafafa;
}
#all_wrap .faqList {
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .faqList dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .faqList dl dt {
	width: 100%;
	padding: 10px 20px 10px 60px;
	margin: 0;
	position: relative;
	background: #fff;
	border-radius: 5px;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
}
#all_wrap .faqList dl dt::before {
	content: 'Q';
	display: inline-block;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 6px;
	left: 20px;
	font-family: var(--font-en);
	font-size: 25px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--main);
}
#all_wrap .faqList dl dd {
	width: 100%;
	padding: 20px 20px 10px 60px;
	margin: 0;
	position: relative;
	background: none;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 15px;
	line-height: 2;
	font-weight: 400;
}
#all_wrap .faqList dl dd::before {
	content: 'A';
	display: inline-block;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 20px;
	left: 20px;
	font-family: var(--font-en);
	font-size: 25px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--main);
}
#all_wrap .faqList dl dd p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .faqList dl dd p:last-of-type {
	margin-bottom: 0;
}
/*青*/
#all_wrap .faqList.blue dl dt::before {
	color: var(--sub);
}
#all_wrap .faqList.blue dl dd::before {
	color: var(--sub);
}
/*緑*/
#all_wrap .faqList.green dl dt::before {
	color: var(--green);
}
#all_wrap .faqList.green dl dd::before {
	color: var(--green);
}
/*オレンジ*/
#all_wrap .faqList.orange dl dt::before {
	color: var(--act);
}
#all_wrap .faqList.orange dl dd::before {
	color: var(--act);
}
/* - 動画*/
#all_wrap .faq_movie {
	width: 100%;
	max-width: 600px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .faq_movie iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #faq,
	#all_wrap #faq-bousui,
	#all_wrap #faq-ryokka,
	#all_wrap #faq-taiyoukou {
		width: 100%;
		padding: 30px;
	}
	#all_wrap .faqList {
		grid-row-gap: 20px;
	}
	#all_wrap .faqList dl dt {
		width: 100%;
		padding: 10px 20px 10px 35px;
		border-radius: 5px;
		font-size: 15px;
	}
	#all_wrap .faqList dl dt::before {
		top: 6px;
		left: 10px;
		font-size: 20px;
	}
	#all_wrap .faqList dl dd {
		width: 100%;
		padding: 10px 20px 10px 35px;
		font-size: 14px;
		line-height: 2em;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .faqList dl dd::before {
		content: 'A';
		display: inline-block;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 12px;
		left: 10px;
		font-family: var(--font-en);
		font-size: 20px;
		line-height: 1.2em;
		font-weight: 600;
		color: var(--main);
	}
	#all_wrap .faqList dl dd p {
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .faqList dl dd p:last-of-type {
		margin-bottom: 0;
	}
	
	/* - 動画*/
	#all_wrap .faq_movie {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .faq_movie iframe {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}
}

/************************************************************/
/*　固定ページ　資料請求
/************************************************************/
#material {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#material {
		width: 100%;
		max-width: 100%;
	}
}

/************************************************************/
/*　固定ページ　お問い合わせ
/************************************************************/
#contact {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
/* - TELリスト お問い合わせ*/
#all_wrap .officeTel_contact {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 40px;
}
#all_wrap .officeTel_contact > span {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 25px;
	line-height: 1;
	font-family: var(--font-en);
	font-weight: 500;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .officeTel_contact > span::before {
	content: '';
	display: block;
	width: 20px;
	min-width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .officeTel_contact > span.tel::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_tel.svg');
}
#all_wrap .officeTel_contact > span.fax::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_fax.svg');
}
#all_wrap .officeTel_contact > span.mail::before {
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_mail.svg');
}
#all_wrap .officeTel_contact > span small {
	font-size: 12px;
	display: inline-block;
	padding-top: 8px;
}
/*太字下線*/
#all_wrap .bold {
	font-weight: bold;
	text-decoration: underline;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#contact {
		width: 100%;
		max-width: 100%;
	}
	/* - TELリスト お問い合わせ*/
	#all_wrap .officeTel_contact {
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .officeTel_contact > span {
		display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		column-gap: 5px;
		font-size: 25px;
	}
	#all_wrap .officeTel_contact > span::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}
	#all_wrap .officeTel_contact > span small {
		font-size: 10px;
		display: inline-block;
		padding-top: 8px;
	}
}

/*ダウンロード*/
#all_wrap .material_dl {
	width: 650px;
	height: auto;
	padding: 15px 50px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	background-image: linear-gradient(to top, #0080d9 0%, #00a9d5 100%);
	overflow: hidden;
	z-index: 0;
	border-radius: 100px;
	transition: var(--ease);
}
#all_wrap .material_dl:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
#all_wrap .material_dl::before {
	content: '';
	display: block;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	padding: 0;
	margin: 0;
	background: none;
	border: 1px solid rgba(255,255,255,0.5);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 100px;
}
#all_wrap .material_dl > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
#all_wrap .material_dl > i {
	display: block;
	width: 80px;
	height: auto;
	padding: 0;
	margin: 0;
}
#all_wrap .material_dl > i img {
	width: 100%;
	height: auto;
}
#all_wrap .material_dl > .material_dl_info {
	width: auto;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .material_dl > .material_dl_info > h3 {
	padding: 0;
	margin: 0 0 10px;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	position: relative;
}
#all_wrap .material_dl > .material_dl_info > h3 strong {
	color: #e03131;
	font-weight: 900;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF,  0-1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;
}
#all_wrap .material_dl > .material_dl_info > span {
	display: block;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-align-last: justify;
}

/*フォーム*/
#contactform {
	width: 100%;
	max-width: 850px;
	padding: 80px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#contactform::after {
	content: '';
	display: block;
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	background-image: linear-gradient(to bottom, #eff2f1 0%, #eff2f1 80%, #fff 100%);
	z-index: -1;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*フォーム*/
	#contactform {
		width: 100%;
		max-width: 100%;
		padding: 30px 0;
	}
}

/************************************************************/
/*　固定ページ　資料ダウンロード
/************************************************************/
#download {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap .materialList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .materialList > li {
	width: calc((100% - 80px) / 5);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .materialList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .materialList > li figure {
	width: 100%;
	height: auto;
	position: relative;
	text-align: center;
	padding: 0;
	margin: 0 auto 10px;
}
#all_wrap .materialList > li figure img {
	width: 100%;
	height: auto;
	transition: var(--ease);
}
#all_wrap .materialList > li h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 400;
	color: var(--text);
	border: none;
	background: none;
	position: relative;
	transition: var(--ease);
}
#all_wrap .materialList > li p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 12px;
	color: #818181;
}
#all_wrap .materialList > li:hover figure img {
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .materialList > li:hover h3 {
	color: var(--sub);
	text-decoration: underline;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#download {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .materialList {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .materialList > li {
		width: calc((100% - 20px) / 2);
	}
	#all_wrap .materialList > li figure {
		margin: 0 auto 5px;
	}
	#all_wrap .materialList > li h3 {
		margin: 0 auto 5px;
		font-size: 12px;
	}
	#all_wrap .materialList > li p {
		font-size: 10px;
	}
}

/*ダウンロード*/
#pwbox-input {
	height: 40px;
	line-height: 40px;
	padding: 10px;
	margin: 0;
	border-radius: 0;
	border: 1px solid #ccc;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 15px;
	line-height: 1;
	background: #fff;
	outline: none;
	box-sizing: border-box;
}
#pwbox-btn {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	height: 40px;
	line-height: 40px;
	padding: 10px;
	margin: 0;
	background: var(--base);
	border-radius: 0;
	font-family: var(--font-jp);
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	z-index: 0;
	transition: var(--ease);
	cursor: pointer;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ダウンロード*/
	#pwbox-input {
		width: 200px;
	}
}

/************************************************************/
/*　固定ページ 営業日カレンダー
/************************************************************/
#calendar {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .xo-months {
	width: 1000px;
	max-width: 1000px;
	min-width: 1000px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
}
#all_wrap .xo-month-wrap {
	width: calc((100% - 100px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
}
/*表*/
#all_wrap table.xo-month {
	display: table;
	table-layout: auto;
	border-collapse: collapse;
	border: none;
	border-top: 1px solid var(--base);
	border-left: 1px solid var(--base);
	width: 100%;
}
#all_wrap table.xo-month tr {
	display: block;
}
#all_wrap table.xo-month th {
	height: 2em;
	padding: 5px;
	font-size: 100%;
	line-height: 1;
	font-weight: bold;
	text-align: center;
	border: none;
	border-bottom: 1px solid var(--base);
	background: var(--base);
	white-space: nowrap;
	border-collapse: collapse;
	color: #fff;
}
#all_wrap table.xo-month th.saturday {
	border-right: 1px solid var(--base);
}
#all_wrap table.xo-month td {
	height: 2em;
	padding: 5px;
	line-height: 1;
	border: none;
	border-bottom: 1px solid var(--base);
	background: #fafafa;
	white-space: nowrap;
	border-collapse: collapse;
}
#all_wrap .xo-event-calendar table.xo-month .month-dayname-space {
	padding: 0;
	margin: 0;
	line-height: 1;
	height: auto;
}
#all_wrap table.xo-month table {
	overflow: hidden;
	table-layout: fixed;
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	border-radius: 0;
	background: none;
	border: none;
}
#all_wrap table.xo-month table th,
#all_wrap table.xo-month table td {
	overflow: hidden;
	table-layout: fixed;
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	border-radius: 0;
	white-space: nowrap;
	border-collapse: collapse;
}
.xo-event-calendar table.xo-month .month-dayname td div {
	border-right: 1px solid var(--base);
	font-size: 100%;
	height: 1000px;
	line-height: 1.2em;
	padding: 5px;
	text-align: center;
	width: 42.7px;
}
.xo-event-calendar table.xo-month .month-dayname td div.today {
	color: var(--main);
}
.xo-event-calendar table.xo-month button {
	display: none;
}
.xo-event-calendar table.xo-month .month-dayname td div.other-month {
	opacity: 1;
	color: #c8c8c8;
	background: #fafafa;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#calendar {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .xo-event-calendar {
		width: 330px;
		margin: 0 auto;
	}
	#all_wrap .xo-months {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		column-gap: 0;
		grid-row-gap: 0;
		margin: 0 auto;
	}
	#all_wrap .xo-month-wrap {
		width: 100%;
	}
	/*表*/
	#all_wrap table.xo-month {
		display: table;
		table-layout: auto;
		border-collapse: collapse;
		border: none;
		border-top: 1px solid var(--base);
		border-left: 1px solid var(--base);
		width: 100%;
	}
	#all_wrap table.xo-month tr {
		display: block;
	}
	#all_wrap table.xo-month th {
		display: table-cell;
		width: 47.1px;
		max-width: 47.1px;
		height: 2em;
		padding: 5px;
		font-size: 100%;
		line-height: 1;
		font-weight: bold;
		text-align: center;
		border: none;
		border-bottom: 1px solid var(--base);
		background: var(--base);
		white-space: nowrap;
		border-collapse: collapse;
		color: #fff;
		vertical-align: middle;
	}
	#all_wrap table.xo-month th.saturday {
		border-right: 1px solid var(--base);
	}
	#all_wrap table.xo-month td {
		display: table-cell;
		width: auto;
		max-width: unset;
		min-width: unset;
		height: 2em;
		padding: 5px;
		line-height: 1;
		border: none;
		border-bottom: 1px solid var(--base);
		background: #fafafa;
		white-space: nowrap;
		border-collapse: collapse;
		vertical-align: middle;
	}
	#all_wrap .xo-event-calendar table.xo-month .month-dayname-space {
		padding: 0;
		margin: 0;
		line-height: 1;
		height: auto;
	}
	#all_wrap table.xo-month table {
		overflow: hidden;
		table-layout: fixed;
		border: none;
		background: none;
		padding: 0;
		margin: 0;
		border-radius: 0;
		background: none;
		border: none;
	}
	#all_wrap table.xo-month table th,
	#all_wrap table.xo-month table td {
		overflow: hidden;
		table-layout: fixed;
		border: none;
		background: none;
		padding: 0;
		margin: 0;
		border-radius: 0;
		white-space: nowrap;
		border-collapse: collapse;
		vertical-align: middle;
	}
	.xo-event-calendar table.xo-month .month-dayname td div {
		border-right: 1px solid var(--base);
		font-size: 100%;
		height: 1000px;
		line-height: 1.2em;
		padding: 5px;
		text-align: center;
		width: 47.1px;
	}
	.xo-event-calendar table.xo-month .month-dayname td div.today {
		color: var(--main);
	}
	.xo-event-calendar table.xo-month button {
		display: none;
	}
	.xo-event-calendar table.xo-month .month-dayname td div.other-month {
		opacity: 1;
		color: #c8c8c8;
		background: #fafafa;
	}
}

/************************************************************/
/*　固定ページ 商品・サービス一覧
/************************************************************/

/*サービスリスト*/
#all_wrap .productsMainList {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 0 30px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .productsMainList::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 20px);
}
#all_wrap .productsMainList > li {
	width: calc(100% / 3 - 20px);
	padding: 15px;
	margin: 0;
	background: #f5f5f5;
	position: relative;
	transition: var(--ease);
}
#all_wrap .productsMainList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .productsMainList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .productsMainList > li > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#all_wrap .productsMainList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .productsMainList > li .productsMainList_info {
	position: relative;
	padding: 35px 0 0;
	margin: 0;
}
#all_wrap .productsMainList > li i {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
	padding: 0;
	margin: 0 auto;
	background: var(--base);
}
#all_wrap .productsMainList > li.bousui i {
	background: #619bd2;
}
#all_wrap .productsMainList > li.ryokka i {
	background: #4c8c28;
}
#all_wrap .productsMainList > li.taiyoukou i {
	background: #c76c3e;
}
#all_wrap .productsMainList > li.equipment i {
	background: var(--sub);
}
#all_wrap .productsMainList > li.housing i {
	background: #8ac13a;
}
#all_wrap .productsMainList > li i img {
	width: 25px;
	height: auto;
}
#all_wrap .productsMainList > li h3 {
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	text-align: center;
	transition: var(--ease);
}
#all_wrap .productsMainList > li:hover h3 {
	color: var(--sub);
	transition: var(--ease);
}
/*商品一覧*/
#all_wrap .productsList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .productsList::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 20px);
}
#all_wrap .productsList > li {
	width: calc(100% / 3 - 20px);
	padding: 15px;
	margin: 0;
	background: #f5f5f5;
	position: relative;
	transition: var(--ease);
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 15px;
}
#all_wrap .productsList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .productsList > li > figure {
	width: 80px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .productsList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .productsList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .productsList > li h3 {
	width: calc(100% - 15px - 80px);
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	text-align: left;
	transition: var(--ease);
}
#all_wrap .productsList > li:hover h3 {
	color: var(--sub);
	transition: var(--ease);
}
#all_wrap .productsList > li h3 small {
	font-size: 0.7em;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*サービスリスト*/
	#all_wrap .productsMainList {
		margin: 0 auto 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .productsMainList::after {
		content: '';
		display: none;
	}
	#all_wrap .productsMainList > li {
		width: calc(100%);
		padding: 10px;
		margin: 0;
	}
	#all_wrap .productsMainList > li .productsMainList_info {
		position: relative;
		padding: 30px 0 10px;
		margin: 0;
	}
	#all_wrap .productsMainList > li i {
		width: 50px;
		height: 50px;
		top: -25px;
	}
	#all_wrap .productsMainList > li i img {
		width: 20px;
		height: auto;
	}
	#all_wrap .productsMainList > li h3 {
		font-size: 18px;
	}
	/*商品一覧*/
	#all_wrap .productsList {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .productsList::after {
		content: '';
		display: none;
	}
	#all_wrap .productsList > li {
		width: calc(100% / 2 - 10px);
		padding: 10px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .productsList > li > figure {
		width: 100%;
	}
	#all_wrap .productsList > li h3 {
		width: calc(100%);
		font-size: 14px;
	}
}

/************************************************************/
/*　固定ページ 金属防水
/************************************************************/
#bousui {
	background: #def1ff;
}

/*==============================*/
/* 5つの特徴 */
/*==============================*/
#bousui_feature {
	width: 100%;
	min-width: 1100px;
	padding: 80px 120px 80px 60px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#bousui_feature::before {
	content: '';
	display: block;
	width: calc(100% - 60px);
	height: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 0 50px 0 0;
}
#all_wrap .feature_list {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 40px;
}
#all_wrap .feature_list > li {
	width: calc(100% / 3 - 26.7px);
	padding: 0;
	margin: 0;
	position: relative;
	background: var(--sub);
	border-radius: 10px;
}
#all_wrap .feature_list > li::before,
#all_wrap .feature_list > li::after {
	display: none;
}
#all_wrap .feature_list > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px 10px 0 0;
}
#all_wrap .feature_list > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .feature_list > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .feature_list_info {
	padding: 20px;
	margin: 0;
	position: relative;
}
#all_wrap .feature_list_info > h3 {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 600;
	color: #fff;
}
#all_wrap .feature_list_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
	line-height: 1.4em;
}
/*5列*/
#all_wrap .feature_list.five {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .feature_list.five > li {
	width: calc((100% - 80px) / 5);
	padding: 0;
	margin: 0;
	position: relative;
	background: var(--sub);
	border-radius: 10px;
}
#all_wrap .feature_list.five .package_list_info {
	padding: 15px;
	margin: 0;
	position: relative;
}
#all_wrap .feature_list.five .package_list_info > h3 {
	padding: 0;
	margin: 0 auto 7px;
	position: relative;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 600;
	color: #fff;
}
#all_wrap .feature_list.five .package_list_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
	font-size: 12px;
	line-height: 1.4em;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#bousui_feature {
		width: 100%;
		min-width: 100%;
		padding: 30px;
		background: #fff;
	}
	#bousui_feature::before {
		display: none;
	}
	#all_wrap .feature_list,
	#all_wrap .feature_list.five {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .feature_list > li,
	#all_wrap .feature_list.five > li {
		width: calc(100% / 2 - 10px);
	}
	#all_wrap .feature_list_info {
		padding: 10px;
		margin: 0;
		position: relative;
	}
	#all_wrap .feature_list_info > h3 {
		padding: 0;
		margin: 0 auto 5px;
		font-size: 14px;
	}
	#all_wrap .feature_list_info > p {
		font-size: 12px;
		line-height: 1.4em;
	}
}

/*==============================*/
/* 不燃性能 */
/*==============================*/
#all_wrap #bousui_bouka {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
.beforeafter {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
}
.beforeafter > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
.beforeafter > span img {
	width: 100%;
	height: auto;
}
.beforeafter > span.arrow {
	display: block;
	width: 20px;
	height: 35px;
	background: var(--sub);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #bousui_bouka {
		width: 100%;
		padding: 30px;
	}
	.beforeafter {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.beforeafter > span {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.beforeafter > span img {
		width: 100%;
		height: auto;
	}
	.beforeafter > span.arrow {
		display: block;
		width: 25px;
		height: 15px;
		background: var(--sub);
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
}

/*==============================*/
/* メンテナンス方法 */
/*==============================*/
#all_wrap #bousui_maintenance {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
/*説明ボックス*/
#all_wrap .info_dl {
	width: 100%;
	padding: 20px 0;
	margin: 0 auto;
	position: relative;
	background: #eff2f1;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
}
#all_wrap .info_dl dt {
	width: 180px;
	padding: 0 20px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
	border-right: 1px dashed #d6d6d6;
}
#all_wrap .info_dl dd {
	width: calc(100% - 180px);
	padding: 0 30px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}
/*説明リスト*/
#all_wrap .infoList {
	width: 100%;
	min-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .infoList > li {
	width: calc(100% / 3 - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .infoList > li figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .infoList > li figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .infoList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .infoList > li h4 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
}
#all_wrap .infoList > li > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 1.8em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #bousui_maintenance {
		width: 100%;
		padding: 30px;
	}
	/*説明ボックス*/
	#all_wrap .info_dl {
		width: 100%;
		padding: 20px;
		margin: 0 auto 20px;
		flex-wrap: wrap;
	}
	#all_wrap .info_dl dt {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		justify-content: flex-start;
		font-size: 16px;
		line-height: 1.2em;
		font-weight: 600;
		color: var(--text);
		border-right: none
	}
	#all_wrap .info_dl dd {
		width: calc(100%);
		padding: 0;
		margin: 0;
		border-right: none;
		border-bottom: 1px dashed #d6d6d6;
	}
	#all_wrap .info_dl:last-of-type {
		margin-bottom: 0;
	}
	#all_wrap .info_dl:last-of-type dd {
		border: none;
	}
	/*説明リスト*/
	#all_wrap .infoList {
		width: 100%;
		min-width: 100%;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	#all_wrap .infoList > li {
		width: calc(100%);
		grid-row-gap: 10px;
	}
	#all_wrap .infoList > li h4 {
		font-size: 16px;
	}
	
	#all_wrap #bousui_warranty .info_img > figure {
		text-align: center;
	}
	#all_wrap #bousui_warranty .info_img > figure img {
		max-width: 200px;
	}
}

/*==============================*/
/* 耐久性能 */
/*==============================*/
#all_wrap #bousui_durable {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
#all_wrap .info_img {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
}
#all_wrap .info_img > div {
	width: calc(100% - 50px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .info_img > div > p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .info_img > div > p:last-of-type {
	margin-bottom: 0;
}
#all_wrap .info_img > figure {
	width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .info_img > figure img {
	width: 100%;
	height: auto;
}
/*ボタン*/
#all_wrap .boxBtn {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .boxBtn.left {
	justify-content: flex-start;
}
#all_wrap .boxBtn.right {
	justify-content: flex-end;
}
#all_wrap .boxBtn.mt20 {
	margin-top: 20px;
}
#all_wrap .boxBtn > a {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: auto;
	padding: 15px 30px;
	margin: 0;
	background: var(--main);
	border-radius: 5px;
	position: relative;
	font-size: 15px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .boxBtn > a:hover {
	background: var(--sub);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .boxBtn > a.pdf::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_pdf_w.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#all_wrap .boxBtn > a.blank::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_blank_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .boxBtn > a.none::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	background: none;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(45deg);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #bousui_durable {
		width: 100%;
		padding: 30px;
	}
	#all_wrap .info_img {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .info_img > div {
		width: calc(100%);
	}
	#all_wrap .info_img > figure {
		width: 100%;
	}
	/*ボタン*/
	#all_wrap .boxBtn > a {
		column-gap: 10px;
		padding: 12px 22px 12px 12px;
		border-radius: 5px;
		font-size: 14px;
	}
	#all_wrap .boxBtn > a.pdf::before {
		width: 12px;
		height: 12px;
	}
	#all_wrap .boxBtn > a.blank::before {
		width: 12px;
		height: 12px;
	}
	#all_wrap .boxBtn > a.none::before {
		width: 5px;
		height: 5px;
		right: 10px;
	}
}

/*==============================*/
/* シックハウス */
/*==============================*/
#all_wrap #bousui_sickhouse {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
#all_wrap .sickhouse_img {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}
#all_wrap .sickhouse_img span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .sickhouse_img span:last-of-type {
	width: 330px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .sickhouse_img span:last-of-type::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .sickhouse_img span:first-of-type {
	width: calc(100% - 20px - 330px);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
.sickhouse_info {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	align-content: center;
	align-items: center;
}
#all_wrap s.sickhouse_txt {
	width: calc(100% - 20px - 100px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .sickhouse_txt > h3 {
	width: auto;
	padding: 0;
	margin: 0 auto 15px;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
#all_wrap .sickhouse_info > p {
	padding: 0;
	margin: 0;
	width: auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.sickhouse_info figure {
	width: 100px;
	padding: 0;
	margin: 0;
}
.sickhouse_info figure img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #bousui_sickhouse {
		width: 100%;
		padding: 30px;
	}
	#all_wrap .sickhouse_img {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .sickhouse_img span:last-of-type {
		width: 100%;
	}
	#all_wrap .sickhouse_img span:first-of-type {
		width: calc(100%);
		border-radius: 10px;
	}
	.sickhouse_info {
		width: 100%;
		column-gap: 0;
		grid-row-gap: 10px;
		flex-wrap: wrap;
	}
	#all_wrap s.sickhouse_txt {
		width: calc(100%);
	}
	#all_wrap .sickhouse_txt > h3 {
		margin: 0 auto 10px;
		font-size: 20px;
	}
	.sickhouse_info figure {
		width: 100%;
		padding: 0;
		margin: 0;
		text-align: center;
	}
	.sickhouse_info figure img {
		width: 100%;
		max-width: 100px;
		height: auto;
	}
}

/*==============================*/
/* 安心の10年・30年保証 */
/*==============================*/
#all_wrap #bousui_warranty {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
.warranty_img {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
.warranty_img img {
	width: 100%;
	max-width: 600px;
}
/*リスト*/
#all_wrap .imageList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .imageList > li {
	width: calc(100% / 3 - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .imageList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .imageList > li > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .imageList > li > h4 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--main);
	position: relative;
}
/*ダブルの保証*/
#all_wrap .bousui_warranty_list {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .bousui_warranty_list > li {
	width: 375px;
	padding: 30px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	border-radius: 20px;
	background: #e0edff;
	z-index: 0;
	position: relative;
	overflow: hidden;
}
#all_wrap .bousui_warranty_list > li::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: none;
	border: 10px solid rgba(255,255,255,0.5);
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	transform: unset;
	z-index: -1;
}
#all_wrap .bousui_warranty_list > li h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	background: none;
	border: none;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 900;
	color: #355da8;
	text-align: center;
}
#all_wrap .bousui_warranty_list > li > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
	text-align: center;
}
#all_wrap .bousui_warranty_list > li > p strong {
	color: #355da8;
	font-weight: 900;
	display: inline-block;
	margin-left: 10px;
}
#all_wrap .bousui_warranty_list > li:nth-child(even) {
	background: #d8efff;
}
#all_wrap .bousui_warranty_list > li:nth-child(even) h3 strong {
	color: #037ed2;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #bousui_warranty {
		width: 100%;
		padding: 30px;
	}
	.warranty_img img {
		width: 100%;
		max-width: 100%;
	}
	/*リスト*/
	#all_wrap .imageList {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .imageList > li {
		width: calc(100% / 2 - 10px);
		grid-row-gap: 5px;
	}
	#all_wrap .imageList > li > h4 {
		font-size: 14px;
	}
	/*ダブルの保証*/
	#all_wrap .bousui_warranty_list {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .bousui_warranty_list > li {
		width: 100%;
		padding: 30px;
		border-radius: 10px;
	}
	#all_wrap .bousui_warranty_list > li::before {
		border-radius: 10px;
	}
	#all_wrap .bousui_warranty_list > li h3 {
		margin: 0 auto 10px;
		font-size: 16px;
	}
	#all_wrap .bousui_warranty_list > li > p {
		font-size: 20px;
	}
}

/*JMPロゴ*/
#all_wrap .jmp_logo {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 7px;
}
#all_wrap .jmp_logo img {
	width: 100px !important;
	height: auto;
}
#all_wrap .jmp_logo span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 12px;
	line-height: 1;
	font-weight: 400;
	color: var(--text);
	text-align: center;
}
#all_wrap .jmp_logo p {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}

/*保証概要*/
#all_wrap .outlineList {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
}
#all_wrap .outlineList > dl {
	width: 100%;
	padding: 30px 0;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #d6d6d6;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 30px;
}
#all_wrap .outlineList > dl:first-of-type {
	border-top: 1px solid #d6d6d6;
}
#all_wrap .outlineList > dl dt {
	width: 160px;
	min-width: 160px;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--sub);
	text-align: left;
}
#all_wrap .outlineList > dl dd {
	width: calc(100% - 30px - 150px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .outlineList > dl dd > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
strong.blue {
	color: var(--sub);
	font-weight: 600;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*保証概要*/
	#all_wrap .outlineList {
		margin: 0 auto 20px;
	}
	#all_wrap .outlineList > dl {
		width: 100%;
		padding: 20px 0;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 5px;
	}
	#all_wrap .outlineList > dl dt {
		width: 100%;
		min-width: 100%;
		font-size: 20px;
	}
	#all_wrap .outlineList > dl dt br {
		display: none;
	}
	#all_wrap .outlineList > dl dd {
		width: calc(100%);
	}
}

/*==============================*/
/* 工事の流れ */
/*==============================*/
#all_wrap #bousui_flow {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
/*施工の流れ*/
#all_wrap .bousui_flowList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
}
#all_wrap .bousui_flowList > li {
	width: calc(100% / 4 - 30px);
	padding: 45px 20px 20px;
	margin: 0;
	background: var(--sub);
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
#all_wrap .bousui_flowList > li::after {
	content: '';
	display: block;
	width: 20px;
	height: 100%;
	background: var(--sub);
	position: absolute;
	top: 0;
	right: -19px;
	clip-path: polygon(0 0, 10% 0, 100% 50%, 10% 100%, 0 100%, 0% 50%);
}
#all_wrap .bousui_flowList > li:last-child::after {
	display: none;
}
#all_wrap .bousui_flowList > li > em {
	display: block;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	font-style: normal;
	font-weight: 700;
	color: #fff;
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translate(-50%,-50%);
}
#all_wrap .bousui_flowList > li > p {
	padding: 0;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 600;
	color: #fff;
	text-align: center;
}
#all_wrap .bousui_flowList > li > p small {
	display: block;
	font-size: 15px;
	line-height: 1.2em;
}
/*施工手順*/
.grayBox {
	padding: 50px;
	margin: 0;
	background: #eff2f1;
	position: relative;
	border-radius: 10px;
}
.endarrow {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	text-align: center;
}
.endarrow img {
	width: 160px;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #bousui_flow {
		width: 100%;
		padding: 30px;
	}
	/*施工の流れ*/
	#all_wrap .bousui_flowList {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .bousui_flowList > li {
		width: calc(100%);
		padding: 15px 15px 15px 40px;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	}
	#all_wrap .bousui_flowList > li::after {
		content: '';
		display: block;
		width: 20px;
		height: 10px;
		top: unset;
		bottom: -9px;
		right: unset;
		left: 50%;
		transform: translate(-50%,0);
		clip-path: polygon(0 0, 50% 100%, 100% 0);
	}
	#all_wrap .bousui_flowList > li > em {
		font-size: 15px;
		top: 17px;
		left: 15px;
		transform: unset;
	}
	#all_wrap .bousui_flowList > li > p {
		padding: 0;
		margin: 0;
		font-size: 14px;
		text-align: left;
	}
	#all_wrap .bousui_flowList > li > p small {
		font-size: 12px;
	}
	#all_wrap .bousui_flowList > li > p  br {
		display: none;
	}
	/*施工手順*/
	.grayBox {
		padding: 20px;
	}
	.endarrow {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		text-align: center;
	}
	.endarrow img {
		width: 160px;
		height: auto;
	}
}

/*==============================*/
/* 金属防水屋根（レインボウルーフ） */
/*==============================*/
#bousui_r-roof {
	width: 100%;
	padding: 50px 60px 80px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
/*情報*/
#bousui_r-roof_info {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
#all_wrap .content .harfBox {
	width: 100%;
	padding: 30px 0;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #d6d6d6;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
#all_wrap .content .harfBox.center {
	align-content: center;
	align-items: center;
}
#all_wrap .content .harfBox > div {
	width: calc(100% / 2 - 15px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .content .harfBox.full > div {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .content .harfBox > div p {
	line-height: 1.7em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#bousui_r-roof {
		width: 100%;
		padding: 30px;
	}
	/*情報*/
	#bousui_r-roof_info {
		width: 100%;
		padding: 30px;
	}
	#all_wrap .content .harfBox {
		width: 100%;
		padding: 20px 0;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .content .harfBox:first-of-type {
		padding-top: 0;
	}
	#all_wrap .content .harfBox.center {
		align-content: center;
		align-items: center;
	}
	#all_wrap .content .harfBox > div {
		width: calc(100%);
	}
	#all_wrap .content .harfBox.full > div {
		width: calc(100%);
	}
	#all_wrap .content .harfBox > div p {
		line-height: 1.7em;
	}
	#all_wrap .content .harfBox > div p:last-of-type {
		margin-bottom: 0;
	}
}

/************************************************************/
/*　固定ページ 屋上緑化
/************************************************************/
#ryokka {
	background: #dbeedf;
}
/*メリット*/
#ryokka_merit {
	width: 100%;
	min-width: 1100px;
	padding: 80px 120px 80px 60px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#ryokka_merit::before {
	content: '';
	display: block;
	width: calc(100% - 60px);
	height: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 0 50px 0 0;
}
/* - リスト*/
#all_wrap .merit_list {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .merit_list > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
#all_wrap .merit_list > li .merit_list_info {
	width: calc(100% - 30px - 450px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .merit_list > li .merit_list_info h3 {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 20px;
	width: 100%;
	padding: 10px 20px;
	margin: 0 auto 1em;
	background: #eff2f1;
	border: none;
	border-radius: 10px;
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
}
#all_wrap .merit_list > li .merit_list_info h3 em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--green);
	font-style: normal;
}
#all_wrap .merit_list > li .merit_list_info > p {
	padding: 0;
	margin: 0 0 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .merit_list > li .merit_list_info > p.link {
	text-align: right;
}
#all_wrap .merit_list > li > figure {
	width: 450px;
	max-width: 450px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .merit_list > li > figure img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*メリット*/
	#ryokka_merit {
		width: 100%;
		min-width: 100%;
		padding: 30px;
	}
	#ryokka_merit::before {
		content: '';
		display: block;
		width: calc(100%);
		height: 100%;
		border-radius: 0;
	}
	/* - リスト*/
	#all_wrap .merit_list {
		width: 100%;
		grid-row-gap: 30px;
		margin-top: 20px;
	}
	#all_wrap .merit_list > li {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	#all_wrap .merit_list > li .merit_list_info {
		width: calc(100%);
	}
	#all_wrap .merit_list > li .merit_list_info h3 {
		column-gap: 10px;
		width: 100%;
		padding: 10px 20px;
		margin: 0 auto 10px;
		font-size: 16px;
	}
	#all_wrap .merit_list > li .merit_list_info h3 em {
		font-size: 16px;
	}
	#all_wrap .merit_list > li .merit_list_info > p:last-of-type {
		margin-bottom: 0;
	}
	#all_wrap .merit_list > li > figure {
		width: 100%;
		max-width: 100%;
	}
}

/*==============================*/
/* プラン一覧 */
/*==============================*/
#all_wrap #ryokka_plan {
	width: 100%;
	padding: 80px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #ryokka_plan {
		width: 100%;
		padding: 30px;
	}
}

/*==============================*/
/* 屋上と防水 */
/*==============================*/
#all_wrap #ryokka_bousui {
	width: 100%;
	padding: 0 60px 60px;
	margin: 0 auto;
	background: var(--gray);
	position: relative;
	z-index: 0;
}
#all_wrap figure.image {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 1em;
}
#all_wrap figure.image img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #ryokka_bousui {
		width: 100%;
		padding: 0 30px 30px;
	}
	#all_wrap figure.image {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 1em;
	}
	#all_wrap figure.image img {
		width: 100%;
		height: auto;
	}
}

/*==============================*/
/* よくある質問 */
/*==============================*/
#all_wrap .youtubeList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap #ryokka .youtubeList {
	padding-top: 10px;
}
#all_wrap .youtubeList.two {
	column-gap: 50px;
	grid-row-gap: 50px;
}
#all_wrap .youtubeList::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 20px);
}
#all_wrap .youtubeList.two::after {
	display: none;
}
#all_wrap .youtubeList > li {
	width: calc(100% / 3 - 20px);
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .youtubeList.two > li {
	width: calc(100% / 2 - 25px);
	min-width: auto;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .youtubeList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .youtubeList > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .youtubeList > li figure iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .youtubeList > li h3 {
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	border: none;
	background: none;
}
#all_wrap .youtubeList > li h4 {
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .youtubeList {
		width: 100%;
		column-gap: 0;
		grid-row-gap: 10px;
		flex-wrap: wrap;
	}
	#all_wrap #ryokka .youtubeList {
		padding-top: 0;
	}
	#all_wrap .youtubeList.two {
		column-gap: 0;
		grid-row-gap: 20px;
		flex-wrap: wrap;
	}
	#all_wrap .youtubeList::after {
		content: '';
		display: none;
	}
	#all_wrap .youtubeList > li {
		width: calc(100%);
		min-width: 100%;
	}
	#all_wrap .youtubeList.two > li {
		width: calc(100%);
		min-width: 100%;
	}
	#all_wrap .youtubeList > li h3 {
		font-size: 16px;
	}
	#all_wrap .youtubeList > li h4 {
		font-size: 14px;
	}
}

/************************************************************/
/*　固定ページ DXへの取り組み dx
/************************************************************/
#dx {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
p.right {
	text-align: right;
}
p span.name {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/************************************************************/
/*　固定ページ 情報セキュリティ基本方針 securityaction
/************************************************************/
#secact {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#secact {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap #secact .contHead > em {
		font-size: 25px;
	}
	#all_wrap #secact .contHead > h2 {
		font-size: 10px;
	}
}

/************************************************************/
/*　商品一覧 V2H
/************************************************************/
#v2h {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
.w400 {
	width: 400px;
	height: auto;
	margin: 0 auto;
}
.w500 {
	width: 500px;
	height: auto;
	margin: 0 auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#v2h {
		width: 100%;
		max-width: 100%;
	}
	.w400 {
		width: 100%;
	}
	.w500 {
		width: 100%;
	}
}

/************************************************************/
/*　商品一覧 楽ちんマグボード
/************************************************************/
#magboad {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*ナビゲーション*/
#all_wrap .anchorNav {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
#all_wrap .anchorNav > ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	column-gap: 10px;
	grid-row-gap: 10px;
	flex-wrap: wrap;
}
#all_wrap .anchorNav > ul > li {
	width: calc(100% / 5 - 8px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .anchorNav > ul > li > a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 15px 10px 25px;
	margin: 0;
	background: var(--sub);
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 600;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .anchorNav > ul > li > a::after {
	content: '';
	display: block;
	width: 7px;
	height: 5px;
	background: #fff;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#all_wrap .anchorNav > ul > li > a:hover {
	background: var(--base);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#magboad {
		width: 100%;
		max-width: 100%;
	}
	/*ナビゲーション*/
	#all_wrap .anchorNav {
		margin: 0 auto 50px;
	}
	#all_wrap .anchorNav > ul {
		width: 100%;
		justify-content: space-between;
	}
	#all_wrap .anchorNav > ul > li {
		width: calc(100% / 2 - 5px);
	}
	#all_wrap .anchorNav > ul > li > a {
		padding: 10px 10px 20px;
		font-size: 14px;
	}
	#all_wrap .anchorNav > ul > li > a br {
		display: none;
	}
}

/*加工の流れ*/
#all_wrap .magFlow {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	background: #f5f5f5;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .magFlow > li {
	width: calc(100% / 3 - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	background: #fff;
}
#all_wrap .magFlow > li::after {
	content: '';
	display: block;
	width: 15px;
	height: 20px;
	background: #78b837;
	position: absolute;
	top: 50%;
	right: -23px;
	transform: translate(0,-50%);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
#all_wrap .magFlow > li:nth-child(3n)::after {
	display: none;
}
#all_wrap .magFlow > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .magFlow > li > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .magFlow > li > .magFlow_info {
	width: 100%;
	padding: 15px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 3px;
}
#all_wrap .magFlow > li > .magFlow_info h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
}
#all_wrap .magFlow > li > .magFlow_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 12px;
	line-height: 1.7em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*加工の流れ*/
	#all_wrap .magFlow {
		width: 100%;
		padding: 0;
		column-gap: 20px;
		grid-row-gap: 20px;
		background: none;
	}
	#all_wrap .magFlow > li {
		width: calc(100% / 2 - 10px);
		background: #f5f5f5;
	}
	#all_wrap .magFlow > li::after {
		content: '';
		display: block;
		width: 7px;
		height: 10px;
		background: #78b837;
		position: absolute;
		top: 50%;
		right: -13px;
		transform: translate(0,-50%);
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
	}
	#all_wrap .magFlow > li:nth-child(3n)::after {
		display: block;
	}
	#all_wrap .magFlow > li:last-child::after {
		display: none;
	}
	#all_wrap .magFlow > li > figure {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .magFlow > li > figure img {
		width: 100%;
		height: auto;
	}
	#all_wrap .magFlow > li > .magFlow_info {
		width: 100%;
		padding: 10px;
		margin: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 3px;
	}
	#all_wrap .magFlow > li > .magFlow_info h3 {
		width: 100%;
		font-size: 14px;
	}
	#all_wrap .magFlow > li > .magFlow_info > p {
		font-size: 12px;
		line-height: 1.7em;
	}
}

/*PDFダウンロード*/
#all_wrap .dl_pdf {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 10px 20px;
	margin: 0;
	background: var(--act);
	border-radius: 5px;
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .dl_pdf::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('https://test-eijyu.coresv.com/wp-content/uploads/icon_pdf_w-1.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#all_wrap .dl_pdf:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}

/************************************************************/
/*　商品一覧 換気システム
/************************************************************/
#kanki {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*チェックリスト*/
#all_wrap .checkList {
	width: 100%;
	padding: 0;
	margin: 1em auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .checkList > li {
	width: 100%;
	padding: 0 0 0 25px;
	margin: 0;
	background: 0 0;
	position: relative;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 500;
}
#all_wrap .checkList > li::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border: 2px solid var(--text);
	border-radius: 3px;
	background: #fff;
	position: absolute;
	top: .7em;
	left: 0;
	z-index: 0;
}
#all_wrap .checkList > li::after {
	content: '';
	display: block;
	width: 15px;
	height: 7px;
	border-left: 2px solid var(--act);
	border-bottom: 2px solid var(--act);
	background: 0 0;
	position: absolute;
	top: 4px;
	left: 4px;
	transform: rotate(-38deg);
	-webkit-transform: rotate(-38deg);
	z-index: 0;
}
/*チェック*/
#all_wrap .checkTxt {
	width: 100%;
	padding: 30px 30px 30px 40px;
	margin: 0 auto;
	position: relative;
	background: #f6fff3;
	border-radius: 5px;
	border: 1px solid #60a645;
}
#all_wrap .checkTxt > em {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	aspect-ratio: 1/1;
	background: #60a645;
	border-radius: 50%;
	position: absolute;
	top: -15px;
	left: -15px;
	z-index: 2;
	font-family: var(--font-en);
	font-size: 11px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	font-style: normal;
	transform: rotate(-12deg);
}
#all_wrap .checkTxt > p:last-of-type {
	margin-bottom: 0;
}
/*サムネイルリスト*/
#all_wrap .content .thumbList {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 1em auto;
	position: relative;
}
#all_wrap .content .thumbList li {
	width: calc(100% / 5 - 8px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .content .thumbList li img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#kanki {
		width: 100%;
		max-width: 100%;
	}
	/*チェック*/
	#all_wrap .checkTxt {
		width: 100%;
		padding: 20px 20px 20px 30px;
		margin: 0 auto;
		position: relative;
		background: #f6fff3;
		border-radius: 5px;
		border: 1px solid #60a645;
	}
	#all_wrap .checkTxt > em {
		display: inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		width: 50px;
		height: 50px;
		aspect-ratio: 1/1;
		background: #60a645;
		border-radius: 50%;
		position: absolute;
		top: -15px;
		left: -15px;
		z-index: 2;
		font-family: var(--font-en);
		font-size: 11px;
		line-height: 1;
		font-weight: 600;
		color: #fff;
		font-style: normal;
		transform: rotate(-12deg);
	}
	#all_wrap .checkTxt > p:last-of-type {
		margin-bottom: 0;
	}
	/*サムネイルリスト*/
	#all_wrap .content .thumbList {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .content .thumbList li {
		width: calc((100% - 20px) / 3);
	}
}

/************************************************************/
/*　商品一覧 アンベリール
/************************************************************/
#embellir {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*明朝タイトル*/
#all_wrap .content .mincho_ttl {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	letter-spacing: 0.05em;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#embellir {
		width: 100%;
		max-width: 100%;
	}
	/*明朝タイトル*/
	#all_wrap .content .mincho_ttl {
		font-size: 25px;
		line-height: 1.4em;
		font-weight: 600;
		color: var(--text);
		letter-spacing: 0.05em;
		font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	}
}
/*リスト*/
#all_wrap .circleList {
	width: 100%;
	padding: 0;
	margin: 1em auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .circleList > li {
	padding: 0 0 0 1.5em;
	margin: 0;
	font-size: 14px;
	line-height: 1.4em;
}
#all_wrap .circleList > li::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background: var(--text);
	color: var(--text);
}
#all_wrap .circleList > li::after {
	display: none;
}

/************************************************************/
/*　商品一覧 フレキシブルソーラーG+
/************************************************************/
#flexiblemodule {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#flexiblemodule {
		width: 100%;
		max-width: 100%;
	}
}

/************************************************************/
/*　事例詳細 事例1
/************************************************************/
#jirei_single {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
#all_wrap .gallerybox {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .gallerybox > figure {
	width: calc(100% / 2 - 10px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .gallerybox > figure img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#jirei_single {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		position: relative;
	}
}

/*ギャラリー*/
#all_wrap .jirei_gallery {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
	background: #f5f5f5;
}
#all_wrap .jirei_gallery > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .jirei_gallery > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .jirei_gallery > li figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#all_wrap .jirei_gallery > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .jirei_gallery > li p {
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 12px;
	line-height: 1.7em;
	padding: 0;
	margin: 0;
	width: 100%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ギャラリー*/
	#all_wrap .jirei_gallery {
		width: 100%;
		padding: 20px;
		column-gap: 30px;
		grid-row-gap: 30px;
	}
	#all_wrap .jirei_gallery > li {
		width: calc(100%);
		grid-row-gap: 10px;
	}
}

/************************************************************/
/*　採用情報
/************************************************************/
#recruit {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*ナビゲーション*/
#all_wrap #recruit .anchorNav > ul > li {
	width: calc(100% / 7 - 8.6px);
}
#all_wrap #recruit .anchorNav > ul > li > a {
	background: #038275;
	font-size: 12px;
}
#all_wrap #recruit .anchorNav > ul > li > a:hover {
	filter: brightness(1.2);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit {
		width: 100%;
		max-width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	/*ナビゲーション*/
	#all_wrap #recruit .anchorNav > ul > li {
		width: calc(100% / 2 - 5px);
	}
}

/*インタビュー*/
#all_wrap .interviewList {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .interviewList::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 13.4px);
}
#all_wrap .interviewList > li {
	width: calc(100% / 3 - 13.4px);
	padding: 10px;
	margin: 0;
	background: #f5f5f5;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	transition: var(--ease);
}
#all_wrap .interviewList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .interviewList > li figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .interviewList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .interviewList > li h3 {
	padding: 0 0 0 20px;
	margin: 0;
	background: none;
	border: none;
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: lighter;
	color: var(--text);
	text-align: left;
}
#all_wrap .interviewList > li h3::before {
	content: '';
	display: block;
	width: 5px;
	height: 7px;
	background: var(--main);
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translate(0,-50%);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*インタビュー*/
	#all_wrap .interviewList {
		margin: 0 auto 30px;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .interviewList::after {
		content: '';
		display: none;
	}
	#all_wrap .interviewList > li {
		width: calc(100% / 2 - 5px);
		padding: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .interviewList > li h3 {
		padding: 0 0 0 20px;
		font-size: 12px;
	}
}

/*こんな人材*/
#all_wrap .jinzaiList {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .jinzaiList > li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(100% / 2 - 15px);
	padding: 20px;
	margin: 0;
	background: #038275;
	position: relative;
	text-align: center;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 600;
	color: #fff;
	border-radius: 20px;
}
#all_wrap .jinzaiList > li:nth-child(even) {
	transform: translate(0,20px);
}
#all_wrap .jinzaiList > li::before,
#all_wrap .jinzaiList > li::after {
	display: none;
}
#all_wrap .jinzaiList > li::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: #038275;
	position: absolute;
	bottom: -19px;
	left: 50%;
	transform: translate(-50%,0);
	clip-path: polygon(0 0, 85% 100%, 100% 0);
}
#all_wrap .jinzaiList > li:nth-child(even)::after {
	clip-path: polygon(0 0, 15% 100%, 100% 0);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*こんな人材*/
	#all_wrap .jinzaiList {
		width: 100%;
		margin: 0 auto 30px;
		column-gap: 10px;
		grid-row-gap: 20px;
	}
	#all_wrap .jinzaiList > li {
		width: calc(100% / 2 - 5px);
		padding: 10px;
		font-size: 14px;
	}
	#all_wrap .jinzaiList > li:nth-child(even) {
		transform: translate(0,10px);
	}
	#all_wrap .jinzaiList > li::after {
		content: '';
		display: block;
		width: 15px;
		height: 15px;
		bottom: -14px;
	}
}

/*選考の流れ*/
#all_wrap .recruit_flowList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
}
#all_wrap .recruit_flowList > li {
	width: calc(100% / 4 - 30px);
	padding: 40px 20px 20px;
	margin: 0;
	background: #038275;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
#all_wrap .recruit_flowList > li::after {
	content: '';
	display: block;
	width: 20px;
	height: 100%;
	background: #038275;
	position: absolute;
	top: 0;
	right: -19px;
	clip-path: polygon(0 0, 10% 0, 100% 50%, 10% 100%, 0 100%, 0% 50%);
}
#all_wrap .recruit_flowList > li:last-child::after {
	display: none;
}
#all_wrap .recruit_flowList > li > em {
	display: block;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	font-style: normal;
	font-weight: 700;
	color: #fff;
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translate(-50%,-50%);
}
#all_wrap .recruit_flowList > li > h3 {
	padding: 0;
	margin: 0 auto 10px;
	border: none;
	background: none;
	font-size: 15px;
	line-height: 1.2em;
	color: #fff;
	text-align: center;
}
#all_wrap .recruit_flowList > li > p {
	padding: 0;
	margin: 0 auto;
	font-size: 10px;
	line-height: 1.2em;
	font-weight: 600;
	color: #fff;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*選考の流れ*/
	#all_wrap .recruit_flowList {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .recruit_flowList > li {
		width: calc(100%);
		padding: 15px 15px 15px 40px;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	}
	#all_wrap .recruit_flowList > li::after {
		content: '';
		display: block;
		width: 20px;
		height: 10px;
		top: unset;
		bottom: -9px;
		right: unset;
		left: 50%;
		transform: translate(-50%, 0);
		clip-path: polygon(0 0, 50% 100%, 100% 0);
	}
	#all_wrap .recruit_flowList > li:last-child::after {
		display: none;
	}
	#all_wrap .recruit_flowList > li > em {
		font-size: 15px;
		top: 17px;
		left: 15px;
		transform: unset;
	}
	#all_wrap .recruit_flowList > li > h3 {
		padding: 0;
		margin: 0;
		font-size: 15px;
		text-align: left;
	}
	#all_wrap .recruit_flowList > li > p {
		width: 100%;
		padding: 0;
		margin: 0;
		margin-top: 5px;
		font-size: 10px;
		text-align: left;
	}
	#all_wrap .recruit_flowList > li > p br {
		display: none;
	}
}

/*よくある質問*/
#all_wrap .faqList.recruit {
	width: 100%;
	padding: 30px;
	margin: 0 auto 50px;
	background: #fafafa;
	position: relative;
}
#all_wrap .faqList.recruit dl dt {
	background: #fff;
}
#all_wrap .faqList.recruit dl dt::before,
#all_wrap .faqList.recruit dl dd::before {
	color: #038275;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*よくある質問*/
	#all_wrap .faqList.recruit {
		width: 100%;
		padding: 20px;
		margin: 0 auto 30px;
	}
}

/************************************************************/
/*　インタビュー 詳細
/************************************************************/
#all_wrap #interview_post {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .interviewHeader {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .interviewHeader > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .interviewHeader > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .interviewHeader > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 30px;
	font-size: 25px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
}
#all_wrap .interviewHeader > h1 small {
	display: inline-block;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
}
#all_wrap .content .cmt_ttl {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #interview_post {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .interviewHeader {
		margin: 0 auto 20px;
		grid-row-gap: 10px;
	}
	#all_wrap .interviewHeader > h1 {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		font-size: 20px;
		line-height: 2em;
	}
	#all_wrap .interviewHeader > h1 small {
		display: block;
		width: 100%;
		font-size: 14px;
	}
	#all_wrap .content .cmt_ttl {
		width: 100%;
		margin: 0 auto 20px;
		font-size: 16px;
	}
}


/************************************************************/
/*　固定ページ　プライバシーポリシー
/************************************************************/
#privacy {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

/************************************************************/
/*　固定ページ　サイトご利用条件
/************************************************************/
#agreement {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

/************************************************************/
/*　固定ページ 沿革 History
/************************************************************/
#history {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
/*表*/
#all_wrap table.history_table {
	overflow: hidden;
	table-layout: auto;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 10px;
	border-radius: 0;
	background: none;
	border: none;
	border-top: 1px solid #e3e3e3;
}
#all_wrap table.history_table th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	border-bottom: 1px solid #e3e3e3;
	text-align: center;
	vertical-align: middle;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 900;
	background: none;
	color: var(--text);
	width: auto;
	padding: 10px;
	margin: 0;
}
#all_wrap table.history_table td {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	border-bottom: none;
	padding: 10px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid #e3e3e3;
}
#all_wrap .content table.history_table td > p:last-of-type {
	margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#history {
		width: 100%;
		max-width: 100%;
	}
	/*表*/
	#all_wrap table.history_table {
		display: table;
		overflow: hidden;
		table-layout: auto;
		border: none;
		background: none;
		padding: 0;
		width: 100%;
		max-width: 100%;
		margin: 0 auto 10px;
		border-radius: 0;
		background: none;
		border: none;
		border-top: 1px solid #e3e3e3;
	}
	#all_wrap table.history_table th {
		display: table-cell;
		font-style: normal;
		font-feature-settings: "palt";
		border: none;
		border-bottom: 1px solid #e3e3e3;
		text-align: center;
		vertical-align: middle;
		font-family: var(--font-jp);
		font-size: 14px;
		font-weight: 900;
		background: none;
		color: var(--text);
		width: auto;
		padding: 10px;
		margin: 0;
		white-space: nowrap;
	}
	#all_wrap table.history_table td {
		display: table-cell;
		border: none;
		background: none;
		vertical-align: inherit;
		border-bottom: none;
		padding: 10px;
		margin: 0;
		font-size: 14px;
		font-weight: 400;
		border-bottom: 1px solid #e3e3e3;
	}
	#all_wrap .content table.history_table td > p:last-of-type {
		margin-bottom: 0;
	}
}

/************************************************************/
/*　固定ページ 経営理念 Ideology
/************************************************************/
#ideology {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
.ideology_main {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
	background: #fafafa;
}
#all_wrap .ideology_main > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	border: none;
	background: none;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	text-align: left;
}
#all_wrap .ideology_main > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	border: none;
	background: none;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 35px;
	line-height: 1.4em;
	letter-spacing: 0.15em;
	font-weight: 500;
	color: var(--text);
	text-align: center;
}
#all_wrap .ideology_main > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 25px;
	line-height: 2em;
	font-weight: 500;
	color: var(--text);
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#ideology {
		width: 100%;
		max-width: 100%;
	}
	.ideology_main {
		width: 100%;
		padding: 30px;
	}
	#all_wrap .ideology_main > h3 {
		margin: 0 auto 30px;
		font-size: 15px;
	}
	#all_wrap .ideology_main > h2 {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		font-size: 25px;
	}
	#all_wrap .ideology_main > p {
		width: 100%;
		font-size: 15px;
		line-height: 2em;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
}


/************************************************************/
/*　固定ページ 住宅設備
/************************************************************/
#equipment {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}