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

/************************************************************/
/*　リセット
/************************************************************/
:root {
	--main: #a59984;
	--act:  #b75e37;
	--gray: #6c7172;
	--text: #1b1b1b;
	--line: #5ac263;
	--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-min: "Zen Old Mincho", 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);
	background: #f9f9f9;
}


/*フォント*/
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 0 0 180px;
	margin: 0 auto;
}
body#sub {
	padding-top: 70px;
}
body#sub #contents {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}

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

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

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

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

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

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

/*サイドバー*/
.side {
	width: 300px;
	min-width: 300px;
	padding: 100px 0;
	margin: 0;
	position: relative;
}
body#sub.single .side {
	width: 300px;
	min-width: 300px;
	padding: 0;
	margin: 0;
	position: relative;
}

/*== スマホ・タブレット対応 ==*/
@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: 40px 20px;
	}
	
	/*固定ページ*/
	.pageContent {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
	}
	.pageContent.full {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}

	/*1カラム*/
	.pageContent.one-columns {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
	}
	body#sub .pageContent.one-columns .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: 40px 20px;
		margin: 0 auto;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	body#sub.single .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}
	
	/*サイドバー*/
	.side {
		width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0 auto;
		display: none;
	}
	body#sub.single .side {
		width: 100%;
		min-width: 100%;
	}
}

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

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

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

/*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: 30px 50px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-bottom: 1px solid #f1f1f1;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
}
.contHead > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 65px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	font-style: normal;
	white-space: nowrap;
}
#contents .contHead > h2 {
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--text);
	border: none;
	background: none;
	position: relative;
}
.contHead > a.more {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
	width: fit-content;
	padding: 0;
	margin: 0 0 0 auto;
	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);
}
.contHead > a.more::after {
	content: '';
	display: block;
	width: 9px;
	height: 6px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background: var(--text);
	transition: var(--ease);
}
.contHead > a.more:hover {
	color: var(--main);
	transition: var(--ease);
}
.contHead > a.more:hover::after {
	background: var(--main);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.contHead {
		width: 100%;
		padding: 20px 20px;
		column-gap: 20px;
		grid-row-gap: 10px;
	}
	.contHead > em {
		font-size: 40px;
	}
	#contents .contHead > h2 {
		font-size: 14px;
	}
	.contHead > a.more {
		display: none;
	}
}


/************************************************************/
/*　ページタイトル
/************************************************************/
#pv {
	width: 100%;
	height: 450px;
	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: 50px;
	line-height: 1;
	font-weight: 600;
	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: 15px;
	line-height: 1.2em;
	font-weight: 500;
	color: #fff;
	text-align: center;
	border: none;
	background: none;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#pv {
		width: 100%;
		height: 250px;
	}
	#pv > header {
		width: 100%;
		grid-row-gap: 10px;
	}
	#pv > header > em {
		font-size: 25px;
	}
	#contents #pv > header > h1 {
		font-size: 12px;
	}
}


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

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

/*見出しデザイン上書き*/
#contents .articleBody .content h2 {
	width: 100%;
	padding: 0.6em;
	margin: 3em auto 1.2em;
	background: var(--main);
	border-radius: 0;
	font-size: 2vw;
	line-height: 1.4em;
	color: #fff;
	font-weight: 600;
}
#contents .articleBody .content h3 {
	border-bottom: 3px solid #e8e8e8;
	font-size: 1.8vw;
}
#contents .articleBody .content h4 {
	font-size: 1.8vw;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*見出しデザイン上書き*/
	#contents .articleBody .content h2 {
		font-size: 4vw;
	}
	#contents .articleBody .content h3 {
		border-bottom: 3px solid #e8e8e8;
		font-size: 3.5vw;
	}
	#contents .articleBody .content h4 {
		font-size: 3.5vw;
	}
}


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

/*PV用*/
#pv .breadcrumbs {
	width: 100%;
	max-width: 1200px;
	padding: 10px 0;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 5;
	color: #fff;
}
#pv .breadcrumbs > li a,
#pv .breadcrumbs > li::before {
	color: #fff;
}
#pv .breadcrumbs > li a:hover {
	color: 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: 180px;
	min-width: 180px;
	height: 100vh;
	padding: 50px 30px;
	margin: 0;
	background: rgba(255,255,255,0);
	border-right: 1px solid rgba(255,255,255,0.2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#header .logo {
	width: 100%;
	padding: 0;
	margin: 0 auto auto;
}
#header .logo .siteInfo__title {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
}
#header .logo .siteInfo__title img {
	width: 100%;
	height: auto;
	transition: var(--ease);
}
#header .logo .siteInfo__title img:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*メインメニュー*/
#mainNav {
	width: 100%;
	padding: 0;
	margin: auto auto 50px;
}
#menu-header-menu {
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#menu-header-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
	line-height: 1;
}
#menu-header-menu > li a {
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#menu-header-menu > li a::after {
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: #fff;
	transition: var(--ease);
	position: absolute;
	bottom: -3px;
	left: 0;
}
#menu-header-menu > li a:hover {
	color: #fff;
	transition: var(--ease);
	position: relative;
}
#menu-header-menu > li a:hover::after {
	width: 100%;
	transition: var(--ease);
}
/*ボタンメニュー*/
#btnNav {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#menu-header-btn {
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#menu-header-btn > li {
	padding: 0;
	margin: 0;
	position: relative;
	line-height: 1;
}
#menu-header-btn > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	margin: 0;
	background: rgba(255,255,255,1);
	border-radius: 5px;
	font-size: 12px;
	line-height: 1;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
	overflow: hidden;
}
#menu-header-btn > li.non a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	margin: 0;
	background: rgba(255,255,255,0);
	border-radius: 5px;
	font-size: 12px;
	line-height: 1;
	color: rgba(255,255,255,1);
	text-decoration: none;
	transition: var(--ease);
	overflow: hidden;
}
#menu-header-btn > li a:hover {
	background: var(--main);
	color: #fff;
	transition: var(--ease);
}
#menu-header-btn > li.non a:hover {
	background: var(--main);
	color: #fff;
	transition: var(--ease);
}

