/*
Theme Name: lup child
Version: 2.0.0
Template: lup
*/

/************************************************************/
/*　リセット
/************************************************************/
:root {
	--main: #025ac8;
	--sub:  #00c48b;
	--base: #e1f0ff;
	--act:  #f30a18;
	--gray: #fafafa;
	--text: #111111;
	--line: #04ad4b;
	--grad: linear-gradient(to right, #0255d2 0%, #00c48b 100%);
	--grad-full: linear-gradient(to right, #0255d2 0%, #00c48b 50%, #0255d2 100%);
	--shade: drop-shadow(2px 3px 6px rgba(41, 76, 122, 0.15)); /*filter用*/
	--ease-out: cubic-bezier(0.30, 1.00, 0.30, 1.00);
	--ease-in: cubic-bezier(0.75, 0.05, 0.9, 0.05);
	--ease-inout: cubic-bezier(0.85, 0.00, 0.07, 1.00);
	--font-jp: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-en: "LINE Seed JP", sans-serif;
	--font-mincho: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	--font-awe: "Font Awesome 6 Free";
	--ease: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*:focus {
	outline: none;
}
html{
	box-sizing: border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
	-webkit-font-smoothing: antialiased;
}
::placeholder {
	color: #ccc;
}
body {
	font-family: var(--font-jp);
	font-style: normal;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	overflow-x: hidden;
	counter-reset: count;
	animation: fadeIn 2.5s ease 0s 1 normal;
	color: var(--text);
	background: #fff;
}


/*フォント*/
body,
p,
.articleBody p {
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
}
a[href^="tel:"] {
	color: inherit;
	text-decoration: none;
}
@media screen and (max-width: 480px){
	body {
		font-size: 14px;
		font-weight: 500;
		line-height: 2;
	}
	p,
	.articleBody p {
		font-size: 14px;
		font-weight: 500;
		line-height: 2;
		padding: 0;
		margin: 0 auto 1em;
	}
	.articleBody p:last-of-type {
		margin-bottom: 0;
	}
}

/*フォーム*/
button,
input,
select,
textarea {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	font: inherit;
	color: inherit;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	border-radius: 0;          /* iOSによる角丸を消す */
	box-sizing: border-box;
}
select::-ms-expand {
	display: none;
}


/*PC・タブレット・スマホ 表示*/
.pc { display:block !important; }
.tb { display:none !important; }
.sp { display:none !important; }
@media screen and (max-width: 768px){   
	.pc { display:none !important; }
	.tb { display:block !important; }
	.sp { display:none !important; }
}
@media screen and (max-width: 480px){   
	.pc { display:none !important; }
	.tb { display:none !important; }
	.sp { display:block !important; }
}

.pc_none { display:none !important; }
.tb_none { display:block!important; }
.sp_none { display:block !important; }
@media screen and (max-width: 768px){   
	.pc_none { display:block !important; }
	.tb_none { display:none !important; }
	.sp_none { display:block !important; }
}
@media screen and (max-width: 480px){   
	.pc_none { display:block !important; }
	.tb_none { display:block !important; }
	.sp_none { display:none !important; }
}


/************************************************************/
/*　スクロールアニメーション
/************************************************************/

/* JS有効時だけ初期状態を適用 */
.js .sa {
	opacity: 0;
	transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: opacity, transform;
	backface-visibility: hidden;
}
/* 表示 */
.js .sa.show {
	opacity: 1;
}
/* アニメーション定義 */
.js .fade-up {
	transform: translateY(30px);
}
.js .fade-up.show {
	transform: translateY(0);
}
.js .fade-down {
	transform: translateY(-30px);
}
.js .fade-down.show {
	transform: translateY(0);
}
.js .slide-left {
	transform: translateX(-30px);
}
.js .slide-left.show {
	transform: translateX(0);
}
.js .slide-right {
	transform: translateX(30px);
}
.js .slide-right.show {
	transform: translateX(0);
}
.js .zoom-in {
	transform: scale(0.9);
}
.js .zoom-in.show {
	transform: scale(1);
}
.js .rotate-in {
	transform: rotate(-5deg) scale(0.95);
}
.js .rotate-in.show {
	transform: rotate(0) scale(1);
}
/* フェードだけ */
.js .fade-in {
	transform: none;
}
/*ディレイ*/
.js .delay-1 { transition-delay: 0.3s; }
.js .delay-2 { transition-delay: 0.6s; }
.js .delay-3 { transition-delay: 0.9s; }
.js .delay-4 { transition-delay: 1.2s; }
.js .delay-5 { transition-delay: 1.5s; }
.js .delay-6 { transition-delay: 1.8s; }
.js .delay-7 { transition-delay: 2.1s; }
.js .delay-8 { transition-delay: 2.4s; }
.js .delay-9 { transition-delay: 2.7s; }
.js .delay-10 { transition-delay: 3.0s; }

/************************************************************/
/*　構成
/************************************************************/
body#main #contents {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
body#sub {
	padding-top: 0;
}
body#sub #contents {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}

/*ページトップ*/
.pagetop {
	opacity: 1;
	bottom: 60px;
}
.pagetop a {
	background: var(--main);
	color: #fff;
}

/*コンテンツ*/
#archive_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 50px;
}

/*アーカイブ*/
.archiveContent {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}

.full-container,
.full-container .main {
	width: 100%;
	max-width: 100%;
}
body#main .articleBody,
body#sub .articleBody {
	margin: 0 auto;
}

/*固定ページ*/
.pageContent {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.pageContent.full {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
}
.pageContent.works {
	width: 100%;
	max-width: 1200px;
	padding: 0 0 100px;
	margin: 0 auto;
}

/*1カラム*/
.pageContent.one-column {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
body#sub .pageContent.one-column .articleBody {
	width: 100%;
	padding: 100px 0;
	margin: 0;
	position: relative;
}

/*2カラム*/
.pageContent.two-columns {
	width: 100%;
	max-width: 1200px;
	padding: 100px 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
body#sub .pageContent.two-columns .articleBody {
	width: calc(100% - 50px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}

/*記事詳細ページ*/
body#sub.single .pageContent.two-columns {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 100px;
	display: flex;
	justify-content: center;
	column-gap: 50px;
	order: 1;
}
body#sub.single .pageContent.two-columns .articleBody {
	width: calc(100% - 50px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}

/*サイドバー*/
#topColumn .side {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
}
body#sub.single .side,
body#sub .side {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
}
.sidebar-right .side,
.sidebar-left .side {
	margin: 0;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	body#main #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	body#sub {
		padding-top: 0;
	}
	body#sub #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}

	/*アーカイブ*/
	#archive_wrap {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.archiveContent {
		padding: 0;
	}

	/*固定ページ*/
	.pageContent {
		width: 100%;
		max-width: 100%;
		padding: 50px;
	}
	.pageContent.full {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.pageContent.works {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		margin: 0 auto;
	}

	/*1カラム*/
	.pageContent.one-column {
		width: 100%;
		max-width: 100%;
		padding: 50px;
	}
	body#sub .pageContent.one-column .articleBody {
		width: 100%;
		padding: 0;
	}

	/*2カラム*/
	.pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	body#sub .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}

	/*記事詳細ページ*/
	body#sub.single .pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		margin: 0 auto;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	body#sub.single .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}

	/*サイドバー*/
	.side {
		width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0 auto;
		display: none;
	}
	body#sub.single .side {
		width: 100%;
		min-width: 100%;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	body#main #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	body#sub {
		padding-top: 0;
	}
	body#sub #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	
	/*アーカイブ*/
	#archive_wrap {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.archiveContent {
		padding: 0;
	}
	
	/*固定ページ*/
	.pageContent {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
	}
	.pageContent.full {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.pageContent.works {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
		margin: 0 auto;
	}

	/*1カラム*/
	.pageContent.one-column {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
	}
	body#sub .pageContent.one-column .articleBody {
		width: 100%;
		padding: 0;
	}

	/*2カラム*/
	.pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	body#sub .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}

	/*記事詳細ページ*/
	body#sub.single .pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
		margin: 0 auto;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	body#sub.single .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}
	
	/*サイドバー*/
	.side {
		width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0 auto;
		display: none;
	}
	body#sub.single .side {
		width: 100%;
		min-width: 100%;
	}
}

/************************************************************/
/*　Gutenberg
/************************************************************/
/*グループ用*/
.mp0 { padding: 0 !important; margin: 0 !important; }

/************************************************************/
/*　共通
/************************************************************/

/*テーブル*/
#contents table,
body#main table {
	width: 100%;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

/*ボタン*/
.btnList {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 10px;
	margin-top: 2em;
}
.btnList.center {
	justify-content: center;
}
.btnList > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 12px 30px;
	margin: 0;
	background: var(--text);
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
	z-index: 0;
}
.btnList > a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: right;
	transition: var(--ease);
	transition-property: transform;
	background: var(--main);
	z-index: -1;
}
.btnList > a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.btnList > a::after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background-image: linear-gradient(to right, #fff 0%, #fff 50%, var(--text) 50%, var(--text) 100%);
	position: absolute;
	top: 50%;
	right: -10px;
	z-index: 1;
	transition: var(--ease);
}
.btnList > a:hover::after {
	background-image: linear-gradient(to right, #c8c8c8 0%, #c8c8c8 50%, #c8c8c8 50%, #c8c8c8 100%);
	transition: var(--ease);
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){

}

/************************************************************/
/*　タイトル
/************************************************************/
.contHead {
	width: 100%;
	padding: 0;
	margin: 0 auto 60px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 0;
	grid-row-gap: 15px;
}
.contHead > em {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--main);
	font-style: normal;
	white-space: nowrap;
	padding: 0;
	margin: 0 auto;
}
.contHead > em::before,
.contHead > em::after {
	content: '';
	display: block;
	width: 2px;
	height: 20px;
	background: var(--main);
	border-radius: 2px;
	transform-origin: center;
	transform: rotate(15deg);
}
#contents .contHead > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 30px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--main);
	text-align: center;
	border: none;
	background: none;
	position: relative;
}
#contents .contHead > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#contents .contHead.white > em,
#contents .contHead.white > h2,
#contents .contHead.white > p {
	color: #fff;
}
/* - 左よせ*/
#contents .contHead.left {
	justify-content: flex-start;
}
#contents .contHead.left > em {
	margin: 0;
	position: relative;
	left: 5px;
}
#contents .contHead.left > h2 {
	text-align: left;
	margin-bottom: 50px;
}
#contents .contHead.left > p {
	width: 100%;
	text-align: left;
}

/*ページ*/
.contHead.page {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	background: none;
	border-bottom: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
}



/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.contHead {
		width: 100%;
		padding: 0;
		column-gap: 0;
		grid-row-gap: 10px;
		margin: 0 auto 20px;
	}
	.cat-content + .contHead {
		margin: 0 auto 40px;
	}
	.contHead > em {
		font-size: 4vw;
	}
	#contents .contHead > h2 {
		font-size: 6vw;
	}
	#contents .contHead > h2.min {
		font-size: 5vw;
	}
	#contents .contHead > h2 span {
		font-size: 0.8em;
	}
	
	/* - 横*/
	.contHead.left {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 30px;
		flex-direction: column;
		grid-row-gap: 10px;
	}
	.contHead.left > em {
		font-size: 4vw;
	}
	#contents .contHead.left > h2 {
		width: 100%;
		font-size: 6vw;
	}
	#contents .contHead.left > p {
		width: 100%;
		text-align: left;
	}
	#contents .contHead.left > a.readmore {
		column-gap: 10px;
		padding: 7px 12px;
		margin: 0;
		border-radius: 40px;
		border: 1px solid #eee;
		box-shadow: 2px 3px 5px rgba(20,20,20, 0.1);
		font-size: 12px;
		bottom: 0;
		right: 0;
	}
	.contHead.left > a.readmore::after {
		content: '';
		width: 15px;
		min-width: 15px;
		height: 15px;
		background-size: 7px;
	}
	#contents .contHead.left > a.readmore:hover {
		background: var(--sub);
		border: 1px solid var(--sub);
		box-shadow: 2px 3px 5px rgba(20,20,20, 0);
	}
}


/************************************************************/
/*　ページタイトル
/************************************************************/
#pv {
	width: 100%;
	height: 350px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/pv_bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	z-index: 0;
}
#pv::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #0255d2;
	backdrop-filter: blur(5px);
	opacity: 0.4;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#pv > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#pv > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	font-style: normal;
	white-space: nowrap;
	text-align: left;
}
#contents #pv > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 40px;
	line-height: 1.2em;
	font-weight: 700;
	color: #fff;
	text-align: left;
	border: none;
	background: none;
	position: relative;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#pv {
		width: 100%;
		height: 300px;
		padding: 50px;
	}
	#pv::before {
		background-size: auto 100%;
	}
	#pv > header {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 10px;
	}
	#pv > header > em {
		width: 100%;
		font-size: 3vw;
	}
	#contents #pv > header > h1 {
		font-size: 5vw;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#pv {
		width: 100%;
		height: 150px;
		padding: 20px;
	}
	#pv::before {
		background-size: auto 100%;
	}
	#pv > header {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 10px;
	}
	#pv > header > em {
		width: 100%;
		font-size: 4vw;
	}
	#contents #pv > header > h1 {
		font-size: 6vw;
	}
}

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

/*見出し*/
#contents h1 {
	font-size: 2.8rem;
	margin-top: 0;
	margin-bottom: 1.5em;
}
#contents h2 {
	font-size: 1.8rem;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
}



/*パンくず*/
.breadcrumbs {
	width: 100%;
	max-width: 1200px;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	z-index: 5;
	color: var(--text);
}
#pv .breadcrumbs > li a,
#pv .breadcrumbs > li::before {
	color: var(--text);
}
#pv .breadcrumbs > li a:hover {
	color: var(--main);
}

/*PV用*/
#pv .breadcrumbs {
	width: 100%;
	max-width: 1200px;
	padding: 10px 0;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 5;
	color: #fff;
}
#pv .breadcrumbs > li a,
#pv .breadcrumbs > li::before {
	color: #fff;
}
#pv .breadcrumbs > li a:hover {
	color: #fff;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パンくず*/
	.breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 20px 50px;
		overflow-x: scroll;
		flex-wrap: nowrap;
		column-gap: 0;
		white-space: nowrap;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.breadcrumbs > li {
		position: relative;
		display: table-cell;
		white-space: nowrap;
		min-width: auto;
		padding: 0;
		font-size: 0.8em;
	}
	.breadcrumbs > li a {
		font-size: 0.8em;
	}

	/*PV用*/
	#pv .breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 20px 50px;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	/*パンくず*/
	.breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 10px 20px;
		overflow-x: scroll;
		flex-wrap: nowrap;
		column-gap: 0;
		white-space: nowrap;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.breadcrumbs > li {
		position: relative;
		display: table-cell;
		white-space: nowrap;
		min-width: auto;
		padding: 0;
		font-size: 0.8em;
	}
	.breadcrumbs > li a {
		font-size: 0.8em;
	}

	/*PV用*/
	#pv .breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		display: none;
	}
}

/************************************************************/
/*　ページネーション
/************************************************************/

.pagination {
	margin: 80px 0 0;
	text-align: center;
}
.pagination .page-numbers {
	display: inline-flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.pagination .page-numbers li a,
.pagination .page-numbers li span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: 42px;
	padding: 0;
	margin: 0;
	aspect-ratio: 1/1;
	border-radius: 50%;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	color: var(--main);
	background: #fff;
}
.pagination .page-numbers .current {
	background: var(--main);
	color: #fff;
}
.pagination .page-numbers li a:hover {
	background: var(--main);
	color: #fff;
}
.pagination .page-numbers li a.prev,
.pagination .page-numbers li a.next {
	width: 42px;
	height: 42px;
	aspect-ratio: 1/1;
}
.pagination .page-numbers .dots {
	width: auto;
	padding: 0 12px;
	border: none;
	background: transparent;
	color: var(--gray);
	font-weight: 500;
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.pagination {
		margin: 30px 0 0;
		text-align: center;
	}
	.pagination .page-numbers {
		gap: 6px;
	}
	.pagination .page-numbers li a,
	.pagination .page-numbers li span {
		width: 36px;
		height: 36px;
		font-size: 13px;
	}
	.pagination .page-numbers li a.prev,
	.pagination .page-numbers li a.next {
		width: 36px;
		height: 36px;
		aspect-ratio: 1/1;
	}
}

/************************************************************/
/*　ヘッダー
/************************************************************/
#header {
	width: 100%;
	min-width: 1300px;
	height: auto;
	padding: 20px 50px 0;
	margin: 0;
	background: rgba(255,255,255,1);
	position: relative;
	z-index: 100;
}
#header::before {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background: var(--grad);
	position: absolute;
	top: 0;
	left: 0;
}
.header_top {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 30px;
	line-height: 1;
}
.header_top > h1 {
	padding: 0;
	margin: 0;
	width: fit-content;
	background: none;
	border: none;
	position: relative;
	white-space: nowrap;
	font-size: 11px;
	line-height: 1;
	font-weight: 400;
	color: var(--text);
	text-align: left;
}
/*サブメニュー*/
#menu-header-sub-menu {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
}
#menu-header-sub-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#menu-header-sub-menu > li > a {
	font-size: 11px;
	line-height: 1;
	font-weight: 400;
	color: var(--text);
	text-decoration: underline;
	transition: var(--ease);
}
#menu-header-sub-menu > li > a:hover {
	color: var(--main);
	text-decoration: none;
	transition: var(--ease);
}

.header_btm {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 30px;
}
/*ロゴ*/
.logo {
	width: fit-content;
	padding: 0;
	margin: 0 auto 0 0;
	position: relative;
}
.logo > a {
	display: block;
}
.logo > a img {
	width: auto;
	height: 50px;
}
/*バナー*/
.header_banner {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	display: block;
}
.header_banner img {
	width: auto;
	height: 50px;
}
/*電話番号*/
.tel {
	display: inline-flex;
	flex-direction: column;
	grid-row-gap: 5px;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
.tel > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
	color: var(--text);
	white-space: nowrap;
}
.tel > a::before {
	content: '\f095';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
}
.tel > span {
	display: block;
	padding: 0;
	margin: 0 auto;
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
	text-align: center;
	white-space: nowrap;
}
/*ボタン*/
#menu-btn-menu {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
}
#menu-btn-menu > li {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
#menu-btn-menu > li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 7px;
	padding: 17px 20px;
	margin: 0;
	background: var(--grad-full);
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: var(--ease);
	background-size: 200% auto;
	background-position: 0% center;
	transition: var(--ease);
}
#menu-btn-menu > li a:hover {
	background-position: 100% center;
	transition: var(--ease);
}
#menu-btn-menu > li a span {
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
}
#menu-btn-menu > li a img {
	width: auto;
	height: 18px;
	padding: 0;
	margin: 0;
}

/*メインメニュー*/
#mainNav {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
}
#menu-header-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	column-gap: 0;
}
#menu-header-menu > li {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
#menu-header-menu > li > a {
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 30px 20px;
	margin: 0;
	background: none;
	position: relative;
	transition: var(--ease);
}
#menu-header-menu > li > a:hover {
	color: var(--main);
	transition: var(--ease);
	position: relative;
}
#menu-header-menu > li > a::after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background: var(--grad);
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: var(--ease);
	transition-property: transform;
}
#menu-header-menu > li > a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/*== タブレット ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		min-width: 100%;
		height: 80px;
		padding: 10px 70px 10px 20px;
		display: flex;
		flex-direction: unset;
		justify-content: flex-end;
		align-items: center;
		column-gap: 10px;
		grid-row-gap: 7px;
		flex-wrap: wrap;
	}
	#header::before {
		content: '';
		display: block;
		width: 100%;
		height: 5px;
		background: var(--grad);
		position: absolute;
		top: 0;
		left: 0;
	}
	#header > h1 {
		padding: 0;
		margin: 0;
		width: 100%;
		background: none;
		border: none;
		position: relative;
		white-space: nowrap;
		font-size: 0.8rem;
		line-height: 1;
		font-weight: 400;
		color: var(--text);
		text-align: left;
		overflow-x: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	#header > h1::-webkit-scrollbar {
		display: none;
	}

	/*ロゴ*/
	.logo {
		width: auto;
		height: 40px;
	}
	.logo > a img {
		height: 40px;
		display: block;
	}
	/*電話番号*/
	.tel {
		display: inline-flex;
		flex-direction: column;
		grid-row-gap: 3px;
		width: fit-content;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.tel > a {
		column-gap: 5px;
		font-size: 25px;
		display: block;
	}
	.tel > a::before {
		font-size: 18px;
	}
	.tel > span {
		font-size: 0.7rem;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#header {
		width: 100%;
		min-width: 100%;
		height: 70px;
		padding: 10px 60px 10px 20px;
		display: flex;
		flex-direction: unset;
		justify-content: flex-end;
		align-items: center;
		column-gap: 10px;
		grid-row-gap: 7px;
		flex-wrap: wrap;
	}
	#header::before {
		content: '';
		display: block;
		width: 100%;
		height: 5px;
		background: var(--grad);
		position: absolute;
		top: 0;
		left: 0;
	}
	#header > h1 {
		padding: 0;
		margin: 0;
		width: 100%;
		background: none;
		border: none;
		position: relative;
		white-space: nowrap;
		font-size: 0.8rem;
		line-height: 1;
		font-weight: 400;
		color: var(--text);
		text-align: left;
		overflow-x: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	#header > h1::-webkit-scrollbar {
		display: none;
	}

	/*ロゴ*/
	.logo {
		width: auto;
		height: 20px;
	}
	.logo > a img {
		height: 20px;
		display: block;
	}
	/*電話番号*/
	.tel {
		display: inline-flex;
		flex-direction: column;
		grid-row-gap: 3px;
		width: fit-content;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.tel > a {
		column-gap: 5px;
		font-size: 17px;
		display: block;
	}
	.tel > a::before {
		font-size: 12px;
	}
	.tel > span {
		font-size: 0.7rem;
	}
}


