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

/************************************************************/
/*　リセット
/************************************************************/
:root {
	--main: #78d25a;
	--act:  #ff047d;
	--blue: #195aaa;
	--yellow: #ffff00;
	--orange: #f06e19;
	--green: #077d04;
	--gray: #6c7172;
	--text: #000000;
	--base: #f0ebd2;
	--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-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: #fff;
}


/*フォント*/
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: 15px;
		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;
}

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

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

/************************************************************/
/*　構成
/************************************************************/
#contents {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
body#main #contents {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
.full-container,
.full-container .main {
	width: 100%;
	max-width: 100%;
}
body#main .articleBody {
	margin: 0 auto;
}

.articleBody .wp-block-quote {
	margin: 0;
}

.archiveContent {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.archiveContent {
		width: 100%;
		padding: 40px 20px;
		margin: 0 auto;
		position: relative;
	}
}

/*固定ページ*/
.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.single .pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		column-gap: 0;
	}
	body#sub.single .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0 20px;
		margin: 0;
		position: relative;
	}
}

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

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

/************************************************************/
/*　タイトル
/************************************************************/
.contHead {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
}
#contents .contHead > h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	width: fit-content;
	padding: 20px 50px 30px;
	margin: 0 auto;
	position: relative;
	border: none;
	background: var(--main);
	box-shadow: 0 5px 0 #028c46;
	border-radius: 80px;
	font-size: 40px;
	line-height: 1.2em;
	font-weight: 900;
	color: #fff;
}
#contents .contHead > h2 i {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	aspect-ratio: 1/1;
}
#contents .contHead > h2 i img {
	width: 100%;
	height: auto;
}
#contents .contHead > h2 span {
	font-size: 45px;
	line-height: 1.2em;
	font-weight: 900;
	color: #fff;
	white-space: nowrap;
}
#contents .contHead > p {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	min-height: 40px;
	padding: 8px 30px;
	margin: 0 auto;
	background: #fff;
	border: 3px solid var(--blue);
	border-radius: 40px;
	font-size: 18px;
	line-height: 1.2em;
	text-align: center;
	font-weight: 700;
	color: var(--blue);
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 5;
	white-space: nowrap;
}
#contents .contHead > p strong {
	font-family: var(--font-en);
	font-weight: 900;
	color: var(--act);
	font-size: 25px;
	display: inline-block;
	margin-left: 5px;
	white-space: nowrap;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.contHead {
		width: 100%;
		margin: 0 auto 40px;
	}
	#contents .contHead > h2 {
		column-gap: 10px;
		padding: 15px 20px 15px;
		border-radius: 40px;
		font-size: 20px;
	}
	#contents .contHead > h2 i {
		width: 20px;
		height: 20px;
	}
	#contents .contHead > h2 span {
		font-size: 4.8vw;
	}
	#contents .contHead > p {
		min-height: 20px;
		padding: 5px 10px;
		border-radius: 40px;
		border: 1px solid var(--blue);
		font-size: 12px;
		white-space: nowrap;
		bottom: -20px;
		left: 50%;
		transform: translate(-50%,0);
		z-index: 5;
	}
	#contents .contHead > p strong {
		font-size: 10px;
		margin-left: 5px;
	}
}

/************************************************************/
/*　ページタイトル
/************************************************************/
#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: 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: 150px;
	}
	#pv > header {
		width: 100%;
		grid-row-gap: 10px;
	}
	#pv > header > em {
		font-size: 20px;
	}
	#contents #pv > header > h1 {
		font-size: 12px;
	}
}

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

/*パンくず*/
.page-top-breadcrumbs {
	width: 100%;
	padding: 30px 0 10px;
	margin: 0 auto;
}

/*パンくず*/
.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;
	}
	/*PV用*/
	#pv .breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 10px 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;
	}
}

/************************************************************/
/*　ヘッダー
/************************************************************/
#header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
}
.header_top {
	width: 100%;
	max-width: 1200px;
	padding: 20px 0 30px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
}
/*ロゴ*/
.logo {
	width: auto;
	height: 80px;
	aspect-ratio: 994 / 229;
	padding: 0;
	margin: 0 auto 0 0;
	position: relative;
}
.logo .siteInfo__title {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
}
.logo img {
	width: auto;
	height: 100%;
}
/*電話番号*/
.tel {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
.tel > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align-last: justify;
}
.tel > a {
	display: flex;
	justify-content: center;
	align-items: baseline;
	column-gap: 5px;
	font-family: var(--font-en);
	font-size: 35px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
.tel > a:hover {
	color: var(--act);
	text-decoration: none;
	transition: var(--ease);
}
.tel > a::before {
	content: '';
	display: block;
	width: auto;
	height: 25px;
	aspect-ratio: 66 / 38;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/icon_freed.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.tel > div {
	width: 100%;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align-last: justify;
}
.tel > div span {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
.tel > div span::after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 8px;
	padding: 0;
	margin: 0 5px;
	background: var(--text);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
/*ボタン*/
.header_btn {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
.header_btn > p {
	width: auto;
	padding: 0;
	margin: 0 auto 10px;
	display: flex;
	justify-content: center;
	align-items: baseline;
	font-size: 18px;
	line-height: 1;
	font-weight: 900;
	color: var(--blue);
	white-space: nowrap;
	position: relative;
}
.header_btn > p::before,
.header_btn > p::after {
	content: '';
	display: block;
	width: 2px;
	height: 18px;
	margin: 0 10px 0 0;
	border-radius: 2px;
	background: var(--blue);
	position: relative;
	transform: rotate(-18deg);
}
.header_btn > p::after {
	margin: 0 0 0 10px;
	transform: rotate(18deg) scale(1,-1);
}
.header_btn > p b {
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: var(--blue);
}
.header_btn > p small {
	font-size: 14px;
	font-weight: 900;
}
.header_btn > p strong {
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: var(--act);
}
.header_btn > p em {
	font-family: var(--font-en);
	font-style: normal;
	font-size: 22px;
	font-weight: 900;
}
/*ボタン*/
#menu-header-btn {
	display: inline-flex;
	justify-content: center;
	column-gap: 10px;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#menu-header-btn > li {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
#menu-header-btn > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 10px 20px;
	margin: 0;
	background: var(--orange);
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 4px 0 #c84604;
	transition: var(--ease);
}
#menu-header-btn > li a:hover {
	filter: brightness(1.1);
	transform: translateY(4px);
	box-shadow: 0 0 0 #c84604;
}
#menu-header-btn > li.line a {
	background: var(--line);
	box-shadow: 0 4px 0 #028c46;
}
#menu-header-btn > li.line a:hover {
	box-shadow: 0 0 0 #028c46;
}
#menu-header-btn .menu-image.menu-image-title-after {
	display: inline-block;
	padding: 0;
	margin: 0;
	width: auto;
	height: 30px;
}
#menu-header-btn .menu-image-title.menu-image-title-after {
	padding: 0;
	margin: 0;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}

/*メニュー*/
#mainNav {
	width: 100%;
	padding: 0 0 20px;
	margin: 0 auto;
	position: relative;
}
#menu-header-menu {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	border-right: 2px solid #000;
}
#menu-header-menu > li {
	width: fit-content;
	padding: 0 30px;
	margin: 0;
	position: relative;
	border-left: 2px solid #000;
}
#menu-header-menu > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	white-space: nowrap;
	text-decoration: none;
	transition: var(--ease);
}
#menu-header-menu > li a::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: var(--act);
	position: absolute;
	bottom: -20px;
	left: 0;
	transition: var(--ease);
}
#menu-header-menu > li a:hover {
	color: var(--act);
	text-decoration: none;
	transition: var(--ease);
}
#menu-header-menu > li a:hover::after {
	width: 100%;
	background: var(--act);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		height: 60px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
	}
	.header_top {
		width: 100%;
		max-width: 100%;
		padding: 10px 10px;
		column-gap: 10px;
	}
	/*ロゴ*/
	.logo {
		height: 40px;
	}
	.logo .siteInfo__title a {
		display: inline-block;
		height: 40px;
	}
	/*電話番号*/
	.tel {
		width: fit-content;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 5px;
	}
	.tel > p {
		display: none;
	}
	.tel > a {
		font-size: 20px;
		justify-content: flex-end;
	}
	.tel > a::before {
		height: 15px;
	}
	.tel > div {
		font-size: 0.8rem;
		letter-spacing: 0;
	}
	/*ボタン*/
	.header_btn {
		display: none;
	}

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


/************************************************************/
/*　ヘッダー Fix
/************************************************************/
#header.header-fix {
	position: fixed;
}

/*== スマホ・タブレット対応 ==*/
@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;
	display: none;
}
.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;
}

/* モバイルメニュー（右からスライド） */
.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);
}


/* スマホ表示 */
@media (max-width: 768px) {
	.hamburger {
		display: none;
	}
	.mobile-menu {
		display: none;
	}
}



/************************************************************/
/*　フッター
/************************************************************/