/*SNSメニュー*/
#snsNav {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#menu-header-sns {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#menu-header-sns > li {
	width: 20px;
	min-width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
}
#menu-header-sns > li a {
	display: block;
	padding: 0;
	margin: 0;
}
#menu-header-sns > li span {
	color: #fff;
	transition: var(--ease);
}
#menu-header-sns > li span:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		min-width: 100%;
		height: 60px;
		padding: 10px 20px;
		background: rgba(255,255,255,1);
		border: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		display: flex;
		flex-direction: unset;
		justify-content: flex-start;
		align-items: center;
		grid-row-gap: 0;
		column-gap: 20px;
	}
	#header.pc {
		display: none;
	}
	#header.sp {
		display: flex !important;
	}
	#header .logo {
		width: fit-content;
		height: 100%;
		margin: 0;
	}
	#header .logo .siteInfo__title {
		width: fit-content;
		height: 100%;
	}
	#header .logo .siteInfo__title a {
		display: flex;
	}
	#header .logo .siteInfo__title img {
		width: auto;
		height: 40px;
	}
	#header > p {
		padding: 0;
		margin: 0;
		font-size: 12px;
		line-height: 1.2em;
		font-family: var(--font-min);
		letter-spacing: normal;
	}
	/*メインメニュー*/
	#mainNav {
		display: none;
	}
	/*ボタンメニュー*/
	#btnNav {
		display: none;
	}
	/*SNSメニュー*/
	#snsNav {
		display: none;
	}
}


/************************************************************/
/*　ヘッダー Fix
/************************************************************/
body#sub #header.header-fix {
	display: none;
}
#header.header-fix {
	background: rgba(255,255,255,1);
	border-right: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
/*メインメニュー*/
#header.header-fix #menu-header-menu > li a {
	padding: 0;
	color: var(--text);
}
#header.header-fix #menu-header-menu > li a::after {
	background: var(--main);
}
#header.header-fix #menu-header-menu > li a:hover {
	color: var(--main);
}
/*ボタンメニュー*/
#header.header-fix #menu-header-btn > li a {
	background: #fff;
	border: 1px solid var(--text);
	color: var(--text);
}
#header.header-fix #menu-header-btn > li.non a {
	background: var(--text);
	color: #fff;
}
#header.header-fix #menu-header-btn > li a::before {
	background: var(--main);
}
#header.header-fix #menu-header-btn > li a:hover {
	background: var(--main);
	border: 1px solid var(--main);
	color: #fff;
	transition: var(--ease);
}
#header.header-fix #menu-header-btn > li.non a:hover {
	background: var(--main);
	color: #fff;
	transition: var(--ease);
}

/*SNSメニュー*/
#header.header-fix #menu-header-sns > li span {
	color: var(--main);
	padding: 0;
	transition: var(--ease);
}
#header.header-fix #menu-header-sns > li span:hover {
	opacity: 0.8;
	transition: var(--ease);
}

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


/************************************************************/
/*　ヘッダー サブページ
/************************************************************/
body#sub #header {
	width: 100%;
	min-width: 1050px;
	height: 70px;
	padding: 10px 125px 10px 50px;
	margin: 0;
	background: rgba(255,255,255,1);
	border-right: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	flex-direction: unset;
	justify-content: flex-end;
	align-items: center;
	grid-row-gap: 0;
	column-gap: 30px;
}
body#sub #header .logo {
	width: auto;
	height: 50px;
	padding: 0;
	margin: 0 auto 0 0;
}
body#sub #header .logo .siteInfo__title {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
}
body#sub #header .logo .siteInfo__title img {
	width: auto;
	height: 100%;
	transition: var(--ease);
}
/*メインメニュー*/
body#sub #mainNav {
	width: fit-content;
	padding: 0;
	margin: 0;
}
body#sub #menu-header-menu {
	display: flex;
	flex-direction: unset;
	justify-content: flex-end;
	align-items: center;
	grid-row-gap: 0;
	column-gap: 30px;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
/*ボタンメニュー*/
body#sub #btnNav {
	width: fit-content;
	padding: 0;
	margin: 0;
}
body#sub #menu-header-btn {
	display: flex;
	flex-direction: unset;
	justify-content: flex-end;
	align-items: center;
	grid-row-gap: 0;
	column-gap: 10px;
}
/*SNSメニュー*/
body#sub #snsNav {
	width: fit-content;
	padding: 0;
	margin: 0;
}
body#sub #menu-header-sns {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}

