@charset "UTF-8";
/*--------------- ▽ header ▽ ---------------*/
.header {
	box-sizing: border-box;
	padding: 15px 20px;
	position: fixed;
	width: 100%;
	z-index: 50;
	background: var(--col-wh);
	border-bottom: 5px solid var(--col-main);
	top: 0;
}

.header-inner {
	margin: 0 auto;
	min-width: 1180px;
}

.header h1 span {
	display: block;
}
.header-logo {
	display: block;
	width: fit-content;
}
.header-logo:hover {
	opacity: 0.7;
}
.header-info {
	gap: 15px;
	width: fit-content;
	margin: 0 0 6px auto;
}
.header-right {
	gap: 30px;
}

/*-------------------
header-nav
--------------------*/
.header-nav-link {
	display: block;
	font-weight: 600;
	letter-spacing: 0.15em;
	box-sizing: border-box;
	padding: 0 12px;
	line-height: 1.1;
	z-index: 1;
	position: relative;
}
.header-nav-link::before {
	position: absolute;
	content: '';
	background: var(--col-text);
	width: 1px;
	height: 15px;
	bottom: 0;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.header-nav-link:hover {
	color: var(--col-main);
}

/*-------------------
現在の表示ページ
--------------------*/
.header-nav-link.current {
	color: var(--col-main);
}

.drawer-link.current {
	color: var(--col-main);
}

/*--------------- △ header △ ---------------*/
/*--------------- ▽ footer ▽ ---------------*/
#pagetop {
	position: fixed;
	right: 2.5%;
	bottom: 5%;
	z-index: 100;
}

.footer {
	position: relative;
	background: var(--col-main);
	color: var(--col-wh);
	box-sizing: border-box;
	padding: 80px 0;
}
.footer-logo {
	display: block;
	width: fit-content;
	margin-bottom: 30px;
}
.footer-logo:hover {
	opacity: 0.7;
}
.footer-nav {
	gap: 40px;
}
.footer-nav-list {
	flex-direction: column;
	gap: 20px;
}
.footer-nav-link {
	font-weight: 600;
	display: block;
	position: relative;
	box-sizing: border-box;
	padding: 0 0 0 12px;
}
.footer-nav-link:hover{
  opacity: 0.7;
}
.footer-nav-link::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	left: 0;
	margin: auto;
	top: 8px;
	background-size: contain;
	transition: all 0.3s ease;
}
.footer #copyright {
	text-align: right;
	padding: 5px 0;
	margin-top: 50px;
}
.footer #copyright small {
	color: var(--col-wh);
	font-size: 12px;
}
.footer #copyright small a {
	color: var(--col-wh);
}
.footer #copyright small a:hover {
	opacity: 0.7;
}

/*--------------- △ footer △ ---------------*/
/*--------------- ▽ 共通 ▽ ---------------*/
/*--------------- △ 共通 △ ---------------*/
/*--------------- ▽ top-page ▽ ---------------*/
.top-section {
	padding: 100px 0;
	box-sizing: border-box;
}

/*--------------- ▼ main-visual ▼ ---------------*/
.mv {
	position: relative;
	margin-top: 100px;

}
.mv-movie {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	z-index: 0;
}

.mv-movie-video {
  width: 100%;
		height: 100%;
		margin: auto;
		-o-object-fit: cover;
		object-fit: cover;
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
}

.mv-catch {
	background: url(../img/mv/catch-bg.jpg) no-repeat center center/cover;
	margin: 0 auto;
	text-align: center;
	box-sizing: border-box;
	padding: 110px 0;
}

/*--------------- ▲ main-visual ▲ ---------------*/
/*--------------- ▼ top ▼ ---------------*/
/*--------------------
top-greetings
---------------------*/
.top-greetings {
	background: var(--col-main);
	position: relative;
	padding: 100px 0 130px;
}
.top-greetings::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: 100%;
	height: 280px;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-greetings-ttl {
	width: fit-content;
	margin-bottom: 40px;
}
.top-greetings-ttl::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust01.png) no-repeat;
	width: 183px;
	height: 217px;
	bottom: 80px;
	margin: auto;
	right: 230px;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: -1;
}
.top-greetings-ttl .ttl-main {
	display: block;
	margin-bottom: 15px;
}
.top-greetings-ttl .ttl-sub {
	display: block;
	font-size: 5rem;
	font-weight: 800;
	color: var(--col-main);
	width: fit-content;
	box-sizing: border-box;
	padding: 10px;
	line-height: 1.3;
	text-align: center;
}
.top-greetings-text {
	width: 520px;
}
.top-greetings-img-wrap {
	position: absolute;
	top: 0;
	right: -120px;
}
.top-greetings-main-img {
	aspect-ratio: 616/520;
	width: 616px;
	height: 520px;
	position: absolute;
	right: 0;
	top: 0;
}
.top-greetings-sub-img {
	aspect-ratio: 330/200;
	width: 330px;
	height: 200px;
	position: absolute;
	right: 320px;
	top: 460px;
}
.top-greetings-wrap {
	position: relative;
}

