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

/************************************************************/
/*　リセット
/************************************************************/
:root {
	--main: #0561af;
	--sub:  #05a0ff;
	--base: #ebe7e5;
	--act:  #ff6e00;
	--gray: #fafafa;
	--red:  #e12800;
	--yellow: #fff555;
	--text: #1f1f1f;
	--line: #04ad4b;
	--ease-out: cubic-bezier(0.30, 1.00, 0.30, 1.00);
	--ease-in: cubic-bezier(0.75, 0.05, 0.9, 0.05);
	--ease-inout: cubic-bezier(0.85, 0.00, 0.07, 1.00);
	--font-jp: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-en: "Barlow", sans-serif;
	--ease: all 0.3s ease;
}
*:focus {
	outline: none;
}
html{
	box-sizing: border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
	-webkit-font-smoothing: antialiased;
}
::placeholder {
	color: #ccc;
}
body {
	font-family: var(--font-jp);
	font-style: normal;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	overflow-x: hidden;
	counter-reset: count;
	animation: fadeIn 2.5s ease 0s 1 normal;
	color: var(--text);
}


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

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


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

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

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

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

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

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

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

/*2カラム*/
.pageContent.two-columns {
	width: 100%;
	max-width: 1080px;
	padding: 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: 1080px;
	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: 50px;
	}
	body#sub #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	
	/*アーカイブ*/
	.archiveContent {
		padding: 20px 20px;
	}
	
	/*固定ページ*/
	.pageContent {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
	}
	.pageContent.full {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.pageContent.works {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
		margin: 0 auto;
	}

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

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

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

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

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

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

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

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


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

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

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


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.contHead {
		margin: 0 auto 30px;
		grid-row-gap: 10px;
	}
	.contHead > em {
		column-gap: 15px;
		font-size: 17px;
	}
	.contHead > em::before,
	.contHead > em::after {
		content: '';
		display: block;
		width: 2px;
		height: 17px;
		background: var(--main);
		border-radius: 2px;
		transform: rotate(15deg);
	}
	#contents .contHead > h2 {
		font-size: 5vw;
	}
}


/************************************************************/
/*　ページタイトル
/************************************************************/
#pv {
	width: 100%;
	height: 450px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 0;
}
#pv > figure {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	text-align: center;
	z-index: -1;
}
#pv > figure::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.3);
}
#pv > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#pv > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#pv > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 50px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	font-style: normal;
	white-space: nowrap;
	text-align: center;
}
#contents #pv > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 500;
	color: #fff;
	text-align: center;
	border: none;
	background: none;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#pv {
		width: 100%;
		height: 250px;
	}
	#pv > header {
		width: 100%;
		grid-row-gap: 10px;
	}
	#pv > header > em {
		font-size: 25px;
	}
	#contents #pv > header > h1 {
		font-size: 12px;
	}
}


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

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

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


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

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

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

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

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

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

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.pagination .page-numbers {
		gap: 6px;
	}
	.pagination .page-numbers li a,
	.pagination .page-numbers li span {
		width: 36px;
		height: 36px;
		font-size: 13px;
	}
	.pagination .page-numbers li a.prev,
	.pagination .page-numbers li a.next {
		width: 36px;
		height: 36px;
		aspect-ratio: 1/1;
	}
}

/************************************************************/
/*　ヘッダー
/************************************************************/
#header {
	width: 100%;
	min-width: 1100px;
	padding: 15px 50px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
#header .logo {
	width: fit-content;
	height: 50px;
	padding: 0;
	margin: 0 auto 0 0;
	position: relative;
}
#header .logo .siteInfo__title {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	display: block;
	height: 50px;
}
#header .logo .siteInfo__title a,
#header .logo .siteInfo__title img {
	display: block;
	height: 100%;
}

/*電話番号*/
.tel {
	width: fit-content;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 10px;
	position: relative;
}
.tel > p {
	width: fit-content;
	padding: 5px 10px;
	margin: 0;
	background: #fff;
	border-radius: 5px;
	border: 2px solid var(--act);
	text-align: center;
	font-size: 12px;
	line-height: 1.2em;
	color: var(--text);
	font-weight: 600;
	white-space: nowrap;
}
.tel > p strong {
	display: block;
	font-size: 12px;
	line-height: 1.2em;
	color: var(--act);
	font-weight: 600;
}
.tel > .number {
	display: inline-flex;
	flex-direction: column;
	grid-row-gap: 2px;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	top: -3px;
}
.tel > .number > a {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	column-gap: 6px;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 30px;
	font-weight: 900;
	color: var(--act);
}
.tel > .number > a::before {
	content: '';
	display: block;
	width: auto;
	height: 20px;
	aspect-ratio: 38 / 22;
	background-image: url('https://air-spt.com/wp-content/uploads/icon_free_black.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.tel > .number > p {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
	text-align-last: justify;
}

/*ボタン*/
.headerBtn {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-end;
	column-gap: 10px;
}
.headerBtn a {
	display: inline-block;
	padding: 15px 50px;
	border-radius: 55px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	line-height: 1;
	border: 3px solid #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	white-space: nowrap;
	position: relative;
}
/* LINEボタン */
.headerBtn a.line {
	background: linear-gradient(to bottom, #87cd52 0%, #469931 100%);
}
/* お問い合わせボタン */
.headerBtn a.mail {
	background: linear-gradient(to bottom, #f2a13a 0%, #eb5329 100%);
}
.headerBtn a::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: none;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(45deg);
}
.headerBtn a:hover {
	filter: brightness(1.05);
	transform: translateY(2px);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		min-width: 100%;
		padding: 10px 20px;
		column-gap: 10px;
	}
	#header .logo {
		width: fit-content;
		height: 30px;
	}
	#header .logo .siteInfo__title {
		height: 30px;
	}

	/*電話番号*/
	.tel {
		width: fit-content;
		padding: 0;
		margin: 0;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		column-gap: 5px;
		position: relative;
	}
	.tel > p {
		display: none;
	}
	.tel > .number {
		display: inline-flex;
		flex-direction: column;
		grid-row-gap: 2px;
		width: fit-content;
		padding: 0;
		margin: 0;
		position: relative;
		top: -3px;
	}
	.tel > .number > a {
		column-gap: 6px;
		font-size: 22px;
		line-height: 22px;
	}
	.tel > .number > a::before {
		height: 15px;
	}
	.tel > .number > p {
		font-size: 0.8rem;
	}

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