/*メインメニュー*/
body#sub #header #menu-header-menu > li a {
	padding: 0;
	color: var(--text);
}
body#sub #header #menu-header-menu > li a::after {
	background: var(--main);
}
body#sub #header #menu-header-menu > li a:hover {
	color: var(--main);
}
/*ボタンメニュー*/
body#sub #header #menu-header-btn > li a {
	background: #fff;
	border: 1px solid var(--text);
	color: var(--text);
}
body#sub #header #menu-header-btn > li.non a {
	background: var(--text);
	color: #fff;
}
body#sub #header #menu-header-btn > li a::before {
	background: var(--main);
}
body#sub #header #menu-header-btn > li a:hover {
	background: var(--main);
	border: 1px solid var(--main);
	color: #fff;
	transition: var(--ease);
}
body#sub #header #menu-header-btn > li.non a:hover {
	background: var(--main);
	color: #fff;
	transition: var(--ease);
}

/*SNSメニュー*/
body#sub #header #menu-header-sns > li span {
	color: var(--main);
	padding: 0;
	transition: var(--ease);
}
body#sub #header #menu-header-sns > li span:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	body#sub #header {
		width: 100%;
		min-width: 100%;
		height: 60px;
		padding: 10px 20px;
		justify-content: flex-start;
		column-gap: 20px;
	}
	body#sub #header .logo {
		width: fit-content;
		height: 100%;
		margin: 0;
	}
	body#sub #header .logo .siteInfo__title {
		width: fit-content;
		height: 100%;
	}
	body#sub #header .logo .siteInfo__title img {
		width: auto;
		height: 40px;
	}
	/*メインメニュー*/
	body#sub #mainNav {
		display: none;
	}
	/*ボタンメニュー*/
	body#sub #btnNav {
		display: none;
	}
	/*SNSメニュー*/
	body#sub #snsNav {
		display: none;
	}
}

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

/* ハンバーガー本体（右上固定） */
.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: #fff;
	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: #fff;
}
.hamburger.active span:nth-child(2) {
	transform: scaleX(1);
	background-color: #fff;
}
.hamburger.active span:nth-child(3) {
	transform: scaleX(0);
	transform-origin: right;
	background-color: #fff;
}

/* サブページ */
body#sub .hamburger {
	position: fixed;
	top: 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: #fff;
}
body#sub .hamburger.active span:nth-child(2) {
	background-color: #fff;
}
body#sub .hamburger.active span:nth-child(3) {
	background-color: #fff;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 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: #fff;
	}
	.hamburger.active span:nth-child(2) {
		transform: scaleX(1);
		background-color: #fff;
	}
	.hamburger.active span:nth-child(3) {
		transform: scaleX(0);
		transform-origin: right;
		background-color: #fff;
	}

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

/* モバイルメニュー（右からスライド） */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	background-color: rgba(0,0,0,1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 1000;
	padding: 100px 50px;
	overflow: hidden;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: var(--ease);
}
.mobile-menu.active {
	right: 0;
	opacity: 1;
	visibility: visible;
	transition: var(--ease);
}

/* メニューリスト */
#menu-panel-menu {
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
	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 {
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#menu-panel-menu > li a::after {
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: #fff;
	transition: var(--ease);
	position: absolute;
	bottom: -3px;
	left: 0;
}
#menu-panel-menu > li a:hover {
	color: #fff;
	transition: var(--ease);
	position: relative;
}
#menu-panel-menu > li a:hover::after {
	width: 100%;
	transition: var(--ease);
}


/************************************************************/
/*　フッター
/************************************************************/
.footer {
	width: 100%;
	padding: 80px 50px 80px calc(180px + 50px);
	margin: 0 auto;
	position: relative;
	background: #1b1b1b;
}
body#sub .footer {
	padding: 80px 50px;
}
.footer_wrap {
	width: 100%;
	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: 40px;
}
.company_info > h2 {
	width: 100px;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
}
.company_info > h2 img {
	width: 100%;
	height: auto;
}

.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;
	color: #fff;
	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;
	color: #fff;
	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;
	color: #fff;
	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-kishin.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 {
	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% - 100px) / 3);
	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;
	color: #fff;
	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-kishin.coresv.com/wp-content/uploads/icon_arrow_w.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: 30px;
	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: 0;
}
.container-copyright .copyright {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
	border: none;
	text-align: right;
	font-family: var(--font-en);
	font-size: 10px;
	line-height: 1;
	color: #fff;
}