/*--------------------
top-point
---------------------*/
.top-point {
	background: url(../img/common/bg-deco01.png) repeat-x bottom center;
	padding: 110px 0;
}
.top-point-ttl {
	text-align: center;
	margin: 0 auto 70px;
}
.top-point-ttl::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust02.png) no-repeat;
	width: 268px;
	height: 271px;
	top: -50px;
	margin: auto;
	right: -90px;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-point-main-list {
	flex-direction: column;
	gap: 120px;
	margin-bottom: 120px;
}
.top-point-main-item {
	position: relative;
	gap: 35px;
}
.top-point-main-item::before {
	position: absolute;
	content: '';
	background: url(../img/common/pat01.jpg);
	width: 1080px;
	height: 100%;
	margin: auto;
	right: -420px;
	top: 30px;
	transition: all 0.3s ease;
	z-index: -1;
}
.top-point-main-item-img {
	aspect-ratio: 520/340;
	width: 520px;
	height: 340px;
}
.top-point-main-item-container {
	position: relative;
	width: 515px;
}
.top-point-main-item-ttl {
	top: 0;
	transform: translateY(-20%);
}
.top-point-main-item-ttl .num {
	display: block;
	font-size: 12rem;
	letter-spacing: 0.05em;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 10px;
}
.top-point-main-item-ttl .ttl {
	display: block;
	font-weight: 700;
	font-size: 4.4rem;
	letter-spacing: 0.1em;
	color: var(--col-wh);
}
.top-point-main-item:nth-child(even)::before {
	left: -420px;
	right: auto;
}
.top-point-main-item:nth-child(even) .top-point-main-item-img {
	order: 2;
}
.top-point-main-item:nth-child(2)::before {
	background: url(../img/common/pat02.jpg);
}
.top-point-main-item:nth-child(3)::before {
	background: url(../img/common/pat03.jpg);
}
.top-point-sub-list {
	gap: 92px 60px;
	counter-reset: number 3;
}
.top-point-sub-item {
	width: 320px;
	position: relative;
	box-sizing: border-box;
	padding: 10px 0 20px;
	border: 4px solid var(--col-main);
	background: var(--col-wh);
}
.top-point-sub-item::before {
	content: '0' counter(number);
	counter-increment: number 1;
	position: absolute;
	left: 5px;
	top: -30px;
	font-size: 5rem;
	font-weight: 600;
	background: url(../img/common/deco01.png) no-repeat;
	width: 90px;
	height: 79px;
	background-size: contain;
	text-align: center;
	color: var(--col-wh);
}
.top-point-sub-item-ttl {
	text-align: center;
	letter-spacing: 0.04em;
	margin: 0 auto 12px;
}
.top-point-sub-item-ttl .icon {
	position: relative;
	width: 100%;
	min-height: 100px;
}
.top-point-sub-item-ttl .ttl {
	color: var(--col-main);
	font-size: 2.5rem;
	font-weight: 800;
	text-align: center;
}
.top-point-sub-item-text {
	box-sizing: border-box;
	padding: 0 12px;
}