/************************************************************/
/*　ヘッダー Fix
/************************************************************/
#header.header-fix {
	background: rgba(255,255,255,1);
	border-right: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
}


/************************************************************/
/*　スマホ用ハンバーガーメニュー
/************************************************************/

/* ハンバーガー本体（右上固定） */
.hamburger {
	position: fixed;
	top: 50px;
	right: 50px;
	width: 25px;
	height: 20px;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.hamburger span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background-color: #111;
	width: 100%;
	transition: var(--ease);
	transform-origin: center;
}
.hamburger.scroll span {
	background-color: #111;
	transition: var(--ease);
}
.hamburger span:nth-child(1) {
	transform-origin: left;
}
.hamburger span:nth-child(3) {
	transform-origin: right;
}
.hamburger.active span:nth-child(1) {
	transform: scaleX(0);
	transform-origin: left;
	background-color: #111;
}
.hamburger.active span:nth-child(2) {
	transform: scaleX(1);
	background-color: #111;
}
.hamburger.active span:nth-child(3) {
	transform: scaleX(0);
	transform-origin: right;
	background-color: #111;
}

/* サブページ */
body#sub .hamburger {
	position: fixed;
	top: 50px;
	right: 50px;
	width: 25px;
	height: 20px;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
body#sub .hamburger span {
	background-color: #111;
}
body#sub .hamburger.active span:nth-child(1) {
	background-color: #111;
}
body#sub .hamburger.active span:nth-child(2) {
	background-color: #111;
}
body#sub .hamburger.active span:nth-child(3) {
	background-color: #111;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.hamburger {
		position: fixed;
		top: 32px;
		right: 25px;
		width: 25px;
		height: 20px;
	}
	.hamburger span {
		background-color: #111;
	}
	.hamburger.scroll span {
		background-color: #111;
		transition: var(--ease);
	}
	.hamburger span:nth-child(1) {
		transform-origin: left;
	}
	.hamburger span:nth-child(3) {
		transform-origin: right;
	}
	.hamburger.active span:nth-child(1) {
		transform: scaleX(0);
		transform-origin: left;
		background-color: #fff;
	}
	.hamburger.active span:nth-child(2) {
		transform: scaleX(1);
		background-color: #fff;
	}
	.hamburger.active span:nth-child(3) {
		transform: scaleX(0);
		transform-origin: right;
		background-color: #fff;
	}

	/* サブページ */
	body#sub .hamburger {
		position: fixed;
		top: 32px;
		right: 25px;
		width: 25px;
		height: 20px;
	}
	body#sub .hamburger span {
		background-color: #111;
	}
	body#sub .hamburger.active span:nth-child(1) {
		background-color: #fff;
	}
	body#sub .hamburger.active span:nth-child(2) {
		background-color: #fff;
	}
	body#sub .hamburger.active span:nth-child(3) {
		background-color: #fff;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.hamburger {
		position: fixed;
		top: 26px;
		right: 20px;
		width: 25px;
		height: 20px;
	}
	.hamburger span {
		background-color: #111;
	}
	.hamburger.scroll span {
		background-color: #111;
		transition: var(--ease);
	}
	.hamburger span:nth-child(1) {
		transform-origin: left;
	}
	.hamburger span:nth-child(3) {
		transform-origin: right;
	}
	.hamburger.active span:nth-child(1) {
		transform: scaleX(0);
		transform-origin: left;
		background-color: #fff;
	}
	.hamburger.active span:nth-child(2) {
		transform: scaleX(1);
		background-color: #fff;
	}
	.hamburger.active span:nth-child(3) {
		transform: scaleX(0);
		transform-origin: right;
		background-color: #fff;
	}

	/* サブページ */
	body#sub .hamburger {
		position: fixed;
		top: 26px;
		right: 20px;
		width: 25px;
		height: 20px;
	}
	body#sub .hamburger span {
		background-color: #111;
	}
	body#sub .hamburger.active span:nth-child(1) {
		background-color: #fff;
	}
	body#sub .hamburger.active span:nth-child(2) {
		background-color: #fff;
	}
	body#sub .hamburger.active span:nth-child(3) {
		background-color: #fff;
	}
}

/* モバイルメニュー */
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(255,255,255,0.95);
	z-index: 1000;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--ease);
}
.mobile-menu.active {
	opacity: 1;
	visibility: visible;
	transition: var(--ease);
}

/*デザイン*/
.panel_wrap {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.panel_visual {
	content: '';
	display: block;
	width: calc(100% - 600px);
	height: 100%;
	background-image: url('');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 100px;
	margin: 0;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.panel_visual::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.panel_visual > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-min);
	font-size: 20px;
	line-height: 1.3em;
	font-weight: 500;
	color: #fff;
	border: none;
	background: none;
	position: relative;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.panel_visual > h2 span {
	display: block;
	width: 100%;
	text-align: center;
}
.panel_visual > h2 img {
	width: 200px;
	height: auto;
}
.panel_content {
	width: 650px;
	min-width: 650px;
	padding: 50px 50px;
	margin: 0;
	background: none;
	position: relative;
	overflow: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
.panel_content::-webkit-scrollbar {
	display: none;
}
.panel_nav {
	width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
}
.panel_info {
	width: calc(100% - 200px - 50px);
	padding: 0;
	margin: 0;
	position: relative;
}

/*ボタンメニュー*/
.menu-panelbtn-menu {
	width: 90%;
	padding: 0;
	margin: 40px auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
.menu-panelbtn-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
.menu-panelbtn-menu > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 30px;
	margin: 0;
	background: none;
	border: 1px solid #fff;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	transition: var(--ease);
	position: relative;
}
.menu-panelbtn-menu > li > a:hover {
	background: #fff;
	color: var(--text);
	transition: var(--ease);
}

/* メニューリスト */
#menu-panel-menu {
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
}
#menu-panel-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
	line-height: 1;
}
#menu-panel-menu > li a {
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#menu-panel-menu > li a::after {
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: var(--text);
	transition: var(--ease);
	position: absolute;
	bottom: -8px;
	left: 0;
}
#menu-panel-menu > li a:hover {
	color: var(--text);
	transition: var(--ease);
	position: relative;
}
#menu-panel-menu > li a:hover::after {
	width: 100%;
	transition: var(--ease);
}
#menu-panel-menu > li a > span {
	font-size: 10px;
	line-height: 1;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	
	/* モバイルメニュー */
	.mobile-menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 50%;
		height: 100vh;
		background-color: rgba(255,255,255,0.95);
		z-index: 1000;
		padding: 0;
		opacity: 0;
		visibility: hidden;
		transition: var(--ease);
	}

	/*デザイン*/
	.panel_wrap {
		flex-wrap: wrap;
	}
	.panel_content {
		width: 100%;
		min-width: 100%;
		height: 100vh;
		padding: 20px 20px 60px;
		flex-wrap: wrap;
		column-gap: 30px;
		grid-row-gap: 30px;
		background: #365f8d;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.panel_nav {
		width: 100%;
		min-width: 100%;
		order: 1;
	}
	.panel_info {
		width: 100%;
	}

	/*ボタンメニュー*/
	.menu-panelbtn-menu {
		width: 100%;
		margin: 30px auto;
		grid-row-gap: 12px;
	}
	.menu-panelbtn-menu > li {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.menu-panelbtn-menu > li > a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 15px 30px;
		margin: 0;
		background: none;
		border: 1px solid var(--text);
		font-size: 15px;
		line-height: 1;
		color: var(--text);
		text-decoration: none;
		text-align: center;
		overflow: hidden;
		transition: var(--ease);
		position: relative;
	}
	.menu-panelbtn-menu > li > a:hover {
		background: var(--text);
		color: var(--text);
		transition: var(--ease);
	}

	/* メニューリスト */
	#menu-panel-menu {
		grid-row-gap: 0;
		margin: 0 auto;
		border-top: 1px solid #fff;
	}
	#menu-panel-menu > li {
		text-align: center;
		border-bottom: 1px solid #fff;
	}
	#menu-panel-menu > li a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px 20px;
		font-size: 16px;
		text-align: center;
		font-weight: 600;
		color: #fff;
	}
	#menu-panel-menu > li a:hover,
	#menu-panel-menu > li a:active {
		color: #fff;
		opacity: 0.8;
	}
	#menu-panel-menu > li a::after {
		display: none !important;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	
	/* モバイルメニュー */
	.mobile-menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(255,255,255,0.95);
		z-index: 1000;
		padding: 0;
		opacity: 0;
		visibility: hidden;
		transition: var(--ease);
	}

	/*デザイン*/
	.panel_wrap {
		flex-wrap: wrap;
	}
	.panel_content {
		width: 100%;
		min-width: 100%;
		height: 100vh;
		padding: 20px 20px 60px;
		flex-wrap: wrap;
		column-gap: 30px;
		grid-row-gap: 30px;
		background: #365f8d;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.panel_nav {
		width: 100%;
		min-width: 100%;
		order: 1;
	}
	.panel_info {
		width: 100%;
	}

	/*ボタンメニュー*/
	.menu-panelbtn-menu {
		width: 100%;
		margin: 30px auto;
		grid-row-gap: 12px;
	}
	.menu-panelbtn-menu > li {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.menu-panelbtn-menu > li > a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 15px 30px;
		margin: 0;
		background: none;
		border: 1px solid var(--text);
		font-size: 15px;
		line-height: 1;
		color: var(--text);
		text-decoration: none;
		text-align: center;
		overflow: hidden;
		transition: var(--ease);
		position: relative;
	}
	.menu-panelbtn-menu > li > a:hover {
		background: var(--text);
		color: var(--text);
		transition: var(--ease);
	}

	/* メニューリスト */
	#menu-panel-menu {
		grid-row-gap: 0;
		margin: 0 auto;
		border-top: 1px solid #fff;
	}
	#menu-panel-menu > li {
		text-align: center;
		border-bottom: 1px solid #fff;
	}
	#menu-panel-menu > li a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px 20px;
		font-size: 16px;
		text-align: center;
		font-weight: 600;
		color: #fff;
	}
	#menu-panel-menu > li a:hover,
	#menu-panel-menu > li a:active {
		color: #fff;
		opacity: 0.8;
	}
	#menu-panel-menu > li a::after {
		display: none !important;
	}
}

/************************************************************/
/*　フッター
/************************************************************/
.footer {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #365f8d;
}
.footer_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 80px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 80px;
}
.footer_left {
	width: 500px;
	min-width: 500px;
	padding: 0;
	margin: 0;
	position: relative;
}
.footer_right {
	width: calc(100% - 80px - 500px);
	padding: 0;
	margin: 0;
	position: relative;
}

/*会社情報*/
.company_info {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
.company_info > h2 {
	width: auto;
	height: 40px;
	padding: 0;
	margin: 0 0 10px;
	border: none;
	background: none;
	position: relative;
}
.company_info > h2 img {
	width: auto;
	height: 100%;
}

.company_info > dl {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 0;
	grid-row-gap: 0;
}
.company_info > dl dt {
	width: 150px;
	min-width: 150px;
	padding: 20px;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 500;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	text-align: left;
}
.company_info > dl dd {
	width: calc(100% - 20px - 150px);
	padding: 20px;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 400;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	text-align: left;
}

/* - 中央よせ */
.company_info.center > h2 {
	text-align: center;
	margin: 0 auto;
}
.company_info.center dl dt {
	text-align: center;
}
.company_info.center dl dd > p {
	text-align: center;
}

/*メニュー*/
#menu-footer-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 20px;
}
#menu-footer-menu > li {
	width: calc((100% - 50px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
#menu-footer-menu > li a {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2em;
	text-decoration: none;
	color: #fff;
	transform: var(--ease);
}
#menu-footer-menu > li a::after {
	content: '\f061';
	display: inline;
	font-family: "Font Awesome 6 Free";
	font-size: 15px;
	font-weight: 900;
	color: #fff;
}
#menu-footer-menu > li a:hover {
	opacity: 0.8;
	transform: var(--ease);
}

/*SNS*/
#menu-footer-sns-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#menu-footer-sns-menu > li {
	width: auto;
	height: 30px;
	min-width: 30px;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	align-items: center;
}
#menu-footer-sns-menu > li img {
	width: auto;
	height: 30px;
}
#menu-footer-sns-menu > li a span.dashicons {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	aspect-ratio: 1/1;
	font-size: 30px;
	line-height: 1;
	color: #fff;
}


.footer_btm {
	background: #264567;
}
.container-copyright .copyright {
	display: block;
	padding: 20px 0;
	margin: 0;
	background: none;
	font-size: 11px;
	line-height: 1;
	color: #fff;
	text-align: center;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.footer_wrap {
		width: 100%;
		max-width: 100%;
		padding: 50px 50px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	.footer_left {
		width: 100%;
		min-width: 100%;
	}
	.footer_right {
		width: 100%;
	}

	/*会社情報*/
	.company_info {
		width: 100%;
		grid-row-gap: 20px;
	}
	.company_info > h2 {
		width: auto;
		height: 40px;
		margin: 0 0 10px;
	}

	.company_info > dl {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 0;
	}
	.company_info > dl dt {
		width: 100px;
		min-width: 100px;
		padding: 10px;
		font-size: 12px;
		display: flex;
		align-items: center;
	}
	.company_info > dl dd {
		width: calc(100% - 100px);
		padding: 10px;
		font-size: 12px;
	}

	/* - 中央よせ */
	.company_info.center > h2 {
		text-align: center;
		margin: 0 auto;
	}
	.company_info.center dl dt {
		text-align: center;
	}
	.company_info.center dl dd > p {
		text-align: center;
	}

	/*メニュー*/
	#menu-footer-menu {
		margin: 0 auto 20px;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#menu-footer-menu > li {
		width: calc((100% - 20px) / 2);
	}
	#menu-footer-menu > li a {
		column-gap: 5px;
		font-size: 12px;
	}
	#menu-footer-menu > li a::after {
		font-size: 12px;
	}

	.footer_btm {
		background: #264567;
	}
	.container-copyright .copyright {
		display: block;
		padding: 20px 0;
		margin: 0;
		background: none;
		font-size: 11px;
		line-height: 1;
		color: #fff;
		text-align: center;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.footer_wrap {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	.footer_left {
		width: 100%;
		min-width: 100%;
	}
	.footer_right {
		width: 100%;
	}

	/*会社情報*/
	.company_info {
		width: 100%;
		grid-row-gap: 20px;
	}
	.company_info > h2 {
		width: auto;
		height: 40px;
		margin: 0 0 10px;
	}

	.company_info > dl {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 0;
	}
	.company_info > dl dt {
		width: 100px;
		min-width: 100px;
		padding: 10px;
		font-size: 12px;
		display: flex;
		align-items: center;
	}
	.company_info > dl dd {
		width: calc(100% - 100px);
		padding: 10px;
		font-size: 12px;
	}

	/* - 中央よせ */
	.company_info.center > h2 {
		text-align: center;
		margin: 0 auto;
	}
	.company_info.center dl dt {
		text-align: center;
	}
	.company_info.center dl dd > p {
		text-align: center;
	}

	/*メニュー*/
	#menu-footer-menu {
		margin: 0 auto 20px;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#menu-footer-menu > li {
		width: calc((100% - 20px) / 2);
	}
	#menu-footer-menu > li a {
		column-gap: 5px;
		font-size: 12px;
	}
	#menu-footer-menu > li a::after {
		font-size: 12px;
	}

	.footer_btm {
		background: #264567;
	}
	.container-copyright .copyright {
		display: block;
		padding: 20px 0;
		margin: 0;
		background: none;
		font-size: 11px;
		line-height: 1;
		color: #fff;
		text-align: center;
	}
}


/************************************************************/
/*　サイドバー
/************************************************************/
.side .widget-area {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
}
.side .widget-area > .widget,
.side .widget-area > .widget_block {
	padding: 20px;
	margin: 0;
	background-color: #fff;
	border-radius: 0;
	box-shadow: none;
}
body .side .widget h2:not(.widget-title) {
	padding: 1rem 1.5rem;
	background: var(--text);
	border-radius: 0;
	color: #fff;
	font-size: 1em;
}
body .side .widget .wp-block-search__label {
	position: static;
	padding: 1rem 1.5rem;
	background: var(--text);
	border-radius: 0;
	color: #fff;
	font-size: 1em;
}

/*リスト*/
body .side .widget .wp-block-page-list,
body .side .widget .wp-block-categories-list,
body .side .widget .wp-block-archives-list {
	border-bottom: 1px solid #eee;
}
body .side .widget .wp-block-page-list a,
body .side .widget .wp-block-categories-list > .cat-item > a:only-child,
body .side .widget .archive-item a {
	padding: 0.7em 0;
	margin: 0;
	position: relative;
	font-size: 0.9em;
}
body .side .widget .wp-block-page-list a::after,
body .side .widget .wp-block-categories-list > .cat-item > a:only-child::after,
body .side .widget .archive-item a::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%) rotate(45deg);
}

/*検索*/
body .side .widget .wp-block-search__input {
	height: 40px;
	padding: 8px 10px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-right: none;
	border-radius: 0;
	font-size: 0.9em;
	outline: none;
}
body .side .widget .wp-block-search.wp-block-search__button-outside .wp-block-search__button.has-icon {
	height: 40px;
	width: auto;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0;
	outline: none;
}

/*タイトル*/
#contents .aside > h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 7px;
	width: 100%;
	padding: 12px;
	margin: 0 auto 1px;
	background: var(--main);
	border-radius: 5px 5px 0 0;
	color: #fff;
	text-align: center;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2em;
	position: relative;
	z-index: 0;
}
#contents .aside.map > h2::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f3c5";
	color: #fff;
}
#contents .aside.content > h2::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f03a";
	color: #fff;
}

/*カテゴリ*/
.side .iconmenu {
	width: 100%;
	padding: 10px;
	margin: 0 auto;
	border: none;
	background: var(--base);
	border-radius: 0 0 5px 5px;
	box-shadow: none;
	list-style: none;
	position: relative;
}
.side .iconmenu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	box-shadow: none;
}
.side .iconmenu > li a {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	padding: 10px 20px 10px 10px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	background: #fff;
	position: relative;
	font-size: 12px;
	line-height: 1.4em;
	color: var(--text);
	font-weight: 400;
	text-decoration: none;
	box-shadow: none;
	transition: all 0.3s ease;
}
.side .iconmenu > li:last-child a {
	border-bottom: none;
}
.side .iconmenu > li a::before,
.side .iconmenu > li a::after {
	display: none;
}
.side .iconmenu > li a::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
}
.side .iconmenu > li a:hover {
	font-size: 12px;
	line-height: 1.4em;
	color: var(--sub);
	font-weight: 400;
	transition: all 0.3s ease;
}
.side .iconmenu > li a figure {
	width: 40px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.side .iconmenu > li a figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.side .iconmenu > li a figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}


