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

/************************************************************/
/*　リセット
/************************************************************/
:root {
	--main: #076ab6;
	--sub:  #7dc3eb;
	--base: #d2ebff;
	--act:  #eb8332;
	--gray: #fafafa;
	--red:  #e12800;
	--yellow: #ffcd14;
	--text: #1f1f1f;
	--line: #04ad4b;
	--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: "Montserrat", sans-serif;
	--ease: all 0.3s ease;
}
*: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);
}


/*フォント*/
body,
p,
.articleBody p {
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
}
@media screen and (max-width: 768px){
	body,
	p,
	.articleBody p {
		font-size: 14px;
		font-weight: 500;
		line-height: 2;
	}
}

/*フォーム*/
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; }
}

/************************************************************/
/*　構成
/************************************************************/
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;
}

/*アーカイブ*/
.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: 1080px;
	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: 1080px;
	padding: 0 0 100px;
	margin: 0 auto;
}

/*1カラム*/
.pageContent.one-column {
	width: 100%;
	max-width: 1080px;
	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: 1080px;
	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: 1080px;
	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#main,
	body#sub {
		padding-top: 60px;
	}
	body#sub #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	
	/*アーカイブ*/
	.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; }

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

.more {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
.more > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	margin: 0;
	background: var(--main);
	border-radius: 5px;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
.more > a:hover {
	background: var(--act);
	transition: var(--ease);
}

/*テーブル*/
#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);
}

/*チェックリスト*/
ul.check {
	width: fit-content;
	padding: 0;
	margin: 1em auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	list-style: none;
}
ul.check > li {
	width: 100%;
	padding: 0 0 0 25px;
	margin: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 400;
	color: var(--text);
}
ul.check > li::before {
	content: '';
	display: block;
	width: 20px;
	min-width: 20px;
	height: auto;
	aspect-ratio: 1/1;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_checkbox.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 1px;
	left: 0;
}


/*More*/
.moreBtn {
	text-align: right;
}
.moreBtn.left {
	text-align: left;
}
..moreBtn.center {
	text-align: center;
}
.moreBtn > a {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
	width: fit-content;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	font-style: normal;
	text-decoration: none;
	transition: var(--ease);
}
.moreBtn > a::after {
	content: '';
	display: block;
	width: 9px;
	height: 6px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background: var(--text);
	transition: var(--ease);
}
.moreBtn > a:hover {
	color: var(--main);
	transition: var(--ease);
}
.moreBtn > a:hover::after {
	background: var(--main);
	transition: var(--ease);
}
/* - 白 */
.moreBtn > a.white {
	color: #fff;
}
.moreBtn > a.white::after {
	background: #fff;
}
.moreBtn > a.white:hover {
	opacity: 0.8;
	transition: var(--ease);
}
.moreBtn > a.white:hover::after {
	opacity: 0.8;
	transition: var(--ease);
}

.sp-more {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.sp-more {
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 10px;
		width: fit-content;
		padding: 10px 30px;
		margin: 30px auto 0;
		font-family: var(--font-en);
		font-size: 15px;
		line-height: 1;
		color: #fff;
		text-decoration: none;
		background: var(--text);
		transition: var(--ease);
	}
	.sp-more:hover {
		background: var(--main);
		transition: var(--ease);
	}
}

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

/*ページ*/
.contHead.page {
	width: 100%;
	max-width: 1080px;
	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: 768px){
	.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;
	}
}


/************************************************************/
/*　ページタイトル
/************************************************************/
#pv {
	width: 100%;
	height: 250px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 0;
}
#pv > figure {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	text-align: center;
	z-index: -1;
}
#pv > figure::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.3);
}
#pv > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#pv > header {
	width: 100%;
	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: center;
}
#contents #pv > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 40px;
	line-height: 1.2em;
	font-weight: 700;
	color: #fff;
	text-align: center;
	border: none;
	background: none;
	position: relative;
}
#contents #pv > header > h1.large {
	font-size: 40px;
	font-weight: 700;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#pv {
		width: 100%;
		height: 200px;
	}
	#pv > header {
		width: 100%;
		grid-row-gap: 10px;
	}
	#pv > header > em {
		font-size: 25px;
	}
	#contents #pv > header > h1 {
		font-size: 12px;
	}
	#contents #pv > header > h1.large {
		font-size: 20px;
		font-weight: 700;
	}
}


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

/*見出し*/
#contents .articleBody .content h1 {
	font-size: 2.8rem;
	margin-top: 0;
	margin-bottom: 1.5em;
}




/*パンくず*/
.breadcrumbs {
	width: 100%;
	max-width: 1080px;
	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: 1080px;
	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: var(--main);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パンくず*/
	.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;
	}
}

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