/************************************************************/
/*　ヘッダー Fix
/************************************************************/

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


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

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

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

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

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

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

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

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

/* メニューリスト */
#menu-panel-menu {
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
}
#menu-panel-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
	line-height: 1;
}
#menu-panel-menu > li a {
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1;
	color: #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: -8px;
	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);
}
#menu-panel-menu > li a > span {
	font-size: 10px;
	line-height: 1;
}

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

	/*デザイン*/
	.panel_wrap {
		flex-wrap: wrap;
	}
	.panel_visual {
		display: none;
	}
	.panel_visual > h2 {
		width: 100%;
		font-size: 14px;
		gap: 10px;
	}
	.panel_visual > h2 img {
		width: 100px;
	}
	.panel_content {
		width: 100%;
		min-width: 100%;
		height: 100vh;
		padding: 60px 30px;
		flex-wrap: wrap;
		column-gap: 30px;
		grid-row-gap: 50px;
	}
	.panel_nav {
		width: 100%;
		min-width: 100%;
		order: 1;
	}
	.panel_info {
		width: 100%;
	}

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

	/* メニューリスト */
	#menu-panel-menu {
		grid-row-gap: 0;
		margin: 0 auto;
		border-top: 1px solid rgba(255,255,255,0.5);
	}
	#menu-panel-menu > li {
		text-align: center;
		border-bottom: 1px solid rgba(255,255,255,0.5);
	}
	#menu-panel-menu > li a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px 20px;
		font-size: 16px;
		text-align: center;
	}
	#menu-panel-menu > li a::after {
		display: none !important;
	}
}

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

/*メニュー*/
#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;
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#fv {
	width: 100%;
	height: calc(100% - 80px);
	padding: 0;
	margin: 80px auto 0;
	position: relative;
	overflow: hidden;
	background-image: url('https://air-spt.com/wp-content/uploads/fv_bg.png');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}
#fv::before {
	content: '';
	display: block;
	width: 100%;
	height: 25%;
	background-image: url('https://air-spt.com/wp-content/uploads/wave.svg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.fv_wrap {
	width: 100%;
	max-width: 900px;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.fv_wrap::before {
	content: '';
	display: block;
	width: 105%;
	height: auto;
	aspect-ratio: 1/1;
	background-color: rgba(255,255,255,0.5);
	backdrop-filter: blur(5px); /* 背景をぼかす */
	-webkit-backdrop-filter: blur(5px); /* Safari用 */
	border-radius: 50%;
	position: absolute;
	top: -20%;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
}
.fv_wrap > h3.fv_sub_ttl {
	width: calc(100% - 150px);
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
}
.fv_wrap > h3.fv_sub_ttl img,
.fv_wrap > h2.fv_main_ttl img,
.fv_wrap > .fv_area_ttl img {
	width: 100%;
	height: auto;
}
.fv_wrap > h2.fv_main_ttl {
	width: calc(100% - 100px);
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.fv_wrap > .fv_area_ttl {
	width: 100%;
	padding: 0 150px 0 50px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	transform: translateY(10px);
}
.fv_tags {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 15px;
	grid-row-gap: 15px;
}
.fv_tags > li {
	padding: 0;
	margin: 0;
	position: relative;
}
.fv_tags > li img {
	filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.05));
}

.payment {
	width: fit-content;
	padding: 15px 0;
	margin: 0 auto;
	background: #fff;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.05));
}
.payment > p {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 0 15px;
	font-size: 15px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	margin: 0;
	border-right: 1px solid #ddd;
}
.payment > p:last-of-type {
	border: none;
}
.payment > p > span {
	display: block;
	width: fit-content;
	height: 20px;
}
.payment > p > span img {
	width: auto;
	height: 20px;
}

.fv_wrap > h3.fv_sub_ttl::before {
	content: '';
	display: block;
	width: 150px;
	min-width: 150px;
	height: auto;
	aspect-ratio: 1/1;
	background-image: url('https://air-spt.com/wp-content/uploads/fv_badge.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: -20px;
	left: -180px;
	z-index: 2;
}

.fv_wrap > .fv_area_ttl::before {
	content: '';
	display: block;
	width: 270px;
	min-width: 270px;
	height: auto;
	aspect-ratio: 275 / 142;
	background-image: url('https://air-spt.com/wp-content/uploads/fv_badge_2.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: -150px;
	transform: translate(0,-50%);
	z-index: 2;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#fv {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
		background: none;
		z-index: 0;
	}
	#fv::before {
		display: none;
	}
}