/*== スマホ・タブレット対応 ==*/
@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: 100px;
		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-kishin.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: 20px;
	}
	#menu-footer-menu > li {
		width: calc((100% - 20px) / 2);
	}

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

	/*コピーライト*/
	.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 #secondary.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;
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#fv {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
	z-index: 0;
	padding: 0 0 0 180px;
}
.fv_info {
	width: 100%;
	height: 100%;
	padding: 50px 60px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
}
.fv_info > h2 {
	padding: 0;
	margin: 0;
	font-family: var(--font-min);
	font-size: 14px;
	line-height: 1;
	color: #fff;
	font-weight: 500;
	border: none;
	background: none;
	position: relative;
}
.fv_info_btm {
	width: 100%;
	padding: 0 0 0 50px;
	margin: auto auto 0;
	position: relative;
}
.fv_info_btm > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 150px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.fv_info_btm > header > h2 {
	padding: 0;
	margin: 0;
	font-family: var(--font-min);
	font-size: 45px;
	line-height: 1.3em;
	font-weight: 500;
	color: #fff;
	border: none;
	background: none;
	position: relative;
}
.fv_info_btm > header > p {
	padding: 0;
	margin: 0;
	font-family: var(--font-min);
	font-size: 16px;
	line-height: 1.4em;
	color: #fff;
	font-weight: 500;
}
.fv_info_btm > header > em {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	padding: 0;
	margin: 0;
	font-family: var(--font-min);
	font-size: 16px;
	line-height: 1;
	color: #fff;
	font-style: normal;
	font-weight: 500;
}
.fv_info_btm > header > em::before {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background: #fff;
}

/*News*/
.fv_news {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 15px 40px;
	margin: 0;
	background-color: rgba(255,255,255,0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	width: 700px;
	min-width: 700px;
	border-radius: 10px;
	position: relative;
}
.fv_news dt {
	width: fit-content;
	min-width: fit-content;
	padding: 0 40px 0 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-right: 1px solid rgba(255,255,255,0.5);
}
.fv_news dt a {
	font-size: 16px;
	font-family: var(--font-en);
	line-height: 1;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
}
.fv_news dd {
	width: 100%;
	padding: 0 0 0 40px;
	margin: 0;
	position: relative;
	line-height: 1;
}
.news-ticker {
	overflow: hidden;
	height: 2.5em; /* li の高さと合わせる */
	position: relative;
}
.fv_newsList {
	list-style: none;
	padding: 0;
	margin: 0;
}
.fv_newsList li {
	height: 2.5em;
	display: flex;
	align-items: center;
	position: relative;
}
.fv_newsList a {
	display: flex;
	gap: 15px;
	text-decoration: none;
	color: #fff;
	white-space: nowrap;
	position: relative;
	padding-right: 30px;
	transition: var(--ease);
}
.fv_newsList a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
.news-date {
	display: inline-block;
	font-size: 12px;
	opacity: 0.7;
	white-space: nowrap;
	width: fit-content;
	min-width: fit-content;
}
.news-title {
	display: block;
	font-size: 12px;
	overflow: hidden;
	transition: var(--ease);
}
.news-arrow {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%) rotate(-45deg);
}

/*Blog*/
.fv_blog {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
	padding: 20px;
	margin: 0;
	background-color: rgba(0,0,0,0.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	width: 450px;
	min-width: 450px;
	border-radius: 10px;
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index: 5;
	transition: var(--ease);
}
.fv_blog:hover {
	background-color: rgba(0,0,0,1);
	backdrop-filter: blur(0);
	-webkit-backdrop-filter: blur(0);
	transition: var(--ease);
}
.fv_blog::before {
	content: 'View more';
	display: inline-block;
	width: 100px;
	height: 1em;
	text-align: right;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 2;
	opacity: 0.5;
	transition: var(--ease);
}
.fv_blog:hover::before {
	opacity: 1;
	transition: var(--ease);
}
.fv_blog > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
.fv_blog > figure {
	width: calc(50% - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.fv_blog > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.fv_blog > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.fv_blog > h3 {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border: none;
	background: none;
	font-size: 14px;
	line-height: 1.4em;
	color: #fff;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#contents .fv_blog > h3::before,
#contents .fv_blog > h3::after {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	.fv_blog {
		display: none;
	}
}

/*copyright*/
#fv::after {
	content: '©KISHIN CO.';
	display: inline-block;
	font-size: 10px;
	font-family: var(--font-en);
	line-height: 1;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%) rotate(-90deg);
	transform-origin: center;
}