/*メニュー*/
#menu-footer-menu {
	width: 100%;
	padding: 30px 20px 10px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	column-gap: 20px;
}
#menu-footer-menu > li {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1;
	color: #fff;
}
#menu-footer-menu > li a {
	font-size: 15px;
	line-height: 1;
	color: #fff;
}
#menu-footer-menu > li a:hover {
	text-decoration: underline;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#menu-footer-menu {
		width: 100%;
		padding: 20px 20px 10px;
		margin: 0 auto;
		background: var(--main);
		position: relative;
		list-style: none;
		display: flex;
		justify-content: center;
		column-gap: 20px;
	}
}

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


/************************************************************/
/*　サイドバー
/************************************************************/
.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;
}

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

/************************************************************/
/*　メインビジュアル
/************************************************************/
#fv {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/fv_bg.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	border-bottom: 10px solid #fff;
}
.fv_wrap {
	width: 100%;
	max-width: 1000px;
	padding: 20px 0 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.fv_wrap::before {
	content: '';
	display: block;
	width: 1200px;
	height: 100%;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/fv_people.webp');
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: auto calc(100% - 20px);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
}
.fv_wrap::after {
	content: '';
	display: block;
	width: 400px;
	height: auto;
	aspect-ratio: 800 / 397;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/fv_area.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.fv_wrap > h2 {
	width: 750px;
	min-width: 750px;
	padding: 0;
	margin: 0 0 20px;
	position: relative;
	border: none;
	background: none;
}
.fv_wrap > h2 img {
	width: 100%;
	height: auto;
}
/*メダル*/
.fv_medal {
	width: 550px;
	min-width: 550px;
	padding: 0;
	margin: 0 0 20px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	column-gap: 20px;
}
.fv_medal > li {
	width: calc((100% - 40px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
}
.fv_medal > li img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
}
/*支払い方法*/
.payment {
	width: 650px;
	min-width: 650px;
	padding: 15px 20px;
	margin: 0;
	border-radius: 20px 20px 0 0;
	background: #fff;
}
.payment img {
	width: 100%;
	height: auto;
}
.fv_sp {
	display: none;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#fv {
		background-image: none;
		border-bottom: 5px solid #fff;
	}
	.fv_wrap {
		display: none;
	}
	.fv_sp {
		display: block;
	}
	.fv_sp img {
		width: 100%;
		height: auto;
	}
}


/************************************************************/
/*　トップページ 固定バナー
/************************************************************/
.fixedBan {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: fixed;
	bottom: 50px;
	right: 0;
	z-index: 5;
}
.fixedBan img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
	transition: var(--ease);
}
.fixedBan img:hover {
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1)) brightness(1.1);
	transition: var(--ease);
}

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


/************************************************************/
/*　トップページ こんなお悩み
/************************************************************/
#topTrouble {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#topTrouble::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/concrete_bg.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.5;
}
.topTrouble_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 50px 70px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 20px;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
}
.topTrouble_wrap::after {
	content: '';
	display: block;
	width: 350px;
	height: auto;
	aspect-ratio: 700 / 1017;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/trouble_img.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: -100px;
	right: -150px;
	z-index: 0;
}
/*リスト*/
.troubleList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.troubleList > li {
	width: 100%;
	padding: 0 0 0 60px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
}
.troubleList > li::before {
	content: '';
	display: block;
	width: 40px;
	height: auto;
	aspect-ratio: 1/1;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/icon_check.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 3px;
	left: 0;
}
#contents .troubleList > li h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--blue);
}
#contents .troubleList > li h3::before,
#contents .troubleList > li h3::after {
	display: none;
}
.troubleList > li > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*黄色マーカー*/
.yellow {
	position: relative;
	display: inline;
	color: inherit;
}
.yellow::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0.4em;
	background: #ffff00;
	z-index: -1;
	pointer-events: none;
}
.yellow {
	background: linear-gradient(transparent 0%, transparent 60%, #ffff00 60%, #ffff00 100%);
	background-repeat: repeat-x;
	background-size: 100% 100%;
	background-position: 0 100%;
	background-clip: text;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topTrouble {
		width: 100%;
		padding: 40px 20px;
	}
	#topTrouble::before {
		background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/concrete_bg_sp.webp');
	}
	.topTrouble_wrap {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		border-radius: 10px;
	}
	.topTrouble_wrap::after {
		content: '';
		display: block;
		width: 350px;
		height: auto;
		aspect-ratio: 700 / 1017;
		background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/trouble_img.webp');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100%;
		position: absolute;
		bottom: -100px;
		right: -150px;
		z-index: 0;
		display: none;
	}
	/*リスト*/
	.troubleList {
		width: 100%;
		grid-row-gap: 20px;
	}
	.troubleList > li {
		width: 100%;
		padding: 0 0 0 35px;
	}
	.troubleList > li::before {
		width: 25px;
		top: 3px;
		left: 0;
	}
	#contents .troubleList > li h3 {
		font-size: 5vw;
		margin-bottom: 7px;
	}

	/*黄色マーカー*/
	.yellow {
		position: relative;
		display: inline;
		color: inherit;
	}
	.yellow::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 0.4em;
		background: #ffff00;
		z-index: -1;
		pointer-events: none;
	}
	.yellow {
		background: linear-gradient(transparent 0%, transparent 60%, #ffff00 60%, #ffff00 100%);
		background-repeat: repeat-x;
		background-size: 100% 100%;
		background-position: 0 100%;
		background-clip: text;
	}
}


/************************************************************/
/*　トップページ 選ばれる理由
/************************************************************/
#topReason {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	z-index: 0;
}
#topReason::before {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1999 / 572;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/plan_bg.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#topReason > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
}
#contents #topReason > header h2 {
	width: 100%;
	max-width: 900px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	text-align: center;
}
#contents #topReason > header h2 img {
	width: 100%;
	height: auto;
}
/*リスト*/
.reasonList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
}
.reasonList > li {
	width: calc((100% - 50px) / 2);
	padding: 30px;
	margin: 0;
	background: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
}
#contents .reasonList > li > h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	height: 60px;
	padding: 10px 30px 13px;
	margin: 0 auto;
	position: relative;
	border: none;
	border-radius: 45px;
	background: var(--orange);
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	white-space: nowrap;
	color: #fff;
	text-align: center;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 5;
	animation: floatTitle 2.5s ease-in-out infinite;
}
#contents .reasonList > li > h3::before,
#contents .reasonList > li > h3::after {
	display: none;
}
#contents .reasonList > li > h3::after {
	content: '';
	display: block;
	width: 25px;
	height: 17px;
	background: var(--orange);
	border: none;
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 5;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@keyframes floatTitle {
	0%   { transform: translate(-50%, 0); }
	50%  { transform: translate(-50%, 5px); }
	100% { transform: translate(-50%, 0); }
}
.reasonList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.reasonList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.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 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.reasonList > li > p span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0.5em auto 0;
	text-align: right;
	font-size: 0.8em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1000px){
	.reasonList > li {
		width: 100%;
		max-width: 900px;
	}
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReason {
		width: 100%;
		padding: 40px 20px;
	}
	#topReason > header {
		margin: 0 auto 50px;
	}
	#contents #topReason > header h2 {
		width: 100%;
		max-width: 100%;
	}
	/*リスト*/
	.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 {
		height: 50px;
		padding: 10px 20px 13px;
		border-radius: 45px;
		font-size: 20px;
		top: -24px;
	}
	#contents .reasonList > li > h3::after {
		width: 20px;
		height: 14px;
		bottom: -13px;
	}
	.reasonList > li > p {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	.reasonList > li > p span {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0.5em auto 0;
		text-align: right;
		font-size: 0.8em;
	}
}