/************************************************************/
/*　CTA
/************************************************************/
.cta {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	background-image: url('https://air-spt.com/wp-content/uploads/wave_bg.svg');
	background-position: top center;
	background-repeat: repeat-y;
	background-size: 100%;
}
#fv + .cta {
	padding-top: 0;
}
.ctaBox {
	width: 100%;
	max-width: 1000px;
	min-width: 1000px;
	padding: 20px;
	margin: 0 auto;
	background: var(--yellow);
	border-radius: 10px;
	filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.05));
}
.ctaBox > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	border: none;
	background: none;
	position: relative;
	overflow: visible;
}
.ctaBox > h2 > span {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 700;
	text-align: center;
	position: relative;
	white-space: nowrap;
	width: fit-content;
	padding: 0 15px;
}
.ctaBox > h2 > span::before {
	content: '';
	display: block;
	width: 2px;
	height: 100%;
	background: var(--text);
	border-radius: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%) rotate(-15deg);
}
.ctaBox > h2 > span::after {
	content: '';
	display: block;
	width: 2px;
	height: 100%;
	background: var(--text);
	border-radius: 2px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%) rotate(15deg);
}
.ctaBox > h2 > p {
	padding: 0;
	margin: 0;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
}
.ctaBox > h2 > p strong {
	color: var(--act);
}

/*ボタン*/
.ctaBtn {
	width: 100%;
	padding: 30px 20px 20px 20px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	column-gap: 15px;
}
.ctaBtn a {
	display: inline-block;
	padding: 25px 80px;
	border-radius: 70px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 22px;
	line-height: 1;
	letter-spacing: 0.1em;
	border: 3px solid #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	white-space: nowrap;
	position: relative;
}
/* LINEボタン */
.ctaBtn a.line {
	background: linear-gradient(to bottom, #87cd52 0%, #469931 100%);
}
.ctaBtn a.line span {
	display: inline-block;
	padding: 5px 15px;
	margin: 0;
	background: #fff;
	border: 2px solid #469931;
	border-radius: 25px;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #469931;
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
}
/* お問い合わせボタン */
.ctaBtn a.mail {
	background: linear-gradient(to bottom, #f2a13a 0%, #eb5329 100%);
}
.ctaBtn a.mail span {
	display: inline-block;
	padding: 5px 15px;
	margin: 0;
	background: #fff;
	border: 2px solid #eb5329;
	border-radius: 25px;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #eb5329;
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
}
.ctaBtn a::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(45deg);
}
.ctaBtn a:hover {
	filter: brightness(1.05);
	transform: translateY(2px);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0);
}

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

/*固定バナー*/
.fixedBan {
	width: 300px;
	padding: 0;
	margin: 0;
	position: fixed;
	bottom: 50px;
	right: 0;
	z-index: 10;
}
.fixedBan img {
	width: 100%;
	height: auto;
	transition: var(--ease);
}
.fixedBan img:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.cta {
		width: 100%;
		padding: 20px 20px;
		background: var(--main);
	}
	#fv + .cta {
		padding-top: 20px;
	}
	.ctaBox {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 20px;
	}
	.ctaBox::before {
		display: none;
	}
	.ctaBox > h2 {
		width: 100%;
		padding: 0;
		margin: 0 auto 25px;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 5px;
	}
	.ctaBox > h2 > span {
		column-gap: 10px;
		font-size: 14px;
		width: fit-content;
		padding: 0 15px;
	}
	.ctaBox > h2 > span br {
		display: none;
	}
	.ctaBox > h2 > p {
		width: 100%;
		font-size: 3.7vw;
		text-align: center;
	}

	/*ボタン*/
	.ctaBtn {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		border-radius: 10px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
		background: none;
	}
	.ctaBtn a {
		display: inline-block;
		width: 100%;
		padding: 22px 20px 15px;
		border-radius: 50px;
		font-size: 18px;
	}
	/* LINEボタン */
	.ctaBtn a.line span {
		display: inline-block;
		padding: 5px 15px;
		border-radius: 25px;
		font-size: 11px;
		color: #469931;
		position: absolute;
		top: -12px;
		left: 50%;
		transform: translate(-50%,0);
		z-index: 2;
	}
	.ctaBtn a.mail span {
		display: inline-block;
		padding: 5px 15px;
		border-radius: 25px;
		font-size: 11px;
		color: #eb5329;
		position: absolute;
		top: -12px;
		left: 50%;
		transform: translate(-50%,0);
		z-index: 2;
	}

	/*固定バナー*/
	.fixedBan {
		width: 200px;
		bottom: 20px;
	}
}


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

.formBox input[type="text"],
.formBox input[type="email"],
.formBox input[type="tel"] {
	width: 100%;
	padding: 10px;
	margin: 0;
	border: 1px solid #ccc;
	background: #fafafa;
	line-height: 1;
}
.formBox textarea {
	width: 100%;
	padding: 10px;
	margin: 0;
	border: 1px solid #ccc;
	background: #fafafa;
	line-height: 1.6;
}
.formBox input.w50 {
	max-width: 50%;
}
.formBox input.w25 {
	max-width: 25%;
}

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

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

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

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

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

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

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