/*--------------------
top-service
---------------------*/
.top-service {
	background: var(--col-main);
}
.top-service-ttl {
	margin: 0 auto 80px;
}
.top-service-ttl::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust08.png) no-repeat;
	width: 153px;
	height: 457px;
	bottom: -260px;
	left: 0;
	margin: auto;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: -1;
}
.top-service-container {
	position: relative;
	background: var(--col-wh);
	box-sizing: border-box;
	padding: 0 40px 60px 40px;
	position: relative;
	margin: 0 auto 100px;
	z-index: 5;
}
.top-service-container-ttl {
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	transform: translateY(-50%);
}
.top-service-container:last-child {
	margin: 0 auto;
}
.top-service-list {
	gap: 50px;
	margin: 0 auto 50px;
}
.top-service-item {
	width: 300px;
}
.top-service-item figcaption {
	position: relative;
	display: block;
	font-size: 2.6rem;
	color: var(--col-main);
	font-weight: 700;
	box-sizing: border-box;
	padding: 0 0 0 20px;
}
.top-service-item figcaption::before {
	position: absolute;
	content: '';
	background: var(--col-main);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	bottom: 0;
	left: 0;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-service-item-img {
	aspect-ratio: 300/190;
	width: 300px;
	height: 190px;
	margin-bottom: 12px;
}
.top-service-btn {
	margin: 0 auto;
}
.top-service-solar-container .container-img {
	aspect-ratio: 560/312;
	width: 560px;
	height: 312px;
}
.top-service-solar-container .container-btn {
	width: 390px;
}
.top-service-exterior-container .container-btn {
	width: 440px;
	margin: 0 auto;
}

/*--------------------
top-grant
---------------------*/
.top-grant {
	position: relative;
}
.top-grant-ttl {
	font-size: 6rem;
	color: var(--col-main);
	font-weight: 800;
	line-height: 1.6;
	margin-bottom: 30px;
}
.top-grant-ttl .deco {
	font-size: 7rem;
	display: inline-block;
	background: var(--col-main);
	color: var(--col-wh);
	line-height: 1.2;
	box-sizing: border-box;
	padding: 5px 14px;
}
.top-grant-text-wrap {
	width: 700px;
}
.top-grant-text {
	width: 530px;
	margin-bottom: 40px;
}
.top-grant-wrap {
	position: relative;
}
.top-grant-img {
	position: absolute;
	top: -40px;
	right: -100px;
}

/*--------------------
top-campaign
---------------------*/
.top-campaign {
	padding: 140px 0 110px;
	background:
		url(../img/common/deco-line.png) no-repeat top center,
		url(../img/common/deco-line.png) no-repeat bottom center,
		url(../img/top/campaign-bg.jpg) no-repeat center center/cover;
}
.top-campaign-container {
	background: rgba(var(--col-wh-rgb), 0.85);
	border-radius: 30px;
	box-sizing: border-box;
	padding: 0 60px 60px 60px;
}
.top-campaign-ttl {
	text-align: center;
	margin: 0 auto;
	top: 0;
	transform: translateY(-50%);
}
.top-campaign-text {
	margin: 0 auto 30px;
}
.top-campaign-point {
	max-width: 770px;
	margin: 0 auto;
}
.top-campaign-point-ttl {
	color: var(--col-wh);
	background: var(--col-sub-light);
	font-size: 3.5rem;
	text-align: center;
	box-sizing: border-box;
	padding: 10px 20px;
	border-radius: 28px 28px 0 0;
}
.top-campaign-point-list {
	background: var(--col-wh);
	box-sizing: border-box;
	padding: 20px 30px 20px;
	border-radius: 0 0 28px 28px;
}

/*--------------------
top-area
---------------------*/
.top-area {
	background: var(--col-main);
}
.top-area-text {
	font-size: 2rem;
	position: relative;
	background: var(--col-wh);
	box-sizing: border-box;
	padding: 20px;
	width: 520px;
  line-height: 1.9;
	border-radius: 20px;
}
.top-area-text .large {
	font-size: 2.4rem;
	font-weight: 800;
}
.top-area-img {
	position: relative;
	right: -100px;
	top: 0;
}

/*--------------------
top-flow
---------------------*/
.top-flow {
	background: url(../img/top/flow-bg.jpg) no-repeat center center/cover;
}
.top-flow-ttl {
	margin: 0 auto 70px;
}
.top-flow-list {
	gap: 40px 25px;
	counter-reset: number 0;
	position: relative;
}
.top-flow-list::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust04.png) no-repeat;
	width: 194px;
	height: 239px;
	margin: auto;
	right: -50px;
	top: -190px;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-flow-item {
	position: relative;
	width: calc((100% - 75px) / 4);
	min-height: 116px;
	background: var(--col-wh);
	border: 4px solid var(--col-main);
}
.top-flow-item::before {
	content: '0' counter(number);
	counter-increment: number 1;
	position: absolute;
	top: -28px;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 2.4rem;
	width: 48px;
	height: 48px;
	background: var(--bg-gradation01);
	z-index: 2;
	font-weight: 800;
	border-radius: 50%;
	text-align: center;
	line-height: 1.8;
}
.top-flow-item::after {
	position: absolute;
	content: '';
	background: url(../img/common/arw02.png) no-repeat;
	width: 10px;
	height: 20px;
	bottom: 0;
	margin: auto;
	right: -22px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-flow-item:last-child::after,
.top-flow-item:nth-child(4n)::after {
	content: none;
}
.top-flow-item-text {
	color: var(--col-main);
	font-size: 2.2rem;
	font-weight: 800;
	text-align: center;
	letter-spacing: 0.15em;
	box-sizing: border-box;
	padding: 8px 0 0 0;
}

/*--------------------
top-case
---------------------*/
.top-case .inbox {
	position: relative;
}
.top-case-btn {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 200px;
}

/*--------------------
top-contact
---------------------*/
.top-contact {
	padding: 60px 0;
  min-height: 470px;
}
.top-contact-wrap {
	position: relative;
}
.top-contact-text-wrap {
	width: 840px;
	margin: 0 0 0 auto;
	order: 2;
}
.top-contact-illust {
	order: 1;
	position: absolute;
	left: -100px;
}
.top-contact-ttl {
	margin-bottom: 30px;
}
.top-contact-text {
	font-size: 2rem;
	color: var(--col-wh);
	margin-bottom: 10px;
}
.top-contact-text .small {
	font-size: 1.6rem;
}
.top-contact-time {
	font-size: 1.8rem;
}
.top-contact-tel .num {
	padding: 0 0 0 30px;
	font-size: 5.6rem;
}
.top-contact-tel .num::before {
	position: absolute;
	content: '';
	background: url(../img/common/icon-tel-wh.png) no-repeat;
	width: 22px;
	height: 38px;
	bottom: 0;
	left: 0;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

/*--------------------
top-news
---------------------*/
.top-news-ttl {
	width: fit-content;
}
.top-news-ttl::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust07.png) no-repeat;
	width: 199px;
	height: 114px;
	bottom: 0;
	left: -180px;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: -1;
}
.top-news-box {
	background: var(--col-wh);
	box-sizing: border-box;
	padding: 40px;
	box-shadow: 0 0 30px rgba(16, 159, 147, 0.3);
}
.top-news .inbox {
	position: relative;
}
.top-news-btn {
	position: absolute;
	top: 20px;
	right: 0;
	min-width: 200px;
}