/*swiper*/
.fv-swiper,
#fv .swiper-wrapper,
.fv-slide {
	width: 100%;
	height: 100%;
}
.fv-slide picture,
.fv-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fv-swiper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.fv-swiper::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
/* フェード用 */
.swiper-fade .swiper-slide {
	transition-property: opacity;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#fv {
		width: 100%;
		height: calc(100vh - 60px);
		padding: 0;
	}
	.fv_info {
		width: 100%;
		height: 100%;
		padding: 80px 20px 20px;
		justify-content: flex-end;
	}
	.fv_info > h2 {
		display: none;
	}
	.fv_info_btm {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}
	.fv_info_btm > header {
		margin: 0 auto 100px;
		grid-row-gap: 15px;
	}
	.fv_info_btm > header > h2 {
		font-size: 8vw;
	}
	.fv_info_btm > header > p {
		font-size: 16px;
	}
	.fv_info_btm > header > em {
		font-size: 16px;
	}
	.fv_info_btm > header > em::before {
		width: 30px;
	}

	/*News*/
	.fv_news {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		align-items: center;
		grid-row-gap: 0;
		padding: 15px 15px 10px;
		width: 100%;
		min-width: 100%;
	}
	.fv_news dt {
		width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0;
		border-right: none;
	}
	.fv_news dt a {
		font-size: 16px;
	}
	.fv_news dd {
		width: 100%;
		padding: 0;
	}
	.news-ticker {
		overflow: hidden;
		height: 2em; /* li の高さと合わせる */
		position: relative;
	}
	.fv_newsList {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.fv_newsList li {
		height: 2em;
		display: flex;
		align-items: center;
		position: relative;
	}
	.fv_newsList a {
		gap: 10px;
	}
	.news-date {
		font-size: 12px;
	}
	.news-title {
		font-size: 12px;
	}

	/*Blog*/
	.fv_blog {
		display: flex;
		column-gap: 15px;
		padding: 20px;
		width: 100%;
		min-width: 100%;
		border-radius: 10px;
		position: relative;
		bottom: unset;
		right: unset;
	}
	.fv_blog::before {
		content: 'View more';
		display: inline-block;
		width: 100px;
		height: 1em;
		text-align: right;
		font-size: 10px;
		line-height: 1;
		color: #fff;
		position: absolute;
		bottom: 20px;
		right: 20px;
		z-index: 2;
		opacity: 0.5;
		transition: var(--ease);
	}
	.fv_blog > figure {
		width: 120px;
		padding: 0;
		margin: 0;
		position: relative;
		overflow: hidden;
		text-align: center;
	}
	.fv_blog > h3 {
		width: calc(100% - 15px - 120px);
		font-size: 12px;
	}
	
	/*copyright*/
	#fv::after {
		display: none;
	}

	/*swiper*/
	.fv-swiper,
	#fv .swiper-wrapper,
	.fv-slide {
		width: 100%;
		height: 100%;
	}
	.fv-slide picture,
	.fv-slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.fv-swiper {
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.fv-swiper::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.3);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
	}
	/* フェード用 */
	.swiper-fade .swiper-slide {
		transition-property: opacity;
	}
}


/************************************************************/
/*　トップページ アワード
/************************************************************/
#topAward {
	width: 100%;
	padding: 80px 50px;
	margin: 0;
	position: relative;
	background: #fff;
}
.awardList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 50px;
}
.awardList > li {
	width: calc((100% - 90px) / 4);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
}
.awardList > li > em {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
	width: 100%;
	padding: 0;
	margin: 0 auto 25px;
	position: relative;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	font-style: normal;
	white-space: nowrap;
}
.awardList > li > em::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #dddfdf;
}
.awardList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 25px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border: 1px solid #f3f4f4;
	box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
.awardList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.awardList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#contents .awardList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	border: none;
	background: none;
	position: relative;
	font-size: 10px;
	line-height: 1.2em;
	color: #6c7172;
	font-weight: 400;
	text-align: left;
}
#contents .awardList > li > h3::before,
#contents .awardList > li > h3::after {
	display: none;
}
#contents .awardList > li > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.7em;
	color: var(--text);
	text-align: left;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	#topAward {
		width: 100%;
		padding: 40px 20px;
	}
	.awardList {
		width: 100%;
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 30px;
	}
	.awardList > li {
		width: calc((100% - 20px) / 2);
	}
	.awardList > li > em {
		column-gap: 10px;
		margin: 0 auto 15px;
		font-size: 12px;
	}
	.awardList > li > figure {
		margin: 0 auto 15px;
	}
	#contents .awardList > li > h3 {
		margin: 0 auto 5px;
	}
	#contents .awardList > li > p {
		font-size: 14px;
		line-height: 1.6em;
	}
}