.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: 768px){
	.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%;
	padding: 0 0 15px;
	margin: 0;
	background: rgba(255,255,255,1);
	position: relative;
	z-index: 5;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
}
.header_top {
	width: 100%;
	max-width: 1080px;
	min-width: 1080px;
	padding: 20px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 30px;
}
#header .logo {
	width: fit-content;
	padding: 0;
	margin: 0 auto 0 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 8px;
}
#header .logo > p {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: left;
	font-size: 14px;
	line-height: 1;
}
#header .logo .siteInfo__title {
	width: auto;
	height: 47px;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
}
#header .logo .siteInfo__title a {
	display: block;
	height: 100%;
}
#header .logo .siteInfo__title img {
	display: block;
	width: auto;
	height: 100%;
	transition: var(--ease);
}
#header .logo .siteInfo__title img:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*電話*/
.tel {
	display: inline-flex;
	flex-direction: column;
	grid-row-gap: 0;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
.tel > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	text-align-last: justify;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
}
.tel > a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
	width: 100%;
	padding: 0;
	margin: 0 auto 2px;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--red);
	text-decoration: none;
	transition: var(--ease);
}
.tel > a {
	opacity: 0.8;
	transition: var(--ease);
}
.tel > a::before {
	content: '';
	display: block;
	width: auto;
	height: 22px;
	aspect-ratio: 43 / 25;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_free.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
.tel > a + p {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align-last: justify;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
}
.tel > a + p strong {
	display: inline-block;
	padding: 3px 5px 4px;
	margin: 0 0 0 7px;
	background: var(--yellow);
	font-size: 11px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
}

/*ボタン*/
.headerBtn {
	width: 330px;
	min-width: 330px;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 7px;
}
.headerBtn > p {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1;
	font-weight: 900;
	text-align-last: justify;
	white-space: nowrap;
}
.headerBtn > p strong {
	font-size: 1.2em;
	font-weight: 900;
}
.headerBtn > p span {
	font-family: var(--font-en);
	font-size: 1.2em;
	font-weight: 900;
}
.headerBtn > a {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	width: calc((100% - 10px) / 2);
	padding: 10px 10px;
	margin: 0;
	background: var(--act);
	border-radius: 5px;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 0 #c84604;
	transition: var(--ease);
}
.headerBtn > a:hover {
	transform: translateY(4px);
	transition: var(--ease);
}
.headerBtn > a.mail::before {
	content: '';
	display: inline-block;
	width: auto;
	height: 15px;
	aspect-ratio: 36 / 29;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_mail_w.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.headerBtn > a.mail:hover {
	box-shadow: 0 0 0 #c84604;
	transition: var(--ease);
}
/* - LINE */
.headerBtn > a.line {
	background: var(--line);
	box-shadow: 0 4px 0 #028c46;
}
.headerBtn > a.line::before {
	content: '';
	display: inline-block;
	width: auto;
	height: 20px;
	aspect-ratio: 157 / 150;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_line_w.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.headerBtn > a.line:hover {
	box-shadow: 0 0 0 #028c46;
	transition: var(--ease);
}

/*メインメニュー*/
#mainNav {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#menu-header-menu {
	width: 100%;
	max-width: 1080px;
	display: flex;
	justify-content: center;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#menu-header-menu > li {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	line-height: 1;
}
#menu-header-menu > li:first-child::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	background: var(--sub);
	position: absolute;
	top: 0;
	left: 0;
}
#menu-header-menu > li::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	background: var(--sub);
	position: absolute;
	top: 0;
	right: 0;
}
#menu-header-menu > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 30px;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#menu-header-menu > li a:hover {
	color: var(--act);
	transition: var(--ease);
	position: relative;
}
#menu-header-menu > li a::after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background: var(--act);
	position: absolute;
	bottom: -15px;
	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%;
		height: 60px;
		padding: 10px 65px 10px 20px;
		margin: 0;
		background: rgba(255,255,255,1);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-direction: unset;
	}
	#header .logo {
		width: 150px;
		height: auto;
		padding: 0;
		margin: 0 auto 0 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 8px;
	}
	#header .logo .siteInfo__title {
		width: 150px;
		height: auto;
	}
	#header .logo .siteInfo__title a {
		display: block;
		height: auto;
	}
	#header .logo .siteInfo__title img {
		display: block;
		width: 100%;
		height: auto;
		transition: var(--ease);
	}

	/*電話*/
	.tel {
		display: inline-flex;
		flex-direction: column;
		grid-row-gap: 0;
		width: fit-content;
	}
	.tel > p {
		margin: 0 auto 4px;
		font-size: 2vw;
	}
	.tel > a {
		margin: 0;
		font-family: var(--font-en);
		font-size: 4vw;
		column-gap: 3px;
	}
	.tel > a {
		opacity: 0.8;
		transition: var(--ease);
	}
	.tel > a::before {
		height: 12px;
	}
	.tel > a + p {
		display: none;
	}

	/*ボタン*/
	#header .headerBtn {
		display: none;
	}

	/*メインメニュー*/
	#mainNav {
		display: none;
	}
}


/************************************************************/
/*　ヘッダー 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: 768px){
}


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

/* ハンバーガー本体（右上固定） */
.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: 25px;
	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: 20px;
		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: #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: 20px;
		right: 20px;
		width: 25px;
		height: 20px;
	}
	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;
	}
}

/* モバイルメニュー */
.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){

	/*デザイン*/
	.panel_wrap {
		flex-wrap: wrap;
	}
	.panel_visual {
		display: none;
	}
	.panel_visual > h2 {
		width: 100%;
		font-size: 14px;
		gap: 10px;
	}
	.panel_visual > h2 img {
		width: 100px;
	}
	.panel_content {
		width: 100%;
		min-width: 100%;
		height: 100vh;
		padding: 60px 30px;
		flex-wrap: wrap;
		column-gap: 30px;
		grid-row-gap: 50px;
	}
	.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 var(--text);
	}
	#menu-panel-menu > li {
		text-align: center;
		border-bottom: 1px solid var(--text);
	}
	#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;
	}
	#menu-panel-menu > li a::after {
		display: none !important;
	}
}