/*--------------------

---------------------*/
/*--------------- ▲ top ▲ ---------------*/
/*--------------- ▽ sub-page ▽ ---------------*/
.sub-section {
	position: relative;
	padding: 100px 0;
	box-sizing: border-box;
}

/*--------------- ▼ sub-visual ▼ ---------------*/
.sv {
	position: relative;
	width: 100%;
	height: 445px;
	margin-top: 100px;
}
.sv-ttl {
	font-size: 5.8rem;
	font-weight: 800;
	box-sizing: border-box;
	padding: 0 0 0 180px;
}

/*---------------------
各ページの画像設定
-----------------------*/
.sv-exterior {
	background: url(../img/sv/sv-exterior-bg.jpg) no-repeat center center/cover;
}

.sv-solar {
	background: url(../img/sv/sv-solar-bg.jpg) no-repeat center center/cover;
}

.sv-grant {
	background: url(../img/sv/sv-grant-bg.jpg) no-repeat center center/cover;
}

.sv-case {
	background: url(../img/sv/sv-case-bg.jpg) no-repeat center center/cover;
}

.sv-info {
	background: url(../img/sv/sv-info-bg.jpg) no-repeat center center/cover;
}

.sv-news {
	background: url(../img/sv/sv-news-bg.jpg) no-repeat center center/cover;
}

.sv-news {
	background: url(../img/sv/sv-news-bg.jpg) no-repeat center center/cover;
}

.sv-contact {
	background: url(../img/sv/sv-contact-bg.jpg) no-repeat center center/cover;
}

.sv-complete {
	background: url(../img/sv/sv-complete-bg.jpg) no-repeat center center/cover;
}

.sv-privacy {
	background: url(../img/sv/sv-privacy-bg.jpg) no-repeat center center/cover;
}

.sv-site {
	background: url(../img/sv/sv-site-bg.jpg) no-repeat center center/cover;
}