/************************************************************/
/*　トップページ 不用品回収カテゴリー
/************************************************************/
#topCategory {
	width: 100%;
	padding: 100px 0 100px;
	margin: 0 auto;
	position: relative;
	background: #fff;
}
#topCategory .contHead h2 span {
	font-size: 3.5vw;
}
.catList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
}
.catList > li {
	width: calc((100% - 50px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
}
.catList > li > figure {
	width: 120px;
	min-width: 120px;
	height: auto;
	aspect-ratio: 1 / 1;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.catList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.catList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.catList_info {
	width: calc(100% - 20px - 120px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .catList_info > h3 {
	font-size: 30px;
	line-height: 1.2em;
	font-weight: 900;
	color: var(--blue);
	text-align: left;
	padding: 0;
	margin: 0 0 10px;
	border: none;
	background: none;
	position: relative;
}
#contents .catList_info > h3::before,
#contents .catList_info > h3::after {
	display: none;
}
#contents .catList_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 1.6em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCategory {
		width: 100%;
		padding: 40px 20px;
	}
	.catList {
		width: 100%;
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.catList > li {
		width: 100%;
		column-gap: 15px;
	}
	.catList > li > figure {
		width: 100px;
		min-width: 100px;
	}
	.catList_info {
		width: calc(100% - 15px - 100px);
	}
	#contents .catList_info > h3 {
		font-size: 16px;
		margin: 0 0 5px;
	}
}


/************************************************************/
/*　トップページ 比較表
/************************************************************/
#topCompare {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
}
.topCompare_wrap {
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
.topCompare_wrap > dl {
	width: calc((100% - 180px - 90px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.topCompare_wrap > dl dt {
	width: 100%;
	height: 100px;
	padding: 20px;
	margin: 0;
	background: #d6d6d6;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-size: 24px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
.topCompare_wrap > dl dt::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	min-width: 20px;
	background: #d6d6d6;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	bottom: -19px;
	left: 50%;
	transform: translate(-50%,0);
}
.topCompare_wrap > dl dd {
	width: 100%;
	padding: 0 20px;
	margin: 0;
	background: #f7f7f7;
	border-radius: 10px;
	border: 5px solid #e8e8e8;
	position: relative;
}

/*リスト*/
.topCompare_wrap > dl ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
}
.topCompare_wrap > dl ul > li {
	width: 100%;
	height: 80px;
	padding: 10px 15px;
	margin: 0;
	background: none;
	box-sizing: border-box;
	position: relative;
	border-bottom: 3px dashed #d6d6d6;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 15px;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
.topCompare_wrap > dl ul > li:last-child {
	border-bottom: none;
}
.topCompare_wrap > dl ul > li > p {
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	padding: 0;
	margin: 0;
}
.topCompare_wrap > dl ul > li > i {
	display: block;
	width: 40px;
	min-width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.topCompare_wrap > dl ul > li > i.perfect {
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/icon_perfect.svg');
}
.topCompare_wrap > dl ul > li > i.correct {
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/icon_correct.svg');
}
.topCompare_wrap > dl ul > li > i.partial {
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/icon_partial.svg');
}
.topCompare_wrap > dl ul > li > i.wrong {
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/icon_wrong.svg');
}

/*タイトル*/
.topCompare_wrap > dl.ttl {
	width: 180px;
	min-width: 180px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topCompare_wrap > dl.ttl dd {
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	border: 5px solid #fff;
	position: relative;
}
.topCompare_wrap > dl.ttl ul > li {
	display: flex;
	justify-content: center;
	align-items: center;
}

/*メイン*/
.topCompare_wrap > dl.main dt {
	background: var(--act);
	color: #fff;
	position: relative;
}
.topCompare_wrap > dl.main dt::after {
	background: var(--act);
}
.topCompare_wrap > dl.main dt img {
	width: calc(100% - 40px);
	height: auto;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 5;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
}
.topCompare_wrap > dl.main dd {
	background: #fff9fc;
	border: 5px solid #ff38aa;
	box-sizing: border-box;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCompare {
		width: 100%;
		padding: 0;
	}
	.topCompare_wrap {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		column-gap: 20px;
		padding: 20px 20px 20px;
		overflow-x: scroll;
		scrollbar-width: none;   /* Firefox */
		-ms-overflow-style: none; /* IE */
	}
	.topCompare_wrap::-webkit-scrollbar {
		display: none;           /* Chrome/Safari */
	}
	.topCompare_wrap > dl {
		width: 200px;
		min-width: 200px;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 30px;
	}
	.topCompare_wrap > dl dt {
		width: 100%;
		height: 60px;
		padding: 10px;
		font-size: 16px;
	}
	.topCompare_wrap > dl dt::after {
		height: 15px;
		min-width: 20px;
		bottom: -14px;
	}
	.topCompare_wrap > dl dd {
		width: 100%;
		padding: 0 10px;
		margin: 0;
		background: #f7f7f7;
		border-radius: 10px;
		position: relative;
	}

	/*リスト*/
	.topCompare_wrap > dl ul {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		flex-direction: column;
	}
	.topCompare_wrap > dl ul > li {
		width: 100%;
		height: 60px;
		padding: 10px 10px;
		margin: 0;
		background: none;
		box-sizing: border-box;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		column-gap: 10px;
		font-size: 3vw;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--text);
	}
	.topCompare_wrap > dl ul > li:last-child {
		border-bottom: none;
	}
	.topCompare_wrap > dl ul > li > p {
		font-size: 3vw;
	}
	.topCompare_wrap > dl ul > li > i {
		display: block;
		width: 18px;
		min-width: 18px;
		height: 18px;
	}
	
	/*タイトル*/
	.topCompare_wrap > dl.ttl {
		width: 150px;
		min-width: 150px;
	}
	.topCompare_wrap > dl.ttl dd {
		width: 100%;
		padding: 0;
		margin: 0;
		background: none;
		border: 2px solid #fff;
		position: relative;
	}
	.topCompare_wrap > dl.ttl ul > li {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/*メイン*/
	.topCompare_wrap > dl.main dt {
		background: var(--act);
		color: #fff;
		position: relative;
	}
	.topCompare_wrap > dl.main dt::after {
		background: var(--act);
	}
	.topCompare_wrap > dl.main dt img {
		width: calc(100% - 40px);
		bottom: 10px;
		filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
	}
	.topCompare_wrap > dl.main dd {
		background: #fff9fc;
		border: 5px solid #ff38aa;
		box-sizing: border-box;
	}
}


/************************************************************/
/*　トップページ お支払い方法
/************************************************************/
#topPayment {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
}
#topPayment > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
#contents #topPayment > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 1.7em;
	font-weight: 900;
	text-align: center;
	color: var(--text);
}
#contents #topPayment > header > h2 strong {
	display:inline-block;
	padding: 8px 10px 10px;
	margin: 0 10px 0 0;
	background: #fbbf0b;
	font-size: 40px;
	line-height: 1em;
	font-weight: 900;
	color: #fff;
}
#topPayment > p {
	padding: 0;
	margin: 0 auto 30px;
	text-align: center;
}
#topPayment > figure {
	width: 800px;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#topPayment > figure img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topPayment {
		width: 100%;
		padding: 40px 20px;
	}
	#topPayment > header {
		margin: 0 auto 20px;
	}
	#contents #topPayment > header > h2 {
		width: 100%;
		font-size: 18px;
		line-height: 2;
	}
	#contents #topPayment > header > h2 strong {
		display:inline-block;
		padding: 5px 8px 7px;
		margin: 0 5px 0 0;
		background: #fbbf0b;
		font-size: 18px;
	}
	#topPayment > p {
		padding: 0;
		margin: 0 auto 20px;
		text-align: center;
	}
	#topPayment > figure {
		width: 100%;
		max-width: 100%;
	}
}

/************************************************************/
/*　トップページ 宣言
/************************************************************/
#topDeclare {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background: var(--main);
}
#topDeclare::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/slash_bg.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.3;
}
.topDeclare_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 70px 0;
	margin: 0 auto;
	position: relative;
}
.topDeclare_wrap::after {
	content: '';
	display: block;
	width: 350px;
	height: auto;
	aspect-ratio: 1000 / 1083;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/topDeclare_img.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	right: -50px;
	bottom: 0;
}
.topDeclare_wrap > header {
	width: 100%;
	padding: 0 350px 0 0;
	margin: 0 auto 30px;
	position: relative;
}
#contents .topDeclare_wrap > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
}
#contents .topDeclare_wrap > header > h2 span {
	display:inline-block;
	padding: 8px 10px 10px;
	margin: 0 10px 0 0;
	background: var(--orange);
	font-size: 45px;
	line-height: 1;
	font-weight: 900;
	text-align: left;
	color: #fff;
	white-space: nowrap;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
}
.topDeclare_wrap > header > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
}
.topDeclare_wrap > header > p span {
	display:inline-block;
	padding: 8px 10px 10px;
	margin: 0 10px 0 0;
	background: var(--orange);
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	text-align: left;
	color: #fff;
	white-space: nowrap;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
}
.topDeclare_wrap > p {
	width: 100%;
	padding: 0 350px 0 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 16px;
	line-height: 2em;
	color: #fff;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topDeclare {
		width: 100%;
	}
	.topDeclare_wrap {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
		margin: 0 auto;
		position: relative;
	}
	.topDeclare_wrap::after {
		content: '';
		display: block;
		width: 80px;
		right: 0;
		bottom: 0;
		z-index: -1;
	}
	.topDeclare_wrap > header {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#contents .topDeclare_wrap > header > h2 {
		margin: 0 auto 10px;
	}
	#contents .topDeclare_wrap > header > h2 span {
		display:inline-block;
		padding: 8px 10px 10px;
		margin: 0 10px 0 0;
		font-size: 5vw;
	}
	.topDeclare_wrap > header > p span {
		display:inline-block;
		padding: 8px 10px 10px;
		margin: 0 10px 0 0;
		font-size: 3.5vw;
	}
	.topDeclare_wrap > p {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		font-size: 15px;
	}
}