/************************************************************/
/*　フッター
/************************************************************/
.footer {
	width: 100%;
	padding: 80px 50px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-top: 5px solid #eee;
}
body#sub .footer {
	padding: 80px 50px;
}
.footer_wrap {
	width: 100%;
	max-width: 1080px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 80px;
}
.footer_left {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
}
.footer_right {
	width: calc(100% - 80px - 400px);
	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;
}
.company_info dl dt {
	padding: 0;
	margin: 0 auto 10px;
	font-family: var(--font-min);
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	text-align: left;
}
.company_info dl dd {
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
.company_info dl dd > p {
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 1.5em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.company_info a {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
	text-decoration: none;
	transition: var(--ease);
}
.company_info .link::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	min-width: 10px;
	aspect-ratio: 1/1;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_blank.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.company_info a:hover {
	text-decoration: underline;
	opacity: 0.8;
	transition: var(--ease);
}

/* - 中央よせ */
.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;
	transform: var(--ease);
}
#menu-footer-menu > li a::after {
	content: '';
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 10px;
	height: 10px;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: relative;
	transform: rotate(-45deg);
}
#menu-footer-menu > li a:hover {
	opacity: 0.8;
	text-decoration: underline;
	transform: var(--ease);
}

/*SNS*/
#menu-footer-sns {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 20px;
}
#menu-footer-sns > li {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
#menu-footer-sns > 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;
	color: #fff;
	text-decoration: none;
	transform: var(--ease);
	transition: var(--ease);
}
#menu-footer-sns > li a span {
	display: inline-block;
	padding: 0;
	margin: 0;
}
#menu-footer-sns > li a span.dashicons {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#menu-footer-sns > li a:hover {
	opacity: 0.8;
	transform: var(--ease);
}

/*コピーライト*/
.container-copyright {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 30px auto 0;
}
.container-copyright .copyright {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
	border: none;
	text-align: center;
	font-family: var(--font-en);
	font-size: 10px;
	line-height: 1;
	color: var(--text);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.footer {
		width: 100%;
		padding: 40px 20px;
	}
	body#sub .footer {
		padding: 40px 20px;
	}
	.footer_wrap {
		width: 100%;
		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: 30px;
	}
	.company_info > h2 {
		width: 80%;
		text-align: center;
		margin: 0 auto;
	}

	.company_info dl {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.company_info dl dt {
		margin: 0 auto 10px;
		font-size: 18px;
		text-align: center;
	}
	.company_info dl dd {
		grid-row-gap: 5px;
	}
	.company_info dl dd > p {
		text-align: center;
	}
	.company_info .link::after {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		min-width: 10px;
		aspect-ratio: 1/1;
		background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_blank_w.svg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100%;
	}
	.company_info a:hover {
		text-decoration: underline;
		opacity: 0.8;
		transition: var(--ease);
	}

	/*メニュー*/
	#menu-footer-menu {
		margin: 0 auto 40px;
		column-gap: 20px;
		grid-row-gap: 10px;
		justify-content: center;
	}
	#menu-footer-menu > li {
		width: 80%;
	}
	#menu-footer-menu > li a {
		font-size: 16px;
	}

	/*SNS*/
	#menu-footer-sns {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
		justify-content: center;
	}

	/*コピーライト*/
	.container-copyright {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 30px auto 0;
	}
	.container-copyright .copyright {
		width: 100%;
		max-width: 100%;
		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;
}