/************************************************************/
/*　トップページ 施工事例
/************************************************************/
#topWorks {
	width: 100%;
	padding: 80px 50px;
	margin: 0;
	position: relative;
}
/*検索*/
.works_search {
	width: 100%;
	max-width: 650px;
	padding: 0;
	margin: 0 auto 80px;
	background: #fff;
	position: relative;
	z-index: 10;
}
.works_search dt {
	width: 100%;
	height: 65px;
	padding: 20px 30px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	cursor: pointer;
}
.works_search dt::before {
	content: "\f002";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	color: var(--main);
}
.works_search dt::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	background: none;
	border-top: 1px solid var(--main);
	border-right: 1px solid var(--main);
	transform: rotate(135deg);
}
#contents .works_search dt h3 {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	text-align: center;
}
#contents .works_search dt h3::before,
#contents .works_search dt h3::after {
	display: none;
}
.works_search dd {
	width: 100%;
	padding: 20px;
	margin: 0;
	background: #fff;
	margin: 0;
	position: absolute;
	top: 65px;
	left: 0;
}
.works_search_list {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
}
.works_search_list > li {
	width: calc((100% - 20px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
	border-top: 1px solid #c0c0c0;
}
.works_search_list > li:nth-last-child(1),
.works_search_list > li:nth-last-child(2) {
	border-bottom: 1px solid #c0c0c0;
}
.works_search_list > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 20px;
	margin: 0;
	font-size: 12px;
	line-height: 1;
	color: var(--text);
	text-align: center;
	font-weight: 400;
	text-decoration: none;
	transition: var(--ease);
}
.works_search_list > li a:hover {
	color: var(--main);
	transition: var(--ease);
}

/*リスト*/
.worksList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 50px;
}
.worksList > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
}
.worksList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.worksList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.worksList > 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);
}
.worksList > li > figure:hover img {
	filter: brightness(1.05);
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#contents .worksList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 15px;
	line-height: 1.7em;
	color: var(--text);
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#contents .worksList > li > h3::before,
#contents .worksList > li > h3::after {
	display: none;
}
#contents .worksList > li > h3 a {
	font-size: 15px;
	line-height: 1.7em;
	color: var(--text);
	font-weight: 500;
	text-decoration: none;
	transition: var(--ease);
}
#contents .worksList > li > h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}
#contents .worksList > li > h3 span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	border: none;
	background: none;
	position: relative;
	font-family: var(--font-en);
	font-size: 10px;
	line-height: 1.2em;
	color: #6c7172;
	font-weight: 400;
	text-align: left;
}
/*カテゴリ*/
.works-categories {
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px;
}
.works-categories > span {
	display: inline-block;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
.works-categories > span a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 5px 10px;
	background: #fff;
	font-size: 10px;
	line-height: 1;
	color: #8d9396;
	white-space: nowrap;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	transition: color 0.3s ease;
	z-index: 0;
}
.works-categories > span a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--main);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	z-index: -1;
}
.works-categories > span a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.works-categories > span a span,
.works-categories > span a * {
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}
.works-categories > span a:hover {
	color: #fff;
}
.works-categories > span a:not(:hover)::before {
	transform-origin: right;
	transform: scaleX(0);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1380px){
	/*リスト*/
	.worksList {
		width: 100%;
		max-width: 100%;
		column-gap: 40px;
		grid-row-gap: 40px;
	}
	.worksList > li {
		width: calc((100% - 40px) / 2);
		grid-row-gap: 15px;
	}
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topWorks {
		width: 100%;
		padding: 20px 20px 40px;
	}
	/*検索*/
	.works_search {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 30px;
	}
	.works_search dt {
		width: 100%;
		height: 65px;
		padding: 20px 30px;
	}
	.works_search dd {
		width: 100%;
		padding: 20px;
	}
	.works_search_list {
		width: 100%;
		column-gap: 10px;
	}
	.works_search_list > li {
		width: calc((100% - 10px) / 2);
	}
	.works_search_list > li a {
		padding: 10px 10px;
		font-size: 12px;
	}

	/*リスト*/
	.worksList {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 40px;
	}
	.worksList > li {
		width: 100%;
		grid-row-gap: 15px;
	}
	.worksList > li > figure {
		width: 100%;
	}
}


/************************************************************/
/*　トップページ オリジナルガレージ
/************************************************************/
#topOriginal {
	width: 100%;
	padding: 80px 50px;
	margin: 0;
	position: relative;
	background: #fff;
}
#topOriginal > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
}
#topOriginal > header > em {
	display: block;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 40px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	font-style: normal;
	white-space: nowrap;
	text-align: center;
}
#contents #topOriginal > header > h2 {
	width: 500px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	border: none;
	background: none;
	position: relative;
}
#contents #topOriginal > header > h2 img {
	width: 100%;
	height: auto;
}
#contents #topOriginal > header > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}

/*バナーリスト*/
.bannerList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 50px;
}
.bannerList > li {
	width: calc((100% - 50px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
.bannerList > li img {
	width: 100%;
	height: auto;
	transition: var(--ease);
}
.bannerList > li img:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topOriginal {
		width: 100%;
		padding: 40px 20px;
	}
	#topOriginal > header {
		margin: 0 auto 30px;
		grid-row-gap: 20px;
	}
	#topOriginal > header > em {
		font-size: 40px;
	}
	#contents #topOriginal > header > h2 {
		width: 100%;
		max-width: 400px;
	}
	#contents #topOriginal > header > p {
		padding: 0;
		margin: 0 auto;
		text-align: center;
	}

	/*バナーリスト*/
	.bannerList {
		width: 100%;
		max-width: 100%;
		gap: 30px;
	}
	.bannerList > li {
		width: 100%;
	}
}


/************************************************************/
/*　トップページ 選ばれる理由
/************************************************************/
#topReason {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 0;
	background-image: url('https://test-kishin.coresv.com/wp-content/uploads/fv_1.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
#topReason::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: rgba(0,0,0,0.7);
}
.topReason_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background-color: rgba(0,0,0,0.9);
}