/************************************************************/
/*　トップページ プラン
/************************************************************/
#topPlan {
	width: 100%;
	padding: 100px 0 0;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	z-index: 0;
}
#topPlan::before {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1999 / 572;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/plan_bg.svg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.planList {
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 15px;
}
.planList > li {
	width: calc((100% - 45px) / 4);
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.planList > li dl {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
}
.planList > li dl dt {
	width: 100%;
	padding: 15px 15px;
	margin: 0 auto;
	background: var(--green);
	position: relative;
}
#contents .planList > li dl dt h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: baseline;
}
#contents .planList > li dl dt h3::before,
#contents .planList > li dl dt h3::after {
	display: none;
}
#contents .planList > li dl dt h3 small {
	font-size: 0.8em;
}
#contents .planList > li dl dt span {
	display: block;
	width: auto;
	height: 50px;
	position: absolute;
	top: -32px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
}
#contents .planList > li dl dt span img {
	width: auto;
	height: 100%;
}
.planList > li dl dd {
	width: 100%;
	padding: 15px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	border: 3px solid var(--green);
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	flex: 1;
}
.planList > li .price {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: baseline;
	font-family: var(--font-en);
	font-weight: 900;
	color: var(--act);
	font-size: 40px;
	line-height: 1;
}
.planList > li .price small {
	font-family: var(--font-jp);
	font-size: 0.5em;
	font-weight: 900;
	position: relative;
}
.planList > li .price small::before {
	content: '（税込）';
	display: inline-block;
	font-size: 0.8rem;
	line-height: 1;
	color: var(--act);
	white-space: nowrap;
	position: absolute;
	top: -1em;
	left: 50%;
	transform: translate(-50%,0);
}
#contents .planList > li dd h3 {
	width: 100%;
	padding: 0 60px 0 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
#contents .planList > li dd h3::before,
#contents .planList > li dd h3::after {
	display: none;
}
#contents .planList > li dd h3::after {
	content: '';
	display: block;
	width: 80px;
	height: auto;
	aspect-ratio: 82 / 81;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/plan_icon_comi.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: -25px;
	transform: translate(0,-50%);
}
#contents .planList > li dd > p {
	width: 100%;
	padding: 10px 15px;
	margin: 0 auto;
	background: #daebd9;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 15px;
	line-height: 1.6em;
	font-weight: 700;
	color: var(--green);
}
#contents .planList > li > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 17px;
	line-height: 1.6em;
	font-weight: 700;
	color: var(--text);
}

/*プランテーブル*/
.plan-table {
	width: 100%;
	max-width: 1200px;
	border-collapse: collapse;
	background: #fff;
	font-size: 15px;
	line-height: 1.6;
	border: 1px solid #ddd;
}
.plan-table thead th {
	background: var(--green);
	color: #fff;
	font-weight: 700;
	text-align: center;
	padding: 12px 10px;
	border: 1px solid #ddd;
	white-space: nowrap;
}
.plan-table thead th.column-1 {
	background: #f5f5f5;
	color: #333;
	text-align: center;
}
.plan-table tbody td {
	padding: 12px 10px;
	border: 1px solid #ddd;
	text-align: center;
	vertical-align: middle;
}
.plan-table tbody td.column-1 {
	background: #fafafa;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}
.plan-table tbody tr.row-2 td:not(.column-1) {
	font-size: 18px;
	font-weight: 900;
	color: var(--act);
}
.plan-table tbody tr.row-5 td:not(.column-1) {
	font-weight: 700;
}
.plan-table tbody tr:nth-child(even) td:not(.column-1) {
	background: #f3f8ff;
}
.tablepress-table-description {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topPlan {
		width: 100%;
		padding: 40px 20px;
	}
	.planList {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		column-gap: 15px;
		grid-row-gap: 50px;
	}
	.planList > li {
		width: 100%;
		grid-row-gap: 10px;
	}
	.planList > li dl {
		width: 100%;
	}
	.planList > li dl dt {
		width: 100%;
		padding: 15px 15px;
	}
	#contents .planList > li dl dt h3 {
		font-size: 20px;
	}
	#contents .planList > li dd h3 {
		width: 100%;
		padding: 0;
		font-size: 18px;
		text-align: center;
	}
	#contents .planList > li dd h3::after {
		content: '';
		display: block;
		width: 80px;
		right: -25px;
	}
	#contents .planList > li dd > p {
		width: 100%;
		padding: 10px 15px;
		font-size: 15px;
	}
	#contents .planList > li > p {
		font-size: 15px;
	}

	/*プランテーブル*/
	.plan-table {
		width: 100%;
		max-width: 100%;
		border-collapse: separate;
		border-spacing: 0;
		background: #fff;
		font-size: 15px;
		line-height: 1.6;
		border: 1px solid #ddd;
	}
	.plan-table thead th {
		background: var(--green);
		color: #fff;
		font-weight: 700;
		text-align: center;
		padding: 12px 10px;
		border: 1px solid #ddd;
		white-space: nowrap;
	}
	.plan-table thead th.column-1 {
		background: #f5f5f5;
		color: #333;
		text-align: center;
	}
	.plan-table tbody td {
		padding: 12px 10px;
		border: 1px solid #ddd;
		text-align: center;
		vertical-align: middle;
	}
	.plan-table tbody td.column-1 {
		background: #fafafa;
		font-weight: 700;
		text-align: center;
		white-space: nowrap;
	}
	.plan-table tbody tr.row-2 td:not(.column-1) {
		font-size: 18px;
		font-weight: 900;
		color: var(--act);
	}
	.plan-table tbody tr.row-5 td:not(.column-1) {
		font-weight: 700;
	}
	.plan-table tbody tr:nth-child(even) td:not(.column-1) {
		background: #f3f8ff;
	}
	.tablepress-table-description {
		width: 100%;
		max-width: 1200px;
		padding: 0;
		margin: 0 auto;
	}
}

/************************************************************/
/*　トップページ 値段
/************************************************************/
#topPrice {
	width: 100%;
	padding: 80px 0 30px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	z-index: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topPrice {
		width: 100%;
		padding: 0 20px;
		overflow-x: scroll;
	}
}

/************************************************************/
/*　トップページ 値段
/************************************************************/
#topExcharge {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	z-index: 0;
}
#contents #topExcharge > h2 {
	width: 100%;
	max-width: 700px;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	text-align: center;
}
#contents #topExcharge > h2 img {
	width: 100%;
	height: auto;
}
#topExcharge > p {
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
	text-align: center;
	padding: 0;
	margin: 0 auto 20px;
}
#topExcharge > ul {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#topExcharge > ul > li {
	width: calc((100% - 90px) / 4);
	padding: 10px;
	margin: 0;
	min-height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--main);
	border: 3px solid #fff;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 900;
	color: #fff;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topExcharge {
		width: 100%;
		padding: 0 20px 40px;
	}
	#contents #topExcharge > h2 {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
	}
	#topExcharge > p {
		font-size: 4vw;
		margin: 0 auto 20px;
	}
	#topExcharge > ul {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#topExcharge > ul > li {
		width: calc((100% - 10px) / 2);
		padding: 10px;
		min-height: 60px;
		font-size: 16px;
	}
}