/*お問い合わせ*/
.sid_contact {
	width: 100%;
	padding: 15px 10px 10px;
	margin: 0 auto;
	position: relative;
	background: var(--main);
	border-radius: 10px;
}
.sid_contact > dt {
	padding: 0;
	margin: 0 auto 15px;
	font-size: 22px;
	line-height: 1.3em;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
.sid_contact > dd {
	padding: 10px;
	margin: 0 auto;
	border-radius: 0 0 10px 10px;
	background: #fff;
	position: relative;
}
.sid_contact_btn {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 0;
	grid-row-gap: 10px;
}
.sid_contact_btn > li {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
	filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.1));
}
.sid_contact_btn > li a {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 5px;
	width: 100%;
	height: 100%;
	padding: 10px;
	margin: 0;
	border-radius: 35px;
	background: var(--sub);
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
.sid_contact_btn > li.contact a {
	background: var(--act);
}
.sid_contact_btn > li.assessment a {
	background: var(--main);
}
.sid_contact_btn > li.line a {
	background: var(--line);
}
.sid_contact_btn > li.contact a::before {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_mail_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.sid_contact_btn > li.assessment a::before {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_mail_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.sid_contact_btn > li.line a::before {
	content: '';
	display: block;
	width: 17px;
	height: 17px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_line_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.sid_contact_btn > li a:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
.sid_contact_btn > li a span {
	display: inline-block;
	padding: 5px;
	margin: 0 auto;
	font-size: 12px;
	line-height: 1;
	font-weight: bold;
	color: var(--main);
	background: #ffee00;
	border-radius: 5px;
}
/* - 電話番号*/
.sid_contact > dd > tel {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: none;
	grid-row-gap: 4px;
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	z-index: 0;
}
#contents .sid_contact > dd > tel > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	font-size: 13px;
	line-height: 1.3em;
	font-weight: bold;
	color: var(--text);
	text-align: center;
	background: none;
	border: none;
}
#contents .sid_contact > dd > tel > h2 strong {
	font-size: 18px;
	color: var(--sub);
}
/* - 電話番号*/
.sid_contact > dd > tel > a {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 5px;
	position: relative;
	font-family: var(--font-en);
	font-size: 24px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -0.05em;
	padding-right: 5px;
	color: var(--act);
	transition: var(--ease);
	white-space: nowrap;
	text-decoration: none;
}
.sid_contact > dd > tel > a:hover {
	filter: brightness(1.1);
	color: var(--act);
	transition: var(--ease);
}
.sid_contact > dd > tel > a::before {
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_free.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
.sid_contact > dd > tel > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
}

/*タイトル*/
#contents .aside > h2 {
	width: 100%;
	padding: 12px;
	margin: 0 auto 1px;
	background: var(--main);
	border-radius: 10px 10px 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;
}

/*カテゴリ*/
.side .iconmenu {
	width: 100%;
	padding: 10px;
	margin: 0 auto;
	border: none;
	background: rgba(0,0,0,0.05);
	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: 0;
	margin: 0 auto;
	background: var(--base);
	position: relative;
	overflow: hidden;
	z-index: 0;
}
#fv::before {
	content: '';
	display: block;
	width: 520px;
	height: auto;
	aspect-ratio: 1500 / 1685;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/fv_bg_1.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
#fv::after {
	content: '';
	display: block;
	width: 520px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/fv_bg_2.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.fv_wrap {
	width: 100%;
	max-width: 1080px;
	min-width: 1080px;
	padding: 30px 300px 60px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.fv_wrap::before {
	content: '';
	display: block;
	width: 500px;
	height: auto;
	aspect-ratio: 1000 / 1452;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/fv_people.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	position: absolute;
	bottom: 0;
	right: -100px;
	z-index: 0;
}
.fv_wrap::after {
	content: '';
	display: block;
	width: 250px;
	height: auto;
	aspect-ratio: 700 / 733;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/fv_bg_3.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 30px;
	right: -250px;
	z-index: 0;
}
#fv .fv_wrap > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	grid-row-gap: 10px;
	border: none;
	background: none;
}
#fv .fv_wrap > h2::before {
	content: '';
	display: block;
	width: 130px;
	height: auto;
	aspect-ratio: 300 / 204;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/fv_item.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	z-index: 0;
}
#fv .fv_wrap > h2 > span {
	display: inline-block;
	width: fit-content;
	padding: 5px 7px 7px;
	margin: 0;
	background: #fff;
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
}
#fv .fv_wrap > h2 > span b {
	color: var(--act);
}
#fv .fv_wrap > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	z-index: 0;
}
#fv .fv_wrap > h3::before {
	content: '';
	display: block;
	width: 200px;
	height: auto;
	aspect-ratio: 600 / 602;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/fv_badge.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: -100px;
	left: -180px;
	z-index: -1;
}
/*エリア*/
.fv_area {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	display: flex;
	justify-content: flex-start;
}
.fv_area dt {
	width: 170px;
	min-width: 170px;
	padding: 10px 20px;
	margin: 0;
	background: var(--main);
	border-radius: 10px 0 0 10px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
.fv_area dd {
	width: calc(100% - 170px);
	padding: 10px 20px;
	margin: 0;
	background: #fff;
	border: 3px solid var(--main);
	border-radius: 0 10px 10px 0;
	position: relative;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
	text-align: center;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.fv_area dd a {
	display: inline-block;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
.fv_area dd a:hover {
	display: inline-block;
	color: var(--act);
	text-decoration: underline;
	transition: var(--ease);
}
.fv_time {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
}
.fv_feature {
	width: calc(100% - 50px);
	padding: 0;
	margin: 0;
}
#fv img {
	width: 100%;
	height: auto;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#fv {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		background: var(--base);
		position: relative;
		overflow: hidden;
		z-index: 0;
	}
	#fv::before {
		display: none;
	}
	#fv::after {
		display: none;
	}
	.fv_wrap {
		display: none;
	}
	#fv img {
		width: 100%;
		height: auto;
	}
	
	/*エリア*/
	#fv_mobile_area {
		width: 100%;
		padding: 0 20px;
		position: relative;
		z-index: 0;
	}
	#fv_mobile_area::before {
		content: '';
		display: block;
		width: 50%;
		height: auto;
		aspect-ratio: 961 / 669;
		background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/concept_bg.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	}
	.fv_area {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		flex-wrap: wrap;
		position: relative;
		top: -20px;
	}
	.fv_area dt {
		width: 100%;
		min-width: 100%;
		padding: 10px 20px;
		font-size: 4vw;
		border-radius: 10px 10px 0 0;
		background: var(--act);
	}
	.fv_area dd {
		width: 100%;
		padding: 15px 20px;
		margin: 0;
		border-radius: 0 0 10px 10px;
		font-size: 4vw;
		border-color: var(--act);
	}
}


/************************************************************/
/*　CTA
/************************************************************/
.cta {
	width: 100%;
	padding: 30px 0;
	margin: 0 auto;
	position: relative;
	background: var(--base);
}
.ctaBox {
	width: 100%;
	max-width: 1080px;
	min-width: 1080px;
	padding: 35px;
	margin: 0 auto;
	border: 5px solid var(--main);
	border-radius: 10px;
	background-image: linear-gradient(to bottom, #fff 0%, #ffffc8 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 35px;
}

/*FV下*/
.cta:first-of-type {
	padding: 0;
	background: none;
	position: relative;
	z-index: 1;
}
.cta:first-of-type .ctaBox {
	transform: translateY(-30px);
}

/* - 背景 */
#main .articleBody {
	position: relative;
	z-index: 0;
}
#main .articleBody::before {
	content: '';
	display: block;
	width: 50%;
	height: auto;
	aspect-ratio: 961 / 669;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/concept_bg.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

/*電話*/
.cta .tel > p {
	margin: 0 auto 7px;
	font-size: 25px;
}
.cta .tel > a {
	column-gap: 8px;
	margin: 0 auto 5px;
	font-size: 50px;
}
.cta .tel > a::before {
	height: 35px;
}
.cta .tel > a + p {
	font-size: 25px;
	margin: 0 auto;
}
.cta .tel > a + p strong {
	padding: 5px 7px 7px;
	margin: 0 0 0 10px;
	font-size: 15px;
}

