@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リセットCSS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	box-shadow: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::before,
::after {
	box-sizing: border-box;
}

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
small,
a,
address,
img,
picture,
dl,
dt,
dd,
ol,
ul,
li,
label,
fieldset,
legend,
table,
tr,
th,
td,
hr,
input,
textarea,
main,
article,
aside,
details,
figure,
figcaption,
header,
footer,
hgroup,
menu,
nav,
section,
time {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	font-size: 100%;
	vertical-align: baseline;
}

iframe,
cite,
svg,
main,
article,
aside,
details,
figure,
figcaption,
header,
footer,
hgroup,
menu,
nav,
section,
picture,
audio,
video {
	display: block;
}

body {
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-smoothing: antialiased;
}

a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

address,
cite {
	font-style: normal;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}

ol,
ul {
	list-style: none;
	list-style-type: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,
textarea,
select,
button {
	border: 0;
	border-radius: inherit;
	background: none;
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

textarea {
	overflow: auto;
}

input:not([type="checkbox"]):not([type="radio"]),
textarea,
button {
	-webkit-appearance: none;
}

time {
	display: inline-block;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ベース
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
:root {
	--color-base: #282828;
	--color-green: #00c4ba;
	--color-green-rgb: 0, 196, 186;
	--color-green-dark: #00aca5;
	--color-green-light: #ccf3f1;
	--color-yellow: #ffe300;
	--color-blue: #3fa3f1;

	--font-main: "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
	--font-english: Roboto, "Helvetica Neue", Arial, sans-serif;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W3");
	font-weight: 400;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W4");
	font-weight: 500;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W6");
	font-weight: 700;
}

html {
	font-size: 62.5%;
}

body {
	overflow: hidden scroll;
	color: var(--color-base);
	font-size: 1.3em;
	font-family: var(--font-main);
	line-height: 1.8;
	font-feature-settings: "palt";
}

main {
	overflow: hidden;
}

article {
	overflow: hidden;
}

section,
.section {
	padding: 50px 0;
}

.inner {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 5.4%;
}

span:not([class]) {
	display: inline-block;
}

h1 {
	line-height: 1.4;
}

h2 {
	line-height: 1.4;
}

h3 {
	line-height: 1.4;
}

p:not([class])+p:not([class]) {
	margin-top: 1.5em;
}

a,
a::before,
a::after {
	transition: 0.3s ease-in-out;
}

a[href^="http"] {
	word-break: break-all;
}

a svg * {
	transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
	body {
		font-size: 1.5em;
	}

	section,
	.section {
		padding: 100px 0;
	}

	.inner {
		padding: 0 30px;
	}

	a[href^="tel:"] {
		pointer-events: none;
	}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fade-up {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fade-right {
	0% {
		opacity: 0;
		transform: translateX(40px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fade-left {
	0% {
		opacity: 0;
		transform: translateX(-40px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fade-zoom-in {
	0% {
		opacity: 0;
		transform: scale(0.9);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes fade-zoom-out {
	0% {
		opacity: 0;
		transform: scale(1.1);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.animation {
	animation-duration: 0.6s;
	animation-timing-function: ease-out;
	animation-delay: 0.3s;
	animation-fill-mode: both;
}

.fade,
.fade-up,
.fade-right,
.fade-left,
.fade-zoom-in,
.fade-zoom-out {
	opacity: 0;
}

.load .animation.fade {
	animation-name: fade;
}

.load .animation.fade-up {
	animation-name: fade-up;
}

.load .animation.fade-right {
	animation-name: fade-right;
}

.load .animation.fade-left {
	animation-name: fade-left;
}

.load .animation.fade-zoom-in {
	animation-name: fade-zoom-in;
}

.load .animation.fade-zoom-out {
	animation-name: fade-zoom-out;
}

.delay05 {
	animation-delay: 0.5s;
}

.delay07 {
	animation-delay: 0.7s;
}

.delay09 {
	animation-delay: 0.9s;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
見出し
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.page-heading {
	margin-bottom: 18px;
	color: var(--color-green-dark);
	font-size: 2.6rem;
}

.section-heading {
	margin-bottom: 30px;
	text-align: center;
}

@media (min-width: 768px) and (max-width: 1400px) {
	.page-heading {
		margin-bottom: 32px;
		font-size: 4.8rem;
		width: 310px;
	}
}

@media (max-width: 767.9px) {
	.section-heading img {
		width: auto;
		height: 25px;
	}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.link:hover {
	color: var(--color-green-dark);
}

.button {
	display: flex;
	position: relative;
	width: 224px;
	max-width: 100%;
	height: 45px;
	margin: 30px auto 0;
	padding: 0.5em 1em;
	border: 2px solid var(--color-green-dark);
	border-radius: 10px;
	background: var(--color-green-dark);
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	transition: 0.3s ease-in-out;
	justify-content: center;
	align-items: center;
}

.button:hover {
	background: #fff;
	color: var(--color-green-dark);
}

.button-blue {
	display: flex;
	position: relative;
	width: 250px;
	max-width: 100%;
	height: 54px;
	margin: 70px auto -30px;
	padding: 0.5em 1em;
	border: 2px solid var(--color-blue);
	border-radius: 10px;
	background: var(--color-blue);
	color: #fff;
	font-weight: 700;
	font-size: 1.4rem;
	letter-spacing: 0.2em;
	text-align: center;
	transition: 0.3s ease-in-out;
	justify-content: center;
	align-items: center;
}

.button-blue::after {
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	width: 18px;
	height: 18px;
	margin: auto;
	border: 1.5px solid var(--color-blue);
	border-radius: 50%;
	background: url("../img/common/arrow-blue.svg") center center no-repeat #fff;
	background-size: 7px 6px;
	content: "";
}

.button-blue:hover {
	background: #fff;
	color: var(--color-blue);
}

.button-blue:hover::after {
	right: 7px;
}

@media (min-width: 768px) {
	.button {
		width: 354px;
		height: 64px;
		margin-top: 35px;
		border-radius: 15px;
		font-size: 1.7rem;
		letter-spacing: 0.17em;
	}

	.button-blue {
		width: 620px;
		height: 81px;
		border-radius: 15px;
		font-size: 2rem;
		letter-spacing: 0.3em;
	}

	.button-blue::after {
		right: 20px;
		width: 28px;
		height: 28px;
		background-size: 11px 10px;
	}

	.button-blue:hover::after {
		right: 15px;
	}
}

.button-disabled {
	filter: grayscale(1);
	pointer-events: none;
	cursor: default;
}

.button-disabled::after {
	display: none;
}

@media (min-width: 768px) {
	.button-disabled br {
		display: none;
	}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
コンポーネント
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.align-center {
	text-align: center;
}

.section-description {
	font-weight: 500;
	letter-spacing: 0.04em;
	text-align: left;
}

.section-description:not(:last-child) {
	margin-bottom: 20px;
}

.ul li {
	position: relative;
	padding-left: 1em;
}

.ul li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "・";
}

li.spacer {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.section-description:not(:last-child) {
		margin-bottom: 30px;
	}
}

@media (min-width: 768px) {
	.visible-sp {
		display: none !important;
	}
}

@media (max-width: 767.9px) {
	.visible-pc {
		display: none !important;
	}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.loader {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: #fff;
	transition: 0.8s ease-in-out;
	justify-content: center;
	align-items: center;
}

.loader-ul {
	display: flex;
	width: 120px;
	justify-content: space-between;
}

@keyframes loader {
	0% {
		opacity: 0;
		transform: scale(0);
	}

	20% {
		opacity: 0.5;
		transform: scale(0.9);
	}

	40% {
		opacity: 1;
		transform: scale(1.8);
	}

	80% {
		opacity: 0.5;
		transform: scale(0.9);
	}

	100% {
		opacity: 0;
		transform: scale(0);
	}
}

.loader-li {
	opacity: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	transform: scale(0);
	animation: loader 1.2s linear infinite;
}

.loader-li:nth-child(1) {
	background: #b7bbbe;
}

.loader-li:nth-child(2) {
	background: #22acbf;
	animation-delay: 0.15s;
}

.loader-li:nth-child(3) {
	background: #4fbdb8;
	animation-delay: 0.3s;
}

.loader-li:nth-child(4) {
	background: #90dfc1;
	animation-delay: 0.45s;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	position: relative;
	z-index: 4;
	color: #fff;
	font-weight: 700;
	text-align: center;
}

.header-inner {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	max-width: none;
	height: 50px;
	background: rgba(var(--color-green-rgb), 0.93);
	justify-content: space-between;
	align-items: center;
}

.site_logo svg {
	fill: #fff;
}

.site_logo:hover svg {
	fill: var(--color-yellow);
}

.header-nav-inner {
	display: flex;
	align-items: center;
}

.header-menu-li a:hover {
	color: var(--color-yellow);
}

.header-contact {
	width: 146px;
	padding: 9px 0;
	border: 2px solid #fff;
	border-radius: 25px;
	background: #fff;
	color: var(--color-green);
	font-size: 1.5rem;
}

.header-contact:hover {
	background: none;
	color: #fff;
}

.header-logo-container {
	display: flex;
	align-items: stretch;
}

.header-logo-container .company_logo {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.header-logo-container .company_logo {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	border-left: solid 1px;
	padding-left: 22px;
	margin-right: 0 !important;
}

.company_logo img {
	display: block;
	width: 160px;
}

.company_logo>img:nth-of-type(1) {
	margin-bottom: 10px;
	width: 100px;
	margin-top: 0;
}

@media (min-width: 768px) {
	.header-inner {
		height: 110px;
		transition: height 0.3s ease-in-out;
	}

	.header-logo-container a,
	.header-logo-container .company_logo {
		min-width: 130px;
		margin-right: 30px;
	}

	.header-logo-copy {
		width: 100%;
		margin-bottom: 6%;
		transition: 0.3s ease-in-out;
	}

	.header-logo {
		width: 100%;
	}

	header.change .header-inner {
		height: 80px;
	}

	header.change .header-logo-container {
		transform: scale(0.9);
	}

	header.change .header-logo-copy {
		margin-bottom: 0;
		transform: scaleY(0);
	}

	.header-toggle {
		display: none;
	}

	.header-nav {
		width: 1000px;
	}

	.header-menu-ul {
		display: flex;
		flex: 1;
		flex-flow: wrap;
		justify-content: flex-end;
		font-size: 14px;
	}

	.header-menu-li {
		margin-right: 2.5%;
	}

	.header-contact {
		max-width: 25%;
	}

	.header-entry {
		display: none;
	}
}

@media (max-width: 767.9px) {
	.header-inner {
		padding: 0 12px;
	}

	.header-logo-copy {
		display: none;
	}

	.company_logo {
		min-width: 100px;
	}

	.header-logo {
		width: 70px;
	}

	.header-toggle {
		position: relative;
		z-index: 4;
		width: 40px;
		height: 40px;
		cursor: pointer;
	}

	.header-toggle:hover {
		color: var(--color-yellow);
	}

	.header-toggle-bar {
		position: absolute;
		right: 0;
		left: 0;
		width: 24px;
		margin: auto;
		border-top: 2px solid;
		transition: 0.3s ease-in-out;
	}

	.header-toggle-bar01 {
		top: 11px;
	}

	.header-toggle-bar02 {
		top: 18px;
	}

	.header-toggle-bar03 {
		top: 25px;
	}

	header.open .header-toggle-bar01 {
		top: 18px;
		transform: rotate(-45deg);
	}

	header.open .header-toggle-bar02 {
		transform: scale(0, 1);
	}

	header.open .header-toggle-bar03 {
		top: 18px;
		transform: rotate(45deg);
	}

	.header-nav {
		position: fixed;
		overflow-y: auto;
		visibility: hidden;
		opacity: 0;
		z-index: 3;
		top: 50px;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(var(--color-green-rgb), 0.93);
		transform: scale3d(0.9, 0.9, 0.9);
	}

	header.open .header-nav {
		visibility: visible;
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}

	.header-nav-inner {
		min-height: 100%;
		padding: 30px 30px 60px;
		flex-flow: column;
		justify-content: center;
	}

	.header-menu-ul {
		margin-bottom: 26px;
	}

	.header-menu-li {
		font-size: 1.7rem;
	}

	.header-menu-li:not(:last-child) {
		margin-bottom: 16px;
	}

	.header-entry {
		margin-top: 65px;
		border-color: #fff;
	}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.footer-main {
	position: relative;
	padding: 30px 0 18px;
	background: var(--color-green-light);
}

.footer-main::before {
	position: absolute;
	bottom: 100%;
	right: 0;
	left: 0;
	height: 2.8vw;
	background: url("../img/common/footer-separator.svg") center bottom no-repeat;
	background-size: 100% 100%;
	content: "";
}

.footer-main .inner {
	max-width: 1470px;
}

.footer-address {
	font-size: 1.2rem;
	letter-spacing: 0.04em;
	display: flex;
	gap: 30px;
	justify-content: center;
}

.footer-address-company {
	margin-bottom: 20px;
}

.footer-address .logo {
	margin-bottom: 5px;
}

.footer-address-sbenergy {
	position: relative;
	top: 3px;
}

.footer-address .logo:hover {
	opacity: 0.7;
}

.footer-menu-ul {
	display: flex;
	flex-flow: wrap;
	font-size: 0.95em;
}

.footer-menu-li {
	margin-bottom: 5px;
	font-weight: 500;
}

.footer-menu-li a:hover {
	color: var(--color-green-dark);
}

.page-top {
	display: flex;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	right: 15px;
	bottom: 55px;
	z-index: 1;
	width: 55px;
	height: 55px;
	border: 1.5px solid var(--color-green-dark);
	border-radius: 50%;
	background: #fff;
	color: var(--color-green-dark);
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: 0.4s ease-in-out;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	user-select: none;
}

.page-top.show {
	visibility: visible;
	opacity: 1;
}

.page-top:hover {
	background: var(--color-green-dark);
	color: #fff;
}

.page-top svg {
	margin-bottom: 4px;
	transition: 0.3s ease-in-out;
	fill: #00aca5;
}

.page-top:hover svg {
	transform: translateY(-3px);
	fill: #fff;
}

.footer-copyright {
	padding: 1.3em 0;
	background: var(--color-green);
	color: #fff;
	font-size: 1rem;
	font-family: var(--font-english);
	letter-spacing: 0.04em;
	text-align: center;
}

@media (min-width: 768px) {
	.footer-main {
		padding: 50px 0 65px;
	}

	.footer-main::before {
		height: 2.4vw;
	}

	.footer-main .inner {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.footer-address {
		margin-right: 40px;
		font-size: 1.4rem;
		display: flex;
		gap: 30px;
		max-width: 350px;
	}

	.footer-address-company {
		margin-bottom: 40px;
	}

	.footer-address .logo {
		margin-bottom: 8px;
	}

	.footer-menu-ul {
		justify-content: flex-end;
		margin-top: 5px;
	}

	.footer-menu-li:not(:first-child) {
		margin-left: 20px;
	}

	.page-top {
		right: 30px;
		bottom: 80px;
		width: 75px;
		height: 75px;
	}

	.page-top svg {
		margin-bottom: 8px;
	}

	.footer-copyright {
		font-size: 1.3rem;
	}
}

@media (min-width: 1700px) {
	.footer-main::before {
		height: 40px;
	}
}

@media (max-width: 767.9px) {
	.footer-address {
		margin-bottom: 10px;
	}

	.footer-address-company .logo {
		width: 116px;
	}

	.footer-address-sbenergy .logo {
		width: 132px;
	}

	.footer-menu-ul {
		padding-right: 60px;
		padding-top: 20px;
		border-top: 1.5px solid #99dedb;
	}

	.footer-menu-li {
		font-size: 1.2rem;
	}

	.footer-menu-li:not(:last-child) {
		margin-right: 20px;
	}

	.page-top {
		font-size: 1.1rem;
	}

	.page-top svg {
		width: 13px;
	}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
404 Not Found
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.notfound-article {
	padding-top: 50px;
}

@media (min-width: 768px) {
	.notfound-article {
		padding-top: 100px;
	}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
モーダル
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.modal-container {
	display: flex;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	justify-content: center;
	align-items: center;
	transition: 0.5s ease;
}

.modal-container.open {
	visibility: visible;
	opacity: 1;
}

.modal-inner {
	overflow-y: auto;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	transition: transform 0.5s ease;
	transform: scale3d(0.8, 0.8, 0.8);
}

.modal-container.open .modal-inner {
	transform: scale3d(1, 1, 1);
}

.modal-close {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	margin-top: 40px;
	border: 2px solid;
	border-radius: 50%;
	color: var(--color-green-dark);
	cursor: pointer;
	transition: 0.3s ease-in-out;
}

.modal-close::before,
.modal-close::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 32px;
	height: 0;
	margin: auto;
	border-top: 2px solid;
	content: "";
	transition: 0.5s ease;
}

.modal-container.open .modal-close::before {
	transform: rotate(-45deg);
}

.modal-container.open .modal-close::after {
	transform: rotate(45deg);
}

.modal-close:hover {
	border-color: transparent;
}

.home-header-li:nth-of-type(1) .home-header-container::before {
	content: "夏季実証は\A 2022年9月30日を\Aもって終了しました";
	white-space: break-spaces;
	position: absolute;
	background: rgba(30, 30, 30, .8);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
	font-size: 1.4em;
	font-weight: bold;
	top: 0;
	left: 0;
	backdrop-filter: blur(1px);
}

@media (max-width: 767.9px) {
	.home-header-li:nth-of-type(1) .paypay {
		bottom: 0;
	}
}

.home-header-container {
	Pointer-events: none;
}