/************************************************************/
/*　メインビジュアル
/************************************************************/
#fv {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	background-image:
		url('https://test-lup.coresv.com/wp-content/uploads/fv_bg.webp'),
		linear-gradient(to bottom, #e1f0ff 0%, #ffffff 100%);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: cover;
	z-index: 0;
}
#fv::before {
	content: '';
	display: block;
	width: 100%;
	height: 280px;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/fv_wave.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.fv_wrap {
	width: 100%;
	max-width: 1300px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.fv_box {
	width: 660px;
	min-width: 660px;
	padding: 0;
	margin: 0;
	position: relative;
}
.fv_box > h3 {
	width: 100%;
	padding: 0;
	margin: 0 0 10px;
	position: relative;
	border: none;
	background: none;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.fv_box > h2 {
	width: 100%;
	padding: 0;
	margin: 0 0 20px;
	position: relative;
	border: none;
	background: none;
	filter:
		drop-shadow(0 0 12px #fff)
		drop-shadow(0 0 24px #fff)
		drop-shadow(0 0 40px #fff);
}
.fv_box > h3 img,
.fv_box > h2 img {
	width: 100%;
	height: auto;
}
.fv_box > p {
	width: 100%;
	padding: 0;
	margin: 0 0 30px;
	position: relative;
	font-size: 25px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
}
.fv_box > p::before,
.fv_box > p::after {
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	background: var(--main);
	border-radius: 2px;
}
/*特徴*/
.fv_feature {
	width: 100%;
	padding: 0;
	margin: 0 0 15px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	column-gap: 15px;
}
.fv_feature > li {
	width: calc((100% - 30px) / 3);
	padding: 0 20px 20px;
	margin: 0;
	position: relative;
	z-index: 0;
}
.fv_feature > li:first-child {
	padding-top: 40px;
}
.fv_feature > li::before {
	content: '';
	display: block;
	width: 100%;
	height: calc(100% - 20px);
	background: #fff;
	border-radius: 5px;
	border: 2px solid #b4dcf5;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.fv_feature > li:nth-child(1) > span {
	display: block;
	width: 100%;
	margin: 0 auto 10px;
}
.fv_feature > li:nth-child(2) > span {
	display: block;
	width: 60%;
	margin: 0 auto 10px;
}
.fv_feature > li:nth-child(3) > span {
	display: block;
	width: 60%;
	margin: 5px auto 10px;
}
.fv_feature > li img {
	width: 100%;
	height: auto;
}
.fv_feature > li > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
.fv_feature > li > p.list {
	width: 100%;
	padding: 0;
	margin: 0 auto 7px;
	position: relative;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
.fv_feature > li > p.list::before {
	content: '●';
	display: inline;
	color: var(--main);
}
/*インフォ*/
.fv_info {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 15px;
}
.fv_info > figure {
	width: 100px;
	min-width: 100px;
	height: auto;
	position: relative;
}
.fv_info > figure img {
	width: 100%;
	height: auto;
}
.fv_info > h3 {
	width: calc(100% - 30px - 200px);
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 2em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
.fv_info > h3 strong {
	color: var(--main);
	font-size: 20px;
	font-weight: 700;
	display: block;
	width: 100%;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#fv {
		width: 100%;
		padding: 0;
		background-image:
			url('https://test-lup.coresv.com/wp-content/uploads/fv_bg_sp.webp'),
			linear-gradient(to bottom, #e1f0ff 0%, #ffffff 100%);
		background-repeat: no-repeat;
		background-position: top -20% right;
		background-size: 100%;
		z-index: 0;
	}
	#fv::before {
		height: auto;
		aspect-ratio: 300 / 69;
	}
	.fv_wrap {
		width: 100%;
		max-width: 100%;
	}
	.fv_box {
		width: 100%;
		min-width: 100%;
		padding: 70px 50px;
	}
	.fv_box > h3 {
		width: 100%;
		padding: 0;
		margin: 0 0 10px;
		position: relative;
		border: none;
		background: none;
		filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
	}
	.fv_box > h2 {
		width: 100%;
		padding: 0;
		margin: 0 0 20px;
		position: relative;
		border: none;
		background: none;
		filter:
			drop-shadow(0 0 12px #fff)
			drop-shadow(0 0 24px #fff)
			drop-shadow(0 0 40px #fff);
	}
	.fv_box > h3 img,
	.fv_box > h2 img {
		width: 100%;
		height: auto;
	}
	.fv_box > p {
		width: 100%;
		padding: 0;
		margin: 0 0 15px;
		position: relative;
		font-size: 15px;
		filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #fff);
	}
	.fv_box > p::before,
	.fv_box > p::after {
		display: none;
	}
	.fv_box > figure {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.fv_box > figure img {
		width: 100%;
		height: auto;
	}
	/*特徴*/
	.fv_feature {
		width: 100%;
		padding: 0;
		margin: 0 0 15px;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: flex-start;
		column-gap: 10px;
	}
	.fv_feature > li {
		width: calc((100% - 20px) / 3);
		padding: 0 30px 15px;
		margin: 0;
		position: relative;
		z-index: 0;
	}
	.fv_feature > li:first-child {
		padding-top: 30px;
	}
	.fv_feature > li::before {
		content: '';
		display: block;
		width: 100%;
		height: calc(100% - 20px);
		background: #fff;
		border-radius: 5px;
		border: 2px solid #b4dcf5;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}
	.fv_feature > li:nth-child(1) > span {
		display: block;
		width: 100%;
		margin: 0 auto 5px;
	}
	.fv_feature > li:nth-child(2) > span {
		display: block;
		width: 55%;
		margin: 0 auto 5px;
	}
	.fv_feature > li:nth-child(3) > span {
		display: block;
		width: 70%;
		margin: 5px auto 5px;
	}
	.fv_feature > li img {
		width: 100%;
		height: auto;
	}
	.fv_feature > li > p {
		font-size: 2vw;
		text-align: center;
		letter-spacing: -0.05em;
	}
	.fv_feature > li > p.list {
		width: 100%;
		padding: 0;
		margin: 0 auto 5px;
		font-size: 1.5vw;
		text-align: center;
	}
	/*インフォ*/
	.fv_info {
		width: 100%;
		padding: 20px;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		column-gap: 10px;
		background: rgba(255,255,255,0.8);
		border-radius: 10px;
	}
	.fv_info > figure {
		width: 100px;
		min-width: 100px;
	}
	.fv_info > h3 {
		width: calc(100% - 20px - 200px);
		font-size: 14px;
	}
	.fv_info > h3 strong {
		color: var(--main);
		font-size: 18px;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#fv {
		width: 100%;
		padding: 0;
		background-image:
			url('https://test-lup.coresv.com/wp-content/uploads/fv_bg_sp.webp'),
			linear-gradient(to bottom, #e1f0ff 0%, #ffffff 100%);
		background-repeat: no-repeat;
		background-position: top -20% right;
		background-size: 100%;
		z-index: 0;
	}
	#fv::before {
		height: auto;
		aspect-ratio: 300 / 69;
	}
	.fv_wrap {
		width: 100%;
		max-width: 100%;
	}
	.fv_box {
		width: 100%;
		min-width: 100%;
		padding: 30px 20px;
	}
	.fv_box > h3 {
		width: 100%;
		padding: 0;
		margin: 0 0 10px;
		position: relative;
		border: none;
		background: none;
		filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
	}
	.fv_box > h2 {
		width: 100%;
		padding: 0;
		margin: 0 0 20px;
		position: relative;
		border: none;
		background: none;
		filter:
			drop-shadow(0 0 12px #fff)
			drop-shadow(0 0 24px #fff)
			drop-shadow(0 0 40px #fff);
	}
	.fv_box > h3 img,
	.fv_box > h2 img {
		width: 100%;
		height: auto;
	}
	.fv_box > p {
		width: 100%;
		padding: 0;
		margin: 0 0 15px;
		position: relative;
		font-size: 15px;
		filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #fff);
	}
	.fv_box > p::before,
	.fv_box > p::after {
		display: none;
	}
	.fv_box > figure {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.fv_box > figure img {
		width: 100%;
		height: auto;
	}
	/*特徴*/
	.fv_feature {
		width: 100%;
		padding: 0;
		margin: 0 0 15px;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: flex-start;
		column-gap: 10px;
	}
	.fv_feature > li {
		width: calc((100% - 20px) / 3);
		padding: 0 10px 10px;
		margin: 0;
		position: relative;
		z-index: 0;
	}
	.fv_feature > li:first-child {
		padding-top: 30px;
	}
	.fv_feature > li::before {
		content: '';
		display: block;
		width: 100%;
		height: calc(100% - 20px);
		background: #fff;
		border-radius: 5px;
		border: 2px solid #b4dcf5;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}
	.fv_feature > li:nth-child(1) > span {
		display: block;
		width: 100%;
		margin: 0 auto 5px;
	}
	.fv_feature > li:nth-child(2) > span {
		display: block;
		width: 70%;
		margin: 0 auto 5px;
	}
	.fv_feature > li:nth-child(3) > span {
		display: block;
		width: 70%;
		margin: 5px auto 5px;
	}
	.fv_feature > li img {
		width: 100%;
		height: auto;
	}
	.fv_feature > li > p {
		font-size: 0.8rem;
		text-align: center;
		letter-spacing: -0.05em;
	}
	.fv_feature > li > p.list {
		width: 100%;
		padding: 0;
		margin: 0 auto 5px;
		font-size: 0.9rem;
	}
	/*インフォ*/
	.fv_info {
		width: 100%;
		padding: 15px;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		column-gap: 10px;
		background: rgba(255,255,255,0.8);
		border-radius: 10px;
	}
	.fv_info > figure {
		width: 70px;
		min-width: 70px;
	}
	.fv_info > h3 {
		width: calc(100% - 20px - 140px);
		font-size: 12px;
	}
	.fv_info > h3 strong {
		color: var(--main);
		font-size: 14px;
	}
}


/************************************************************/
/*　フォーム
/************************************************************/

.wpcf7 {
	background: var(--grad);
	padding: 100px 0 0;
	margin: 0;
}

/*ボックス*/
#contents .formBox > h3 {
	width: 100%;
	margin: 0 auto 30px;
}
.formBox {
	width: 100%;
	max-width: 1000px;
	padding: 100px 50px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 10px 10px 0 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.formBox > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	border-bottom: 1px solid #eee;
}
.formBox > dl:first-of-type {
	border-top: 1px solid #eee;
}
.formBox > dl dt {
	width: 200px;
	min-width: 200px;
	padding: 20px 0 20px 20px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
	font-size: 14px;
}
.formBox > dl dt .att,
.formBox > dl dt .any {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: #dd3131;
	border-radius: 0;
	font-size: 12px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
}
.formBox > dl dt .any {
	background: #4584c9;
}
.formBox > dl dd {
	width: calc(100% - 20px - 200px);
	padding: 20px 20px 20px 0;
	margin: 0;
	position: relative;
}
.formBox > dl dt p,
.formBox > dl dd p {
	padding: 0;
	margin: 0;
	line-height: 1.4em;
}

.formBox input[type="text"],
.formBox input[type="email"],
.formBox input[type="tel"] {
	width: 100%;
	padding: 10px;
	margin: 0;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 5px;
	line-height: 1;
}
.formBox select {
	width: fit-content;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fafafa;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px;
	padding-right: 40px;
	line-height: 1;
}
.formBox select:focus {
	outline: none;
	border-color: #999;
}
.formBox textarea {
	width: 100%;
	padding: 10px;
	margin: 0;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 5px;
	line-height: 1.6;
}
.formBox input.w50 {
	max-width: 50%;
}
.formBox input.w25 {
	max-width: 25%;
}

.formBox > dl dd p.fileTxt {
	margin-bottom: 5px;
}

/*住所*/
.formBox .wpcf7-form-control-wrap[data-name="your-zip"],
.formBox .wpcf7-form-control-wrap[data-name="your-adress"],
.formBox .wpcf7-form-control-wrap[data-name="zip"],
.formBox .wpcf7-form-control-wrap[data-name="addr"]{
	display: block;
	margin-bottom: 10px;
}
.formBox .wpcf7-form-control-wrap + p {
	margin-top: 5px;
}

/*チェックボックス*/
.formBox .wpcf7-list-item {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-right: 15px !important;
}
.formBox .wpcf7-list-item input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0 !important;
	cursor: pointer;
	z-index: 10;
	margin: 0 !important;
}
.formBox .wpcf7-list-item-label {
	position: relative;
	padding-left: 25px !important;
	display: inline-block;
	z-index: 5;
	cursor: pointer;
}
.formBox .wpcf7-list-item-label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 1px solid #ccc !important;
	background: #fff !important;
	border-radius: 4px;
	display: block !important;
}
.formBox .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::before {
	background: #333 !important;
	border-color: #333 !important;
}
.formBox .wpcf7-list-item-label::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 50%;
	transform: translateY(-65%) rotate(45deg);
	width: 6px;
	height: 11px;
	border-right: 3px solid #fff !important;
	border-bottom: 3px solid #fff !important;
	opacity: 0 !important;
	display: block !important;
}
.formBox .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::after {
	opacity: 1 !important;
}

/*ラジオボタン*/
.formBox .wpcf7-radio {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
	width: 100%;
}
.formBox .wpcf7-list-item {
	padding: 0;
	margin: 0;
}
.formBox .wpcf7-radio input[type="radio"] {
	display: none;
}
.formBox .wpcf7-radio label {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
	gap: 6px;
}
.formBox .wpcf7-radio label::before {
	content: "";
	width: 14px;
	height: 14px;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 50%;
	box-sizing: border-box;
	transition: var(--ease);
}
.formBox .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label {
	position: relative;
}
.formBox .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::before {
	content: "";
	position: absolute;
	left: -17px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--main);
}

#contents .wpcf7-spinner {
	display: none;
}
#contents .wpcf7 .wpcf7-response-output {
	width: 100%;
	max-width: 1000px;
	background: #fff;
	margin: 100px auto;
	text-align: center;
	padding: 20px;
}

/*ファイル添付*/
.formBox .fileStatus {
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}

/*送信ボタン*/
.formBox input[type="submit"] {
	width: fit-content;
	min-width: 300px;
	padding: 10px 24px;
	margin: 30px auto 0;
	background: var(--main);
	border-radius: 5px;
	border: none;
	font-size: 15px;
	color: #fff;
	cursor: pointer;
	transition: var(--ease);
}
.formBox input[type="submit"]:hover {
	background: var(--sub);
	transition: var(--ease);
}

.formBox small {
	line-height: 1.2em;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.wpcf7 {
		background: var(--grad);
		padding: 50px;
		margin: 0;
	}
	/*ボックス*/
	.formBox {
		width: 100%;
		max-width: 100%;
		padding: 50px;
	}
	.formBox > dl {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	.formBox > dl dt {
		width: 100%;
		min-width: 100%;
		padding: 20px 0 0;
		justify-content: flex-start;
		column-gap: 10px;
	}
	.formBox > dl dt .att,
	.formBox > dl dt .any {
		padding: 3px 7px;
		font-size: 10px;
	}
	.formBox > dl dd {
		width: 100%;
		padding: 0 0 20px;
	}
	.formBox input.w50 {
		max-width: 100%;
	}
	.formBox input.w25 {
		max-width: 50%;
	}

	/*ラジオボタン*/
	.formBox .wpcf7-radio {
		column-gap: 30px;
		grid-row-gap: 5px;
		width: 100%;
	}

	#contents .wpcf7-spinner {
		display: none;
	}
	#contents .wpcf7 .wpcf7-response-output {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 30px auto;
		text-align: center;
		padding: 20px;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.wpcf7 {
		background: var(--main);
		padding: 20px 20px 0;
		margin: 0;
	}
	/*ボックス*/
	.formBox {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px 40px;
	}
	.formBox > dl {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	.formBox > dl dt {
		width: 100%;
		min-width: 100%;
		padding: 20px 0 0;
		justify-content: flex-start;
		column-gap: 10px;
	}
	.formBox > dl dt .att,
	.formBox > dl dt .any {
		padding: 3px 7px;
		font-size: 10px;
	}
	.formBox > dl dd {
		width: 100%;
		padding: 0 0 20px;
	}
	.formBox input.w50 {
		max-width: 100%;
	}
	.formBox input.w25 {
		max-width: 50%;
	}

	/*ラジオボタン*/
	.formBox .wpcf7-radio {
		column-gap: 30px;
		grid-row-gap: 5px;
		width: 100%;
	}

	#contents .wpcf7-spinner {
		display: none;
	}
	#contents .wpcf7 .wpcf7-response-output {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 30px auto;
		text-align: center;
		padding: 20px;
	}
}

/************************************************************/
/*　サイトマップ
/************************************************************/
.sitemap-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	border-top: 1px solid #dee5ec;
}
.sitemap-menu > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #dee5ec;
}
.sitemap-menu > li::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #737e8c;
	border-right: 1px solid #737e8c;
	background: none;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(45deg);
}
.sitemap-menu > li > a {
	display: block;
	padding: 15px 30px 15px 15px;
	margin: 0;
	font-size: 14px;
	line-height: 1.4em;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
.sitemap-menu > li > a:hover {
	font-size: 14px;
	line-height: 1.4em;
	color: var(--sub);
	text-decoration: underline;
	transition: var(--ease);
}

/************************************************************/
/*　記事詳細
/************************************************************/

/*タイトル*/
#contents .articleHeader__title {
	margin: 0 auto 1em;
	font-size: 2.2vw;
}

/*ヘッダー*/
.articleHeader {
	padding: 0 0 50px;
	margin: 0 auto 50px;
	position: relative;
	border-bottom: 3px solid #eee;
}

/*公開・更新日時*/
.articleHeader__info {
	margin: 0.8rem auto 1rem;
}

/*カスタムポスト・タクソノミー・カテゴリ・タグ*/
.post-taxonomy {
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px;
}
.post-taxonomy > span {
	display: inline-block;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
.post-taxonomy > span a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 5px 10px;
	background: var(--main);
	font-size: 10px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	transition: color 0.3s ease;
	z-index: 0;
}
.post-taxonomy > span a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--act);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	z-index: -1;
}
.post-taxonomy > span a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.post-taxonomy > span a span,
.post-taxonomy > span a * {
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}
.post-taxonomy > span a:hover {
	color: #fff;
}
.post-taxonomy > span a:not(:hover)::before {
	transform-origin: right;
	transform: scaleX(0);
}

/*目次*/
.toc_block .toc > ol > li:not(.previous):has(> a) > a::before {
	content: "\f105";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	color: var(--main);
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}
.toc_block .toc > ol > li > ol > li:has(> a) > a::before {
	content: "";
	display: block;
	position: absolute;
	top: calc(1em - 2px);
	left: 0;
	width: 6px;
	height: 6px;
	background-color: var(--main);
	border-radius: 50%;
}

/*監修者*/
.articleFooter__author .caption {
	border-radius: 0;
}
.articleFooter__author .uqAuthor {
	border-radius: 0;
}

/*関連記事*/
#contents .articleFooter {
	margin-top: 70px;
}
#contents .ttl {
	width: 100%;
	padding: 10px 15px;
	margin: 0 auto 30px;
	background: var(--main);
	border: none;
	border-radius: 0;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	text-align: left;
}
/* - リスト*/
.relationList {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 50px;
}
.relationList > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
.relationList > li.none {
	width: 100%;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.relationList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.relationList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.relationList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transform-origin: center;
	transition: var(--ease);
}
.relationList > li > figure:hover img {
	filter: brightness(1.05);
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#contents .relationList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 13px;
	line-height: 1.5em;
	color: var(--text);
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#contents .relationList > li > h3::before,
#contents .relationList > li > h3::after {
	display: none;
}
#contents .relationList > li > h3 a {
	font-size: 13px;
	line-height: 1.5em;
	color: var(--text);
	font-weight: 500;
	text-decoration: none;
	transition: var(--ease);
}
#contents .relationList > li > h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}
.news-meta {
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
.news-meta > span {
	display: inline-block;
	padding: 3px 7px;
	margin: 0;
	background: var(--main);
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-weight: 400;
}
.news-meta > time {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 12px;
	line-height: 1;
	color: var(--text);
}
.relationList > li.no-result {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: block;
	text-align: center;
}

/*前後の記事*/
.articlePager a:hover {
	background: none;
	box-shadow: none;
	color: var(--main);
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	/*タイトル*/
	#contents .articleHeader__title {
		margin: 0 auto 1em;
		font-size: 5vw;
	}
	/*ヘッダー*/
	.articleHeader {
		padding: 0 0 30px;
		margin: 0 auto 30px;
	}
	#contents .toc_block {
		margin: 30px auto;
	}

	/*関連記事*/
	#contents .ttl {
		width: 100%;
		padding: 10px 15px;
		margin: 0 auto 1.5em;
		background: var(--main);
		border: none;
		border-radius: 0;
		font-size: 16px;
		line-height: 1;
		color: #fff;
		text-align: left;
	}
	/* - リスト*/
	.relationList {
		column-gap: 20px;
		grid-row-gap: 30px;
	}
	.relationList > li {
		width: calc((100% - 20px) / 2);
		grid-row-gap: 10px;
	}
	#contents .relationList > li > h3 {
		font-size: 12px;
		line-height: 1.5em;
	}
	#contents .relationList > li > h3 a {
		font-size: 12px;
		line-height: 1.5em;
	}
}


/************************************************************/
/*　トップページ コンセプト
/************************************************************/
#topConcept {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 0;
	background: #e1f0ff;
	z-index: 0;
}
#topConcept::before,
#topConcept::after {
	content: '';
	display: block;
	width: 400px;
	height: 200px;
	aspect-ratio: 1 / 0.5;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/circle.webp');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 110%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scale(-1,1);
	z-index: -1;
}
#topConcept::after {
	background-position: left top;
	bottom: 0;
	left: unset;
	right: 0;
	transform: scale(1,1);
}
.topConcept_wrap {
	width: 100%;
	max-width: 1000px;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	z-index: 0;
}
.topConcept_wrap::before {
	content: '';
	display: block;
	width: 1300px;
	height: 300px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/topConcept_human_1.webp');
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto 100%;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,0);
	z-index: -1;
}
.topConcept_wrap::after {
	content: '';
	display: block;
	width: 1200px;
	height: 300px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/topConcept_human_2.webp');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: auto 100%;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,0);
	z-index: -1;
}
#contents .topConcept_wrap > h3 {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: var(--main);
	text-align: center;
}
#contents .topConcept_wrap > h3::before,
#contents .topConcept_wrap > h3::after {
	content: '';
	display: block;
	width: auto;
	height: 27px;
	aspect-ratio: 9 / 27;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/ttl_bg.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: unset;
	position: relative;
}
#contents .topConcept_wrap > h3::after {
	transform: scale(-1,1);
}
#contents .topConcept_wrap > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	border: none;
	background: none;
	position: relative;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
#contents .topConcept_wrap > h2 strong {
	color: var(--main);
	font-weight: 700;
}
#contents .topConcept_wrap > p {
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 2em;
	font-weight: 500;
	text-align: center;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topConcept {
		width: 100%;
		padding: 0;
		position: relative;
		z-index: 0;
		background: #e1f0ff;
		z-index: 0;
	}
	#topConcept::before,
	#topConcept::after {
		content: '';
		display: block;
		width: 50%;
		height: auto;
		aspect-ratio: 1 / 1;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/circle.webp');
		background-repeat: no-repeat;
		background-position: left -50% top -50%;
		background-size: 150%;
		position: absolute;
		bottom: 0;
		left: 0;
		transform: scale(-1,1);
		z-index: -1;
	}
	#topConcept::after {
		background-position: left -50% top -50%;
		bottom: 0;
		left: unset;
		right: 0;
		transform: scale(1,1);
	}
	.topConcept_wrap {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px 150px;
	}
	.topConcept_wrap::before {
		content: '';
		display: block;
		width: 100%;
		height: 150px;
		padding: 0;
		margin: 0;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/topConcept_human_1.webp');
		background-repeat: no-repeat;
		background-position: left bottom;
		background-size: auto 100%;
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translate(-50%,0);
		z-index: -1;
	}
	.topConcept_wrap::after {
		content: '';
		display: block;
		width: 100%;
		height: 150px;
		padding: 0;
		margin: 0;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/topConcept_human_2.webp');
		background-repeat: no-repeat;
		background-position: right 20px bottom;
		background-size: auto 100%;
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translate(-50%,0);
		z-index: -1;
	}
	#contents .topConcept_wrap > h3 {
		column-gap: 15px;
		font-size: 3vw;
	}
	#contents .topConcept_wrap > h3::before,
	#contents .topConcept_wrap > h3::after {
		height: 20px;
		bottom: unset;
	}
	#contents .topConcept_wrap > h2 {
		font-size: 6vw;
		margin: 0 auto;
	}
	#contents .topConcept_wrap > p {
		font-size: 14px;
		line-height: 2em;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#topConcept {
		width: 100%;
		padding: 0;
		position: relative;
		z-index: 0;
		background: #e1f0ff;
		z-index: 0;
	}
	#topConcept::before,
	#topConcept::after {
		content: '';
		display: block;
		width: 50%;
		height: auto;
		aspect-ratio: 1 / 1;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/circle.webp');
		background-repeat: no-repeat;
		background-position: left -50% top -50%;
		background-size: 150%;
		position: absolute;
		bottom: 0;
		left: 0;
		transform: scale(-1,1);
		z-index: -1;
	}
	#topConcept::after {
		background-position: left -50% top -50%;
		bottom: 0;
		left: unset;
		right: 0;
		transform: scale(1,1);
	}
	.topConcept_wrap {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px 150px;
	}
	.topConcept_wrap::before {
		content: '';
		display: block;
		width: 100%;
		height: 150px;
		padding: 0;
		margin: 0;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/topConcept_human_1.webp');
		background-repeat: no-repeat;
		background-position: left bottom;
		background-size: auto 100%;
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translate(-50%,0);
		z-index: -1;
	}
	.topConcept_wrap::after {
		content: '';
		display: block;
		width: 100%;
		height: 150px;
		padding: 0;
		margin: 0;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/topConcept_human_2.webp');
		background-repeat: no-repeat;
		background-position: right 20px bottom;
		background-size: auto 100%;
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translate(-50%,0);
		z-index: -1;
	}
	#contents .topConcept_wrap > h3 {
		column-gap: 15px;
		font-size: 3vw;
	}
	#contents .topConcept_wrap > h3::before,
	#contents .topConcept_wrap > h3::after {
		height: 20px;
		bottom: unset;
	}
	#contents .topConcept_wrap > h2 {
		font-size: 6vw;
		margin: 0 auto;
	}
	#contents .topConcept_wrap > p {
		font-size: 14px;
		line-height: 2em;
	}
}