/************************************************************/
/*　トップページ CTA
/************************************************************/
.topCta {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	background-color: var(--main);
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/cta_bg.webp');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
#contents .topCta > h2 {
	width: fit-content;
	padding: 15px 50px 0;
	margin: 0 auto;
	background: var(--main);
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	border-radius: 50px 50px 0 0;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
}
.topCta > dl {
	width: 100%;
	max-width: 1000px;
	min-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.topCta > dl dt {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	background: none;
	position: relative;
}
.topCta > dl dt img {
	width: 100%;
	height: auto;
}
.topCta > dl dd {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	background: #fff;
	border-radius: 30px;
	position: relative;
	z-index: 0;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
}
.topCta > dl dd::after {
	content: '';
	display: block;
	width: 340px;
	height: auto;
	aspect-ratio: 1000 / 1075;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/cta_human.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: -50px;
	right: -180px;
	z-index: -1;
}

/*電話番号*/
.topCta .tel {
	width: 100%;
	padding: 0 250px 0 0;
	margin: 0 0 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
}
.topCta .tel::after {
	content: '';
	display: block;
	width: 180px;
	height: 180px;
	aspect-ratio: 1 / 1;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/cta_badge.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translate(0, -50%);
}
.topCta .tel > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align-last: justify;
}
.topCta .tel > a {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	column-gap: 5px;
	font-family: var(--font-en);
	font-size: 80px;
	line-height: 1;
	font-weight: 900;
	color: var(--act);
	white-space: nowrap;
	text-decoration: none;
	transition: var(--ease);
}
.topCta .tel > a:hover {
	filter: brightness(1.1);
	text-decoration: none;
	transition: var(--ease);
}
.topCta .tel > a::before {
	content: '';
	display: block;
	width: auto;
	height: 55px;
	aspect-ratio: 66 / 38;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/icon_freed.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.topCta .tel > div {
	width: 100%;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 0;
}
.topCta .tel > div span {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	letter-spacing: 0.1em;
	white-space: nowrap;
}
.topCta .tel > div span::after {
	content: '';
	display: inline-block;
	width: 15px;
	height: 12px;
	padding: 0;
	margin: 0 0 0 20px;
	background: var(--text);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.topCta .tel > div b {
	font-family: var(--font-en);
	font-size: 37px;
	font-weight: 700;
	color: var(--text);
	letter-spacing: 0.1em;
	white-space: nowrap;
}
.topCta .tel > div strong {
	display: inline-block;
	padding: 7px 30px 9px;
	margin: 0;
	background: #fff;
	border: 2px solid var(--act);
	font-size: 22px;
	font-weight: 700;
	color: var(--act);
	border-radius: 40px;
	letter-spacing: 0.1em;
	white-space: nowrap;
}
/*ボタン*/
.topCta #menu-header-btn {
	display: flex;
	justify-content: center;
	column-gap: 15px;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
.topCta #menu-header-btn > li {
	width: calc((100% - 15px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
.topCta #menu-header-btn > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 10px 20px;
	margin: 0;
	background: var(--orange);
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 4px 0 #c84604;
	transition: var(--ease);
	font-size: 25px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
.topCta #menu-header-btn > li a:hover {
	filter: brightness(1.1);
	transform: translateY(4px);
	box-shadow: 0 0 0 #c84604;
}
.topCta #menu-header-btn > li.line a {
	background: var(--line);
	box-shadow: 0 4px 0 #028c46;
}
.topCta #menu-header-btn > li.line a:hover {
	box-shadow: 0 0 0 #028c46;
}
.topCta #menu-header-btn img {
	display: inline-block;
	padding: 0;
	margin: 0;
	width: auto;
	height: 40px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.topCta {
		width: 100%;
		padding: 20px;
		background-color: var(--main);
		background-image: none;
		z-index: 0;
	}
	.topCta::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		background-image: url(https://test-fuyouhin.coresv.com/wp-content/uploads/slash_bg.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		opacity: 0.3;
	}
	#contents .topCta > h2 {
		width: fit-content;
		padding: 10px 10px 0;
		margin: 0 auto;
		background: var(--main);
		font-size: 15px;
		border-radius: 20px 20px 0 0;
		top: -18px;
	}
	.topCta > dl {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}
	.topCta > dl dt {
		margin: 0 auto 10px;
	}
	.topCta > dl dd {
		width: 100%;
		padding: 20px;
		border-radius: 20px;
	}
	.topCta > dl dd::after {
		display: none;
	}

	/*電話番号*/
	.topCta .tel {
		width: 100%;
		padding: 0 100px 0 0;
		margin: 0 0 20px;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 0;
	}
	.topCta .tel::after {
		content: '';
		display: block;
		width: 80px;
		height: 80px;
		aspect-ratio: 1 / 1;
		background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/cta_badge.svg');
		top: 50%;
		right: 0;
		transform: translate(0, -50%);
	}
	.topCta .tel > p {
		margin: 0 auto 5px;
		font-size: 18px;
	}
	.topCta .tel > a {
		font-size: 7vw;
	}
	.topCta .tel > a::before {
		height: 20px;
	}
	.topCta .tel > div {
		width: 100%;
		font-size: 12px;
		column-gap: 0;
	}
	.topCta .tel > div span {
		display: inline-flex;
		justify-content: flex-start;
		align-items: center;
		position: relative;
		letter-spacing: 0.1em;
		white-space: nowrap;
	}
	.topCta .tel > div span::after {
		margin: 0 0 0 5px;
	}
	.topCta .tel > div b {
		font-family: var(--font-en);
		font-size: 12px;
	}
	.topCta .tel > div strong {
		display: inline-block;
		padding: 0;
		margin: 0;
		background: #fff;
		border: none;
		font-size: 12px;
		font-weight: 700;
		color: var(--act);
		border-radius: 0;
		letter-spacing: normal;
		white-space: nowrap;
	}
	/*ボタン*/
	.topCta #menu-header-btn {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	.topCta #menu-header-btn > li {
		width: 100%;
	}
	.topCta #menu-header-btn > li a {
		column-gap: 10px;
		padding: 10px 20px;
		border-radius: 10px;
		font-size: 18px;
	}
	.topCta #menu-header-btn img {
		height: 20px;
	}
}

/************************************************************/
/*　トップページ 回収実績
/************************************************************/
#topWorks {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: #f3f8ff;
	z-index: 0;
}
/*リスト*/
.worksList {
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
}
.worksList > li {
	width: calc((100% - 50px) / 2);
	padding: 30px;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	background: #fff;
	position: relative;
	box-sizing: border-box;
	border: 3px solid var(--blue);
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.worksList > li::before {
	content: '';
	display: block;
	width: 100px;
	height: 100px;
	aspect-ratio: 1/1;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/works_badge_2.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: -10px;
	right: -20px;
	z-index: 5;
	transform: rotate(10deg);
}
.worksList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#contents .worksList > li > h3 {
	width: 100%;
	padding: 10px 15px;
	margin: 0 auto;
	background: var(--blue);
	border-radius: 5px;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	text-align: left;
	border: none;
}
#contents .worksList > li > h3::before,
#contents .worksList > li > h3::after {
	display: none;
}
#contents .worksList > li > h3::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/speech.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	position: absolute;
	bottom: -9.5px;
	left: 20px;
}
.works_images {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
}
.works_images > figure {
	width: calc((100% - 10px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
.works_images > figure.before::before {
	content: 'BEFORE';
	display: block;
	width: fit-content;
	padding: 6px 10px;
	margin: 0;
	background: var(--green);
	border-radius: 0 10px 0 0;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	font-family: var(--font-en);
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
}
.works_images > figure.after::before {
	content: 'AFTER';
	display: block;
	width: fit-content;
	padding: 6px 10px;
	margin: 0;
	background: var(--green);
	border-radius: 0 10px 0 0;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	font-family: var(--font-en);
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
}
.works_images > figure span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.works_images > figure span::before {
	content: '';
	display: block;
	padding: 50%;
}
.works_images > figure span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*データ*/
.works_data {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
}
.works_data span {
	width: calc((100% - 10px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
}
.works_data span.room::before,
.works_data span.plan::before {
	content: '部屋';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	min-width: 70px;
	padding: 7px 10px;
	margin: 0;
	background: var(--blue);
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
.works_data span.plan::before {
	content: 'プラン';
}
.worksList > li > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topWorks {
		width: 100%;
		padding: 40px 20px;
	}
	#topWorks .contHead > h2 span {
		font-size: 4vw;
	}
	#contents #topWorks .contHead > p {
		letter-spacing: normal;
	}
	/*リスト*/
	.worksList {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.worksList > li {
		width: 100%;
		padding: 20px;
		grid-row-gap: 10px;
	}
	.worksList > li::before {
		width: 80px;
		height: 80px;
		top: -10px;
		right: -20px;
		z-index: 5;
		transform: rotate(10deg);
	}
	#contents .worksList > li > h3 {
		width: 100%;
		padding: 8px 15px;
		font-size: 16px;
	}
	.worksList > li figure {
		margin: 0 auto;
	}
	/*データ*/
	.works_data {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	.works_data span {
		width: 100%;
		column-gap: 10px;
		font-size: 14px;
	}
	.works_data span.room::before,
	.works_data span.plan::before {
		content: '部屋';
		width: 60px;
		min-width: 50px;
		padding: 5px 10px;
		font-size: 12px;
	}
	.works_data span.plan::before {
		content: 'プラン';
	}
}

/************************************************************/
/*　トップページ よくある質問
/************************************************************/
#topFaq {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: var(--blue);
	z-index: 0;
}
#topFaq::before {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1999 / 572;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/plan_bg.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.3;
}

/*リスト*/
.faqList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.faqList > dl {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 20px 0 20px 0;
}
.faqList.sub > dl {
	background: #fafafa;
}
.faqList > dl > dt {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 20px;
	flex-wrap: nowrap;
	width: 100%;
	padding: 0 60px 0 0;
	margin: 0 auto;
	background: none;
	border-radius: 0;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	position: relative;
	cursor: pointer;
	transition: var(--ease);
}
.faqList > dl > dt:hover {
	color: var(--main);
	transition: var(--ease);
}
.faqList > dl > dt.active {
	color: var(--main);
	transition: var(--ease);
}
.faqList > dl > dt::before {
	content: 'Q';
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	min-width: 35px;
	height: 35px;
	padding: 0 0 3px;
	aspect-ratio: 1/1;
	font-family: var(--font-en);
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	background: var(--main);
	border-radius: 5px;
	transition: var(--ease);
}
.faqList > dl > dt:hover::before,
.faqList > dl > dt.active::before {
	transition: var(--ease);
}
.faqList > dl > dt span {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.faqList > dl > dt span::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background: none;
	border-bottom: 2px solid var(--blue);
	border-right: 2px solid var(--blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dt.active span::before {
	transform: translate(-50%,-50%) rotate(-135deg);
	-webkit-transform: translate(-50%,-50%) rotate(-135deg);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dd {
	margin: 0 auto;
	padding: 30px 0px 0 55px;
}
.faqList > dl > dd p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topFaq {
		width: 100%;
		padding: 40px 20px;
	}
	/*リスト*/
	.faqList {
		width: 100%;
		max-width: 100%;
	}
	.faqList > dl {
		width: 100%;
		padding: 15px;
		border-radius: 20px 0 20px 0;
	}
	.faqList > dl > dt {
		column-gap: 10px;
		padding: 0 20px 0 0;
		font-size: 15px;
	}
	.faqList > dl > dt::before {
		content: 'Q';
		width: 20px;
		min-width: 20px;
		height: 20px;
		padding: 0;
		font-size: 14px;
	}
	.faqList > dl > dt span {
		display: block;
		width: 10px;
		height: 10px;
	}
	.faqList > dl > dt span::before {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		border-bottom: 1px solid var(--blue);
		border-right: 1px solid var(--blue);
	}
	.faqList > dl > dd {
		margin: 0 auto;
		padding: 20px 0 0 0;
	}
}


/************************************************************/
/*　トップページ 流れ
/************************************************************/
#topFlow {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: #f3f8ff;
	z-index: 0;
}

/*リスト*/
.flowList {
	width: 100%;
	max-width: 1000px;
	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));
}
.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(--orange);
	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){
	#topFlow {
		width: 100%;
		padding: 40px 20px;
	}
	#contents #topFlow > h2 {
		margin: 0 auto 30px;
		font-size: 4.5vw;
	}
	#contents #topFlow > h2 a {
		font-size: 1.5em;
	}
	/*リスト*/
	.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;
	}
}