/************************************************************/
/*　こんなお悩み
/************************************************************/
#topWorry {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: var(--base);
	position: relative;
	z-index: 0;
}
#topWorry > header {
	width: fit-content;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
#topWorry > header::before,
#topWorry > header::after {
	content: '';
	display: block;
	width: 3px;
	height: 100%;
	background: var(--main);
	border-radius: 3px;
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translate(0,-50%) rotate(-20deg);
}
#topWorry > header::after {
	top: 50%;
	left: unset;
	right: -30px;
	transform: translate(0,-50%) rotate(20deg);
}
#contents #topWorry > header > h2 {
	width: fit-content;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	font-size: 50px;
	line-height: 1;
	font-weight: 900;
	color: var(--act);
	text-align: center;
}
#contents #topWorry > header > p {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
.worryList {
	width: 100%;
	max-width: 1100px;
	padding: 50px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
	background-color: #fff;
	background-image: 
		linear-gradient(rgba(0, 191, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 191, 255, 0.05) 1px, transparent 1px);
	background-size: 20px 20px;
}
.worryList > li {
	width: 100%;
	padding: 0 0 0 50px;
	margin: 0;
	position: relative;
}
.worryList > li::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 30px;
	height: 30px;
	background-color: var(--line);
	border-radius: 5px;
}
.worryList > li::after {
	content: "";
	display: block;
	position: absolute;
	left: 6px;
	top: 1em;
	transform: rotate(-45deg);
	width: 18px;
	height: 10px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
}
#contents .worryList > li h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	border: none;
	background: none;
	position: relative;
	font-size: 28px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--main);
}
#contents .worryList > li h3::before,
#contents .worryList > li h3::after {
	display: none;
}
#contents .worryList > li p {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.7em;
	font-weight: 500;
	color: var(--text);
}
.worryList::before {
	content: '';
	display: block;
	width: 350px;
	height: auto;
	aspect-ratio: 700 / 1200;
	background-image: url('https://air-spt.com/wp-content/uploads/worry_people.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: -100px;
	right: -150px;
	filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.05));
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topWorry {
		width: 100%;
		padding: 40px 20px;
		overflow: hidden;
	}
	#topWorry > header {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 20px;
	}
	#topWorry > header::before,
	#topWorry > header::after {
		top: 50%;
		left: -10px;
	}
	#topWorry > header::after {
		top: 50%;
		left: unset;
		right: -20px;
		transform: translate(0,-50%) rotate(20deg);
	}
	#contents #topWorry > header > h2 {
		width: fit-content;
		margin: 0 auto 10px;
		font-size: 6vw;
	}
	#contents #topWorry > header > p {
		font-size: 16px;
	}
	.worryList {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		border-radius: 20px;
		grid-row-gap: 15px;
	}
	.worryList > li {
		width: 100%;
		padding: 0 0 0 30px;
	}
	.worryList > li::before {
		left: 0;
		top: 0.35em;
		width: 20px;
		height: 20px;
	}
	.worryList > li::after {
		content: "";
		display: block;
		position: absolute;
		left: 4px;
		top: 0.7em;
		transform: rotate(-45deg);
		width: 12px;
		height: 7px;
		border-left: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}
	#contents .worryList > li h3 {
		margin: 0 auto 5px;
		font-size: 18px;
	}
	#contents .worryList > li p {
		font-size: 14px;
	}
	.worryList::before {
		content: '';
		display: block;
		width: 100px;
		position: absolute;
		bottom: -40px;
		right: -20px;
	}
}