/************************************************************/
/*　トップページ インフォメーション
/************************************************************/
#topInformation {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: center;
}
#topReview {
	width: 100%;
	padding: 50px;
	margin: 0;
	background-image: radial-gradient(at center top, #dbc664, #715e25);
	position: relative;
}
#topNews {
	width: 100%;
	padding: 50px;
	margin: 0;
	background-image: radial-gradient(at center top, #00c48b, #0255d2);
	position: relative;
}
#contents #topReview > h2,
#contents #topNews > h2 {
	width: 100%;
	height: 60px;
	padding: 0;
	margin: 0 auto 20px;
	border: none;
	background: none;
	position: relative;
	text-align: center;
}
#contents #topReview > h2 img,
#contents #topNews > h2 img {
	width: auto;
	height: 100%;
}
.scrollBox {
	width: 100%;
	max-width: 600px;
	height: 400px;
	padding: 30px;
	margin: 0 auto;
	border-radius: 20px;
	background: #fff;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
	overflow-y: scroll;
}
.scrollBox::-webkit-scrollbar {
	display: none;
}
.scrollBox {
	scrollbar-width: none;
}
/*レビューリスト*/
.reviewList {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}
.reviewList li {
	padding: 20px 0;
	margin: 0;
	width: calc(100% - 20px);
	border-bottom: 1px dashed #9b9b9b;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 5px;
}
.reviewList li:first-child {
	padding-top: 0;
}
/*星評価*/
.star5_rating {
	position: relative;
	z-index: 0;
	display: inline-block;
	white-space: nowrap;
	color: #CCCCCC; /* グレーカラー 自由に設定化 */
	font-size: 18px;
}
#blogDetail .star5_rating {
	margin-bottom: 20px;
}
.star5_rating:before, .star5_rating:after {
	content: '★★★★★';
}
.star5_rating:after {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: #FFC13A;
}
.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

#contents .reviewList li h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 1em;
	line-height: 1;
}
#contents .reviewList li h3::before,
#contents .reviewList li h3::after {
	display: none;
}
#contents .reviewList li h3 em {
	font-size: 16px;
	color: #ff913a;
	font-style: normal;
}
#contents .reviewList li h3 span {
	color: #737373;
	font-weight: 500;
	font-size: 12px;
}
#contents .reviewList li > p {
	font-size: 12px;
	line-height: 1.4em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	padding: 0;
	margin: 0;
}
/*お知らせリスト*/
.newsList {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	overflow-y: unset;
	position: relative;
}
.newsList li {
	padding: 20px 0;
	margin: 0;
	width: calc(100%);
	border-bottom: 1px dashed #e1e1e1;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 5px;
}
.newsList li:first-child {
	padding-top: 0;
}
.newsList li > figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 5px;
}
.newsList li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.newsList 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;
}
.newsList li > .topNews_info {
	width: calc(100% - 150px - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#contents .newsList li > .topNews_info h3 {
	width: 100%;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	transition: var(--ease);
}
#contents .newsList li > .topNews_info h3::before,
#contents .newsList li > .topNews_info h3::after {
	display: none;
}
#contents .newsList li > .topNews_info h3 a {
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	transition: var(--ease);
}
#contents .newsList li > .topNews_info h3 a:hover {
	color: var(--main);
	text-decoration: underline;
	transition: var(--ease);
}
.newsList li > .topNews_info time {
	font-size: 12px;
	line-height: 1;
	color: #9b9b9b;
	font-family: var(--font-en);
}
.tags {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.tags .tag {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	border: 1px solid var(--main);
	font-size: 10px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	border-radius: 20px;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topInformation {
		width: 100%;
		flex-wrap: wrap;
	}
	#topReview {
		width: 100%;
		padding: 50px;
	}
	#topNews {
		width: 100%;
		padding: 50px;
	}
	#contents #topReview > h2,
	#contents #topNews > h2 {
		width: 100%;
		max-width: 100%;
		height: 45px;
		margin: 0 auto 15px;
	}
	.scrollBox {
		width: 100%;
		max-width: 100%;
		height: 300px;
		padding: 20px;
		border-radius: 10px;
	}
	/*レビューリスト*/
	.reviewList li {
		width: 100%;
	}
	/*お知らせリスト*/
	.newsList li {
		padding: 20px 0;
		margin: 0;
		width: calc(100%);
		border-bottom: 1px dashed #e1e1e1;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 5px;
	}
	.newsList li:first-child {
		padding-top: 0;
	}
	.newsList li > figure {
		width: 100px;
	}
	.newsList li > .topNews_info {
		width: calc(100% - 100px - 20px);
		grid-row-gap: 10px;
	}
	#contents .newsList li > .topNews_info h3 {
		width: 100%;
		font-size: 14px;
	}
	#contents .newsList li > .topNews_info h3 a {
		font-size: 14px;
	}
	.newsList li > .topNews_info time {
		font-size: 11px;
	}
	.tags .tag {
		font-size: 0.8rem;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#topInformation {
		width: 100%;
		flex-wrap: wrap;
	}
	#topReview {
		width: 100%;
		padding: 20px 20px;
	}
	#topNews {
		width: 100%;
		padding: 20px 20px;
	}
	#contents #topReview > h2,
	#contents #topNews > h2 {
		width: 100%;
		max-width: 100%;
		height: 45px;
		margin: 0 auto 15px;
	}
	.scrollBox {
		width: 100%;
		max-width: 100%;
		height: 300px;
		padding: 20px;
		border-radius: 10px;
	}
	/*レビューリスト*/
	.reviewList li {
		width: 100%;
	}
	/*お知らせリスト*/
	.newsList li {
		padding: 20px 0;
		margin: 0;
		width: calc(100%);
		border-bottom: 1px dashed #e1e1e1;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 5px;
	}
	.newsList li:first-child {
		padding-top: 0;
	}
	.newsList li > figure {
		width: 100px;
	}
	.newsList li > .topNews_info {
		width: calc(100% - 100px - 20px);
		grid-row-gap: 10px;
	}
	#contents .newsList li > .topNews_info h3 {
		width: 100%;
		font-size: 12px;
	}
	#contents .newsList li > .topNews_info h3 a {
		font-size: 12px;
	}
	.newsList li > .topNews_info time {
		font-size: 10px;
	}
	.tags .tag {
		font-size: 0.8rem;
	}
}

/************************************************************/
/*　トップページ メーカーロゴ
/************************************************************/
#topLogo {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background: #fff;
}
#contents #topLogo > h2 {
	width: 100%;
	max-width: 700px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	border: none;
	background: none;
	text-align: center;
}
#contents #topLogo > h2 img {
	width: 100%;
	height: auto;
}
/*リスト*/
.logoList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 30px;
}
.logoList > li {
	width: fit-content;
	height: 40px;
	padding: 0;
	margin: 0;
	position: relative;
}
.logoList > li img {
	width: auto;
	height: 100%;
	object-fit: cover;
}
/*画像*/
#topLogo > figure {
	width: 100%;
	max-width: 650px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#topLogo > figure > img {
	width: 100%;
	height: auto;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topLogo {
		width: 100%;
		padding: 50px;
	}
	#contents #topLogo > h2 {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
	}
	.logoList {
		width: 100%;
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 15px;
	}
	.logoList > li {
		width: fit-content;
		height: 20px;
	}
	.logoList > li img {
		width: auto;
		height: 100%;
		object-fit: cover;
	}
	/*画像*/
	#topLogo > figure {
		width: 100%;
		max-width: 100%;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#topLogo {
		width: 100%;
		padding: 40px 20px;
	}
	#contents #topLogo > h2 {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
	}
	.logoList {
		width: 100%;
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 15px;
	}
	.logoList > li {
		width: fit-content;
		height: 20px;
	}
	.logoList > li img {
		width: auto;
		height: 100%;
		object-fit: cover;
	}
	/*画像*/
	#topLogo > figure {
		width: 100%;
		max-width: 100%;
	}
}

/************************************************************/
/*　画像スライダー
/************************************************************/
.loop-slider {
	width: 100%;
	min-width: 100%;
	padding: 0;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.slideGal {
	display: flex;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
	background: #fff;
	width: max-content;
	animation: side-loop-left 60s linear infinite;
}
.delay .slideGal {
	animation: side-loop-left-delay 60s linear infinite;
}
.slideGal li {
	flex: 0 0 calc(100vw / 4);
	width: calc(100vw / 4);
	aspect-ratio: 16 / 9;
	box-sizing: border-box;
}
.slideGal li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@keyframes side-loop-left {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@keyframes side-loop-left-delay {
	0% {
		transform: translateX(-12.5vw);
	}
	100% {
		transform: translateX(calc(-50% - 12.5vw));
	}
}
/*.loop-slider:hover .slideGal {
animation-play-state: paused;
}*/
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.slideGal li {
		flex: 0 0 calc(100vw / 3);
		width: calc(100vw / 3);
		aspect-ratio: 16 / 9;
		box-sizing: border-box;
	}
}


/************************************************************/
/*　トップページ 選ばれる理由
/************************************************************/
#topReason {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background: var(--base);
}
#topReason > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	justify-content: center;
	grid-row-gap: 10px;
}
#topReason > header::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/reason_bg02.svg');
	background-repeat: no-repeat;
	background-size: 1100px;
	background-position: top center;
	position: absolute;
	top: 0;
	left: 0;
}
#topReason > header em {
	display: block;
	width: 400px;
	padding: 0;
	margin: 0 auto;
}
#contents #topReason > header h2 {
	width: 400px;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
}
#contents #topReason > header h2::before {
	content: '';
	display: block;
	width: 100px;
	height: 100px;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/light.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: -50px;
	left: -50px;
	z-index: 1;
}
#contents #topReason > header h2::after {
	content: '';
	display: block;
	width: 100px;
	height: 100px;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/light.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	bottom: -45px;
	left: 53%;
	z-index: 1;
}
#topReason > header em img,
#topReason > header h2 img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
#topReason > header > p {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 5px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(---text);
}
#topReason > header > p strong {
	display: inline-block;
	padding: 8px 10px 10px;
	margin: 0;
	border-radius: 5px;
	font-size: 1.2em;
	font-weight: 900;
	color: #fff;
	background: #0064c1;
}
/*リスト*/
.reasonList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-direction: column;
	grid-row-gap: 60px;
	z-index: 0;
}
.reasonList > li {
	width: calc(90%);
	padding: 50px 0;
	margin: 0 0 0 auto;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
.reasonList > li:nth-child(even) {
	width: calc(90%);
	padding: 50px 0;
	margin: 0 auto 0 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
.reasonList > li::before {
	content: '';
	display: block;
	width: calc(70%);
	height: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
	border-radius: 50px 0 0 50px;
	position: absolute;
	top: 0;
	left: unset;
	right: 0;
	bottom: unset;
	transform: unset;
	z-index: -1;
}
.reasonList > li:nth-child(even)::before {
	content: '';
	display: block;
	width: calc(70%);
	height: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
	border-radius: 0 50px 50px 0;
	position: absolute;
	top: 0;
	left: 0;
	right: unset;
	bottom: unset;
	transform: unset;
	z-index: -1;
}
.reasonList > li figure {
	width: 45%;
	max-width: 45%;
	min-width: 500px;
	position: relative;
}
.reasonList > li:nth-child(even) figure {
	order: 1;
}
.reasonList > li figure img {
	width: 100%;
	height: auto;
	border-radius: 0 65px 65px 65px;
}
.reasonList > li .num {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100px;
	height: 100px;
	background: var(--main);
	border-radius: 50% 50% 50% 0;
	padding: 10px 5px 0 0 ;
	position: absolute;
	top: -60px;
	left: 40px;
	z-index: 2;
}
.reasonList > li .num > em {
	display: block;
	font-family: var(--font-en);
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.reasonList > li .num > strong {
	display: block;
	font-family: var(--font-en);
	font-size: 50px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.reasonList > li .reasonList_info {
	width: calc(100% - 45%);
	padding: 0 100px 0 50px;
	margin: 0;
	position: relative;
}
.reasonList > li:nth-child(even) .reasonList_info {
	width: calc(100% - 45%);
	padding: 0 50px 0 100px;
	margin: 0;
	position: relative;
}
#contents .reasonList > li .reasonList_info h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-direction: column;
	flex-wrap: wrap;
	grid-row-gap: 10px;
}
.reasonList > li .reasonList_info h2 > span {
	display: inline-block;
	padding: 6px 6px 8px;
	margin: 0 auto 0 0;
	background: var(--grad);
	border-radius: 5px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
.reasonList > li .reasonList_info h2 > span strong {
	color: #fff44b;
}
.reasonList > li .reasonList_info > p {
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	padding: 0;
	margin: 0;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReason {
		padding: 50px 0 0;
	}
	/*ヘッダー*/
	#topReason > header {
		width: 100%;
		padding: 0 50px;
		margin: 0 auto 20px;
		grid-row-gap: 10px;
	}
	#topReason > header::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/reason_bg02.svg');
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: top center;
		position: absolute;
		top: 0;
		left: 0;
	}
	#topReason > header em {
		width: 70%;
	}
	#contents #topReason > header h2 {
		width: 80%;
		margin: 0 auto;
	}
	#contents #topReason > header h2::before {
		display: none;
	}
	#contents #topReason > header h2::after {
		display: none;
	}
	#topReason > header em img,
	#topReason > header h2 img {
		width: 100%;
		height: auto;
		filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
	}
	#topReason > header > p {
		font-size: 14px;
	}
	#topReason > header > p strong {
		display: inline-block;
		padding: 6px 6px 8px;
		margin: 0;
		border-radius: 5px;
		font-size: 1em;
		line-height: 1;
	}
	/*リスト*/
	.reasonList {
		width: 100%;
		grid-row-gap: 30px;
	}
	#topReason .reasonList {
		padding-top: 20px;
		grid-row-gap: 50px;
	}
	.reasonList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: block;
	}
	.reasonList > li:nth-child(even) {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: block;
	}
	.reasonList > li::before {
		content: '';
		display: block;
		width: calc(100%);
		height: 70%;
		padding: 0;
		margin: 0;
		border-radius: 0;
		position: absolute;
		top: unset;
		bottom: 0;
		right: 0;
		z-index: -1;
	}
	.reasonList > li:nth-child(even)::before {
		content: '';
		display: block;
		width: calc(100%);
		height: 70%;
		padding: 0;
		margin: 0;
		border-radius: 0;
		position: absolute;
		top: unset;
		bottom: 0;
		right: 0;
		left: unset;
		z-index: -1;
	}
	.reasonList > li figure {
		width: calc(100% - 100px);
		max-width: 100%;
		min-width: unset;
		margin: 0 auto;
	}
	.reasonList > li:nth-child(even) figure {
		order: 0;
	}
	.reasonList > li figure img {
		border-radius: 10px;
	}
	.reasonList > li .num {
		width: 200px;
		height: 200px;
		top: -30px;
		left: 0;
		transform-origin: top left;
		transform: scale(0.5);
		grid-row-gap: 5px;
	}
	.reasonList > li .num > em {
		width: 100%;
		text-align: center;
		font-size: 20px;
	}
	.reasonList > li .num > strong {
		font-size: 80px;
	}
	.reasonList > li .reasonList_info {
		width: calc(100% - 100px);
		padding: 0 0 10px;
		margin: 0 auto;
		transform: translateY(-20px);
	}
	.reasonList > li:nth-child(even) .reasonList_info {
		width: calc(100% - 100px);
		padding: 0 0 10px;
		margin: 0 auto;
		transform: translateY(-20px);
	}
	#contents .reasonList > li .reasonList_info h2 {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		grid-row-gap: 5px;
	}
	.reasonList > li .reasonList_info h2 > span {
		font-size: 40px;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#topReason {
		padding: 30px 0 0;
	}
	/*ヘッダー*/
	#topReason > header {
		width: 100%;
		padding: 0 20px;
		margin: 0 auto 20px;
		grid-row-gap: 10px;
	}
	#topReason > header::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/reason_bg02.svg');
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: top center;
		position: absolute;
		top: 0;
		left: 0;
	}
	#topReason > header em {
		width: 70%;
	}
	#contents #topReason > header h2 {
		width: 80%;
		margin: 0 auto;
	}
	#contents #topReason > header h2::before {
		display: none;
	}
	#contents #topReason > header h2::after {
		display: none;
	}
	#topReason > header em img,
	#topReason > header h2 img {
		width: 100%;
		height: auto;
		filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
	}
	#topReason > header > p {
		font-size: 14px;
	}
	#topReason > header > p strong {
		display: inline-block;
		padding: 6px 6px 8px;
		margin: 0;
		border-radius: 5px;
		font-size: 1em;
		line-height: 1;
	}
	/*リスト*/
	.reasonList {
		width: 100%;
		grid-row-gap: 30px;
	}
	#topReason .reasonList {
		padding-top: 20px;
		grid-row-gap: 30px;
	}
	.reasonList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: block;
	}
	.reasonList > li:nth-child(even) {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: block;
	}
	.reasonList > li::before {
		content: '';
		display: block;
		width: calc(100%);
		height: 70%;
		padding: 0;
		margin: 0;
		border-radius: 0;
		position: absolute;
		top: unset;
		bottom: 0;
		right: 0;
		z-index: -1;
	}
	.reasonList > li:nth-child(even)::before {
		content: '';
		display: block;
		width: calc(100%);
		height: 70%;
		padding: 0;
		margin: 0;
		border-radius: 0;
		position: absolute;
		top: unset;
		bottom: 0;
		right: 0;
		left: unset;
		z-index: -1;
	}
	.reasonList > li figure {
		width: calc(100% - 60px);
		max-width: 100%;
		min-width: unset;
		margin: 0 auto;
	}
	.reasonList > li:nth-child(even) figure {
		order: 0;
	}
	.reasonList > li figure img {
		border-radius: 10px;
	}
	.reasonList > li .num {
		width: 100px;
		height: 100px;
		top: -20px;
		left: 0;
		transform-origin: top left;
		transform: scale(0.5);
	}
	.reasonList > li .num > em {
		width: 100%;
		text-align: center;
		font-size: 12px;
	}
	.reasonList > li .num > strong {
		font-size: 45px;
	}
	.reasonList > li .reasonList_info {
		width: calc(100% - 100px);
		padding: 0 0 10px;
		margin: 0 auto;
		transform: translateY(-20px);
	}
	.reasonList > li .reasonList_info {
		width: calc(100% - 60px);
		padding: 0 0 10px;
		margin: 0 auto;
		transform: translateY(-20px);
	}
	.reasonList > li:nth-child(even) .reasonList_info {
		width: calc(100% - 60px);
		padding: 0 0 10px;
		margin: 0 auto;
		transform: translateY(-20px);
	}
	#contents .reasonList > li .reasonList_info h2 {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		grid-row-gap: 5px;
	}
	.reasonList > li .reasonList_info h2 > span {
		font-size: 20px;
	}
}

/************************************************************/
/*　トップページ　ポイント
/************************************************************/
#topPoint {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/topPoint_bg.webp');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-color: #e1f0ff;
	z-index: 0;
}
#topPoint::before {
	content: '';
	display:  block;
	width: 100%;
	height: 100%;
	background-image: var(--grad);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	opacity: 0.8;
}
#topPoint::after {
	content: '';
	display:  block;
	width: 100%;
	height: 45%;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/topPoint_bg2.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