/************************************************************/
/*　トップページ お問い合わせセクション
/************************************************************/
#topContact {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	z-index: 0;
}
#topContact::before {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1999 / 572;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('https://test-fuyouhin.coresv.com/wp-content/uploads/plan_bg.svg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;
}
#contents #topContact > h2 {
	width: 100%;
	padding: 20px 20px 22px;
	margin: 0 auto 100px;
	position: relative;
	background: var(--act);
	border-radius: 0;
	font-size: 50px;
	line-height: 1.2em;
	font-weight: 900;
	color: #fff;
	text-align: center;
}
#contents #topContact > h2::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: var(--act);
	position: absolute;
	bottom: -19.5px;
	left: 50%;
	transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
/*ヘッダー*/
#topContact > header.contactHead {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#topContact > header.contactHead .campaign {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
}
#topContact > header.contactHead .campaign strong {
	display: inline-block;
	padding: 8px 15px 10px;
	margin: 0 10px 0 0;
	background: var(--act);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	border-radius: 40px;
}
#topContact > header.contactHead .campaign b {
	font-family: var(--font-en);
	font-size: 35px;
	color: var(--act);
}
#contents #topContact > header.contactHead h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 50px;
	line-height: 1.2em;
	font-weight: 900;
	color: var(--text);
	text-align: center;
	border: none;
	background: none;
}
#contents #topContact > header.contactHead p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
	line-height: 2;
	font-weight: 900;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topContact {
		width: 100%;
		padding: 0 0 40px;
	}
	#contents #topContact > h2 {
		width: 100%;
		padding: 10px 10px 12px;
		margin: 0 auto 30px;
		font-size: 4.5vw;
	}
	#contents #topContact > h2::after {
		width: 10px;
		height: 10px;
		bottom: -9.5px;
		left: 50%;
	}
	/*ヘッダー*/
	#topContact > header.contactHead {
		width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		grid-row-gap: 10px;
	}
	#topContact > header.contactHead .campaign {
		font-size: 12px;
	}
	#topContact > header.contactHead .campaign strong {
		display: inline-block;
		padding: 6px 10px 8px;
		margin: 0 7px 0 0;
		font-size: 12px;
		border-radius: 30px;
	}
	#topContact > header.contactHead .campaign b {
		font-size: 17px;
	}
	#contents #topContact > header.contactHead h2 {
		font-size: 30px;
	}
	#contents #topContact > header.contactHead p {
		padding: 0;
		margin: 0 auto;
		text-align: center;
		font-size: 15px;
		line-height: 1.5em;
		font-weight: 900;
	}
}

/*LINE*/
.line_section,
.contact_section {
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
.line_section .contHead {
	margin-bottom: 40px;
}
.contact_section .contHead {
	margin-bottom: 40px;
}
.line_section_wrap {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 50px;
	width: 100%;
	max-width: 1000px;
	padding: 50px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	border-radius: 30px;
}
.line_section_info {
	width: calc(100% - 250px - 50px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .line_section_info h3 {
	width: 100%;
	padding: 0;
	margin: 0 0 20px;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 900;
	text-align: left;
	border: none;
	background: none;
}
#contents .line_section_info h3::before,
#contents .line_section_info h3::after {
	display: none;
}
#contents .line_section_info h3 strong {
	color: var(--line);
}
.line_section_wrap > figure {
	width: 250px;
	height: auto;
}
.line_section_wrap > figure img {
	width: 100%;
	height: auto;
}

/*流れ*/
.signupFlow {
	width: 100%;
	padding: 20px 0 0;
	margin: 0 auto 20px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
.signupFlow > li {
	width: calc((100% - 60px) / 3);
	padding: 30px 20px 20px;
	margin: 0;
	border-radius: 10px;
	background: var(--green);
	position: relative;
	text-align: center;
}
.signupFlow > li::after {
	content: '';
	display: block;
	width: 15px;
	height: 30px;
	background: var(--green);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	right: -14px;
	transform: translate(0, -50%);
}
.signupFlow > li:last-child::after {
	display: none;
}
.signupFlow > li > em {
	display: inline-block;
	padding: 8px 15px;
	margin: 0;
	background: #fff;
	border-radius: 40px;
	font-size: 15px;
	line-height: 1;
	font-weight: 900;
	font-style: normal;
	color: var(--green);
	border: 3px solid var(--green);
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translate(-50%,0);
	white-space: nowrap;
}
.signupFlow > li > p {
	padding: 0;
	margin: 0 auto 15px;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 900;
	text-align: center;
	color: #fff;
	white-space: nowrap;
}
.signupFlow > li > img {
	width: auto;
	height: 60px;
}

/*ボタン*/
.line_section #menu-header-btn {
	display: flex;
	justify-content: center;
	column-gap: 15px;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
.line_section #menu-header-btn > li {
	width: calc((100% - 15px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
.line_section #menu-header-btn > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 15px 20px;
	margin: 0;
	background: var(--orange);
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 4px 0 #c84604;
	transition: var(--ease);
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
.line_section #menu-header-btn > li a:hover {
	filter: brightness(1.1);
	transform: translateY(4px);
	box-shadow: 0 0 0 #c84604;
}
.line_section #menu-header-btn > li.line a {
	background: var(--line);
	box-shadow: 0 4px 0 #028c46;
}
.line_section #menu-header-btn > li.line a:hover {
	box-shadow: 0 0 0 #028c46;
}
.line_section #menu-header-btn img {
	display: inline-block;
	padding: 0;
	margin: 0;
	width: auto;
	height: 20px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*LINE*/
	.line_section,
	.contact_section {
		padding: 0;
		margin: 0 auto 30px;
	}
	.line_section .contHead {
		margin-bottom: 30px;
	}
	.contact_section .contHead {
		margin-bottom: 30px;
	}
	.line_section_wrap {
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
		width: calc(100%);
		max-width: 100%;
		padding: 20px;
		border-radius: 0;
	}
	.line_section_info {
		width: 100%;
	}
	#contents .line_section_info h3 {
		width: 100%;
		padding: 0;
		margin: 0 0 20px;
		font-size: 20px;
		line-height: 1.4em;
		font-weight: 900;
		text-align: left;
		border: none;
		background: none;
	}
	#contents .line_section_info h3::before,
	#contents .line_section_info h3::after {
		display: none;
	}
	#contents .line_section_info h3 strong {
		color: var(--line);
	}
	.line_section_wrap > figure {
		width: 100%;
		height: auto;
	}
	.line_section_wrap > figure img {
		width: 100%;
		height: auto;
	}

	/*流れ*/
	.signupFlow {
		width: 100%;
		padding: 20px 0 0;
		margin: 0 auto 20px;
		column-gap: 15px;
	}
	.signupFlow > li {
		width: calc((100% - 30px) / 3);
		padding: 20px 10px 10px;
	}
	.signupFlow > li::after {
		content: '';
		display: block;
		width: 10px;
		height: 20px;
		right: -9px;
	}
	.signupFlow > li:last-child::after {
		display: none;
	}
	.signupFlow > li > em {
		display: inline-block;
		padding: 5px 10px;
		border-radius: 30px;
		font-size: 12px;
		top: -11px;
	}
	.signupFlow > li > p {
		padding: 0;
		margin: 0 auto 15px;
		font-size: 0.8rem;
		line-height: 1.4em;
	}
	.signupFlow > li > img {
		width: auto;
		height: 40px;
	}

	/*ボタン*/
	.line_section #menu-header-btn {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	.line_section #menu-header-btn > li {
		width: 100%;
	}
	.line_section #menu-header-btn > li a {
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 10px;
		padding: 15px 20px;
		margin: 0;
		background: var(--orange);
		border-radius: 10px;
		text-decoration: none;
		box-shadow: 0 4px 0 #c84604;
		transition: var(--ease);
		font-size: 18px;
		line-height: 1;
		font-weight: 700;
		color: #fff;
	}
	.line_section #menu-header-btn > li a:hover {
		filter: brightness(1.1);
		transform: translateY(4px);
		box-shadow: 0 0 0 #c84604;
	}
	.line_section #menu-header-btn > li.line a {
		background: var(--line);
		box-shadow: 0 4px 0 #028c46;
	}
	.line_section #menu-header-btn > li.line a:hover {
		box-shadow: 0 0 0 #028c46;
	}
	.line_section #menu-header-btn img {
		display: inline-block;
		padding: 0;
		margin: 0;
		width: auto;
		height: 20px;
	}
}