.sv-notfound {
	background: url(../img/sv/sv-notfound-bg.jpg) no-repeat center center/cover;
}

/*--------------- ▼ 下層共通タイトル ▼ ---------------*/
/*--------------- ▲ 下層共通タイトル ▲ ---------------*/
/*--------------- ▼ ぱんくず ▼ ---------------*/
#bread-clumb {
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 10px 0;
	z-index: 1;
	min-width: 1280px;
}
#bread-clumb ul {
	display: flex;
	overflow: hidden;
	white-space: nowrap;
}
#bread-clumb li {
	position: relative;
	color: var(--col-text);
	font-size: 14px;
	float: left;
	margin-right: 20px;
}
#bread-clumb li:after {
	content: '>';
	position: absolute;
	display: block;
	right: -15px;
	top: 0;
}
#bread-clumb li:last-child {
	margin-right: 0;
}
#bread-clumb li:last-child:after {
	display: none;
}
#bread-clumb li a {
	color: var(--col-text);
	display: block;
}
#bread-clumb li a:hover {
	opacity: 0.7;
}

/*--------------- ▲ ぱんくず ▲ ---------------*/
/*--------------- ▼ sub02_外装工事 ▼ ---------------*/
/*-----------------------
exterior-com-section
-------------------------*/
.exterior-com-section-wrap{
  margin-bottom: 40px;
}
.exterior-com-section-text-wrap {
	width: 520px;

}
.exterior-com-section-img {
	aspect-ratio: 520/324;
	width: 520px;
	height: 324px;
}

.exterior-com-section-ttl{
  margin-bottom: 35px;
}

/*--------------- ▲ sub02_外装工事 ▲ ---------------*/
/*--------------- ▼ sub03_太陽光パネル・蓄電池 ▼ ---------------*/
/*-----------------------
solar-benefit
-------------------------*/
.solar-benefit-list {
	position: relative;
}
.solar-benefit-list::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust01.png) no-repeat;
	width: 183px;
	height: 217px;
	margin: auto;
	right: 0;
	top: -190px;
	background-size: contain;
	transition: all 0.3s ease;
}

/*-----------------------
solar-emergency
-------------------------*/
.solar-emergency-wrap {
	margin: 0 auto 60px;
}

.solar-emergency-ttl{
	width: fit-content;
}
.solar-emergency-ttl::before{
	position: absolute;
	content: "";
	background: url(../img/common/illust04.png)no-repeat;
	width: 117px;
	height: 142px;
	right: -160px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-size: contain;
}
.solar-emergency-text-wrap {
	width: 520px;
}
.solar-emergency-img {
	aspect-ratio: 520/324;
	width: 520px;
	height: 324px;
}
.solar-emergency-effect {
	margin: 0 auto 120px;
}
.solar-emergency-scope .solar-emergency-sub-ttl {
	margin: 0 auto 30px;
}
.solar-emergency-scope-text {
	margin: 0 auto 30px;
}
.solar-emergency-scope-table {
	width: 100%;
}
.solar-emergency-scope-table tr,
.solar-emergency-scope-table tbody {
	width: 100%;
}
.solar-emergency-scope-table tr:last-child th {
	border: none;
}
.solar-emergency-scope-table th,
.solar-emergency-scope-table td {
	vertical-align: middle;
	padding: 15px 12px;
	box-sizing: border-box;
	font-weight: 500;
	letter-spacing: 0.1em;
  line-height: 1.2;
}
.solar-emergency-scope-table th:nth-child(1),
.solar-emergency-scope-table td:nth-child(1) {
	width: 20%;
}
.solar-emergency-scope-table th:nth-child(2),
.solar-emergency-scope-table td:nth-child(2) {
	width: 30%;
}
.solar-emergency-scope-table th:nth-child(3),
.solar-emergency-scope-table td:nth-child(3) {
	width: 20%;
}
.solar-emergency-scope-table th:nth-child(4),
.solar-emergency-scope-table td:nth-child(4) {
	width: 30%;
}
.solar-emergency-scope-table th {
	text-align: center;
}
.solar-emergency-scope-table .row-ttl th {
	background: var(--col-sub);
	border-right: 1px solid var(--col-wh);
	color: var(--col-wh);
	font-size: 2.1rem;
	letter-spacing: 0.1em;
}
.solar-emergency-scope-table .row-ttl th:last-child {
	border-right: none;
}
.solar-emergency-scope-table .row-ttl th .small {
	font-size: 1.6rem;
}
.solar-emergency-scope-table .row th {
	background: var(--col-sub-light);
	color: var(--col-wh);
	border-bottom: 1px solid var(--col-wh);
  font-size: 1.8rem;
}
.solar-emergency-scope-table .row td {
	background: var(--col-wh);
	font-size: 1.6rem;
	letter-spacing: 0;
	border-bottom: 1px solid var(--col-text);
	border-right: 1px dashed var(--col-text);
}
.solar-emergency-scope-table .row td:last-child {
	border-right: none;
}