/*ボタン*/
.cta .headerBtn {
	width: 500px;
	min-width: 500px;
	column-gap: 20px;
	grid-row-gap: 10px;
}
.cta .headerBtn > p {
	font-size: 22px;
	margin: 0 auto;
}
.cta .headerBtn > p strong {
	font-size: 1.2em;
	font-weight: 900;
}
.cta .headerBtn > p span {
	font-family: var(--font-en);
	font-size: 1.2em;
	font-weight: 900;
}
.cta .headerBtn > a {
	column-gap: 10px;
	width: calc((100% - 20px) / 2);
	padding: 15px;
	border-radius: 10px;
	font-size: 20px;
}
.cta .headerBtn > a.mail::before {
	height: 20px;
}
/* - LINE */
.cta .headerBtn > a.line::before {
	height: 30px;
}

/*固定バナー*/
.fixedBanner {
	width: 280px;
	min-width: 280px;
	padding: 0;
	margin: 0;
	position: fixed;
	bottom: 50px;
	right: 0;
	z-index: 100;
}
.fixedBanner img {
	width: 100%;
	height: auto;
	transition: var(--ease);
}
.fixedBanner img:hover {
	opacity: 0.8;
	transition: var(--ease);
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.cta {
		width: 100%;
		padding: 20px;
	}
	.ctaBox {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 20px;
		flex-wrap: wrap;
		grid-row-gap: 15px;
		column-gap: 0;
	}

	/*FV下*/
	.cta:first-of-type {
		padding: 0 20px 20px;
	}
	.cta:first-of-type .ctaBox {
		transform: unset;
	}

	/* - 背景 */
	#main .articleBody {
		position: relative;
		z-index: 0;
	}
	#main .articleBody::before {
		display: none;
	}

	/*電話*/
	.cta .tel > p {
		margin: 0 auto 7px;
		font-size: 5vw;
	}
	.cta .tel > a {
		column-gap: 8px;
		margin: 0 auto 5px;
		font-size: 8.5vw;
		white-space: nowrap;
		justify-content: center;
		align-items: baseline;
	}
	.cta .tel > a::before {
		height: 25px;
	}
	.cta .tel > a + p {
		font-size: 25px;
		margin: 0 auto;
	}
	.cta .tel > a + p strong {
		padding: 5px 7px 7px;
		margin: 0 0 0 10px;
		font-size: 15px;
	}

	/*ボタン*/
	.cta .headerBtn {
		width: 100%;
		min-width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	.cta .headerBtn > p {
		font-size: 3.5vw;
		margin: 0 auto;
		text-align-last: center;
		text-align: center;
	}
	.cta .headerBtn > p strong {
		font-size: 1em;
		font-weight: 900;
	}
	.cta .headerBtn > p span {
		font-family: var(--font-en);
		font-size: 1.2em;
		font-weight: 900;
	}
	.cta .headerBtn > a {
		column-gap: 10px;
		width: calc((100% - 10px) / 2);
		padding: 10px;
		border-radius: 10px;
		font-size: 14px;
	}
	.cta .headerBtn > a.mail::before {
		height: 15px;
	}
	/* - LINE */
	.cta .headerBtn > a.line::before {
		height: 20px;
	}

	/*固定バナー*/
	.fixedBanner {
		width: 280px;
		min-width: 280px;
		padding: 0;
		margin: 0;
		position: fixed;
		bottom: 50px;
		right: 0;
		z-index: 100;
	}
	.fixedBanner img {
		width: 100%;
		height: auto;
		transition: var(--ease);
	}
	.fixedBanner img:hover {
		opacity: 0.8;
		transition: var(--ease);
	}
}


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

/*電話*/
#contactHead {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#contactHead > tel {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: none;
	grid-row-gap: 4px;
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	z-index: 0;
}
#contactHead > tel > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.3em;
	font-weight: bold;
	color: var(--text);
	text-align: center;
	background: none;
	border: none;
}
#contactHead > tel > p strong {
	font-size: 20px;
	color: var(--sub);
}
/* - 電話番号*/
#contactHead > tel > a {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 5px;
	position: relative;
	font-family: var(--font-en);
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: normal;
	padding-right: 5px;
	color: var(--act);
	transition: var(--ease);
	white-space: nowrap;
	text-decoration: none;
}
#contactHead > tel > a:hover {
	filter: brightness(1.1);
	color: var(--act);
	transition: var(--ease);
}
#contactHead > tel > a::before {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_free.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#contactHead > tel > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
}
/*LINE*/
#contactHead > a.line {
	display: inline-flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 5px;
	width: fit-content;
	height: auto;
	padding: 15px 30px;
	margin: 0 auto;
	border-radius: 35px;
	background: var(--line);
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#contactHead > a.line::before {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_mail_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#contactHead > a.line::before {
	content: '';
	display: block;
	width: 17px;
	height: 17px;
	padding: 0;
	margin: 0;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/icon_line_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#contactHead > a.line:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}

/*ボックス*/
#contents .formBox > h3 {
	width: 100%;
	margin: 0 auto 30px;
}
.formBox {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
	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;
	line-height: 1;
}
.formBox textarea {
	width: 100%;
	padding: 10px;
	margin: 0;
	border: 1px solid #ccc;
	background: #fafafa;
	line-height: 1.6;
}
.formBox input.w50 {
	max-width: 50%;
}
.formBox input.w25 {
	max-width: 25%;
}

/*住所*/
.formBox .wpcf7-form-control-wrap[data-name="your-zip"],
.formBox .wpcf7-form-control-wrap[data-name="your-adress"] {
	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(--text);
	border-radius: 5px;
	border: none;
	font-size: 15px;
	color: #fff;
	cursor: pointer;
	transition: var(--ease);
}
.formBox input[type="submit"]:hover {
	background: var(--main);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ボックス*/
	.formBox {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
	.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;
	}
}


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