/************************************************************/
/*　トップページ　お問い合わせ
/************************************************************/

/*cfBox*/
.cfBox {
	width: 1000px;
	max-width: 1000px;
	padding: 50px 50px;
	margin: 0 auto;
	background: #fff;
	border-radius: 30px;
	position: relative;
}
#contents .cfBox h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	text-align: center;
	border: none;
	background: none;
	position: relative;
	font-size: 30px;
	line-height: 1.3em;
	font-weight: 900;
	color: var(--text);
}
#contents .cfBox h3::before,
#contents .cfBox h3::after {
	display: none;
}
.spacer {
	display: block;
	width: 100%;
	height: 70px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.cfBox {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		margin: 0 auto;
		background: none;
		border-radius: 0;
		position: relative;
		filter: unset;
		border: none;
		box-shadow: none;
	}
	#contents .cfBox h3 {
		margin: 0 auto 20px;
		font-size: 18px;
	}
	#contents .cfBox h3::before,
	#contents .cfBox h3::after {
		display: none;
	}
	.spacer {
		display: block;
		width: 100%;
		height: 30px;
	}
}

/************************************************************/
/*　お見積もりフォーム
/************************************************************/
/* 入力フォームテーブル */
.cfBox dl {
	width: 100%;
	padding: 0 0 30px;
	margin: 0 auto 30px;
	border: none;
	background: none;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
	column-gap: 40px;
	border-bottom: 1px dashed #c8c8c8;
}
.cfBox dl dt {
	display: block;
	width: 30%;
	padding: 0 0 0 60px;
	margin: 0;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: bold;
	position: relative;
}
.cfBox dl dt p,
.cfBox dl dd p {
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
	padding: 0;
	margin: 0;
}
.cfBox dl dt small {
	font-size: 12px;
}
.cfBox dl dd {
	width: calc(70% - 40px);
	padding: 0;
	margin: 0;
	position: relative;
}
.cfBox .att {
	display: inline-block;
	padding: 7px 10px;
	margin: 0;
	background: #ff732f;
	border-radius: 20px;
	color: #ffffff;
	font-size: 12px;
	line-height: 1;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
}
.cfBox .any {
	display: inline-block;
	padding: 7px 10px;
	margin: 0;
	background: #aaa;
	border-radius: 20px;
	color: #ffffff;
	font-size: 12px;
	line-height: 1;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
}
.cfBox .block {
	display: block;
	padding: 0;
	margin: 0 auto 10px;
}
.cfBox .wpcf7-not-valid-tip {
	display: block;
	padding: 0;
	margin: 10px 0 0;
}
.cfBox dl dd small {
	display: block;
	font-size: 12px;
	padding: 0;
	margin: 10px 0 0;
}

/*フォーム幅*/
.cfBox input,
.cfBox textarea {
	padding: 15px;
	margin: 0;
	border-radius: 10px;
	border: 1px solid #c8c8c8;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 14px;
	line-height: 1.4em;
	background: #fff;
	outline: none;
}
.cfBox input.w10,
.cfBox textarea.w10 {
	width: 100%;
	padding: 10px 15px;
	margin-right: 5px;
}
.cfBox input.w25,
.cfBox textarea.w25 {
	width: 25%;
	margin-right: 5px;
}
.cfBox input.w50,
.cfBox textarea.w50 {
	width: 100%;
}
.cfBox input.w100,
.cfBox textarea.w100 {
	width: 100%;
}
.addForm {
	display: block;
	margin-bottom: 5px;
}
.ftitle {
	display: inline-block;
	min-width: 110px;
	padding: 0;
	margin: 0;
	white-space: nowrap;
}
.cfBox input[type=file] {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	border-radius: 0;
}
.cfBox .stext {
	display: block;
	margin-bottom: 10px;
}

/*セレクト*/
.cfBox .wpcf7-select {
	padding: 10px 40px 10px 10px;
	margin: 0;
	border-radius: 10px;
	border: 1px solid #c8c8c8;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 14px;
	line-height: 1.4em;
	background: #fff;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.cfBox .wpcf7-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23666' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 12px 8px;
}

/*チェックボックス*/
.wpcf7-checkbox {
	padding: 0;
	margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item {
	padding: 0;
	margin: 0 1em 0 0;
}
.wpcf7-checkbox label {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
	padding: 0;
	margin: 0;
}
.cfBox input[type=checkbox] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	padding: 3px;
	border: 1px solid #c8c8c8;
	position: relative;
	cursor: pointer;
	border-radius: 0;
}
.cfBox input[type=checkbox]:checked::after {
	content: "✔";
	position: absolute;
	top: -4px;
	left: 2px;
	font-size: 20px;
	color: var(--main);
}
.wpcf7-checkbox .wpcf7-list-item-label {
	font-size: 20px;
}

/*ラジオボタン*/
.cfBox input[type=radio] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #c8c8c8;
	border-radius: 50%;
	position: relative;
}