/*-----------------------
solar-simulation
-------------------------*/
.solar-simulation-ttl{
	white-space: nowrap;
}
.solar-simulation-img{
	margin: 0 auto 30px;
}
/*--------------- ▲ sub03_太陽光パネル・蓄電池 ▲ ---------------*/
/*--------------- ▼ sub04_grant ▼ ---------------*/
/*-----------------------
grant-exterior
-------------------------*/
.grant-exterior {
	padding: 110px 0 0;
}
.grant-exterior-ttl {
	width: fit-content;
}
.grant-exterior-ttl::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust02.png) no-repeat;
	width: 140px;
	height: 140px;
	bottom: 0;
	margin: auto;
	right: -160px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.grant-exterior-text {
	margin: 0 auto 60px;
}
.grant-exterior-about {
	position: relative;
	box-sizing: border-box;
	padding: 70px 0;
}
.grant-exterior-about-ttl {
	color: var(--col-wh);
	font-size: 3.2rem;
	margin: 0 auto 60px;
}
.grant-exterior-about-list {
	gap: 40px;
}
.grant-exterior-about-item {
	position: relative;
	background: var(--col-wh);
	box-sizing: border-box;
	padding: 30px;
	border-radius: 20px;
	width: 100%;
}
.grant-exterior-about-item .item-text {
	letter-spacing: 0.15em;
	line-height: 1.6;
}
.grant-exterior-about-item .item-ttl {
	font-weight: 800;
	margin-bottom: 15px;
}
.grant-exterior-about .item-half {
	width: 520px;
}