#topPoint > header {
	width: 100%;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
	grid-row-gap: 30px;
}
#topPoint > header > em {
	display: inline-block;
	padding: 15px 30px 17px;
	margin: 0 auto;
	background: #fff44b;
	border-radius: 50px;
	position: relative;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	font-style: normal;
	color: var(--main);
	text-align: center;
}
#topPoint > header > em::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: #fff44b;
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#contents #topPoint > header > h2 {
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	text-align: center;
	font-size: 45px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
}
#topPoint > header > h2 strong {
	font-size: 1.4em;
	position: relative;
}
#topPoint > header > h2 strong::after {
	content: '';
	display: block;
	width: 100%;
	height: 7px;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/waveline.svg');
	background-repeat: repeat-x;
	background-position: center;
	background-size: auto 100%;
	position: absolute;
	bottom: -5px;
	left: 0;
}
/*リスト*/
.pointList {
	width: calc(100% - 100px);
	max-width: 1200px;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
.pointList::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 20px);
}
.pointList > li {
	width: calc(100% / 3 - 20px);
	padding: 60px 30px 30px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
.pointList > li .num {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 70px;
	height: 70px;
	padding: 0;
	margin: 0;
	background: #fff44b;
	border-radius: 50%;
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	z-index: 2;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	color: var(--main);
	font-weight: 700;
}
.pointList > li .num::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background: #fff44b;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#contents .pointList > li h2 {
	width: 100%;
	padding: 0 0 30px;
	margin: 0 auto 20px;
	position: relative;
	font-size: 25px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.4em;
	text-align: center;
	background: none;
	border: none;
}
.pointList > li h2 strong {
	font-size: 25px;
	font-weight: 700;
	color: var(--main);
	background: linear-gradient(transparent 60%, #fff44b 60%);
}
.pointList > li h2::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #e1e1e1;
	position: absolute;
	bottom: 0;
	left: 0;
}
.pointList > li h2::after {
	content: '';
	display: block;
	width: 70px;
	height: 1px;
	background: var(--main);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	z-index: 1;
}
.pointList > li > p {
	font-size: 14px;
	line-height: 2em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	padding: 0;
	margin: 0;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topPoint {
		width: 100%;
		padding: 30px 0;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/topPoint_bg_sp.webp');
	}
	#topPoint::after {
		display: none;
	}
	#topPoint > header {
		width: calc(100% - 100px);
		min-width: 100%;
		margin: 0 auto 40px;
		grid-row-gap: 10px;
	}
	#topPoint > header > em {
		display: inline-block;
		padding: 10px 20px 10px;
		border-radius: 35px;
		font-size: 20px;
	}
	#topPoint > header > em::after {
		width: 10px;
		height: 10px;
		bottom: -8px;
		left: 50%;
	}
	#contents #topPoint > header > h2 {
		font-size: 35px;
	}
	#topPoint > header > h2 strong {
		display: block;
		margin: 0 auto 10px;
	}
	#topPoint > header > h2 strong::after {
		content: '';
		display: block;
		width: 100%;
		height: 4px;
		bottom: -10px;
		left: 0;
	}
	/*リスト*/
	.pointList {
		width: calc(100% - 100px);
		max-width: 100%;
		min-width: unset;
		padding: 0;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	.pointList::after {
		content: '';
		display: none;
	}
	.pointList > li {
		width: calc(100%);
		padding: 40px 20px 20px;
		margin: 0 auto;
		border-radius: 10px;
	}
	.pointList > li .num {
		width: 70px;
		height: 70px;
		top: -35px;
		font-size: 25px;
	}
	#contents .pointList > li h2 {
		width: 100%;
		padding: 0 0 20px;
		margin: 0 auto 15px;
		font-size: 40px;
	}
	.pointList > li h2 strong {
		font-size: 40px;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#topPoint {
		width: 100%;
		padding: 30px 0;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/topPoint_bg_sp.webp');
	}
	#topPoint::after {
		display: none;
	}
	#topPoint > header {
		width: calc(100% - 60px);
		min-width: 100%;
		margin: 0 auto 40px;
		grid-row-gap: 10px;
	}
	#topPoint > header > em {
		display: inline-block;
		padding: 10px 20px 10px;
		border-radius: 35px;
		font-size: 15px;
	}
	#topPoint > header > em::after {
		width: 10px;
		height: 10px;
		bottom: -8px;
		left: 50%;
	}
	#contents #topPoint > header > h2 {
		font-size: 25px;
	}
	#topPoint > header > h2 strong {
		display: block;
		margin: 0 auto 10px;
	}
	#topPoint > header > h2 strong::after {
		content: '';
		display: block;
		width: 100%;
		height: 4px;
		bottom: -10px;
		left: 0;
	}
	/*リスト*/
	.pointList {
		width: calc(100% - 40px);
		max-width: 100%;
		min-width: unset;
		padding: 0;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.pointList::after {
		content: '';
		display: none;
	}
	.pointList > li {
		width: calc(100%);
		padding: 40px 20px 20px;
		margin: 0 auto;
		border-radius: 10px;
	}
	.pointList > li .num {
		width: 50px;
		height: 50px;
		top: -25px;
		font-size: 20px;
	}
	#contents .pointList > li h2 {
		width: 100%;
		padding: 0 0 20px;
		margin: 0 auto 15px;
		font-size: 20px;
	}
	.pointList > li h2 strong {
		font-size: 20px;
	}
}


/************************************************************/
/*　トップページ　施工実績
/************************************************************/
#topWorks {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background-color: #fff;
	position: relative;
	z-index: 0;
}
#topWorks::before {
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	background: var(--grad);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#topWorks::after {
	content: '';
	display: block;
	width: 100%;
	height: 130px;
	background: #fff;
	position: absolute;
	top: 20.5px;
	left: 0;
	z-index: -1;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.topWorks_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 40px;
}
.topWorks_wrap.sub {
	padding: 100px 0;
}
.works-sidebar {
	width: 300px;
	min-width: 300px;
	padding: 25px;
	margin: 0;
	background: var(--main);
	border-radius: 20px;
	position: sticky;
	top: 200px;
	left: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.topWorks_content {
	width: calc(100% - 40px - 300px);
	padding: 0;
	margin: 0;
	position: relative;
}
/*サイドバー*/
.asideBox {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#contents .asideBox > h2 {
	width: 100%;
	padding: 0 0 10px;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	border-radius: 0;
	border-bottom: 1px solid #fff;
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
#contents .asideBox > h2::before,
#contents .asideBox > h2::after {
	display: none;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topWorks {
		width: 100%;
		padding: 50px 0;
	}
	#topWorks::before {
		height: 50px;
		opacity: 0.8;
		top: -0.4px;
	}
	#topWorks::after {
		width: 100%;
		height: 40px;
		top: 10.5px;
		left: 0;
	}
	.topWorks_wrap {
		width: calc(100% - 100px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	.topWorks_wrap.sub {
		padding: 40px 0;
	}
	.works-sidebar {
		width: 100%;
		min-width: 100%;
		padding: 20px;
		position: relative;
		top: unset;
		left: unset;
		grid-row-gap: 20px;
		order: 1;
	}
	.topWorks_content {
		width: 100%;
	}
	/*サイドバー*/
	#contents .asideBox > h2 {
		width: 100%;
		padding: 0 0 10px;
		margin: 0 auto 10px;
		font-size: 18px;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#topWorks {
		width: 100%;
		padding: 50px 0;
	}
	#topWorks::before {
		height: 50px;
		opacity: 0.8;
		top: -0.4px;
	}
	#topWorks::after {
		width: 100%;
		height: 40px;
		top: 10.5px;
		left: 0;
	}
	.topWorks_wrap {
		width: calc(100% - 40px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.topWorks_wrap.sub {
		padding: 40px 0;
	}
	.works-sidebar {
		width: 100%;
		min-width: 100%;
		padding: 20px;
		position: relative;
		top: unset;
		left: unset;
		grid-row-gap: 20px;
		order: 1;
	}
	.topWorks_content {
		width: 100%;
	}
	/*サイドバー*/
	#contents .asideBox > h2 {
		width: 100%;
		padding: 0 0 10px;
		margin: 0 auto 10px;
		font-size: 18px;
	}
}

/* - カテゴリ一覧 */
.works-child-categories {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.works-child-categories > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	line-height: 1;
}
.works-child-categories > li > a {
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
}
.works-child-categories > li > a .cat-count {
	display: inline-block;
	padding: 4px 10px 5px;
	margin: 0;
	font-size: 0.8rem;
	line-height: 1;
	color: var(--main);
	background: #fff;
	border-radius: 20px;
	position: relative;
	top: 1px;
}
.works-child-categories > li > a:hover {
	color: #fff;
	text-decoration: underline;
	transition: var(--ease);
}

/*タグ*/
.area-child-tags {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.area-child-tags > li {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
}
.area-child-tags > li > a {
	display: inline-block;
	padding: 5px 12px 6px;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--main);
	border-radius: 22px;
	position: relative;
	transition: var(--ease);
}
.area-child-tags > li > a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*more*/
.aside_more {
	padding: 0;
	margin: 0;
	text-align: left;
}
.aside_more > a {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
.aside_more > a::before {
	content: '\f138';
	display: inline;
	font-family: "Font Awesome 6 Free";
	font-size: 18px;
	color: #fff;
	font-weight: 900;
}
.aside_more > a:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*カテゴリタブ*/
#category-buttons {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
.cat-btn {
	display: inline-block;
	padding: 7px 14px;
	margin: 0;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--main);
	border-radius: 5px;
	position: relative;
	transition: var(--ease);
	outline: none;
}
.cat-btn:hover,
.cat-btn.active {
	outline: none;
	color: #fff;
	background: var(--main);
	transition: var(--ease);
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*カテゴリタブ*/
	#category-buttons {
		width: 100%;
		margin: 0 auto 20px;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	.cat-btn {
		display: inline-block;
		padding: 8px 12px;
		font-size: 15px;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	/*カテゴリタブ*/
	#category-buttons {
		width: 100%;
		margin: 0 auto 20px;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	.cat-btn {
		display: inline-block;
		padding: 5px 10px;
		font-size: 11px;
	}
}

/*リスト*/
.worksList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.worksList > li {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	background: #f2f5fd;
	border: 1px solid #eee;
	border-radius: 20px;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	grid-row-gap: 30px;
	grid-row-gap: 20px;
}
.worksList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
}
/*タイトル*/
#contents .worksList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--main);
	transition: var(--ease);
}
#contents .worksList > li:hover > h3 {
	color: var(--act);
	transition: var(--ease);
}
#contents .worksList > li > h3::before,
#contents .worksList > li > h3::after {
	display: none;
}
.worksList > li > .worksList_images {
	width: 300px;
	min-width: 300px;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.worksList > li > .worksList_images > figure {
	width: 100%;
	min-width: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-align: center;
	position: relative;
}
.worksList > li > .worksList_images > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.worksList > li > .worksList_images > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*サムネイル*/
.worksList_thumb {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	column-gap: 10px;
}
.worksList_thumb > li {
	width: calc((100% - 20px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.worksList_thumb > li::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.worksList_thumb > li img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*情報*/
.worksList_data {
	width: calc(100% - 30px - 300px);
	padding: 0;
	margin: 0;
	position: relative;
}
.worksList_data dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
.worksList_data dl dt {
	width: 120px;
	min-width: 120px;
	padding: 10px 0;
	margin: 0;
	background: none;
	border: none;
	border-bottom: 1px solid #dee5ec;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
}
.worksList_data dl dt i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 19px;
	height: 19px;
}
.worksList_data dl dd {
	width: calc(100% - 100px);
	padding: 10px;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: lighter;
	color: var(--text);
	border-bottom: 1px solid #dee5ec;
}
.worksList_data dl:last-of-type dd {
	font-size: 12px;
	line-height: 1.7em;
	font-weight: lighter;
	color: var(--text);
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*リスト*/
	.worksList {
		width: 100%;
		grid-row-gap: 30px;
	}
	.worksList > li {
		width: 100%;
		padding: 30px;
		border-radius: 10px;
		grid-row-gap: 15px;
	}
	/*タイトル*/
	#contents .worksList > li > h3 {
		width: 100%;
		font-size: 18px;
	}
	.worksList > li > .worksList_images {
		width: 100%;
		min-width: 100%;
		grid-row-gap: 10px;
	}
	/*サムネイル*/
	.worksList_thumb {
		width: 100%;
		column-gap: 10px;
	}
	.worksList_thumb > li {
		width: calc((100% - 20px) / 3);
	}
	/*情報*/
	.worksList_data {
		width: 100%;
	}
	.worksList_data dl {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
	}
	.worksList_data dl dt {
		width: 120px;
		min-width: 120px;
		padding: 10px 0;
		font-size: 14px;
	}
	.worksList_data dl dt i {
		width: 16px;
		height: 16px;
	}
	.worksList_data dl dd {
		width: calc(100% - 140px);
		padding: 10px;
		font-size: 14px;
	}
	.worksList_data dl:last-of-type dd {
		font-size: 12px;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	/*リスト*/
	.worksList {
		width: 100%;
		grid-row-gap: 20px;
	}
	.worksList > li {
		width: 100%;
		padding: 20px;
		border-radius: 10px;
		grid-row-gap: 10px;
	}
	/*タイトル*/
	#contents .worksList > li > h3 {
		width: 100%;
		font-size: 15px;
	}
	.worksList > li > .worksList_images {
		width: 100%;
		min-width: 100%;
		grid-row-gap: 10px;
	}
	/*サムネイル*/
	.worksList_thumb {
		width: 100%;
		column-gap: 10px;
	}
	.worksList_thumb > li {
		width: calc((100% - 20px) / 3);
	}
	/*情報*/
	.worksList_data {
		width: 100%;
	}
	.worksList_data dl {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
	}
	.worksList_data dl dt {
		width: 90px;
		min-width: 90px;
		padding: 10px 0;
		font-size: 12px;
	}
	.worksList_data dl dt i {
		width: 14px;
		height: 14px;
	}
	.worksList_data dl dd {
		width: calc(100% - 100px);
		padding: 10px;
		font-size: 12px;
	}
	.worksList_data dl:last-of-type dd {
		font-size: 10px;
	}
}

/*一覧ボタン*/
#category-link-wrap {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#category-link-wrap.mt50 {
	margin-top: 50px;
}
#category-link-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 15px 30px;
	background: var(--main);
	border-radius: 5px;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#category-link-btn::after {
	content: '\f138';
	display: inline;
	font-family: "Font Awesome 6 Free";
	font-size: 18px;
	color: #fff;
	font-weight: 900;
}
#category-link-btn:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	/*一覧ボタン*/
	#category-link-wrap {
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	#category-link-wrap.mt50 {
		margin-top: 20px;
	}
	#category-link-btn {
		column-gap: 10px;
		padding: 12px 20px;
		font-size: 14px;
	}
	#category-link-btn::after {
		width: 13px;
		height: 13px;
	}
}

/* ギャラリー全体 */
.custom-swiper-gallery {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 100px auto 50px;
	position: relative;
}
.custom-swiper-gallery .main-swiper-container {
	flex: 1;
	position: relative;
	width: calc(70% - 10px);
}
.custom-swiper-gallery .main-swiper-container .swiper-slide {
	width: 100%;
	aspect-ratio: 3 / 2;
}
.custom-swiper-gallery .main-swiper-container .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	/*▼ブラウザの標準機能（ユーザーセレクト・青くなる仕様）を削除*/
	user-select: none; 
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	pointer-events: none;
}
/* サムネイル */
.custom-swiper-gallery .thumb-grid {
	width: 30%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(5, 1fr);
	gap: 10px;
}
.custom-swiper-gallery .thumb-btn {
	border: none;
	padding: 0;
	background: none;
	cursor: pointer;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	transition: var(--ease);
	outline: none;
}
.custom-swiper-gallery .thumb-btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	outline: none;
}
.custom-swiper-gallery .thumb-btn:hover,
.custom-swiper-gallery .thumb-btn.active {
	opacity: 0.8;
	outline: none;
	transition: var(--ease);
}
/*矢印*/
.swiper-button-next,
.swiper-button-prev {
	color: var(--text);
}

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

	/* ギャラリー全体 */
	.custom-swiper-gallery {
		flex-wrap: wrap;
		gap: 10px;
		margin: 50px auto;
	}
	.custom-swiper-gallery .main-swiper-container {
		width: 100%;
	}
	/* サムネイル */
	.custom-swiper-gallery .thumb-grid {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 10px;
	}
	.custom-swiper-gallery .thumb-btn {
		width: calc((100% - 40px) / 5);
		aspect-ratio: 1 / 1;
	}
	/*矢印*/
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 30px;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){

	/* ギャラリー全体 */
	.custom-swiper-gallery {
		flex-wrap: wrap;
		gap: 10px;
		margin: 50px auto;
	}
	.custom-swiper-gallery .main-swiper-container {
		width: 100%;
	}
	/* サムネイル */
	.custom-swiper-gallery .thumb-grid {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 10px;
	}
	.custom-swiper-gallery .thumb-btn {
		width: calc((100% - 40px) / 5);
		aspect-ratio: 1 / 1;
	}
	/*矢印*/
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 30px;
	}
}

/************************************************************/
/*　トップページ　メーカー
/************************************************************/

.single_works {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	grid-row-gap: 30px;
	grid-row-gap: 20px;
}
#contents .single_works > h3::before,
#contents .single_works > h3::after {
	display: none;
}
.single_works > figure {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	position: relative;
}
.single_works > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.single_works > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*情報*/
.single_works_data {
	width: calc(100% - 30px - 400px);
	padding: 0;
	margin: 0;
	position: relative;
}
.single_works_data dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
.single_works_data dl dt {
	width: 120px;
	min-width: 120px;
	padding: 10px 0;
	margin: 0;
	background: none;
	border: none;
	border-bottom: 1px solid #dee5ec;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 10px;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
}
.single_works_data dl dt i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 19px;
	height: 19px;
}
.single_works_data dl dd {
	width: calc(100% - 100px);
	padding: 10px;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: lighter;
	color: var(--text);
	border-bottom: 1px solid #dee5ec;
}
.single_works_data dl:last-of-type dd {
	font-size: 12px;
	line-height: 1.7em;
	font-weight: lighter;
	color: var(--text);
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.single_works {
		width: 100%;
		grid-row-gap: 10px;
	}
	.single_works > figure {
		width: 100%;
		min-width: 100%;
	}
	/*情報*/
	.single_works_data {
		width: 100%;
	}
	.single_works_data dl {
		width: 100%;
	}
	.single_works_data dl dt {
		width: 100px;
		min-width: 100px;
		padding: 10px 0;
		font-size: 12px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.single_works_data dl dt i {
		width: 14px;
		height: 14px;
	}
	.single_works_data dl dd {
		width: calc(100% - 100px);
		padding: 10px;
		font-size: 12px;
	}
	.single_works_data dl:last-of-type dd {
		font-size: 10px;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.single_works {
		width: 100%;
		grid-row-gap: 10px;
	}
	.single_works > figure {
		width: 100%;
		min-width: 100%;
	}
	/*情報*/
	.single_works_data {
		width: 100%;
	}
	.single_works_data dl {
		width: 100%;
	}
	.single_works_data dl dt {
		width: 100px;
		min-width: 100px;
		padding: 10px 0;
		font-size: 12px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.single_works_data dl dt i {
		width: 14px;
		height: 14px;
	}
	.single_works_data dl dd {
		width: calc(100% - 100px);
		padding: 10px;
		font-size: 12px;
	}
	.single_works_data dl:last-of-type dd {
		font-size: 10px;
	}
}

/************************************************************/
/*　トップページ　メーカー
/************************************************************/
#topMaker {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background-color: var(--base);
	position: relative;
	z-index: 0;
}
/*タブ切り替え*/
.tabs {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.tabBtns {
	display:flex;
	justify-content: center;
	column-gap: 1px;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.tab_item {
	width: calc((100% - 2px) / 3);
	padding: 15px;
	margin: 0;
	background: var(--main);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: center;
	cursor: pointer;
	outline: none;
}
.tab_item.active{
	background: var(--act);
	color: #fff;
	outline: none;
}
.makerList.loading {
	opacity:.5;
	pointer-events:none;
	transition: var(--ease);
}
#makerListWrap {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
/*リスト*/
.makerList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
.makerList > li {
	width: calc(100% / 2 - 10px);
	padding: 20px;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	background: #fafafa;
	border-radius: 10px;
	z-index: 0;
}
.makerList > li::before,
.makerList > li::after {
	display: none;
}
.makerList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	background: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.makerList > li > figure {
	width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
.makerList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.makerList > 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;
}
.makerList > li > .makerListInfo {
	width: calc(100% - 200px - 20px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .makerList > li > .makerListInfo > h3 {
	text-align: center;
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	height: 30px;
}
.makerList.single > li > .makerListInfo > h3 {
	text-align: left;
}
#contents .makerList > li > .makerListInfo > h3::before,
#contents .makerList > li > .makerListInfo > h3::after {
	display: none;
}
.makerList > li > .makerListInfo > h3 img {
	width: auto;
	height: 100%;
}
.makerList > li > .makerListInfo > strong {
	display: block;
	font-size: 15px;
	line-height: 1.4em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	padding: 0;
	margin: 0 auto 10px;
}
.makerList > li > .makerListInfo > p {
	font-size: 12px;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	padding: 0;
	margin: 0 auto 10px;
}
.cattag {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	background: var(--main);
	border-radius: 20px;
	color: #fff;
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	/*リスト*/
	.makerList {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	.makerList > li {
		width: 100%;
		padding: 15px;
		column-gap: 15px;
	}
	.makerList > li > figure {
		width: 100px;
	}
	.makerList > li > .makerListInfo {
		width: calc(100% - 100px - 15px);
	}
	#contents .makerList > li > .makerListInfo > h3 {
		width: 100%;
		margin: 0 auto 10px;
		height: 20px;
		text-align: left;
	}
	#contents .makerList > li > .makerListInfo > h3 img {
		display: block;
	}
	.makerList > li > .makerListInfo > strong {
		display: block;
		font-size: 11px;
		margin: 0 auto 10px;
	}
	.makerList > li > .makerListInfo > p {
		font-size: 11px;
		line-height: 1.7em;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		padding: 0;
		margin: 0 auto 10px;
	}
	.cattag {
		display: inline-block;
		padding: 5px 10px;
		margin: 0;
		font-size: 10px;
		line-height: 1;
		background: var(--main);
		border-radius: 20px;
		color: #fff;
	}
}


/************************************************************/
/*　トップページ　メッセージ
/************************************************************/
#topMessage {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background-color: rgba(248,242,233,1);
	position: relative;
	z-index: 0;
}
#topMessage::before {
	content: '';
	display: block;
	width: 100%;
	height: 400px;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/test-2.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -2;
	position: absolute;
	top: 0;
	left: 0;
}
#topMessage::after {
	content: '';
	display: block;
	width: 100%;
	height: 400px;
	background-image: linear-gradient(to top, rgba(248,242,233,1) 0%, rgba(248,242,233,0) 100%);
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
}
.topMessage_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 50px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
}
.certList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	column-gap: 20px;
}
.certList > li {
	width: calc((100% - 80px) / 5);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.certList > li img {
	width: 100%;
	height: auto;
}
.topMessage_wrap > figure {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topMessage_wrap > figure img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.topMessage_info {
	width: calc(100% - 50px - 400px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .topMessage_info > h3 {
	padding: 0;
	margin: 0 auto 20px;
	border: none;
	background: none;
	position: relative;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--main);
	text-align: left;
}
#contents .topMessage_info > h3::before,
#contents .topMessage_info > h3::after {
	display: none;
}
#contents .topMessage_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#contents .topMessage_info > p.name {
	padding: 0;
	margin: 0;
	font-family: var(--font-mincho);
	font-size: 20px;
	line-height: 1;
	color: var(--text);
	text-align: right;
}
#contents .topMessage_info > p.name small {
	display: block;
	margin-bottom: 7px;
	font-size: 0.7em;
	line-height: 1;
	color: var(--text);
	text-align: right;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topMessage {
		width: 100%;
		padding: 50px 50px;
	}
	#topMessage::before {
		content: '';
		display: block;
		width: 100%;
		height: 400px;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/test-2.webp');
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		z-index: -2;
		position: absolute;
		top: 0;
		left: 0;
	}
	#topMessage::after {
		content: '';
		display: block;
		width: 100%;
		height: 400px;
		background-image: linear-gradient(to top, rgba(248,242,233,1) 0%, rgba(248,242,233,0) 100%);
		z-index: -1;
		position: absolute;
		top: 0;
		left: 0;
	}
	.topMessage_wrap {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		border-radius: 10px;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	.certList {
		width: 100%;
		column-gap: 10px;
	}
	.certList > li {
		width: calc((100% - 40px) / 5);
	}
	.topMessage_wrap > figure {
		width: 100%;
		min-width: 100%;
	}
	.topMessage_info {
		width: 100%;
	}
	#contents .topMessage_info > h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 30px;
		text-align: left;
	}
	#contents .topMessage_info > p.name {
		font-size: 16px;
	}
	#contents .topMessage_info > p.name small {
		display: block;
		margin-bottom: 5px;
		font-size: 0.7em;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#topMessage {
		width: 100%;
		padding: 40px 20px;
	}
	#topMessage::before {
		content: '';
		display: block;
		width: 100%;
		height: 400px;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/test-2.webp');
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		z-index: -2;
		position: absolute;
		top: 0;
		left: 0;
	}
	#topMessage::after {
		content: '';
		display: block;
		width: 100%;
		height: 400px;
		background-image: linear-gradient(to top, rgba(248,242,233,1) 0%, rgba(248,242,233,0) 100%);
		z-index: -1;
		position: absolute;
		top: 0;
		left: 0;
	}
	.topMessage_wrap {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		border-radius: 10px;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	.certList {
		width: 100%;
		column-gap: 10px;
	}
	.certList > li {
		width: calc((100% - 40px) / 5);
	}
	.topMessage_wrap > figure {
		width: 100%;
		min-width: 100%;
	}
	.topMessage_info {
		width: 100%;
	}
	#contents .topMessage_info > h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 20px;
		text-align: left;
	}
	#contents .topMessage_info > p.name {
		font-size: 16px;
	}
	#contents .topMessage_info > p.name small {
		display: block;
		margin-bottom: 5px;
		font-size: 0.7em;
	}
}