.cfBox input[type=radio]:checked::before {
	content: "";
	width: 10px;
	height: 10px;
	background: #333;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*フォームリスト*/
.formList {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
.formList > li {
	width: 30%;
	padding: 0;
	margin: 5px 0;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	position: relative;
	white-space: nowrap;
}
.formList > li > span:first-of-type {
	min-width: 35%;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
.formList > li > span:first-of-type::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: var(--main);
	padding: 0;
	margin: 0 5px 0 0;
}
.formList > li input {
	margin: 0 5px;
	width: 90%;
}
/*ファイル添付*/
.fileTxt {
	margin-bottom: 5px;
}
/*キャンペーン*/
.estimateForm td > p.ef_campaign {
	display: block;
	margin-bottom: 20px;
	text-align: left;
}
.estimateForm td > p.ef_campaign > span {
	display: block;
}
.estimateForm td > p.ef_campaign:last-of-type {
	margin-bottom: 0;
}
/*利用規約*/
.wpcf7-acceptance label {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
}
/*送信ボタン*/
.cfBox .txt_cent {
	text-align: center;
}
.cfBox .txt_cent input[type="submit"] {
	-webkit-appearance: none;
}
.cfBox .txt_cent input {
	padding: 25px 150px;
	margin: 0 auto;
	display: inline-block;
	background: var(--main);
	border: none;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: 0.5s;
	border-radius: 40px;
	font-size: 25px;
	line-height: 1;
	font-weight: bold;
	box-shadow: 0 4px rgba(154, 154, 154, 0.3);
}
.cfBox .txt_cent input:hover {
	filter: brightness(1.1);
	transition: 0.5s;
}
.cfBox .txt_cent .wpcf7-spinner {
	width: 0;
	height: 0;
	padding: 0;
	margin: 0;
	display: none;
}
/*送信エラー*/
.wpcf7 form .wpcf7-response-output {
	width: 100%;
	max-width: 1000px;
	padding: 30px;
	margin: 50px auto 0;
}
.wpcf7-not-valid-tip {
	display: inline-block;
	margin: 0 0 0 5px;
}

/*-現在の状況*/
.cfBox .fileStatus {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 50px;
	margin: 0 auto 30px;
}
.cfBox .fileStatus_info {
	width: calc(100% - 200px - 50px);
	padding: 0;
	margin: 0;
	position: relative;
}
.cfBox .fileStatus_info > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
}
.cfBox .fileStatus_info > p strong {
	display: inline-block;
	color: #ff732f;
}
.cfBox .fileStatus > figure {
	width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
}
.cfBox .fileStatus > figure img {
	width: 100%;
	height: auto;
}
.cfBox .fileStatus:first-of-type {
	padding: 0 0 30px;
	margin: 0 auto 30px;
	border-bottom: 1px solid #ccc;
}

/*プライバシー*/
.cf_privacy {
	padding: 0;
	margin: 0 auto 30px;
}
.cf_privacy > p {
	text-align: center;
}
.cf_privacy a {
	color: var(--red);
	text-decoration: underline;
}

/*ボックス*/
#policy_box {
	width: 100%;
	height: 300px;
	padding: 30px;
	margin: 30px auto;
	border: 1px solid #aaa;
	background: #fafafa;
	overflow: hidden;
	overflow-y: scroll;
}
#contents #policy_box h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	border: none;
	background: none;
	font-size: 18px;
	line-height: 1.2em;
	text-align: left;
}
#contents #policy_box p {
	padding: 0;
	margin: 0 auto 10px;
}
#contents #policy_box ul {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	list-style-position: inside;
}
#contents #policy_box ul li {
	margin: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.estimate_txt {
		width: calc(100%);
		padding: 30px 0;
		margin: 0 auto;
	}
	#estimateFormWrap {
		width: 100%;
		padding: 40px 0;
		margin: 0 auto;
		background: #fafafa;
		position: relative;
	}
	.content #estimateFormWrap > h2 {
		margin: 0 auto 20px;
	}
	#estimateFormWrap .titleBox em {
		display: block;
		width: 100%;
		font-size: 20px;
	}
	.content #estimateFormWrap .titleBox h2 {
		width: 100%;
		margin-top: 5px;
	}

	/* 入力フォームテーブル */
	/* 入力フォームテーブル */
	.cfBox dl {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	.cfBox dl dt {
		display: block;
		width: 100%;
		padding: 0 0 0 45px;
		margin: 0;
		font-size: 16px;
		line-height: 1.4em;
		font-weight: bold;
		position: relative;
	}
	.cfBox dl dt small {
		font-size: 12px;
	}
	.cfBox dl dd {
		width: calc(100%);
		padding: 0;
		margin: 0;
		position: relative;
	}
	.cfBox .att {
		display: inline-block;
		padding: 5px 8px;
		margin: 0;
		background: #ff732f;
		border-radius: 20px;
		color: #ffffff;
		font-size: 10px;
		line-height: 1;
		font-weight: bold;
		position: absolute;
		top: 2px;
		left: 0;
	}
	.cfBox .any {
		display: inline-block;
		padding: 5px 8px;
		margin: 0;
		border-radius: 20px;
		color: #ffffff;
		font-size: 10px;
		line-height: 1;
		font-weight: bold;
		position: absolute;
		top: 2px;
		left: 0;
	}
	.cfBox .block {
		display: block;
		padding: 0;
		margin: 0 auto 10px;
	}
	.cfBox .wpcf7-not-valid-tip {
		display: block;
		padding: 0;
		margin: 10px 0 0;
	}
	.cfBox dl dd small {
		display: block;
		font-size: 12px;
		padding: 0;
		margin: 10px 0 0;
	}

	.cfBox input,
	.cfBox textarea {
		font-size: 14px;
		background: #fff;
		max-width: 100%;
	}

	.cfBox small {
		font-size: 10px;
		line-height: 1.4em;
		margin-bottom: 5px;
	}

	.cfBox strong {
		display: block;
		padding: 0;
		margin: 0 auto 5px;
		font-weight: bold;
		line-height: 1.4em;
		font-size: 12px;
	}

	/*フォーム幅*/
	.cfBox input.w10,
	.cfBox textarea.w10 {
		width: 15%;
		padding: 5px;
	}
	.cfBox input.w25,
	.cfBox textarea.w25 {
		width: 50%;
	}
	.cfBox input.w50,
	.cfBox textarea.w50 {
		width: 100%;
	}
	.cfBox input.w100,
	.cfBox textarea.w100 {
		width: 100%;
	}

	/*チェックボックス*/
	.wpcf7-checkbox {
		padding: 0;
		margin: 0;
	}
	.wpcf7-checkbox .wpcf7-list-item {
		padding: 0;
		margin: 0 1em 0 0;
	}
	.wpcf7-checkbox label {
		display: inline-flex;
		justify-content: flex-start;
		align-items: center;
		column-gap: 5px;
		padding: 0;
		margin: 0;
	}
	.cfBox input[type=checkbox] {
		appearance: none;
		-webkit-appearance: none;
		width: 15px;
		height: 15px;
		padding: 3px;
		border: 1px solid #c8c8c8;
		position: relative;
		cursor: pointer;
		border-radius: 0;
	}
	.cfBox input[type=checkbox]:checked::after {
		content: "✔";
		position: absolute;
		top: -4px;
		left: 2px;
		font-size: 20px;
		color: var(--main);
	}
	.wpcf7-checkbox .wpcf7-list-item-label {
		font-size: 15px;
	}

	/*フォームリスト*/
	.formList {
		width: 100%;
		padding: 0;
		margin: 0;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		position: relative;
	}
	.formList > li {
		width: 100%;
		padding: 0;
		margin: 5px 0;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		position: relative;
		white-space: nowrap;
	}
	.formList > li > span:first-of-type {
		min-width: 35%;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
	}
	.formList > li > span:first-of-type::before {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		background: var(--main);
		padding: 0;
		margin: 0 5px 0 0;
	}
	.formList > li input {
		margin: 0 5px;
		width: 90%;
	}
	/*ファイル添付*/
	.fileTxt {
		margin-bottom: 5px;
	}
	/*キャンペーン*/
	.cfBox p.ef_campaign {
		display: block;
		margin-bottom: 20px;
		text-align: left;
	}
	.cfBox p.ef_campaign > span {
		display: block;
	}
	.cfBox p.ef_campaign:last-of-type {
		margin-bottom: 0;
	}
	/*送信ボタン*/
	.cfBox .txt_cent {
		width: calc(100%);
		text-align: center;
		margin: 0 auto;
	}
	.cfBox .txt_cent input[type="submit"] {
		-webkit-appearance: none;
	}
	.cfBox .txt_cent input {
		width: 100%;
		padding: 20px 30px;
		margin: 0 auto;
		display: block;
		border: none;
		font-size: 20px;
		color: #fff;
		font-weight: bold;
		cursor: pointer;
		transition: 0.5s;
		border-radius: 40px;
	}
	.cfBox .txt_cent .wpcf7-spinner {
		width: 0;
		height: 0;
		padding: 0;
		margin: 0;
	}
	/*送信エラー*/
	.wpcf7 form .wpcf7-response-output {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 10px;
		margin: 30px auto 0;
	}
	.wpcf7-not-valid-tip {
		display: inline-block;
		margin: 0 0 0 5px;
	}

	/*-現在の状況*/
	.cfBox .fileStatus {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 15px;
		margin: 0 auto 20px;
	}
	.cfBox .fileStatus_info {
		width: calc(100%);
	}
	.cfBox .fileStatus_info > p {
		padding: 0;
		margin: 0 auto 10px;
		line-height: 1.4em;
		font-size: 12px;
	}
	.cfBox .fileStatus_info > p strong {
		display: inline-block;
		color: #ff732f;
	}
	.cfBox .fileStatus > figure {
		width: 100%;
		text-align: center;
	}
	.cfBox .fileStatus > figure img {
		width: 70%;
		height: auto;
	}
	.cfBox .fileStatus:first-of-type {
		padding: 0 0 20px;
		margin: 0 auto 20px;
		border-bottom: 1px solid #ccc;
	}
}


/************************************************************/
/*　お知らせ
/************************************************************/

/*リスト*/
.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){
	/*リスト*/
	.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;
	}
}


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

/*タイトル*/
#contents .articleHeader__title {
	margin: 0 auto 1em;
}

/*公開・更新日時*/
.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;
}

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

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

/*リスト*/
#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);
}


/************************************************************/
/*　モーダルウィンドウ
/************************************************************/
.modal {
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100000;
}
.modal .modal__bg {
	background: rgba(0,0,0,0.8);
	height: 100vh;
	position: absolute;
	width: 100%;
}
.modal .modal__content {
	background: #fff;
	padding: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 1100px;
	height: calc(100vh - 100px);
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.modal .modal__content::-webkit-scrollbar{
	display:none;
}
.modal .closeBtn {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 10000;
	background: none;
	text-indent: -9999px;
}
.modal .closeBtn::before,
.modal .closeBtn::after {
	content: '';
	display: block;
	width: 5px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform-origin: center;
}
.modal .closeBtn::after {
	transform: translate(-50%,-50%) rotate(-45deg);
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	transform-origin: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*モーダルウィンドウ*/
	.modal {
		display: none;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}
	.modal .modal__content {
		padding: 30px;
		width: calc(100% - 60px);
	}
	.modal .closeBtn {
		top: 15px;
	}
}



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

/* テーブルスタイル */
.table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	border-top: 1px solid #e0e0e0;
}
.table th,
.table td {
	padding: 16px;
	border-bottom: 1px solid #e0e0e0;
	text-align: left;
}
.table th {
	background-color: #f9f9f9;
	font-weight: 600;
	width: 25%;
	white-space: nowrap;
}
.table td {
	background-color: #fff;
}

@media screen and (max-width: 768px) {
	.table th,
	.table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	.table th {
		padding: 12px 15px;
		border-bottom: none;
		background-color: #f0f4f8;
		border-left: 1px solid #e0e0e0;
		border-right: 1px solid #e0e0e0;
	}
	.table td {
		padding: 15px;
		background: #fff;
		border-left: 1px solid #e0e0e0;
		border-right: 1px solid #e0e0e0;
	}
}