/*-----------------------
grant-solar
-------------------------*/
.grant-solar-ttl {
	width: fit-content;
}
.grant-solar-ttl::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust05.png) no-repeat;
	width: 167px;
	height: 154px;
	bottom: 0;
	left: -140px;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: -1;
}
.grant-solar-text {
	margin: 0 auto 60px;
}
.grant-solar-table-ttl {
	margin-bottom: 20px;
}
.grant-solar-table-container {
	margin-bottom: 70px;
}
.grant-solar .grant-solar-table-container01 .subsidy-table-wrap {
	overflow-x: auto;
}
.grant-solar .grant-solar-table-container01 .subsidy-table {
	width: 100%;
	min-width: 1000px;
	border-collapse: collapse;
	table-layout: fixed;
	font-size: 1.6rem;
	line-height: 1.6;
}
.grant-solar .grant-solar-table-container01 .subsidy-table .col-blank {
	width: 48px;
}
.grant-solar .grant-solar-table-container01 .subsidy-table .col-category {
	width: 198px;
}
.grant-solar .grant-solar-table-container01 .subsidy-table .col-type {
	width: 210px;
}
.grant-solar .grant-solar-table-container01 .subsidy-table .col-price {
	width: auto;
}
.grant-solar .grant-solar-table-container01 .subsidy-table th,
.grant-solar .grant-solar-table-container01 .subsidy-table td {
	padding: 10px 18px;
	border: 1px solid var(--col-wh);
	vertical-align: middle;
}
.grant-solar .grant-solar-table-container01 .subsidy-table th {
	background: var(--col-sub);
	color: var(--col-wh);
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	font-size: 1.8rem;
}
.grant-solar .grant-solar-table-container01 .subsidy-table td {
	background: var(--col-base);
	font-weight: 500;
	border-bottom: 1px solid var(--col-gry-dark);
	letter-spacing: 0;
}
.grant-solar .grant-solar-table-container01 .subsidy-table tr:first-child th {
	background: var(--col-main-light);
	color: var(--col-wh);
	font-size: 2.1rem;
	padding: 20px 18px;
}
.grant-solar .grant-solar-table-container01 .subsidy-table .category-main {
	font-size: 1.8rem;
	position: relative;
}
.grant-solar .grant-solar-table-container01 .subsidy-table .category-main::before {
	position: absolute;
	content: '';
	background: var(--col-sub);
	width: 47px;
	height: 2px;
	bottom: -1px;
	left: 0;
	margin: auto;
	background-size: contain;
	transition: all 0.3s ease;
}
.grant-solar .grant-solar-table-container01 .subsidy-table .category-sub {
	font-size: 1.8rem;
}
.grant-solar .grant-solar-table-container01 .subsidy-table .blank-cell {
	padding: 0;
}
.grant-solar .grant-solar-table-container01 .subsidy-note {
	margin-top: 15px;
	font-size: 1.5rem;
}
.grant-solar .grant-solar-table-container02 .battery-table-wrap {
	overflow-x: auto;
}
.grant-solar .grant-solar-table-container02 .battery-table {
	width: 100%;
	min-width: 1080px;
	border-collapse: collapse;
	table-layout: fixed;
	font-size: 1.6rem;
	line-height: 1.7;
}
.grant-solar .grant-solar-table-container02 .battery-table .col-blank {
	width: 40px;
}
.grant-solar .grant-solar-table-container02 .battery-table .col-category {
	width: 160px;
}
.grant-solar .grant-solar-table-container02 .battery-table .col-target {
	width: 170px;
}
.grant-solar .grant-solar-table-container02 .battery-table .col-rate {
	width: 350px;
}
.grant-solar .grant-solar-table-container02 .battery-table .col-note {
	width: auto;
}
.grant-solar .grant-solar-table-container02 .battery-table th,
.grant-solar .grant-solar-table-container02 .battery-table td {
	padding: 15px 12px;
	border: 1px solid var(--col-wh);
	vertical-align: middle;
}
.grant-solar .grant-solar-table-container02 .battery-table th {
	background: var(--col-sub);
	color: var(--col-wh);
	font-weight: 700;
	text-align: center;
	font-size: 1.8rem;
}
.grant-solar .grant-solar-table-container02 .battery-table td {
	background: var(--col-base);
	font-weight: 500;
	border-bottom: 1px solid var(--col-gry-dark);
	letter-spacing: 0;
}
.grant-solar .grant-solar-table-container02 .battery-table tr:first-child th {
	background: #df3000;
	font-size: 2.2rem;
	padding: 18px;
}
.grant-solar .grant-solar-table-container02 .battery-table td:last-child {
	border-left: 2px dashed #8d96a0;
}
.grant-solar .grant-solar-table-container02 .battery-table .category-main {
	font-size: 1.8rem;
	position: relative;
}
.grant-solar .grant-solar-table-container02 .battery-table .category-main::before {
	position: absolute;
	content: '';
	background: var(--col-sub);
	width: 40px;
	height: 2px;
	bottom: -1px;
	left: 0;
	margin: auto;
	background-size: contain;
	transition: all 0.3s ease;
}
.grant-solar .grant-solar-table-container02 .battery-table .blank-cell {
	padding: 0;
}
.grant-solar .grant-solar-table-container02 .battery-note {
	margin-top: 15px;
	font-size: 1.5rem;
}
.grant-solar .grant-solar-table-container02 th.small {
	font-size: 1.6rem !important;
}

/*grant-solar-note*/
.grant-solar-note{
	background: var(--col-base);
	padding: 30px;
	box-sizing: border-box;
	margin-top: 30px;
	border-radius: 20px;
}
.grant-solar-note-ttl{
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: var(--col-sub);
}
/*--------------- ▲ sub04_grant ▲ ---------------*/
/*--------------- ▼ sub05_case ▼ ---------------*/
/*-----------------------
case-post
-------------------------*/
.case-post-main-img {
	position: relative;
	margin-bottom: 70px;
}
.case-post-main-img::before {
	position: absolute;
	content: '';
	background: url(../img/common/arw02.png) no-repeat;
	width: 20px;
	height: 38px;
	bottom: 0;
	margin: auto;
	right: 0;
	left: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: 1;
}
.case-post-main-img figcaption {
	color: var(--col-main);
	font-size: 4rem;
	font-weight: 800;
	position: absolute;
	bottom: -20px;
	z-index: 2;
}
.case-post-main-img .before-img {
	aspect-ratio: 480/330;
	width: 480px;
	height: 330px;
	position: relative;
}
.case-post-main-img .after-img {
	aspect-ratio: 480/330;
	width: 480px;
	height: 330px;
	position: relative;
}
.case-post-img-list {
	gap: 40px 60px;
	margin-bottom: 60px;
}
.case-post-img-item {
	width: 320px;
}
.case-post-img-item figure {
	aspect-ratio: 320/220;
	width: 100%;
	height: fit-content;
}
.case-post-table {
	margin-bottom: 40px;
}