/************************************************************/
/*　選ばれる理由
/************************************************************/
#topReason {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
#topReason::before {
	content: '';
	display: block;
	width: 100%;
	height: 25%;
	background-image: url('https://air-spt.com/wp-content/uploads/wave.svg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	opacity: 0.1;
}
#topReason > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
}
#contents #topReason > header > h2 {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
}
#contents #topReason > header > h2 img {
	width: 100%;
	height: auto;
}
/*リスト*/
.reasonList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 60px;
	grid-row-gap: 60px;
}
.reasonList > li {
	width: calc((100% - 60px) / 2);
	padding: 30px;
	margin: 0;
	background: #E3F2F8;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	border-radius: 20px;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.02);
}
#contents .reasonList > li h3 {
	width: 100%;
	height: 2.4em;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--main);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -0.7em;
	left: 0;
	z-index: 5;
	text-shadow: 
		2px  2px 0 #fff,
		-2px  2px 0 #fff,
		2px -2px 0 #fff,
		-2px -2px 0 #fff,
		2px  0px 0 #fff,
		-2px  0px 0 #fff,
		0px  2px 0 #fff,
		0px -2px 0 #fff;
}
#contents .reasonList > li h3::before,
#contents .reasonList > li h3::after {
	display: none;
}
.reasonList > li figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.reasonList > li figure::before {
	content: '';
	display: block;
	padding-top: 50%;
}
.reasonList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.reasonList > li > p {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*下部*/
.reason_btm {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#contents .reason_btm > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 55px;
	line-height: 1.6em;
	font-weight: 900;
	color: var(--text);
	text-align: center;
}
#contents .reason_btm > h2 strong {
	display: inline-block;
	padding: 7px 10px 10px;
	margin: 0 5px 0 0;
	background: #ff6e00;
	font-size: 55px;
	line-height: 1em;
	font-weight: 900;
	color: #fff;
}
#contents .reason_btm > p {
	padding: 0;
	margin: 0 auto 30px;
	text-align: center;
	font-size: 18px;
	line-height: 1.7em;
	font-weight: 900;
}
#contents .reason_btm > span {
	width: 100%;
	height: 30px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	column-gap: 10px;
}
#contents .reason_btm > span img {
	width: auto;
	height: 100%;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReason {
		width: 100%;
		padding: 40px 20px;
	}
	#topReason::before {
		width: 100%;
		height: 100px;
	}
	#topReason > header {
		margin: 0 auto 40px;
	}
	#contents #topReason > header > h2 {
		width: 100%;
		max-width: 100%;
	}
	/*リスト*/
	.reasonList {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto 40px;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	.reasonList > li {
		width: 100%;
		padding: 20px;
		grid-row-gap: 10px;
		border-radius: 20px;
	}
	#contents .reasonList > li h3 {
		width: 100%;
		height: 2.4em;
		font-size: 5vw;
		top: -0.7em;
	}

	/*下部*/
	.reason_btm {
		width: 100%;
		max-width: 100%;
	}
	#contents .reason_btm > h2 {
		margin: 0 auto 20px;
		font-size: 4vw;
		line-height: 2em;
	}
	#contents .reason_btm > h2 strong {
		display: inline-block;
		padding: 5px 6px 8px;
		margin: 0 5px 0 0;
		font-size: 4vw;
	}
	#contents .reason_btm > p {
		padding: 0;
		margin: 0 auto 20px;
		font-size: 3vw;
	}
	#contents .reason_btm > span {
		width: 100%;
		height: 25px;
	}
}

/************************************************************/
/*　宣言
/************************************************************/
#topDeclare {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #50A4D2;
	position: relative;
	z-index: 0;
}
#topDeclare::before,
#topDeclare::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 20px;
	left: 0;
	z-index: -1;
}
#topDeclare::after {
	top: unset;
	bottom: 20px;
}
#topDeclare> header {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	z-index: 5;
}
#topDeclare > header::after {
	content: '';
	display: block;
	width: 500px;
	height: auto;
	aspect-ratio: 700 / 532;
	background-image: url('https://air-spt.com/wp-content/uploads/declare_img.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: -100px;
	right: -200px;
	z-index: -1;
}
#contents #topDeclare> header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 50px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--main);
	text-align: left;
	text-shadow: 
		2px  2px 0 #fff,
		-2px  2px 0 #fff,
		2px -2px 0 #fff,
		-2px -2px 0 #fff,
		2px  0px 0 #fff,
		-2px  0px 0 #fff,
		0px  2px 0 #fff,
		0px -2px 0 #fff;
}
#contents #topDeclare> header > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
	text-align: left;
	text-shadow: 
		2px  2px 0 #fff,
		-2px  2px 0 #fff,
		2px -2px 0 #fff,
		-2px -2px 0 #fff,
		2px  0px 0 #fff,
		-2px  0px 0 #fff,
		0px  2px 0 #fff,
		0px -2px 0 #fff;
}
#contents #topDeclare> header > h3::before,
#contents #topDeclare> header > h3::after {
	display: none;
}
span.marker {
	display: inline;
	background: linear-gradient(transparent 60%, #ffbe00 60%);
	padding: 0 2px;
}
#topDeclare> header > p {
	padding: 0;
	margin: 0;
	font-size: 18px;
	line-height: 2em;
	font-weight: 700;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topDeclare {
		width: 100%;
		padding: 40px 20px 90px;
		overflow: hidden
	}
	#topDeclare::before,
	#topDeclare::after {
		opacity: 0.5;
	}
	#topDeclare> header {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 10px;
		z-index: 5;
	}
	#topDeclare > header::after {
		content: '';
		display: block;
		width: 150px;
		position: absolute;
		bottom: -90px;
		right: -20px;
		z-index: -1;
	}
	#contents #topDeclare> header > h2 {
		width: 100%;
		font-size: 5vw;
	}
	#contents #topDeclare> header > h3 {
		font-size: 4.5vw;
	}
	#topDeclare> header > p {
		padding: 0;
		margin: 0;
		font-size: 2vw;
	}
}

/************************************************************/
/*　料金表
/************************************************************/
#topPrice {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #E3F2F8;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

/* 図形スタイル */
#topPrice::before,
#topPrice::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.6;
	z-index: -1;
}
#topPrice::before {
	width: 500px;
	height: 500px;
	background-color: #add8e6;
	top: -50px;
	left: -50px;
	animation: float 15s ease-in-out infinite;
}
#topPrice::after {
	width: 500px;
	height: 500px;
	background-color: #fffaf0;
	bottom: -100px;
	right: -50px;
	animation: float 20s ease-in-out infinite-reverse;
}
@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(30px, 20px) scale(1.05);
	}
}