/*dl*/
.topReason_wrap > dl {
	width: 100%;
	padding: 80px;
	margin: 0 auto;
	position: relative;
}
.topReason_wrap > dl dt {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 30px;
}
.topReason_wrap > dl dt em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	font-style: normal;
}
#contents .topReason_wrap > dl dt h2 {
	padding: 0 0 0 30px;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	text-align: left;
	border-left: 1px solid #fff;
	border-radius: 0;
}
.topReason_wrap > dl dd {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
.topReason_wrap > dl dd > figure {
	width: 600px;
	min-width: 600px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
.topReason_wrap > dl dd > figure img {
	width: 100%;
	height: auto;
}
.topReason_wrap > dl dd > p {
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	padding: 0;
	margin: 0;
	color: #fff;
}

/*理由リスト*/
.topReason_num {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.topReason_num > header {
	width: 100%;
	padding: 0 100px 50px;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#contents .topReason_num > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: none;
	border: none;
	border-radius: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
	font-family: var(--font-min);
	font-size: 25px;
	line-height: 1;
	color: #fff;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
}
#contents .topReason_num > header > h2::before,
#contents .topReason_num > header > h2::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
}
.topReason_num > header > p {
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	width: 100%;
	padding: 0;
	margin: 0;
	color: #fff;
}
/* - リスト */
.reasonList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.reasonList > li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 15px;
	width: calc(100% / 4);
	height: auto;
	aspect-ratio: 1/1;
	padding: 20px;
	margin: 0;
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.reasonList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	cursor: pointer;
}
.reasonList > li > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	font-style: normal;
	text-align: center;
}
.reasonList > li > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-en);
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	font-style: normal;
	text-align: center;
}
#contents .reasonList > li > h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 3em;
	padding: 0;
	margin: 10px auto 0;
	border: none;
	background: none;
	position: relative;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 500;
	color: #fff;
	font-style: normal;
	text-align: center;
}
#contents .reasonList > li > h3::before,
#contents .reasonList > li > h3::after {
	display: none;
}
.reasonList > li figure {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	overflow: hidden;
}
.reasonList > li figure::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(0,0,0,0.6);
	transition: var(--ease);
}
.reasonList > 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;
}
.reasonList > li:hover figure::before {
	transition: var(--ease);
	background: rgba(0,0,0,0.3);
}
.reasonList > li:hover figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transition: var(--ease);
	transform-origin: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	.reasonList > li {
		width: calc(100% / 2);
	}
}


/*エクステリア・外観*/
.topReason_ex {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 50px;
	border: 1px solid rgba(255,255,255,0.4);
}
.topReason_ex > figure {
	width: 350px;
	min-width: 350px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topReason_ex > figure img {
	width: 100%;
	height: auto;
}
.topReason_ex_info {
	width: calc(100% - 50px - 350px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#contents .topReason_ex_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: none;
	border: none;
	border-radius: 0;
	position: relative;
	column-gap: 30px;
	font-family: var(--font-min);
	font-size: 25px;
	line-height: 1.4em;
	color: #fff;
	font-weight: 400;
	text-align: left;
}
.topReason_ex_info > p {
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	width: 100%;
	padding: 0;
	margin: 0;
	color: #fff;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReason {
		width: 100%;
		padding: 40px 20px;
		background-image: url('https://test-kishin.coresv.com/wp-content/uploads/fv_1_sp.webp');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}
	#topReason::before {
		background-color: rgba(0,0,0,0.7);
	}
	.topReason_wrap {
		width: 100%;
		max-width: 100%;
		padding: 0;
		background-color: rgba(0,0,0,0);
		display: flex;
		flex-direction: column;
		grid-row-gap: 40px;
	}

	/*dl*/
	.topReason_wrap > dl {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.topReason_wrap > dl dt {
		width: 100%;
		margin: 0 auto 30px;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 5px;
	}
	.topReason_wrap > dl dt em {
		display: block;
		width: 100%;
		font-size: 30px;
		font-weight: 600;
		text-align: center;
	}
	#contents .topReason_wrap > dl dt h2 {
		width: 100%;
		padding: 0;
		margin: 0;
		font-size: 14px;
		border-left: none;
		text-align: center;
	}
	.topReason_wrap > dl dd {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.topReason_wrap > dl dd > figure {
		width: 90%;
		min-width: 90%;
		max-width: 500px;
		margin: 0 auto 20px;
	}

	/*理由リスト*/
	.topReason_num {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.topReason_num > header {
		width: 100%;
		padding: 0 0 20px;
		grid-row-gap: 15px;
	}
	#contents .topReason_num > header > h2 {
		width: 100%;
		font-size: 20px;
		line-height: 1.4em;
		white-space: nowrap;
	}
	/* - リスト */
	.reasonList {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.reasonList > li {
		grid-row-gap: 10px;
		width: calc(100% / 2);
		height: auto;
		padding: 15px;
	}

	/*エクステリア・外観*/
	.topReason_ex {
		width: 100%;
		padding: 20px;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	.topReason_ex > figure {
		order: 1;
	}
	.topReason_ex_info {
		width: calc(100%);
		grid-row-gap: 15px;
		order: 0;
	}
	#contents .topReason_ex_info > h2 {
		column-gap: 30px;
		font-size: 5vw;
	}
}


/************************************************************/
/*　トップページ お知らせ
/************************************************************/
#topNews {
	width: 100%;
	padding: 80px 50px;
	margin: 0;
	position: relative;
}
/*リスト*/
.newsList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 50px;
}
.newsList > li {
	width: calc((100% - 90px) / 4);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
.newsList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	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;
	transform-origin: center;
	transition: var(--ease);
}
.newsList > li > figure:hover img {
	filter: brightness(1.05);
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#contents .newsList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 15px;
	line-height: 1.7em;
	color: var(--text);
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#contents .newsList > li > h3::before,
#contents .newsList > li > h3::after {
	display: none;
}
#contents .newsList > li > h3 a {
	font-size: 15px;
	line-height: 1.7em;
	color: var(--text);
	font-weight: 500;
	text-decoration: none;
	transition: var(--ease);
}
#contents .newsList > li > h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}
.news-meta {
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
.news-meta > span {
	display: inline-block;
	padding: 3px 7px;
	margin: 0;
	background: var(--gray);
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-weight: 400;
}
.news-meta > time {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 12px;
	line-height: 1;
	color: var(--gray);
}

.newsList > li.no-result {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: block;
	text-align: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	.newsList {
		column-gap: 40px;
	}
	.newsList > li {
		width: calc((100% - 80px) / 3);
	}
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topNews {
		width: 100%;
		padding: 40px 20px;
	}
	/*リスト*/
	.newsList {
		width: 100%;
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 30px;
	}
	.newsList > li {
		width: calc((100% - 20px) / 2);
		padding: 0;
		grid-row-gap: 10px;
	}
	#contents .newsList > li > h3 {
		font-size: 14px;
		line-height: 1.6em;
	}
	#contents .newsList > li > h3 a {
		font-size: 14px;
		line-height: 1.6em;
	}
}