/************************************************************/
/*　トップページ　お知らせ
/************************************************************/
#topEvent {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
	z-index: 0;
}
.topEvent_wrap {
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 100px;
}
#topEvent header {
	width: calc(35%);
	padding: 0;
	margin: 0;
	position: relative;
}
#topEvent header > p {
	font-size: 14px;
	line-height: 2em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	padding: 0;
	margin: 0;
}
#topEvent ul.newsList {
	width: calc(100% - 35% - 100px);
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
/*more*/
.moreBtn {
	width: fit-content;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
	padding: 0px;
	margin: 0px;
	list-style: none;
}
.moreBtn a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 7px;
	padding: 17px 20px;
	margin: 0;
	background: var(--grad-full);
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: var(--ease);
	background-size: 200% auto;
	background-position: 0% center;
	transition: var(--ease);
}
.moreBtn a:hover {
	background-position: 100% center;
	transition: var(--ease);
}
.moreBtn a span {
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
}
.moreBtn a img {
	width: auto;
	height: 18px;
	padding: 0;
	margin: 0;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topEvent {
		width: 100%;
		padding: 50px 0;
	}
	.topEvent_wrap {
		width: calc(100% - 100px);
		max-width: 100%;
		column-gap: 50px;
	}
	#topEvent header {
		width: calc(100%);
		padding: 0;
		margin: 0 auto 20px;
		align-items: flex-start;
	}
	#contents .contHead.left > h2 {
		width: 100%;
		font-size: 4vw;
		margin: 0 auto;
	}
	#contents .contHead.left > h2 .sp {
		display: inline !important;
	}
	#topEvent header > p {
		font-size: 14px;
		line-height: 1.5em;
		text-align: center;
	}
	#topEvent ul.newsList {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
	}
	#topEvent .moreBtn {
		width: 100%;
		margin-top: 20px;
		justify-content: center;
		text-align: center;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#topEvent {
		width: 100%;
		padding: 40px 0;
	}
	.topEvent_wrap {
		width: calc(100% - 40px);
		max-width: 100%;
		column-gap: 0;
	}
	#topEvent header {
		width: calc(100%);
		padding: 0;
		margin: 0 auto 20px;
		align-items: flex-start;
	}
	#contents .contHead.left > h2 {
		width: 100%;
		font-size: 6vw;
		margin: 0 auto;
	}
	#contents .contHead.left > h2 .sp {
		display: inline !important;
	}
	#topEvent header > p {
		font-size: 14px;
		line-height: 1.5em;
		text-align: center;
	}
	#topEvent ul.newsList {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
	}
	#topEvent .moreBtn {
		width: 100%;
		margin-top: 20px;
		justify-content: center;
		text-align: center;
	}
}


/************************************************************/
/*　トップページ　会社情報
/************************************************************/
#topCompany {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
	z-index: 0;
}
.topCompany_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 50px;
}
.topCompany_wrap > figure {
	width: 600px;
	min-width: 600px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
.topCompany_wrap > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.topCompany_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.topCompany_info {
	width: calc(100% - 50px - 600px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .topCompany_info > h2 {
	width: auto;
	height: 40px;
	padding: 0;
	margin: 0 0 20px;
	border: none;
	background: none;
	position: relative;
}
#contents .topCompany_info > h2::before,
#contents .topCompany_info > h2::after {
	display: none;
}
#contents .topCompany_info > h2 img {
	width: auto;
	height: 100%;
}
.topCompany_info > dl {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 0;
	grid-row-gap: 0;
}
.topCompany_info > dl dt {
	width: 150px;
	min-width: 150px;
	padding: 20px;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--text);
	border-bottom: 1px solid #eee;
	text-align: left;
}
.topCompany_info > dl dd {
	width: calc(100% - 20px - 150px);
	padding: 20px;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 400;
	color: var(--text);
	border-bottom: 1px solid #eee;
	text-align: left;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCompany {
		width: 100%;
		padding: 50px 50px;
	}
	.topCompany_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.topCompany_wrap > figure {
		width: 100%;
		min-width: 100%;
	}
	.topCompany_info {
		width: 100%;
	}
	#contents .topCompany_info > h2 {
		width: auto;
		height: 30px;
		margin: 0 0 10px;
	}
	.topCompany_info > dl {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 0;
	}
	.topCompany_info > dl dt {
		width: 100px;
		min-width: 100px;
		padding: 10px;
		font-size: 12px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.topCompany_info > dl dd {
		width: calc(100% - 20px - 100px);
		padding: 10px;
		font-size: 12px;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#topCompany {
		width: 100%;
		padding: 40px 20px;
	}
	.topCompany_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.topCompany_wrap > figure {
		width: 100%;
		min-width: 100%;
	}
	.topCompany_info {
		width: 100%;
	}
	#contents .topCompany_info > h2 {
		width: auto;
		height: 30px;
		margin: 0 0 10px;
	}
	.topCompany_info > dl {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 0;
	}
	.topCompany_info > dl dt {
		width: 100px;
		min-width: 100px;
		padding: 10px;
		font-size: 12px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.topCompany_info > dl dd {
		width: calc(100% - 20px - 100px);
		padding: 10px;
		font-size: 12px;
	}
}

/************************************************************/
/*　トップページ　アクセスマップ
/************************************************************/
#topAccess {
	width: 100%;
	height: 400px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
	overflow: hidden;
	z-index: 0;
}
#topAccess > iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topAccess {
		width: 100%;
		height: 400px;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	#topAccess {
		width: 100%;
		height: 300px;
	}
}

/************************************************************/
/*　よくある質問
/************************************************************/

.faqCategory {
	width: 100%;
	max-width: 900px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
#contents .faqCategory__title {
	width: 100%;
	padding: 20px;
	margin: 0 auto;
	position: relative;
	border: none;
	background: var(--grad);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: left;
}
/*リスト*/
.faqList {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
}
.faqList > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
	border-radius: 20px;
}
.faqList > dl > dt {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 20px;
	flex-wrap: nowrap;
	width: 100%;
	padding: 30px 60px 30px 0;
	margin: 0 auto;
	background: none;
	border-radius: 0;
	border-bottom: 1px dotted #cfcfcf;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	position: relative;
	cursor: pointer;
	transition: var(--ease);
}
.faqList > dl > dt:hover {
	color: var(--main);
	transition: var(--ease);
}
.faqList > dl > dt.active {
	color: var(--main);
	transition: var(--ease);
}
.faqList > dl > dt::before {
	content: '\51';
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-awe);
	font-size: 22px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
}
.faqList > dl > dt:hover::before,
.faqList > dl > dt.active::before {
	transition: var(--ease);
}
.faqList > dl > dt span {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.faqList > dl > dt span::before {
	content: '';
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text);
	border-radius: 3px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dt span::after {
	content: '';
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text);
	border-radius: 3px;
	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);
}
.faqList > dl > dt.active span::after {
	transform: translate(-50%,-50%) rotate(0deg);
	-webkit-transform: translate(-50%,-50%) rotate(0deg);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dt:hover span::before,
.faqList > dl > dt:hover span::after,
.faqList > dl > dt.active span::before,
.faqList > dl > dt.active span::after {
	background: var(--text);
	transition: var(--ease);
}
.faqList > dl > dd {
	margin: 20px auto 0;
	padding: 20px 30px;
	background: #f3faff;
	border-radius: 10px;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
}
.faqList > dl > dd p {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.faqList > dl > dd p:last-of-type {
	margin-bottom: 0;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.faqCategory {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto 40px;
	}
	#contents .faqCategory__title {
		width: 100%;
		padding: 10px;
		font-size: 20px;
	}
	/*リスト*/
	.faqList {
		width: 100%;
		max-width: 100%;
	}
	.faqList.sub {
		width: 100%;
	}
	.faqList > dl {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		background: none;
		border-radius: 20px;
	}
	.faqList > dl > dt {
		column-gap: 15px;
		width: 100%;
		padding: 15px 25px 15px 0;
		font-size: 14px;
	}
	.faqList > dl > dt::before {
		width: 25px;
		min-width: 25px;
		height: 25px;
		padding: 0 0 3px;
		font-size: 14px;
	}
	.faqList > dl > dt span {
		display: block;
		width: 10px;
		height: 10px;
	}
	.faqList > dl > dt span::before {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
		border-radius: 0;
	}
	.faqList > dl > dt span::after {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
		border-radius: 0;
	}
	.faqList > dl > dd {
		margin: 10px auto 0;
		padding: 20px;
		font-size: 14px;
		line-height: 1.7em;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	.faqList > dl > dd p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 14px;
		line-height: 1.7em;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.faqCategory {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto 40px;
	}
	#contents .faqCategory__title {
		width: 100%;
		padding: 10px;
		font-size: 15px;
	}
	/*リスト*/
	.faqList {
		width: 100%;
		max-width: 100%;
	}
	.faqList.sub {
		width: 100%;
	}
	.faqList > dl {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		background: none;
		border-radius: 20px;
	}
	.faqList > dl > dt {
		column-gap: 15px;
		width: 100%;
		padding: 15px 25px 15px 0;
		font-size: 14px;
	}
	.faqList > dl > dt::before {
		width: 25px;
		min-width: 25px;
		height: 25px;
		padding: 0 0 3px;
		font-size: 14px;
	}
	.faqList > dl > dt span {
		display: block;
		width: 10px;
		height: 10px;
	}
	.faqList > dl > dt span::before {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
		border-radius: 0;
	}
	.faqList > dl > dt span::after {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
		border-radius: 0;
	}
	.faqList > dl > dd {
		margin: 10px auto 0;
		padding: 20px;
		font-size: 14px;
		line-height: 1.7em;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	.faqList > dl > dd p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 14px;
		line-height: 1.7em;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
}


/************************************************************/
/*　スタッフ紹介
/************************************************************/

/*リスト*/
.staffList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 50px;
}
.staffList > li {
	width: calc((100% - 150px) / 4);
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
.staffList > li > figure {
	width: 100%;
	min-width: 100%;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-align: center;
	position: relative;
	border-radius: 10px;
}
.staffList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.staffList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.staffList > li > figure > span {
	display: inline-block;
	width: fit-content;
	padding: 7px 20px;
	margin: 0 auto;
	font-size: 11px;
	white-space: nowrap;
	line-height: 1;
	font-weight: 400;
	color: var(--text);
	background: rgba(255,255,255,0.7);
	backdrop-filter: blur(5px);
	border-radius: 30px;
	text-align: center;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
}
.staffList_info {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#contents .staffList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
#contents .staffList_info > p {
	font-size: 12px;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	padding: 0;
	margin: 0;
}


/************************************************************/
/*　施工事例詳細
/************************************************************/
.works_images {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 7px;
}
.works_images > span {
	display: block;
	width: calc((100% - 40px) / 2);
	padding: 0;
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	position: relative;
}
.works_images > span::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.works_images > span::after {
	content: '';
	display: block;
	width: 100px;
	height: auto;
	aspect-ratio: 110 / 32;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/before.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.works_images > span.after::after {
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/after.svg');
}
.works_images > span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.works_images > em {
	display: block;
	width: 26px;
	height: auto;
	aspect-ratio: 23 / 31;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

/*説明*/
.before_info {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
.before_info dt {
	width: 100%;
	padding: 15px 30px;
	margin: 0;
	background: #2d2d2d;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	font-weight: 600;
	text-align: left;
	border-radius: 5px 5px 0 0;
}
.before_info dd {
	padding: 25px 30px;
	margin: 0;
	background: #fff;
	border: 3px solid #2d2d2d;
	border-top: none;
	border-radius: 0 0 5px 5px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.before_info dd p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	position: relative;
}
.before_info dd p:last-of-type {
	margin-bottom: 0;
}
.before_info.after dt {
	background: var(--main);
}
.before_info.after dd {
	border: 3px solid var(--main);
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.works_images {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		column-gap: 7px;
	}
	.works_images > span {
		display: block;
		width: calc((100% - 30px) / 2);
		padding: 0;
		margin: 0;
		border-radius: 10px;
		overflow: hidden;
		text-align: center;
		position: relative;
	}
	.works_images > span::after {
		width: 70px;
	}
	.works_images > em {
		width: 16px;
	}

	/*説明*/
	.before_info {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}
	.before_info dt {
		width: 100%;
		padding: 10px 20px;
		font-size: 18px;
	}
	.before_info dd {
		padding: 15px 20px;
	}
	.before_info dd p {
		padding: 0;
		margin: 0 auto 10px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		position: relative;
	}
	.before_info dd p:last-of-type {
		margin-bottom: 0;
	}
	.before_info.after dt {
		background: var(--sub);
	}
	.before_info.after dd {
		border: 3px solid var(--sub);
	}
}


/************************************************************/
/*　トップページ　お問い合わせ
/************************************************************/
.cta {
	width: 100%;
	padding: 100px 50px;
	margin: 0 auto;
	background: var(--base);
	position: relative;
}
.ctaBox_wrap {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-radius: 10px;
	background: #fff;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	box-shadow: 2px 3px 8px rgba(20, 20, 20, 0.1);
}
.ctaBox_wrap::before {
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 160px);
	background: #dee5ec;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.ctaBox {
	width: 50%;
	padding: 80px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*電話番号*/
.cta .tel {
	display: inline-flex;
	flex-direction: column;
	grid-row-gap: 10px;
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#contents .cta .tel > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
#contents .cta .tel > h3::before,
#contents .cta .tel > h3::after {
	display: none;
}
#contents .cta .tel > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 3px;
	font-family: var(--font-en);
	font-size: 40px;
	line-height: 1;
	color: var(--main);
	font-weight: 900;
	white-space: nowrap;
	text-decoration: none;
}
#contents .cta .tel > a::before {
	content: '\f095';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
}
#contents .cta .tel > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align-last: center;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	color: var(--text);
	white-space: nowrap;
}
/*ボタン*/
.ctaContact {
	display: inline-flex;
	flex-direction: column;
	grid-row-gap: 15px;
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#contents .ctaContact > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
#contents .ctaContact > h3::before,
#contents .ctaContact > h3::after {
	display: none;
}
.ctaContact > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 7px;
	padding: 17px 30px;
	margin: 0;
	background: var(--grad-full);
	border-radius: 50px;
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: var(--ease);
	background-size: 200% auto;
	background-position: 0% center;
	transition: var(--ease);
}
.ctaContact > a::before {
	content: '\f0e0';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
.ctaContact > a:hover {
	background-position: 100% center;
	transition: var(--ease);
}

#contents .cta > p {
	width: 100%;
	max-width: 900px;
	padding: 0;
	margin: 50px auto 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.cta {
		width: 100%;
		padding: 50px;
	}
	.cta .contHead {
		margin-bottom: 50px;
	}
	.ctaBox_wrap {
		width: 100%;
		max-width: 100%;
	}
	.ctaBox_wrap::before {
		display: none;
	}
	.ctaBox {
		width: 100%;
		padding: 20px;
		border-bottom: 1px solid #dee5ec;
	}
	.ctaBox:last-of-type {
		border-bottom: none;
	}
	/*電話番号*/
	#contents .cta .tel {
		grid-row-gap: 10px;
	}
	#contents .cta .tel > h3 {
		font-size: 16px;
	}
	#contents .cta .tel > a {
		font-size: 5vw;
	}
	#contents .cta .tel > a::before {
		height: 20px;
		font-size: 23px;
	}
	#contents .cta .tel > p {
		font-size: 14px;
	}
	/*ボタン*/
	.ctaContact {
		grid-row-gap: 15px;
	}
	#contents .ctaContact > h3 {
		font-size: 16px;
	}
	.ctaContact > a {
		column-gap: 10px;
		padding: 15px 20px;
		font-size: 16px;
	}

	#contents .cta > p {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 20px auto 0;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.cta {
		width: 100%;
		padding: 40px 20px;
	}
	.ctaBox_wrap {
		width: 100%;
		max-width: 100%;
	}
	.ctaBox_wrap::before {
		display: none;
	}
	.ctaBox {
		width: 100%;
		padding: 20px;
		border-bottom: 1px solid #dee5ec;
	}
	.ctaBox:last-of-type {
		border-bottom: none;
	}
	/*電話番号*/
	#contents .cta .tel {
		grid-row-gap: 10px;
	}
	#contents .cta .tel > h3 {
		font-size: 16px;
	}
	#contents .cta .tel > a {
		font-size: 8vw;
	}
	#contents .cta .tel > a::before {
		height: 20px;
		font-size: 23px;
	}
	#contents .cta .tel > p {
		font-size: 14px;
	}
	/*ボタン*/
	.ctaContact {
		grid-row-gap: 15px;
	}
	#contents .ctaContact > h3 {
		font-size: 16px;
	}
	.ctaContact > a {
		column-gap: 10px;
		padding: 15px 20px;
		font-size: 16px;
	}

	#contents .cta > p {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 20px auto 0;
	}
}


/************************************************************/
/*会社概要
/************************************************************/

/*ご挨拶*/
#company_about {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
}
.company_about_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 70px;
	align-items: center;
}
.company_about_wrap > figure {
	width: 400px;
	max-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
}
.company_about_wrap > figure img {
	width: 100%;
	height: auto;
}
.company_about_info {
	width: calc(100% - 70px - 400px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .company_about_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--main);
	text-align: left;
}
#contents .company_about_info > p {
	padding: 0;
	margin: 0 auto 1em;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 769px){
	/*ご挨拶*/
	#company_about {
		width: 100%;
		padding: 50px;
	}
	.company_about_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		grid-row-gap: 50px;
	}
	.company_about_wrap > figure {
		width: 100%;
		max-width: 100%;
	}
	.company_about_info {
		width: 100%;
	}
	#contents .company_about_info > h2 {
		margin: 0 auto 10px;
		font-size: 30px;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	/*ご挨拶*/
	#company_about {
		width: 100%;
		padding: 40px 20px;
	}
	.company_about_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		grid-row-gap: 20px;
	}
	.company_about_wrap > figure {
		width: 100%;
		max-width: 100%;
	}
	.company_about_info {
		width: 100%;
	}
	#contents .company_about_info > h2 {
		margin: 0 auto 10px;
		font-size: 20px;
	}
}