.priceBox {
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
}
.priceBox > p {
	display: block;
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background: #00C288;
	border-radius: 10px;
	border: 3px solid #fff;
}
.priceBox > p small {
	display: block;
	font-size: 0.7em;
	text-align: center;
	color: #fff;
}
/*テーブル*/
.price-table {
	width: 100%;
	max-width: 1000px;
	table-layout: auto;
	border-collapse: collapse;
	font-family: sans-serif;
	background-color: #fff;
	border: 1px solid #ccc;
}
.price-table thead th {
	background-color: #0561af;
	color: #fff;
	padding: 15px 20px;
	text-align: center;
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	border: 1px solid #0561af;
}
.price-table tbody td {
	padding: 12px 20px;
	border: 1px solid #ddd;
	vertical-align: middle;
	font-size: 18px;
}
.price-table tbody td.column-1 {
	background-color: #f7f7f7;
	color: #333;
	font-weight: bold;
	line-height: 1.4em;
}
.price-table tbody td.column-2 {
	width: 30%;
	background-color: #fff;
	font-size: 18px;
	font-weight: 900;
	color: #d32f2f;
	line-height: 1.4em;
	text-align: right;
	white-space: nowrap;
}
.price-table tbody tr:hover td {
	filter: brightness(0.98);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topPrice {
		width: 100%;
		padding: 40px 20px 60px;
	}

	/* 図形スタイル */
	#topPrice::before,
	#topPrice::after {
		content: "";
		position: absolute;
		border-radius: 50%;
		filter: blur(40px);
		opacity: 0.6;
		z-index: -1;
	}
	#topPrice::before {
		width: 200px;
		height: 200px;
		background-color: #add8e6;
		top: -25px;
		left: -25px;
		animation: float 15s ease-in-out infinite;
	}
	#topPrice::after {
		width: 200px;
		height: 200px;
		background-color: #fffaf0;
		bottom: -50px;
		right: -25px;
		animation: float 20s ease-in-out infinite-reverse;
	}

	.priceBox {
		grid-row-gap: 30px;
		width: 100%;
		max-width: 100%;
	}
	.priceBox > p {
		display: block;
		width: 100%;
		padding: 20px;
		font-size: 4vw;
	}
	.priceBox > p small {
		display: block;
		font-size: 0.8em;
		line-height: 1.4em;
		text-align: center;
		color: #fff;
		margin-top: 10px;
	}
	/*テーブル*/
	.price-table {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}
	.price-table thead th {
		background-color: #0561af;
		color: #fff;
		padding: 10px 10px;
		text-align: center;
		font-size: 4vw;
	}
	.price-table tbody td {
		padding: 10px 10px;
		border: 1px solid #ddd;
		vertical-align: middle;
		font-size: 12px;
	}
	.price-table tbody td.column-1 {
		background-color: #f7f7f7;
		color: #333;
		font-weight: bold;
		line-height: 1.4em;
	}
	.price-table tbody td.column-2 {
		width: auto;
		font-size: 12px;
	}
	.price-table tbody tr:hover td {
		filter: brightness(0.98);
	}
	.tablepress caption {
		display: none;
	}
}

/************************************************************/
/*　お問い合わせCTA
/************************************************************/
#topCta {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	background-image: url('https://air-spt.com/wp-content/uploads/test2.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 0;
}
#topCta::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(5,97,175,0.5);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#topCta::after {
	content: '';
	display: block;
	width: 500px;
	height: auto;
	aspect-ratio: 700 / 532;
	background-image: url('https://air-spt.com/wp-content/uploads/declare_img.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	right: -50px;
	z-index: -1;
}
#topCta > span {
	display: inline-block;
	padding: 15px 30px 17px;
	margin: 0;
	background: var(--act);
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	border-radius: 30px 0 0 30px;
	position: absolute;
	top: -30px;
	right: 0;
	z-index: 2;
}
#topCta > header {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-row-gap: 5px;
}
#topCta > header > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
#contents #topCta > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 900;
	color: #fff;
	text-align: center;
	border: none;
	background: none;
	position: relative;
}
#topCta .tel {
	width: fit-content;
	padding: 10px 20px 20px;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
	background-color: rgba(255,255,255,0.1);
	backdrop-filter: blur(5px); /* 背景をぼかす */
	-webkit-backdrop-filter: blur(5px); /* Safari用 */
}
#topCta .tel > a {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	column-gap: 6px;
	font-family: var(--font-en);
	font-size: 75px;
	line-height: 75px;
	font-weight: 900;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#topCta .tel > a:hover {
	color: var(--act);
	text-decoration: none;
	transition: var(--ease);
}
#topCta .tel > a::before {
	content: '';
	display: block;
	width: auto;
	height: 50px;
	aspect-ratio: 38 / 22;
	background-image: url('https://air-spt.com/wp-content/uploads/icon_free.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#topCta .tel > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align-last: justify;
}
/*ボタン*/
.topCtaBtn {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 15px;
}
.topCtaBtn > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	text-align: center;
}
.topCtaBtn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 30px) / 2);
	padding: 20px 50px;
	border-radius: 70px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 30px;
	line-height: 1;
	border: 3px solid #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	white-space: nowrap;
	position: relative;
}
/* LINEボタン */
.topCtaBtn a.line {
	background: linear-gradient(to bottom, #87cd52 0%, #469931 100%);
}
/* お問い合わせボタン */
.topCtaBtn a.mail {
	background: linear-gradient(to bottom, #f2a13a 0%, #eb5329 100%);
}
.topCtaBtn a::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%) rotate(45deg);
}
.topCtaBtn a:hover {
	filter: brightness(1.05);
	transform: translateY(2px);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCta {
		width: 100%;
		padding: 40px 20px;
		background-image: url('https://air-spt.com/wp-content/uploads/test2.webp');
	}
	#topCta::after {
		content: '';
		display: block;
		width: 500px;
		height: auto;
		aspect-ratio: 700 / 532;
		background-image: url('https://air-spt.com/wp-content/uploads/declare_img.webp');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100%;
		position: absolute;
		bottom: 0;
		right: -50px;
		z-index: -1;
		display: none;
	}
	#topCta > span {
		display: inline-block;
		padding: 12px 20px 13px;
		font-size: 3.5vw;
		top: -20px;
	}
	#topCta > header {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
	}
	#topCta > header > span {
		font-size: 3.5vw;
	}
	#contents #topCta > header > h2 {
		font-size: 6vw;
	}
	#topCta .tel {
		width: 100%;
		padding: 10px 20px 20px;
		margin: 0 auto 20px;
	}
	#topCta .tel > a {
		column-gap: 6px;
		font-size: 40px;
		line-height: 40px;
	}
	#topCta .tel > a::before {
		height: 30px;
	}
	#topCta .tel > span {
		font-size: 4vw;
		text-align-last: center;
	}
	/*ボタン*/
	.topCtaBtn {
		width: 100%;
		max-width: 100%;
		column-gap: 30px;
		grid-row-gap: 15px;
	}
	.topCtaBtn > p {
		font-size: 5vw;
	}
	.topCtaBtn a {
		width: 100%;
		padding: 20px 30px;
		border-radius: 70px;
		font-size: 20px;
	}
}