/************************************************************/
/*　トップページ インスタグラム
/************************************************************/
#topInstagram {
	width: 100%;
	padding: 80px 50px;
	margin: 0;
	position: relative;
	background: #fff;
}
#topInstagram > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
}
#topInstagram > header i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	aspect-ratio: 1/1;
}
#topInstagram > header i img {
	width: 100%;
	height: auto;
}
#contents #topInstagram > header h2 {
	padding: 0;
	margin: 0;
	font-family: var(--fontg-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	border: none;
	background: none;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topInstagram {
		width: 100%;
		padding: 40px 20px;
	}
	#topInstagram > header {
		margin: 0 auto 20px;
	}
}

/************************************************************/
/*　トップページ インスタグラム
/************************************************************/
#topPages {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	background: #fff;
}
.pageList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1px;
}
.pageList > li {
	width: calc((100% - 2px) / 3);
	aspect-ratio: 16 / 9;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	grid-row-gap: 15px;
	z-index: 0;
}
.pageList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	cursor: pointer;
}
#contents .pageList > li > h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-family: var(--font-min);
	font-size: 20px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	font-style: normal;
	text-align: center;
}
.pageList > li > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-en);
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	font-style: normal;
	text-align: center;
}
.pageList > li figure {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	overflow: hidden;
}
.pageList > li figure::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(0,0,0,0.6);
	transition: var(--ease);
}
.pageList > 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;
}
.pageList > li:hover figure::before {
	transition: var(--ease);
	background: rgba(0,0,0,0.3);
}
.pageList > li:hover figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transition: var(--ease);
	transform-origin: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	.pageList > li {
		width: calc((100% - 1px) / 2);
	}
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topPages {
		width: 100%;
	}
	.pageList {
		width: 100%;
		gap: 1px;
	}
	.pageList > li {
		width: 100%;
		aspect-ratio: unset;
		padding: 40px 20px;
		grid-row-gap: 10px;
	}
	#contents .pageList > li > h2 {
		font-size: 20px;
	}
	.pageList > li > em {
		font-size: 12px;
	}
}


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

/*リスト*/
.faqList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-top: 1px solid #dddfdf;
}
.faqList > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #dddfdf;
	background: none;
}
.faqList > dl > dt {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
	width: 100%;
	padding: 20px 70px 20px 20px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 400;
	color: var(--text);
	position: relative;
	cursor: pointer;
	transition: var(--ease);
}
.faqList > dl > dt:hover {
	color: var(--main);
	transition: var(--ease);
}
.faqList > dl > dt::before {
	content: 'Q';
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	min-width: 30px;
	min-height: 30px;
	padding: 0;
	margin: 0;
	background: var(--main);
	border-radius: 50%;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	color: #fff;
	font-weight: 500;
}
.faqList > dl > dt span {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.faqList > dl > dt span::before {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: var(--text);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dt span::after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: var(--text);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(90deg);
	-webkit-transform: translate(-50%,-50%) rotate(90deg);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dt.active span::after {
	transform: translate(-50%,-50%) rotate(0deg);
	-webkit-transform: translate(-50%,-50%) rotate(0deg);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dd {
	margin: 0 auto 20px;
	padding: 25px 30px 25px 60px;
	background: none;
	border-radius: 5px;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
}
.faqList > dl > dd > p {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
}
.faqList > dl > dd > p:last-of-type {
	margin-bottom: 0;
}


/************************************************************/
/*　サイトマップ
/************************************************************/

/*リスト*/
#sitemap-menu {
	max-width: 900px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-top: 1px solid #c8c8c8;
	list-style: none;
}
#sitemap-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
	border-bottom: 1px solid #c8c8c8;
}
#sitemap-menu > li a {
	display: block;
	padding: 0.7em 2em 0.7em 1em;
	margin: 0;
	position: relative;
	font-size: 0.9em;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#sitemap-menu > li 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: 1em;
	transform: translate(0,-50%) rotate(45deg);
}
#sitemap-menu > li a:hover {
	color: var(--act);
	text-decoration: none;
	transition: var(--ease);
}


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

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

/*公開・更新日時*/
.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: #fff;
	font-size: 10px;
	line-height: 1;
	color: #8d9396;
	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(--main);
	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(--point-color);
	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(--point-color);
	border-radius: 50%;
}

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

/*関連記事*/
#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 > 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;
	}
}

/************************************************************/
/*　施工事例詳細
/************************************************************/
#works_visual {
	width: 100%;
	height: calc(100vh - 70px);
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#works_visual img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}