/*タイトル*/
#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);
}

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

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*タイトル*/
	#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: 50px 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#topConcept::after {
	content: '';
	display: block;
	width: 50%;
	height: auto;
	aspect-ratio: 961 / 669;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/concept_bg.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scale(-1,-1);
	z-index: -1;
}
#contents #topConcept > h2 {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 50px;
	border: none;
	background: none;
	position: relative;
	text-align: center;
	color: var(--main);
	font-size: 40px;
	font-weight: 900;
}
#contents #topConcept > h2 img {
	width: 100%;
	height: auto;
}
#contents #topConcept > h3 {
	width: 100%;
	padding: 0;
	margin: 50px auto 0;
	border: none;
	background: none;
	position: relative;
	text-align: center;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
}
#contents #topConcept > h3::before,
#contents #topConcept > h3::after {
	display: none;
}
#contents #topConcept > h3 strong {
	color: var(--act);
	font-weight: 900;
}
.marker {
	background: linear-gradient(transparent 65%, #ffcd14 65%);
	display: inline;
}

/*カテゴリリスト*/
.categoryList {
	width: 100%;
	max-width: 1080px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 40px;
	z-index: 5;
}
.categoryList > li {
	width: calc((100% - 60px) / 4);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.categoryList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
}
.categoryList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 5px;
}
.categoryList > li > figure.no {
	border: 1px solid #aaa;
}
.categoryList > li > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.categoryList > 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);
}
.categoryList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#contents .categoryList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 700;
	text-align: center;
	color: var(--text);
	transition: var(--ease);
}
#contents .categoryList > li > h3::before,
#contents .categoryList > li > h3::after {
	display: none;
}
#contents .categoryList > li:hover > h3 {
	color: var(--act);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topConcept {
		width: 100%;
		padding: 20px 20px 40px;
	}
	#contents #topConcept > h2 {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 30px;
		font-size: 5vw;
	}
	#contents #topConcept > h3 {
		margin: 30px auto 0;
		font-size: 6vw;
	}

	/*カテゴリリスト*/
	.categoryList {
		width: 100%;
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	.categoryList > li {
		width: calc((100% - 20px) / 2);
		grid-row-gap: 8px;
	}
	#contents .categoryList > li > h3 {
		font-size: 3vw;
	}
}


/************************************************************/
/*　選ばれる理由
/************************************************************/
#topReason {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: var(--base);
	position: relative;
	z-index: 0;
}
#contents #topReason > h2 {
	width: 100%;
	max-width: 700px;
	padding: 0;
	margin: 0 auto 50px;
	border: none;
	background: none;
	position: relative;
	text-align: center;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--main);
	text-shadow:
		2px 2px 0 #fff,
		-2px 2px 0 #fff,
		2px -2px 0 #fff,
		-2px -2px 0 #fff;
}
#contents #topReason > h2 img {
	width: 100%;
	height: auto;
}

/*リスト*/
.reasonList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 60px;
	grid-row-gap: 60px;
}
.reasonList > li {
	width: calc((100% - 60px) / 2);
	padding: 30px;
	margin: 0;
	background: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	border-radius: 20px;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.02);
}
#contents .reasonList > li h3 {
	width: 100%;
	height: 2.4em;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--main);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -0.7em;
	left: 0;
	z-index: 5;
	text-shadow: 
		2px  2px 0 #fff,
		-2px  2px 0 #fff,
		2px -2px 0 #fff,
		-2px -2px 0 #fff,
		2px  0px 0 #fff,
		-2px  0px 0 #fff,
		0px  2px 0 #fff,
		0px -2px 0 #fff;
}
#contents .reasonList > li h3::before,
#contents .reasonList > li h3::after {
	display: none;
}
.reasonList > li figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.reasonList > li figure::before {
	content: '';
	display: block;
	padding-top: 50%;
}
.reasonList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.reasonList > li > p {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReason {
		width: 100%;
		padding: 40px 20px;
	}
	#contents #topReason > h2 {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 50px;
		font-size: 20px;
	}

	/*リスト*/
	.reasonList {
		width: 100%;
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	.reasonList > li {
		width: 100%;
		padding: 20px;
		grid-row-gap: 15px;
	}
	#contents .reasonList > li h3 {
		font-size: 4.5vw;
	}
}


/************************************************************/
/*　買取実績
/************************************************************/
#topPurchase {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
#topPurchase::after {
	content: '';
	display: block;
	width: 50%;
	height: auto;
	aspect-ratio: 961 / 669;
	background-image: url('https://test-chikyu.coresv.com/wp-content/uploads/concept_bg.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	transform: scale(1,-1);
	z-index: -1;
}
.mySwiper {
	padding: 20px 80px 50px;
	margin: 0 auto;
}
.purchaseList.sub {
	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;
}
.mySwiper .purchaseList {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	box-sizing: border-box;
}
.swiper-slide {
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 10px;
	padding: 25px;
	position: relative;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.02);
}