/************************************************************/
/*　よくある質問
/************************************************************/
#topFaq {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
#contents #topFaq .contHead h2 {
	letter-spacing: normal;
}

/*リスト*/
.faqList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
.faqList > dl {
	width: 100%;
	padding: 20px;
	margin: 0 auto;
	position: relative;
	background: #E3F2F8;
	border-radius: 5px;
}
.faqList.sub > dl {
	background: #E3F2F8;
}
.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(--text);
	border-right: 2px solid var(--text);
	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;
	}
	.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(--text);
		border-right: 1px solid var(--text);
	}
	.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;
}
#contents #topFlow .contHead h2 {
	letter-spacing: normal;
}

.flowContact {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#contents .flowContact > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	text-align: center;
	background: none;
	border: none;
}
#contents .flowContact > h3::before,
#contents .flowContact > h3::after {
	display: none;
}
.flowContact > a {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	column-gap: 6px;
	width: fit-content;
	font-family: var(--font-en);
	font-size: 75px;
	line-height: 75px;
	font-weight: 900;
	color: var(--main);
	text-decoration: none;
	transition: var(--ease);
	padding: 0;
	margin: 0 auto;
}
.flowContact > a:hover {
	color: var(--act);
	text-decoration: none;
	transition: var(--ease);
}
.flowContact > a::before {
	content: '';
	display: block;
	width: auto;
	height: 50px;
	aspect-ratio: 38 / 22;
	background-image: url('https://air-spt.com/wp-content/uploads/icon_free_green.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}

/*リスト*/
.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(--sub);
	position: absolute;
	top: 90px;
	left: 78px;
}
.flowList > li:last-child::before {
	display: none;
}
.flowList > li > em {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	min-width: 100px;
	aspect-ratio: 1/1;
	border-radius: 50% 50% 5px 50%;
	background: var(--main);
	padding: 0;
	margin: 0;
	position: relative;
	font-family: var(--font-en);
	font-size: 50px;
	line-height: 1;
	color: #fff;
	font-style: normal;
	font-weight: 900;
	top: -40px;
}
.flowList > li > em::before {
	content: '';
	display: block;
	width: 90px;
	min-width: 90px;
	aspect-ratio: 1/1;
	border-radius: 50% 50% 5px 50%;
	background: none;
	border: 2px solid #fff;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	opacity: 0.6;
}
.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: 90px;
	padding: 20px;
	margin: 0 auto;
	border-radius: 10px;
	background: var(--act);
	text-align: center;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.payimage {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	height: 30px;
	margin-top: 1em;
}
.payimage img {
	width: auto;
	height: 100%;
}
/*== スマホ・タブレット対応 ==*/
@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;
	}
	
	.flowContact {
		margin: 0 auto 30px;
	}
	#contents .flowContact > h3 {
		font-size: 4vw;
	}
	.flowContact > a {
		font-size: 40px;
		line-height: 40px;
	}
	.flowContact > a::before {
		content: '';
		height: 30px;
		aspect-ratio: 38 / 22;
	}
	
	/*リスト*/
	.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: flex;
		justify-content: center;
		align-items: center;
		width: 50px;
		min-width: 50px;
		position: absolute;
		top: 10px;
		left: 10px;
		font-size: 25px;
	}
	.flowList > li > em::before {
		display: none;
	}
	.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: 100px 0;
	margin: 0 auto;
	position: relative;
	background: #fafafa;
	z-index: 0;
}
#topContact::before {
	content: '';
	display: block;
	width: 100%;
	height: 200px;
	background-image: url('https://air-spt.com/wp-content/uploads/wave.svg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transform: scale(1,-1);
}
#contents #topContact .contHead h2 {
	letter-spacing: normal;
	font-size: 40px;
}