/*データ*/
#company_data {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #fafafa;
}
#contents .company-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #e5e5e5;
	font-size: 15px;
	line-height: 1.8;
}
#contents .company-table th,
#contents .company-table td {
	padding: 16px 20px;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: top;
}
#contents .company-table th {
	width: 180px;
	background: rgba(242,245,253,0.5);
	color: var(--text);
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
	border-right: 1px solid #e5e5e5;
}
#contents .company-table td {
	color: var(--text);
	font-weight: 400;
	background: #fff;
}
#contents .company-table tr:last-child th,
#contents .company-table tr:last-child td {
	border-bottom: none;
}

/* タブレット */
@media screen and (max-width: 768px) {
	#company_data {
		padding: 50px;
	}
	#contents .company-table,
	#contents .company-table tbody,
	#contents .company-table tr,
	#contents .company-table th,
	#contents .company-table td {
		display: block;
		width: 100%;
		border: none;
	}
	#contents .company-table {
		border: none;
		border-top: 1px solid #e5e5e5;
	}
	#contents .company-table tr {
		border: none;
		padding: 0;
		display: flex;
		flex-direction: column;
	}
	#contents .company-table th {
		border: none;
		border-right: 1px solid #e5e5e5;
		border-left: 1px solid #e5e5e5;
		border-bottom: 1px solid #e5e5e5;
		padding: 10px 15px;
		background: rgba(242,245,253,0.5);
		width: 100%;
		text-align: left;
	}
	#contents .company-table td {
		padding: 10px 15px;
		border: none;
		border-right: 1px solid #e5e5e5;
		border-left: 1px solid #e5e5e5;
		border-bottom: 1px solid #e5e5e5;
	}
	#contents .company-table tr:last-child th,
	#contents .company-table tr:last-child td {
		border-bottom: 1px solid #e5e5e5;
	}
}

/* SP */
@media screen and (max-width: 480px) {
	#company_data {
		padding: 40px 20px;
	}
	#contents .company-table,
	#contents .company-table tbody,
	#contents .company-table tr,
	#contents .company-table th,
	#contents .company-table td {
		display: block;
		width: 100%;
		border: none;
	}
	#contents .company-table {
		border: none;
		border-top: 1px solid #e5e5e5;
	}
	#contents .company-table tr {
		border: none;
		padding: 0;
		display: flex;
		flex-direction: column;
	}
	#contents .company-table th {
		border: none;
		border-right: 1px solid #e5e5e5;
		border-left: 1px solid #e5e5e5;
		border-bottom: 1px solid #e5e5e5;
		padding: 10px 15px;
		background: rgba(242,245,253,0.5);
		width: 100%;
		text-align: left;
	}
	#contents .company-table td {
		padding: 10px 15px;
		border: none;
		border-right: 1px solid #e5e5e5;
		border-left: 1px solid #e5e5e5;
		border-bottom: 1px solid #e5e5e5;
	}
	#contents .company-table tr:last-child th,
	#contents .company-table tr:last-child td {
		border-bottom: 1px solid #e5e5e5;
	}
}

/*アクセスマップ*/
#company_map {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #fff;
}
#company_map figure.map {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	height: 400px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
#company_map figure.map iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*アクセスマップ*/
	#company_map {
		width: 100%;
		padding: 50px;
	}
	#company_map figure.map {
		width: 100%;
		max-width: 100%;
		height: 300px;
	}
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	/*アクセスマップ*/
	#company_map {
		width: 100%;
		padding: 40px 20px;
	}
	#company_map figure.map {
		width: 100%;
		max-width: 100%;
		height: 300px;
	}
}

/************************************************************/
/*　取扱メーカー
/************************************************************/
.makerCatList {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
.makerCatList > li {
	padding: 0;
	margin: 0;
	position: relative;
}
.makerCatList > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 30px;
	margin: 0;
	background: var(--main);
	border-radius: 60px;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
.makerCatList > li > a:hover,
.makerCatList > li > a.active {
	background: var(--act);
	transition: var(--ease);
}
@media screen and (max-width: 480px) {
	.makerCatList {
		width: 100%;
		margin: 0 auto 30px;
		column-gap: 10px;
		grid-row-gap: 10px;
		flex-wrap: wrap;
	}
	.makerCatList > li {
		width: calc((100% - 10px) / 2);
		padding: 0;
		margin: 0;
		position: relative;
	}
	.makerCatList > li > a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 10px 10px;
		border-radius: 0;
		font-size: 14px;
	}
}

/************************************************************/
/*　事業紹介
/************************************************************/
#business {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #f1f1f1;
}
/*ヘッダー*/
#pvHeader {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background-color: #fff;
}
#pvHeader::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(2,85,210,1) 0%, rgba(0,196,139,0.7) 50%, rgba(0,196,139,0) 100%);
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
#pvHeader::after {
	content: '';
	display: block;
	width: 70%;
	height: 100%;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/pv_bg_2.webp');
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -2;
}
.pvHeader_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.pvHeader_wrap::before {
	content: '';
	display: block;
	width: 500px;
	height: auto;
	aspect-ratio: 906 / 614;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/pvHeader_img.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.pvHeader_wrap > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#contents .pvHeader_wrap > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
	text-align: left;
}
#contents .pvHeader_wrap > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 60px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: left;
}
#contents .pvHeader_wrap > p {
	padding: 0;
	margin: 0;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
@media screen and (max-width: 768px) {
	#business {
		width: 100%;
	}
	/*ヘッダー*/
	#pvHeader::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(to right, rgba(2,85,210,0.7) 0%, rgba(2,85,210,0.7) 100%);
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	}
	#pvHeader::after {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/pv_bg_2.webp');
		background-repeat: no-repeat;
		background-position: bottom center;
		background-size: 100%;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -2;
	}
	.pvHeader_wrap {
		width: 100%;
		max-width: 100%;
		padding: 50px;
	}
	.pvHeader_wrap::before {
		display: none;
	}
	.pvHeader_wrap > header {
		margin: 0 auto 20px;
	}
	#contents .pvHeader_wrap > header > em {
		font-size: 14px;
	}
	#contents .pvHeader_wrap > header > h1 {
		width: 100%;
		font-size: 30px;
	}
}
@media screen and (max-width: 480px) {
	#business {
		width: 100%;
	}
	/*ヘッダー*/
	#pvHeader::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(to right, rgba(2,85,210,0.7) 0%, rgba(2,85,210,0.7) 100%);
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	}
	#pvHeader::after {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/pv_bg_2.webp');
		background-repeat: no-repeat;
		background-position: center right;
		background-size: auto 100%;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -2;
	}
	.pvHeader_wrap {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
	}
	.pvHeader_wrap::before {
		display: none;
	}
	.pvHeader_wrap > header {
		margin: 0 auto 20px;
	}
	#contents .pvHeader_wrap > header > em {
		font-size: 14px;
	}
	#contents .pvHeader_wrap > header > h1 {
		width: 100%;
		font-size: 30px;
	}
}

/*ナビ*/
#bizMenu {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
}
.bizList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 50px;
}
.bizList > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	background: #fff;
	display: flex;
	flex-direction: column;
}
#contents .bizList > li > h2 {
	display: inline-block;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-feature-settings: initial;
	padding: 10px;
	margin: 0;
	background: #fff;
	border: none;
	border-radius: 0;
	position: absolute;
	top: -20px;
	right: 20px;
	z-index: 2;
}
#contents .bizList > li > em {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: absolute;
	top: -20px;
	left: 0;
	z-index: 2;
	font-family: var(--font-en);
	font-size: 10px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	font-style: normal;
}
.bizList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.bizList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.bizList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.bizList_info {
	width: 100%;
	padding: 30px 30px 40px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.bizList_info > p {
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 2em;
	color: var(--text);
	font-weight: 400;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.bizList_info > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	min-width: 50px;
	height: 50px;
	aspect-ratio: 1/1;
	border: 3px solid rgba(0,0,0,0.15);
	border-radius: 50%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	transition: var(--ease);
}
.bizList_info > a::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: none;
	border-right: 2px solid var(--text);
	border-bottom: 2px solid var(--text);
	transform: rotate(45deg);
	transition: var(--ease);
}
.bizList_info > a::after {
	content: 'READ MORE';
	display: block;
	font-family: var(--font-en);
	font-size: 10px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
	position: absolute;
	bottom: -2em;
	left: 50%;
	transform: translate(-50%,0);
	transition: var(--ease);
}
.bizList_info > a:hover {
	border: 3px solid var(--main);
	transition: var(--ease);
}
.bizList_info > a:hover::before {
	border-right: 2px solid var(--main);
	border-bottom: 2px solid var(--main);
	transition: var(--ease);
}
.bizList_info > a:hover::after {
	color: var(--main);
	transition: var(--ease);
}
@media screen and (max-width: 768px) {
	/*ナビ*/
	#bizMenu {
		width: 100%;
		padding: 50px;
	}
	.bizList {
		width: 100%;
		max-width: 100%;
		column-gap: 30px;
		grid-row-gap: 50px;
	}
	.bizList > li {
		width: calc((100% - 30px) / 2);
	}
	.bizList_info {
		width: 100%;
		padding: 20px 20px 40px;
		grid-row-gap: 20px;
		flex-grow: 1;
	}
}
@media screen and (max-width: 480px) {
	/*ナビ*/
	#bizMenu {
		width: 100%;
		padding: 40px 20px;
	}
	.bizList {
		width: 100%;
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	.bizList > li {
		width: 100%;
	}
	.bizList_info {
		width: 100%;
		padding: 20px 20px 40px;
		grid-row-gap: 20px;
		flex-grow: 1;
	}
}

/*ヘッダー*/
#biz_header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#biz_header::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: rgba(0,0,0,0.2);
}
#biz_header > header {
	width: fit-content;
	padding: 30px;
	margin: 0;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 15px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 5;
}
#biz_header > header::after {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background: #fff;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	bottom: -29.5px;
	left: 50%;
	transform: translate(-50%,0);
}
#biz_header > header > em {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--main);
	font-style: normal;
	white-space: nowrap;
	padding: 0px;
	margin: 0px auto;
}
#biz_header > header > em::before,
#biz_header > header > em::after {
	content: "";
	display: block;
	width: 2px;
	height: 20px;
	transform-origin: center center;
	transform: rotate(15deg);
	background: var(--main);
	border-radius: 2px;
}
#contents #biz_header > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
#contents #biz_header > header > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
@media screen and (max-width: 768px) {
	/*ヘッダー*/
	#biz_header > header {
		width: calc(100% - 100px);
		padding: 30px;
		grid-row-gap: 10px;
	}
	#biz_header > header > em {
		font-size: 15px;
	}
	#biz_header > header > em::before,
	#biz_header > header > em::after {
		height: 10px;
	}
	#contents #biz_header > header > h2 {
		font-size: 30px;
	}
	#contents #biz_header > header > p {
		font-size: 14px;
	}
}
@media screen and (max-width: 480px) {
	/*ヘッダー*/
	#biz_header > header {
		width: calc(100% - 40px);
		padding: 15px;
		grid-row-gap: 5px;
	}
	#biz_header > header > em {
		font-size: 10px;
	}
	#biz_header > header > em::before,
	#biz_header > header > em::after {
		height: 10px;
	}
	#contents #biz_header > header > h2 {
		font-size: 16px;
	}
	#contents #biz_header > header > p {
		font-size: 12px;
	}
}

/*ボックス*/
#biz_sec {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 100px;
}
.bizBox {
	width: 100%;
	max-width: 1200px;
	padding: 80px 80px 80px 270px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 70px;
}
.bizBox > header {
	width: 120px;
	min-width: 120px;
	padding: 30px 20px;
	margin: 0;
	background-image: linear-gradient(to bottom, #0255d2 0%, #00c48b 100%);
	position: relative;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: -20px;
	left: 80px;
	z-index: 5;
}
#contents .bizBox > header > h2 {
	width: 100%;
	padding: 0 0 30px;
	margin: 0 auto 30px;
	background: none;
	border: none;
	border-radius: 0;
	position: relative;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-feature-settings: initial;
	font-size: 35px;
	line-height: 1.2em;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #fff;
	border-bottom: 1px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
#contents .bizBox > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 0.8rem;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	text-align: center;
	font-style: normal;
	white-space: nowrap;
}
.bizBox > figure {
	width: 40%;
	min-width: 40%;
	height: auto;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.bizBox > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.bizBox > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.bizBox_info {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .bizBox_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
#contents .bizBox_info > h3::before,
#contents .bizBox_info > h3::after {
	display: none;
}
.bizBox_info > p {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
@media screen and (max-width: 768px) {
	/*ボックス*/
	#biz_sec {
		width: 100%;
		padding: 50px;
		grid-row-gap: 50px;
	}
	.bizBox {
		width: 100%;
		max-width: 100%;
		padding: 30px;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	.bizBox > header {
		width: fit-content;
		min-width: fit-content;
		padding: 15px 20px;
		margin: 0;
		display: flex;
		flex-direction: unset;
		justify-content: flex-start;
		align-items: center;
		column-gap: 10px;
		position: absolute;
		top: -15px;
		left: -20px;
		z-index: 5;
	}
	#contents .bizBox > header > h2 {
		width: fit-content;
		padding: 0;
		margin: 0;
		background: none;
		border: none;
		border-radius: 0;
		position: relative;
		-webkit-writing-mode: unset;
		-ms-writing-mode: unset;
		writing-mode: unset;
		font-size: 30px;
		line-height: 1.2em;
		border-bottom: none;
	}
	#contents .bizBox > header > em {
		display: inline-block;
		width: auto;
		font-size: 14px;
	}
	.bizBox > figure {
		width: 100%;
		min-width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}
	.bizBox > figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	#contents .bizBox_info > h3 {
		margin: 0 auto 10px;
		font-size: 30px;
	}
}
@media screen and (max-width: 480px) {
	/*ボックス*/
	#biz_sec {
		width: 100%;
		padding: 40px 20px;
		grid-row-gap: 40px;
	}
	.bizBox {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px 20px;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	.bizBox > header {
		width: fit-content;
		min-width: fit-content;
		padding: 10px;
		margin: 0;
		display: flex;
		flex-direction: unset;
		justify-content: flex-start;
		align-items: center;
		column-gap: 10px;
		position: absolute;
		top: -20px;
		left: 0;
		z-index: 5;
	}
	#contents .bizBox > header > h2 {
		width: fit-content;
		padding: 0;
		margin: 0;
		background: none;
		border: none;
		border-radius: 0;
		position: relative;
		-webkit-writing-mode: unset;
		-ms-writing-mode: unset;
		writing-mode: unset;
		font-size: 17px;
		line-height: 1.2em;
		border-bottom: none;
	}
	#contents .bizBox > header > em {
		display: inline-block;
		width: auto;
		font-size: 10px;
	}
	.bizBox > figure {
		width: 100%;
		min-width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}
	.bizBox > figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	#contents .bizBox_info > h3 {
		margin: 0 auto 10px;
		font-size: 18px;
	}
}


/************************************************************/
/*　選ばれる理由
/************************************************************/
#reason_pv {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background-color: #f9f9fb;
	z-index: 0;
}
#reason_pv::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(250,251,252,1) 0%, rgba(250,251,252,1) 40%, rgba(250,251,252,1) 40%, rgba(250,251,252,0) 60%);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: auto 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
#reason_pv::after {
	content: '';
	display: block;
	width: 60%;
	height: 100%;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/reason_pv_bg.webp');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: auto 120%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -2;
}
.reason_pv_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.reason_pv_wrap::before {
	content: '';
	width: 700px;
	height: auto;
	aspect-ratio: 1217 / 500;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/reason_pv_img.webp');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: -1;
}
#contents .reason_pv_wrap > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	font-size: 50px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--main);
	text-align: left;
}
.reason_pv_wrap > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 18px;
	line-height: 1.7em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
@media screen and (max-width: 768px) {
	#reason_pv {
		width: 100%;
	}
	#reason_pv::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(to right, rgba(250,251,252,1) 0%, rgba(250,251,252,1) 40%, rgba(250,251,252,1) 40%, rgba(250,251,252,0) 100%);
		background-repeat: no-repeat;
		background-position: center left;
		background-size: auto 100%;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	}
	#reason_pv::after {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-position: bottom left;
		background-size: auto 100%;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -2;
	}
	.reason_pv_wrap {
		width: 100%;
		max-width: 100%;
		padding: 50px 50px 250px;
	}
	.reason_pv_wrap::before {
		content: '';
		width: calc(100% - 100px);
		height: auto;
		aspect-ratio: 1 / 0.35;
		background-position: center top;
		background-size: 100%;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 0);
		z-index: -1;
	}
	#contents .reason_pv_wrap > h2 {
		margin: 0 auto 15px;
		font-size: 5vw;
	}
	.reason_pv_wrap > p {
		font-size: 15px;
	}
}
@media screen and (max-width: 480px) {
	#reason_pv {
		width: 100%;
	}
	#reason_pv::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(to right, rgba(250,251,252,1) 0%, rgba(250,251,252,1) 40%, rgba(250,251,252,1) 40%, rgba(250,251,252,0) 100%);
		background-repeat: no-repeat;
		background-position: center left;
		background-size: auto 100%;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	}
	#reason_pv::after {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-position: bottom left;
		background-size: auto 100%;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -2;
	}
	.reason_pv_wrap {
		width: 100%;
		max-width: 100%;
		padding: 50px 20px 150px;
	}
	.reason_pv_wrap::before {
		content: '';
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 0.35;
		background-position: center top;
		background-size: 100%;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 0);
		z-index: -1;
	}
	#contents .reason_pv_wrap > h2 {
		margin: 0 auto 15px;
		font-size: 8vw;
	}
	.reason_pv_wrap > p {
		font-size: 14px;
	}
}

/*会社紹介*/
#reason_about {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	z-index: 0;
}
#reason_about::before {
	content: '';
	display: block;
	width: 200px;
	height: 100%;
	background: var(--grad);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#reason_about::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 0 0 0 200px;
}
.reason_about_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 70px;
}
.reason_about_info {
	width: calc(100% - 70px - 700px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .reason_about_info > h2 {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--main);
	text-align: left;
}
#contents .reason_about_info > h2 strong {
	font-size: 1.4em;
	font-weight: 700;
}
.reason_about_wrap > figure {
	width: 700px;
	min-width: 700px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
	overflow: hidden;
	border-radius: 0 50px 0 50px;
}
.reason_about_wrap > figure > span {
	display: block;
	width: calc((100% - 20px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.reason_about_wrap > figure > span::before {
	content: '';
	display: block;
	padding: 50%;
}
.reason_about_wrap > figure > span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
@media screen and (max-width: 768px) {
	/*会社紹介*/
	#reason_about {
		width: 100%;
	}
	#reason_about::before {
		display: none;
	}
	#reason_about::after {
		display: none;
	}
	.reason_about_wrap {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	.reason_about_info {
		width: 100%;
	}
	#contents .reason_about_info > h2 {
		margin: 0 auto 15px;
		font-size: 5vw;
	}
	.reason_about_wrap > figure {
		width: 100%;
		min-width: 100%;
		column-gap: 5px;
		overflow: hidden;
		border-radius: 0 20px 0 20px;
	}
	.reason_about_wrap > figure > span {
		display: block;
		width: calc((100% - 10px) / 3);
	}
}
@media screen and (max-width: 480px) {
	/*会社紹介*/
	#reason_about {
		width: 100%;
	}
	#reason_about::before {
		display: none;
	}
	#reason_about::after {
		display: none;
	}
	.reason_about_wrap {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.reason_about_info {
		width: 100%;
	}
	#contents .reason_about_info > h2 {
		margin: 0 auto 15px;
		font-size: 5vw;
	}
	.reason_about_wrap > figure {
		width: 100%;
		min-width: 100%;
		column-gap: 5px;
		overflow: hidden;
		border-radius: 0 20px 0 20px;
	}
	.reason_about_wrap > figure > span {
		display: block;
		width: calc((100% - 10px) / 3);
	}
}

/*特長*/
#reason_feature {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
#reason_feature > figure {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
}
#reason_feature > figure span:first-of-type {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 0 100px 0 100px;
}
#reason_feature > figure span:first-of-type::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#reason_feature > figure span:first-of-type img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#reason_feature > figure span:last-of-type {
	display: block;
	width: 50%;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: -100px;
	left: 50px;
	z-index: 1;
	overflow: hidden;
	text-align: center;
	border-radius: 100px 0 100px 0;
}
#reason_feature > figure span:last-of-type::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#reason_feature > figure span:last-of-type img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.reason_feature_info {
	width: 50%;
	padding: 0 100px;
	margin: 0;
	position: relative;
}
#contents .reason_feature_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-direction: column;
	flex-wrap: wrap;
	grid-row-gap: 10px;
}
#contents .reason_feature_info h2 > span {
	display: inline-block;
	padding: 6px 6px 8px;
	margin: 0 auto 0 0;
	background: var(--grad);
	border-radius: 5px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