body#sub .purchaseList > li {
	width: calc((100% - 30px) / 2);
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 10px;
	padding: 25px;
	position: relative;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.02);
}
.purchaseList > li > .purchase-main-cat {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 9px 20px 10px;
	margin: 0;
	background: var(--main);
	border-radius: 35px;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	color: #fff;
	font-style: normal;
	font-weight: 700;
	white-space: nowrap;
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
}
.purchaseList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
.purchaseList > li > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.purchaseList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
	transform-origin: center;
}
.purchaseList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	object-fit: cover;
	transition: var(--ease);
	transform-origin: center;
}
#contents .purchaseList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 700;
	color: var(--text);
}
#contents .purchaseList > li > h3::before,
#contents .purchaseList > li > h3::after {
	display: none;
}
#contents .purchaseList > li > h3 a {
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 900;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	text-decoration: none;
	transition: var(--ease);
}
#contents .purchaseList > li > h3 a:hover {
	color: var(--act);
	transition: var(--ease);
}
.purchase-categories {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 5px;
}
.purchase-categories span {
	display: inline-block;
	padding: 0;
	margin: 0;
	line-height: 1;
}
.purchase-categories span a {
	font-size: 10px;
	line-height: 1;
	color: #777;
	text-decoration: none;
	transition: var(--ease);
}
#contents .purchaseList > li > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 12px;
	line-height: 1.7em;
	color: var(--text);
}

/*prenext*/
.swiper-button-prev {
	left: 25px;
}
.swiper-button-next {
	right: 25px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topPurchase {
		width: 100%;
		padding: 40px 0;
	}
	.mySwiper {
		padding: 20px 40px 30px;
		margin: 0 auto;
	}
	.purchaseList.sub {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 40px;
	}
	.mySwiper .purchaseList {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		list-style: none;
		box-sizing: border-box;
	}
	.swiper-slide {
		background: #fff;
		border: 2px solid #ddd;
		border-radius: 10px;
		padding: 20px;
		position: relative;
		box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.02);
	}

	body#sub .purchaseList > li {
		width: 100%;
		background: #fff;
		border: 2px solid #ddd;
		border-radius: 10px;
		padding: 20px;
		position: relative;
		box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.02);
	}
	.purchaseList > li > .purchase-main-cat {
		padding: 7px 15px 8px;
		border-radius: 30px;
		font-size: 14px;
		top: -14px;
	}

	/*prenext*/
	.swiper-button-prev {
		left: 8px;
	}
	.swiper-button-next {
		right: 8px;
	}
}

/************************************************************/
/*　ブログ・お知らせ
/************************************************************/
#topColumn {
	width: 100%;
	max-width: 1080px;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
	align-items: flex-start;
}
.topColumn_content {
	width: calc(100% - 250px - 50px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 70px;
}
.topColumn_content > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.topColumn_content > header > figure {
	width: 100%;
	height: auto;
}
#contents .topColumn_content > header > h2 {
	font-size: 35px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--main);
	text-align: center;
	padding: 0;
	margin: 0 auto 20px;
	border: none;
	background: none;
	position: relative;
}
/*エリア*/
.areaBox {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	display: flex;
	justify-content: flex-start;
}
.areaBox dt {
	width: 170px;
	min-width: 170px;
	padding: 10px 20px;
	margin: 0;
	background: var(--main);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
.areaBox dd {
	width: calc(100% - 170px);
	padding: 10px 20px;
	margin: 0;
	background: #fff;
	border: 3px solid var(--main);
	position: relative;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
	text-align: center;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.areaBox dd a {
	display: inline-block;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
.areaBox dd a:hover {
	display: inline-block;
	color: var(--act);
	text-decoration: underline;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topColumn {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
		align-items: flex-start;
	}
	.topColumn_content {
		width: calc(100%);
		grid-row-gap: 40px;
	}
	.topColumn_content > header {
		width: 100%;
		padding: 0;
	}
	#contents .topColumn_content > header > h2 {
		font-size: 4vw;
	}
	/*エリア*/
	.areaBox {
		flex-wrap: wrap;
		margin: 0 auto 10px;
		position: relative;
		z-index: 2
	}
	.areaBox dt {
		width: 100%;
		min-width: 100%;
		padding: 10px 20px;
		border-radius: 0;
		font-size: 4vw;
	}
	.areaBox dd {
		width: 100%;
		padding: 15px 20px;
		border: 3px solid var(--main);
		border-radius: 0;
		position: relative;
		font-size: 4vw;
	}
	.areaBox dd a {
		font-size: 4vw;
		display: inline-block;
		color: var(--text);
		text-decoration: none;
		transition: var(--ease);
	}
	.areaBox dd a:hover {
		display: inline-block;
		color: var(--act);
		text-decoration: underline;
		transition: var(--ease);
	}
}

/************************************************************/
/*　ブログ
/************************************************************/
.sec_news {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.sec_news > header {
	width: 100%;
	padding: 20px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	background: var(--main);
}
#contents .sec_news > header > h2 {
	width: calc(100% - 120px);
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
#contents .sec_news > header > a {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
}
/*リスト*/
.newsList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
body#sub .newsList {
	border-top: 1px dotted #ccc;
}
.newsList > li {
	width: 100%;
	padding: 30px 0;
	margin: 0 auto;
	border-bottom: 1px dotted #ccc;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 30px;
}
.newsList > li figure {
	width: 300px;
	min-width: 300px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.newsList > li figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.newsList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.newsList > li .newsList_info {
	width: calc(100% - 30px - 300px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.news-meta {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	column-gap: 10px;
}
.news-meta > span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 5px 8px 6px;
	margin: 0;
	background: var(--main);
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
}
.news-meta > time {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
}
#contents .newsList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
#contents .newsList_info > h3::before,
#contents .newsList_info > h3::after {
	display: none;
}
#contents .newsList_info > h3 a {
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#contents .newsList_info > h3 a:hover {
	color: var(--act);
	text-decoration: none;
	transition: var(--ease);
}
.newsList_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 12px;
	line-height: 1.7em;
	color: var(--text);
}
.tag-list {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 5px;
}
.tag-list span {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	color: #777;
	text-decoration: none;
	transition: var(--ease);
}
.tag-list span a {
	font-size: 10px;
	line-height: 1;
	color: #777;
	text-decoration: none;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.sec_news {
		width: 100%;
	}
	.sec_news > header {
		width: 100%;
		padding: 10px 20px;
		column-gap: 10px;
	}
	#contents .sec_news > header > h2 {
		width: calc(100% - 120px);
		font-size: 4vw;
	}
	#contents .sec_news > header > a {
		font-size: 12px;
	}
	/*リスト*/
	.newsList {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	body#sub .newsList {
		border-top: 1px dotted #ccc;
	}
	.newsList > li {
		width: 100%;
		padding: 20px 0;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	.newsList > li figure {
		width: 100%;
		min-width: 100%;
	}
	.newsList > li .newsList_info {
		width: 100%;
		grid-row-gap: 10px;
	}
	.news-meta {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: flex-start;
		column-gap: 10px;
	}
	.news-meta > span {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		padding: 5px 8px 6px;
		margin: 0;
		background: var(--main);
		font-size: 11px;
		line-height: 1;
		font-weight: 500;
		color: #fff;
	}
	.news-meta > time {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		padding: 0;
		margin: 0;
		font-size: 11px;
		line-height: 1;
		font-weight: 500;
		color: var(--text);
	}
	#contents .newsList_info > h3 {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		border: none;
		background: none;
		font-size: 18px;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--text);
	}
	#contents .newsList_info > h3::before,
	#contents .newsList_info > h3::after {
		display: none;
	}
	#contents .newsList_info > h3 a {
		font-size: 18px;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--text);
		text-decoration: none;
		transition: var(--ease);
	}
	#contents .newsList_info > h3 a:hover {
		color: var(--act);
		text-decoration: none;
		transition: var(--ease);
	}
	.newsList_info > p {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		font-size: 12px;
		line-height: 1.7em;
		color: var(--text);
	}
	.tag-list {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 5px;
	}
	.tag-list span {
		display: inline-block;
		padding: 0;
		margin: 0;
		font-size: 10px;
		line-height: 1;
		color: #777;
		text-decoration: none;
		transition: var(--ease);
	}
	.tag-list span a {
		font-size: 10px;
		line-height: 1;
		color: #777;
		text-decoration: none;
		transition: var(--ease);
	}
}