/*ヘッダー*/
#topContact > header.contactHead {
	width: 900px;
	padding: 50px 50px;
	margin: 0 auto 50px;
	border-radius: 200px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
	background: #fff;
	filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.05));
}
#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: 40px 20px;
	}
	#topContact::before {
		width: 100%;
		height: 120px;
		background-size: cover;
	}
	#contents #topContact .contHead em {
		color: #fff;
	}
	#contents #topContact .contHead em::before,
	#contents #topContact .contHead em::after {
		background: #fff;
	}
	#contents #topContact .contHead h2 {
		letter-spacing: normal;
		font-size: 6vw;
		text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff, 2px 0px 0 #fff, -2px 0px 0 #fff, 0px 2px 0 #fff, 0px -2px 0 #fff;
	}

	/*ヘッダー*/
	#topContact > header.contactHead {
		width: 100%;
		padding: 20px;
		margin: 0 auto 30px;
		border-radius: 20px;
		grid-row-gap: 10px;
	}
	#topContact > header.contactHead .campaign {
		width: fit-content;
		font-size: 12px;
	}
	#topContact > header.contactHead .campaign strong {
		display: inline-block;
		padding: 8px 15px 10px;
		margin: 0 10px 0 0;
		font-size: 12px;
		border-radius: 40px;
	}
	#topContact > header.contactHead .campaign b {
		font-size: 15px;
	}
	#contents #topContact > header.contactHead h2 {
		width: 100%;
		font-size: 6vw;
	}
	#contents #topContact > header.contactHead p {
		font-size: 16px;
		line-height: 1.4em;
		font-weight: 900;
	}
}

/*LINE*/
.lineBox {
	width: 100%;
	max-width: 900px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
.lineBox dt {
	width: 100%;
	padding: 20px;
	margin: 0 auto;
	background: var(--line);
	border-radius: 20px 20px 0 0;
	position: relative;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
.lineBox dd {
	padding: 50px;
	margin: 0;
	background: #fff;
	border: 5px solid var(--line);
	border-top: none;
	position: relative;
	border-radius: 0 0 20px 20px;
}
#contents .lineBox dd > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
.lineFlow {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}
.lineFlow > li {
	width: calc((100% - 40px) / 3);
	padding: 20px;
	margin: 0;
	background: #E3F2F8;
	border-radius: 10px;
	position: relative;
}
.lineFlow > li::after {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	background-image: url('https://air-spt.com/wp-content/uploads/icon_arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translate(0,-50%);
	z-index: 2;
}
.lineFlow > li:last-child::after {
	display: none;
}
.lineFlow > li > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
	font-style: normal;
	text-align: center;
	position: absolute;
	top: -0.5em;
	left: 0;
	z-index: 5;
	text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff, 2px 0px 0 #fff, -2px 0px 0 #fff, 0px 2px 0 #fff, 0px -2px 0 #fff;
}
#contents .lineFlow > li > h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 3.4em;
	padding: 0;
	margin: 0 auto 15px;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	text-align: center;
	color: var(--text);
	border: none;
	background: none;
}
#contents .lineFlow > li > h3::before,
#contents .lineFlow > li > h3::after {
	display: none;
}
.lineFlow > li > figure {
	width: auto;
	height: 100px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
.lineFlow > li > figure img {
	width: auto;
	height: 100%;
}
#contents .lineBox dd > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
#topContact .topCtaBtn {
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	column-gap: 15px;
}
#topContact .topCtaBtn > p {
	color: var(--text);
}
#topContact .topCtaBtn > a {
	font-size: 22px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*LINE*/
	.lineBox {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 40px;
	}
	.lineBox dt {
		width: 100%;
		padding: 12px;
		border-radius: 20px 20px 0 0;
		font-size: 5vw;
	}
	.lineBox dd {
		padding: 20px;
		border-radius: 0 0 20px 20px;
	}
	#contents .lineBox dd > h2 {
		margin: 0 auto 20px;
		font-size: 4vw;
	}
	.lineFlow {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	.lineFlow > li {
		width: 100%;
		padding: 20px;
		margin: 0;
		background: #E3F2F8;
		border-radius: 10px;
		position: relative;
	}
	.lineFlow > li::after {
		display: none;
	}
	.lineFlow > li:last-child::after {
		display: none;
	}
	.lineFlow > li > em {
		font-size: 20px;
	}
	#contents .lineFlow > li > h3 {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0 auto 10px;
		font-size: 18px;
		line-height: 1.4em;
		font-weight: 700;
		text-align: center;
		color: var(--text);
		border: none;
		background: none;
	}
	#contents .lineFlow > li > h3::before,
	#contents .lineFlow > li > h3::after {
		display: none;
	}
	.lineFlow > li > figure {
		width: auto;
		height: 70px;
	}
	#contents .lineBox dd > p {
		margin: 0 auto 20px;
		font-size: 3.4vw;
	}
	#topContact .topCtaBtn {
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		column-gap: 15px;
	}
	#topContact .topCtaBtn > p {
		color: var(--text);
	}
	#topContact .topCtaBtn > a {
		font-size: 20px;
	}
}

/************************************************************/
/*　モーダルウィンドウ
/************************************************************/
.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;
	}
}