/*--------------- ▲ sub05_case ▲ ---------------*/
/*--------------- ▼ sub06_info ▼ ---------------*/
/*-----------------------
info-greeting
-------------------------*/
.info-greeting {
	position: relative;
	background: var(--col-main);
}
.info-greeting::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: 100%;
	height: 244px;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.info-greeting-ttl {
	width: fit-content;
	color: var(--col-main);
	margin-bottom: 120px;
}
.info-greeting-ttl::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust01.png) no-repeat;
	width: 177px;
	height: 211px;
	bottom: 0;
	margin: auto;
	right: -210px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.info-greeting-text-wrap {
	width: 520px;
}
.info-greeting-text .sign {
	text-align: right;
	font-size: 2rem;
}
.info-greeting-text .sign .large {
	font-size: 2.2rem;
}
.info-greeting-img {
	aspect-ratio: 510/722;
	width: 510px;
	height: 722px;
}

/*-----------------------
info-outline
-------------------------*/
.info-outline-ttl {
	width: fit-content;
}
.info-outline-ttl::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust03.png) no-repeat;
	width: 120px;
	height: 457px;
	margin: auto;
	right: -160px;
	top: -60px;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: -5;
	transform: scale(-1, 1);
}
.info-outline-table {
	position: relative;
	z-index: 5;
	margin-bottom: 110px;
}

/*-----------------------

-------------------------*/
/*--------------- ▲ sub05_info ▲ ---------------*/
/*--------------- ▼ お知らせ ▼ ---------------*/
.post-wrp .tag-change {
	margin-bottom: 50px;
}
.post-wrp .tag-change li {
	text-align: center;
	width: 19%;
	margin: 2% 1% 0 0;
}
.post-wrp .tag-change li a {
	border: solid 1px --col-main;
	padding: 10px 0;
	display: block;
	color: var(--col-main);
	background: var(--col-base);
}
.post-wrp .tag-change .current a {
	background: var(--col-main);
}
.post-wrp .tag-change .current a span {
	color: var(--col-base);
}

/*タグ一覧
-------------------------------*/
.tag-select-box {
	position: relative;
	width: 40%;
	margin: 0 0 20px auto;
	max-width: 230px;
}
.tag-select-box:before {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
	right: 0.8em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--col-text);
	pointer-events: none;
}
.tag-select-box #tag-select {
	width: 100%;
	padding: 5% 20% 5% 5%;
	box-sizing: border-box;
	font-size: 1.2rem;
	margin-left: auto;
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	border: none;
	border-bottom: 2px solid var(--col-text);
	cursor: pointer;
	border-radius: 0;
	background: none;
	color: var(--col-text);
	font-weight: 700;
	-webkit-appearance: none;
	appearance: none;
}
.tag-select-box #tag-select option {
	padding: 10px;
	box-sizing: border-box;
	cursor: pointer;
	box-sizing: border-box;
}

.post-wrp .tag-change {
	margin-bottom: 50px;
}
.post-wrp .tag-change li {
	text-align: center;
	margin: 10px 10px 0 0;
	min-width: 190px;
	display: inline-block;
	vertical-align: middle;
}
.post-wrp .tag-change li a {
	border: solid 1px var(--col-main);
	color: var(--col-main);
	background: var(--col-base);
	padding: 10px 15px;
	display: block;
}
.post-wrp .tag-change .current a {
	background: var(--col-main);
}
.post-wrp .tag-change .current a span {
	color: var(--col-base);
}

/*詳細
-------------------------------*/
.s-post .news-tag {
	margin-bottom: 20px;
}

.s-post time {
	margin-bottom: 10px;
}

.s-time-tag {
	margin-bottom: 20px;
}

.sb-post-body {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid;
	line-height: 2;
}

/*--------------- ▲ お知らせ ▲ ---------------*/ /*# sourceMappingURL=style.css.map */