/************************************************************/
/*　実績詳細
/************************************************************/
.cat-image {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
.cat-image::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.cat-image img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.cat-content {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.cat-image {
		margin: 0 auto 40px;
	}
	.cat-content {
		margin: 0 auto 40px;
	}
}


/************************************************************/
/*　ご利用までの流れ
/************************************************************/
#flow {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

/*リスト*/
.flowList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 70px;
}
.flowList > li {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 30px;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
	border: 3px solid #eee;
}
.flowList > li::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	border-left: 3px dashed var(--act);
	position: absolute;
	top: 100px;
	left: 78px;
}
.flowList > li:last-child::before {
	display: none;
}
.flowList > li > em {
	display: block;
	width: 100px;
	min-width: 100px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	position: relative;
}
.flowList > li > em img {
	width: 100%;
	height: auto;
}
.flowList > li > figure {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 5px;
}
.flowList > li > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.flowList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.flowList_info {
	width: calc(100% - 30px - 100px - 30px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .flowList_info h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	border: none;
	background: none;
	position: relative;
	text-align: left;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
}
#contents .flowList_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	position: relative;
}
.flowList > li.none {
	width: 100%;
	height: 100px;
	padding: 30px;
	margin: 0 auto;
	border-radius: 10px;
	background: var(--act);
	text-align: center;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#flow {
		width: 100%;
		padding: 40px 20px;
	}
	/*リスト*/
	.flowList {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 40px;
	}
	.flowList > li {
		width: 100%;
		padding: 20px 20px 20px 70px;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 15px;
	}
	.flowList > li::before {
		content: '';
		display: block;
		width: 1px;
		height: calc(100% + 70px);
		border-left: 3px dashed var(--act);
		position: absolute;
		top: 50px;
		left: 33px;
	}
	.flowList > li > em {
		display: block;
		width: 50px;
		min-width: 50px;
		position: absolute;
		top: 10px;
		left: 10px;
	}
	.flowList > li > figure {
		width: 100%;
		min-width: 100%;
	}
	.flowList_info {
		width: calc(100%);
	}
	#contents .flowList_info h2 {
		margin: 0 auto 10px;
		font-size: 20px;
	}
	.flowList > li.none {
		width: 100%;
		height: 50px;
		padding: 15px;
		font-size: 20px;
	}
}


/************************************************************/
/*　エリア
/************************************************************/
.area_content {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 70px;
}
.area_content > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.area_content > header > figure {
	width: 100%;
	height: auto;
}
#contents .area_content > header > h2 {
	font-size: 35px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--main);
	text-align: center;
	padding: 0;
	margin: 0 auto 20px;
	border: none;
	background: none;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.area_content {
		width: calc(100%);
		grid-row-gap: 40px;
	}
	.area_content > header {
		width: 100%;
		padding: 0;
	}
	.area_content > header > dl {
		flex-wrap: wrap;
		margin: 0 auto 10px;
		position: relative;
		top: unset;
		left: unset;
		z-index: 2
	}
	.area_content > header > dl dt {
		width: 100%;
		min-width: 100%;
		padding: 10px 20px;
		border-radius: 0;
		font-size: 5vw;
	}
	.area_content > header > dl dd {
		width: 100%;
		padding: 15px 20px;
		border: 3px solid var(--main);
		border-radius: 0;
		position: relative;
	}
	#contents .area_content > header > dl dd > h2 {
		font-size: 3.5vw;
	}
	#contents .area_content > header > h2 {
		font-size: 4vw;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--main);
		text-align: center;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
		position: relative;
	}
}