#contents .reason_feature_info h2 > span strong {
	color: #fff44b;
}
.reason_license {
	width: 100%;
	padding: 30px;
	margin: 30px auto 0;
	background: var(--base);
	border-radius: 10px;
	position: relative;
}
#contents .reason_license > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
#contents .reason_license > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.reason_license > ul {
	width: 100%;
	padding: 20px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.reason_license > ul > li {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--main);
}
.reason_license > ul > li::before {
	content: '\f058';
	display: inline-block;
	margin-right: 5px;
	font-family: var(--font-awe);
	font-size: 20px;
	font-weight: 900;
	color: var(--main);
}
@media screen and (max-width: 768px) {
	/*特長*/
	#reason_feature {
		width: 100%;
		padding: 50px;
		flex-wrap: wrap;
		grid-row-gap: 50px;
	}
	#reason_feature > figure {
		width: 100%;
	}
	#reason_feature > figure span:first-of-type {
		display: block;
		width: 100%;
		border-radius: 0 50px 0 50px;
	}
	#reason_feature > figure span:last-of-type {
		display: block;
		width: 35%;
		bottom: -15px;
		left: 20px;
		z-index: 1;
		overflow: hidden;
		text-align: center;
		border-radius: 20px 0 20px 0;
	}
	.reason_feature_info {
		width: 100%;
		padding: 0;
	}
	#contents .reason_feature_info > h2 {
		margin: 0 auto 15px;
	}
	#contents .reason_feature_info h2 > span {
		display: inline-block;
		padding: 6px 6px 8px;
		border-radius: 5px;
		font-size: 30px;
	}
	.reason_license {
		width: 100%;
		padding: 20px;
		margin: 15px auto 0;
		border-radius: 10px;
	}
	#contents .reason_license > h2 {
		margin: 0 auto 15px;
		font-size: 3.5vw;
	}
	#contents .reason_license > p {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	.reason_license > ul {
		width: 100%;
		padding: 20px;
		margin: 0;
		background: #fff;
		border-radius: 10px;
		position: relative;
		list-style: none;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
	}
	.reason_license > ul > li {
		padding: 0;
		margin: 0;
		position: relative;
		font-size: 18px;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--main);
	}
	.reason_license > ul > li::before {
		content: '\f058';
		display: inline-block;
		margin-right: 5px;
		font-family: var(--font-awe);
		font-size: 20px;
		font-weight: 900;
		color: var(--main);
	}
}
@media screen and (max-width: 480px) {
	/*特長*/
	#reason_feature {
		width: 100%;
		padding: 40px 20px;
		flex-wrap: wrap;
		grid-row-gap: 30px;
	}
	#reason_feature > figure {
		width: 100%;
	}
	#reason_feature > figure span:first-of-type {
		display: block;
		width: 100%;
		border-radius: 0 50px 0 50px;
	}
	#reason_feature > figure span:last-of-type {
		display: block;
		width: 35%;
		bottom: -15px;
		left: 20px;
		z-index: 1;
		overflow: hidden;
		text-align: center;
		border-radius: 20px 0 20px 0;
	}
	.reason_feature_info {
		width: 100%;
		padding: 0;
	}
	#contents .reason_feature_info > h2 {
		margin: 0 auto 15px;
	}
	#contents .reason_feature_info h2 > span {
		display: inline-block;
		padding: 6px 6px 8px;
		border-radius: 5px;
		font-size: 20px;
	}
	.reason_license {
		width: 100%;
		padding: 20px;
		margin: 15px auto 0;
		border-radius: 10px;
	}
	#contents .reason_license > h2 {
		margin: 0 auto 15px;
		font-size: 4.5vw;
	}
	#contents .reason_license > p {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	.reason_license > ul {
		width: 100%;
		padding: 20px;
		margin: 0;
		background: #fff;
		border-radius: 10px;
		position: relative;
		list-style: none;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
	}
	.reason_license > ul > li {
		padding: 0;
		margin: 0;
		position: relative;
		font-size: 18px;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--main);
	}
	.reason_license > ul > li::before {
		content: '\f058';
		display: inline-block;
		margin-right: 5px;
		font-family: var(--font-awe);
		font-size: 20px;
		font-weight: 900;
		color: var(--main);
	}
}

/*レビュー*/
#reason_review {
	width: 100%;
	padding: 60px 0 100px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
#reason_review::before {
	content: '';
	display: block;
	width: 100%;
	height: 10px;
	background: var(--grad);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#reason_review > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#reason_review > header > em {
	display: block;
	width: 150px;
	height: auto;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#reason_review > header > em img {
	width: 100%;
	height: auto;
}
#contents #reason_review > header > h2 {
	position: relative;
	display: inline-block;
	background: #fff;
	border: 2px solid #ccc;
	border-radius: 20px;
	width: fit-content;
	padding: 10px 25px 12px;
	margin: 0 auto;
	box-sizing: border-box;
	font-size: 45px;
	line-height: 1.4em;
	text-align: center;
	font-weight: 900;
	color: var(--text);
}
#contents #reason_review > header > h2::before,
#contents #reason_review > header > h2::after{
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	pointer-events: none;
}
#contents #reason_review > header > h2::before{
	bottom: -13px;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-top: 11px solid #ccc;
}
#contents #reason_review > header > h2::after{
	bottom: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #fff;
}
#contents #reason_review > header > h2 strong {
	color: var(--orange);
}
@media only screen and (max-width: 768px){
	#reason_review {
		width: 100%;
		padding: 50px;
	}
	#reason_review > header {
		width: 100%;
		margin: 0 auto 20px;
		grid-row-gap: 10px;
	}
	#reason_review > header > em {
		display: block;
		width: 100px;
	}
	#reason_review > header > em img {
		width: 100%;
		height: auto;
	}
	#contents #reason_review > header > h2 {
		padding: 10px 15px 12px;
		font-size: 20px;
	}
}

@media only screen and (max-width: 480px){
	#reason_review {
		width: 100%;
		padding: 30px 20px;
	}
	#reason_review > header {
		width: 100%;
		margin: 0 auto 20px;
		grid-row-gap: 10px;
	}
	#reason_review > header > em {
		display: block;
		width: 100px;
	}
	#reason_review > header > em img {
		width: 100%;
		height: auto;
	}
	#contents #reason_review > header > h2 {
		padding: 10px 15px 12px;
		font-size: 16px;
	}
}

/*実績*/
#reason_result {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
	background: var(--base);
	position: relative;
	border-top: 10px solid #f9f9f9;
	border-bottom: 10px solid #f9f9f9;
}
.reason_result_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	overflow: hidden;
	border-radius: 20px;
	filter: var(--shade);
}
.reason_result_wrap > figure {
	width: 50%;
	height: auto;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.reason_result_wrap > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.reason_result_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.reason_result_info {
	width: 50%;
	padding: 50px;
	margin: 0;
	background: #fff;
	position: relative;
}
#contents .reason_result_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	border: none;
	background: none;
	position: relative;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
/*リスト*/
ul.check {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
ul.check > li {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
ul.check > li::before {
	content: '\f058';
	display: inline-block;
	margin-right: 5px;
	font-family: var(--font-awe);
	font-size: 20px;
	font-weight: 900;
	color: var(--sub);
}
@media screen and (max-width: 480px) {
	/*実績*/
	#reason_result {
		width: 100%;
		padding: 20px;
		border-top: 10px solid #f9f9f9;
		border-bottom: 10px solid #f9f9f9;
	}
	.reason_result_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		overflow: hidden;
		border-radius: 20px;
		filter: var(--shade);
	}
	.reason_result_wrap > figure {
		width: 100%;
		height: auto;
	}
	.reason_result_wrap > figure::before {
		content: '';
		display: block;
		padding-top: 65%;
	}
	.reason_result_info {
		width: 100%;
		padding: 20px;
	}
	#contents .reason_result_info > h2 {
		margin: 0 auto 15px;
		font-size: 20px;
	}
}

/*特長2*/
#reason_feature_2 {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background: #fafafa;
}
#reason_feature_2 > figure {
	width: 50%;
	max-width: 700px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 100px 0 0 100px;
}
#reason_feature_2 > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#reason_feature_2 > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.reason_feature_2_info {
	width: 50%;
	padding: 0 100px;
	margin: 0;
	position: relative;
}
#contents .reason_feature_2_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-direction: column;
	flex-wrap: wrap;
	grid-row-gap: 10px;
}
#contents .reason_feature_2_info h2 > span {
	display: inline-block;
	padding: 6px 6px 8px;
	margin: 0 auto 0 0;
	background: var(--grad);
	border-radius: 5px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
#contents .reason_feature_2_info h2 > span strong {
	color: #fff44b;
}
#contents .reason_feature_2_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
@media screen and (max-width: 768px) {
	/*特長2*/
	#reason_feature_2 {
		width: 100%;
		padding: 50px 0;
		flex-wrap: wrap;
		grid-row-gap: 20px;
	}
	#reason_feature_2 > figure {
		width: calc(100% - 100px);
		max-width: 100% ;
		padding: 0;
		margin: 0 0 0 auto;
		border-radius: 20px 0 0 20px;
	}
	.reason_feature_2_info {
		width: 100%;
		padding: 0 50px;
	}
	#contents .reason_feature_2_info > h2 {
		margin: 0 auto 15px;
	}
	#contents .reason_feature_2_info h2 > span {
		display: inline-block;
		padding: 6px 6px 8px;
		font-size: 30px;
	}
}
@media screen and (max-width: 480px) {
	/*特長2*/
	#reason_feature_2 {
		width: 100%;
		padding: 40px 0;
		flex-wrap: wrap;
		grid-row-gap: 20px;
	}
	#reason_feature_2 > figure {
		width: 90%;
		max-width: 90%;
		padding: 0;
		margin: 0 0 0 auto;
		border-radius: 20px 0 0 20px;
	}
	.reason_feature_2_info {
		width: 100%;
		padding: 0 20px;
	}
	#contents .reason_feature_2_info > h2 {
		margin: 0 auto 15px;
	}
	#contents .reason_feature_2_info h2 > span {
		display: inline-block;
		padding: 6px 6px 8px;
		font-size: 20px;
	}
}

/*地域密着*/
#reason_community {
	width: 100%;
	padding: 100px 50px;
	margin: 0 auto;
	position: relative;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/community_bg.webp');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	z-index: 0;
	overflow: hidden;
}
#reason_community::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#contents #reason_community > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	border: none;
	background: none;
	font-size: 35px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
#contents #reason_community > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 1em;
	font-size: 18px;
	line-height: 2;
	color: #fff;
	text-align: center;
}
#contents #reason_community > p:last-of-type {
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {
	/*地域密着*/
	#reason_community {
		width: 100%;
		padding: 50px;
	}
	#contents #reason_community > h2 {
		width: 100%;
		padding: 0;
		margin: 0 auto 25px;
		font-size: 4vw;
	}
	#contents #reason_community > p {
		width: 100%;
		padding: 0;
		margin: 0 auto 1em;
		font-size: 15px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#contents #reason_community > p:last-of-type {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 480px) {
	/*地域密着*/
	#reason_community {
		width: 100%;
		padding: 40px 20px;
	}
	#contents #reason_community > h2 {
		width: 100%;
		padding: 0;
		margin: 0 auto 25px;
		font-size: 6vw;
	}
	#contents #reason_community > p {
		width: 100%;
		padding: 0;
		margin: 0 auto 1em;
		font-size: 14px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#contents #reason_community > p:last-of-type {
		margin-bottom: 0;
	}
}

/*特長3*/
#reason_feature_3 {
	width: 100%;
	padding: 100px 0 150px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	z-index: 0;
}
#reason_feature_3::before {
	content: '';
	display: block;
	width: 400px;
	height: auto;
	aspect-ratio: 463 / 369;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/area.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	right: -20px;
	z-index: -1;
}
#reason_feature_3 > figure {
	width: 50%;
	max-width: 700px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 0 100px 100px 0;
}
#reason_feature_3 > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#reason_feature_3 > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.reason_feature_3_info {
	width: 50%;
	padding: 0 100px;
	margin: 0;
	position: relative;
	order: 1;
}
#contents .reason_feature_3_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-direction: column;
	flex-wrap: wrap;
	grid-row-gap: 10px;
}
#contents .reason_feature_3_info h2 > span {
	display: inline-block;
	padding: 6px 6px 8px;
	margin: 0 auto 0 0;
	background: var(--grad);
	border-radius: 5px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
#contents .reason_feature_3_info h2 > span strong {
	color: #fff44b;
}
#contents .reason_feature_3_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
@media screen and (max-width: 768px) {
	/*特長3*/
	#reason_feature_3 {
		width: 100%;
		padding: 50px 0 150px;
		flex-wrap: wrap;
		grid-row-gap: 30px;
		z-index: 0;
	}
	#reason_feature_3::before {
		content: '';
		display: block;
		width: 300px;
		height: auto;
		aspect-ratio: 463 / 369;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/area.webp');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100%;
		position: absolute;
		bottom: 0;
		right: -20px;
		z-index: -1;
	}
	#reason_feature_3 > figure {
		width: calc(100% - 100px);
		max-width: 100%;
		margin: 0 auto 0 0;
		border-radius: 0 50px 50px 0;
	}
	.reason_feature_3_info {
		width: 100%;
		padding: 0 50px;
	}
	#contents .reason_feature_3_info > h2 {
		margin: 0 auto 15px;
	}
	#contents .reason_feature_3_info h2 > span {
		display: inline-block;
		padding: 6px 6px 8px;
		font-size: 30px;
	}
}
@media screen and (max-width: 480px) {
	/*特長3*/
	#reason_feature_3 {
		width: 100%;
		padding: 40px 0 150px;
		flex-wrap: wrap;
		grid-row-gap: 30px;
		z-index: 0;
	}
	#reason_feature_3::before {
		content: '';
		display: block;
		width: 300px;
		height: auto;
		aspect-ratio: 463 / 369;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/area.webp');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100%;
		position: absolute;
		bottom: 0;
		right: -20px;
		z-index: -1;
	}
	#reason_feature_3 > figure {
		width: 90%;
		max-width: 90%;
		margin: 0 auto 0 0;
		border-radius: 0 50px 50px 0;
	}
	.reason_feature_3_info {
		width: 100%;
		padding: 0 20px;
	}
	#contents .reason_feature_3_info > h2 {
		margin: 0 auto 15px;
	}
	#contents .reason_feature_3_info h2 > span {
		display: inline-block;
		padding: 6px 6px 8px;
		font-size: 20px;
	}
}

/*お問い合わせ*/
#reason_contact {
	width: 100%;
	padding: 70px;
	margin: 0 auto;
	position: relative;
	background-repeat: #fff;
}
.reason_contact_box {
	width: 100%;
	max-width: 1200px;
	padding: 60px 70px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background-image: url('https://test-lup.coresv.com/wp-content/uploads/reason_contact_bg.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 60px;
}
.reason_contact_box::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(54,95,141,0.8);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.reason_contact_left {
	width: calc((100% - 60px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
.reason_contact_right {
	width: calc((100% - 60px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
	align-items: center;
	justify-content: center;
}
.reason_contact_left > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	column-gap: 20px;
}
#contents .reason_contact_left > header > h2 {
	width: fit-content;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: left;
}
#contents .reason_contact_left > header > em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	color: #fff;
	font-style: normal;
}
#contents .reason_contact_left > p {
	widows: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	font-size: 14px;
	line-height: 2;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#contents .reason_contact_left > p:last-of-type {
	margin-bottom: 0;
}
.reason_contact_right tel {
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	width: 100%;
	padding: 30px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
	transition: var(--ease);
}
.reason_contact_right tel:hover {
	opacity: 0.8;
	transition: var(--ease);
}
.reason_contact_right > tel > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	color: var(--text);
	text-decoration: none;
}
.reason_contact_right > tel > p {
	padding: 0;
	margin: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
	color: var(--text);
	white-space: nowrap;
}
.reason_contact_right > tel > p::before {
	content: '\f095';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
}
.reason_contact_right > tel > span {
	display: block;
	padding: 0;
	margin: 0 auto;
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
	text-align: center;
	white-space: nowrap;
}
.reason_contact_right > .contact {
	padding: 0;
	margin: 0;
	width: 100%;
}
.reason_contact_right > .contact > a {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	width: 100%;
	min-height: 112px;
	padding: 30px;
	margin: 0;
	background: var(--grad-full);
	border-radius: 10px;
	position: relative;
	transition: var(--ease);
	font-size: 25px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
	background-size: 200% auto;
	background-position: 0% center;
	transition: var(--ease);
}
.reason_contact_right > .contact > a:hover {
	background-position: 100% center;
	transition: var(--ease);
}
.reason_contact_right > .contact > a::before {
	content: '\f0e0';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
@media screen and (max-width: 768px) {
	/*お問い合わせ*/
	#reason_contact {
		width: 100%;
		padding: 50px;
	}
	.reason_contact_box {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		border-radius: 10px;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/reason_contact_bg.webp');
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		flex-wrap: wrap;
		grid-row-gap: 30px;
		column-gap: 30px;
	}
	.reason_contact_left {
		width: 100%;
	}
	.reason_contact_right {
		width: 100%;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
		align-items: center;
		justify-content: center;
	}
	.reason_contact_left > header {
		width: 100%;
		margin: 0 auto 20px;
		column-gap: 10px;
	}
	#contents .reason_contact_left > header > h2 {
		width: fit-content;
		font-size: 25px;
	}
	#contents .reason_contact_left > header > em {
		font-size: 12px;
	}
	#contents .reason_contact_left > p {
		font-size: 14px;
	}
	.reason_contact_right tel {
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
		width: 100%;
		padding: 20px;
	}
	.reason_contact_right > tel > p {
		font-size: 30px;
	}
	.reason_contact_right > tel > p::before {
		content: '\f095';
		display: inline-block;
		font-family: var(--font-awe);
		font-size: 20px;
		line-height: 1;
		font-weight: 900;
		color: var(--main);
	}
	.reason_contact_right > tel > span {
		display: block;
		padding: 0;
		margin: 0 auto;
		font-size: 12px;
		line-height: 1;
		font-weight: 500;
		color: var(--text);
		text-align: center;
		white-space: nowrap;
	}
	.reason_contact_right > .contact {
		padding: 0;
		margin: 0;
		width: 100%;
	}
	.reason_contact_right > .contact > a {
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 15px;
		width: 100%;
		min-height: unset;
		padding: 20px;
		margin: 0;
		background: var(--grad-full);
		border-radius: 10px;
		position: relative;
		transition: var(--ease);
		font-size: 25px;
		line-height: 1;
		font-weight: 700;
		color: #fff;
		text-decoration: none;
		transition: var(--ease);
		background-size: 200% auto;
		background-position: 0% center;
		transition: var(--ease);
	}
	.reason_contact_right > .contact > a:hover {
		background-position: 100% center;
		transition: var(--ease);
	}
	.reason_contact_right > .contact > a::before {
		content: '\f0e0';
		display: inline-block;
		font-family: var(--font-awe);
		font-size: 25px;
		line-height: 1;
		font-weight: 900;
		color: #fff;
	}
}
@media screen and (max-width: 480px) {
	/*お問い合わせ*/
	#reason_contact {
		width: 100%;
		padding: 30px 20px 20px;
	}
	.reason_contact_box {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
		border-radius: 10px;
		background-image: url('https://test-lup.coresv.com/wp-content/uploads/reason_contact_bg.webp');
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		flex-wrap: wrap;
		grid-row-gap: 30px;
		column-gap: 0;
	}
	.reason_contact_left {
		width: 100%;
	}
	.reason_contact_right {
		width: 100%;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
		align-items: center;
		justify-content: center;
	}
	.reason_contact_left > header {
		width: 100%;
		margin: 0 auto 20px;
		column-gap: 10px;
	}
	#contents .reason_contact_left > header > h2 {
		width: fit-content;
		font-size: 25px;
	}
	#contents .reason_contact_left > header > em {
		font-size: 12px;
	}
	#contents .reason_contact_left > p {
		font-size: 14px;
	}
	.reason_contact_right tel {
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
		width: 100%;
		padding: 20px;
	}
	.reason_contact_right > tel > p {
		font-size: 30px;
	}
	.reason_contact_right > tel > p::before {
		content: '\f095';
		display: inline-block;
		font-family: var(--font-awe);
		font-size: 20px;
		line-height: 1;
		font-weight: 900;
		color: var(--main);
	}
	.reason_contact_right > tel > span {
		display: block;
		padding: 0;
		margin: 0 auto;
		font-size: 12px;
		line-height: 1;
		font-weight: 500;
		color: var(--text);
		text-align: center;
		white-space: nowrap;
	}
	.reason_contact_right > .contact {
		padding: 0;
		margin: 0;
		width: 100%;
	}
	.reason_contact_right > .contact > a {
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 15px;
		width: 100%;
		min-height: unset;
		padding: 20px;
		margin: 0;
		background: var(--grad-full);
		border-radius: 10px;
		position: relative;
		transition: var(--ease);
		font-size: 25px;
		line-height: 1;
		font-weight: 700;
		color: #fff;
		text-decoration: none;
		transition: var(--ease);
		background-size: 200% auto;
		background-position: 0% center;
		transition: var(--ease);
	}
	.reason_contact_right > .contact > a:hover {
		background-position: 100% center;
		transition: var(--ease);
	}
	.reason_contact_right > .contact > a::before {
		content: '\f0e0';
		display: inline-block;
		font-family: var(--font-awe);
		font-size: 25px;
		line-height: 1;
		font-weight: 900;
		color: #fff;
	}
}


/************************************************************/
/*　固定バナー
/************************************************************/
.fixedNavSp {
	display: none;
}
@media screen and (max-width: 480px) {
	.fixedNavSp {
		display: flex;
		justify-content: center;
		width: 100%;
		height: 50px;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 50;
	}
	.fixedNavSp > li {
		width: 50%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.fixedNavSp > li.contact a {
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 6px;
		width: 100%;
		height: 100%;
		padding: 10px;
		margin: 0;
		background: #0255d2;
		text-align: center;
		font-size: 14px;
		line-height: 1;
		font-weight: 500;
		color: #fff;
	}
	.fixedNavSp > li.contact a::before {
		content: '\f0e0';
		display: inline;
		font-family: var(--font-awe);
	}
	.fixedNavSp > li.tel a {
		display: flex;
		justify-content: center;
		align-items: baseline;
		flex-wrap: wrap;
		column-gap: 3px;
		grid-row-gap: 5px;
		width: 100%;
		height: 100%;
		padding: 10px;
		margin: 0;
		background: #00c48b;
		text-align: center;
		font-size: 18px;
		line-height: 1;
		font-weight: 700;
		color: #fff;
	}
	.fixedNavSp > li.tel > a::before {
		content: '\f095';
		display: inline-block;
		font-family: var(--font-awe);
		font-size: 15px;
		line-height: 1;
		font-weight: 900;
		color: #fff;
	}
	.fixedNavSp > li.tel  a span {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto;
		text-align: center;
		font-size: 0.7rem;
	}
}
