@charset "utf-8";
/**********************************************
 * 
 * top
 *
***********************************************/
/* top-Title
*******************************************/
.top-Title {
	font-size: 3.6rem;
	color: var(--color-soft);
	line-height: 1.6;
}

@media (max-width: 767px) {
	.top-Title {
		font-size: 2.6rem;
	}
}

/* top-Text
*******************************************/
.top-Text {
	color: var(--color-soft);
	line-height: 2;
}

.top-Text + .top-Text {
	margin-top: 1em;
}

@media (max-width: 767px) {
	.top-Text {
		font-size: 1.6rem;
	}
}

/* top-Link
*******************************************/
.top-Link {
	position: relative;
	padding-right: 48px;
	display: inline-block;
	padding: 5px 48px 5px 0;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-soft);
	transition: color 0.3s ease;
}

.top-Link::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	background-color: var(--color-soft);
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 100%;
	transition: background-color 0.3s ease;
}

.top-Link::after {
	position: absolute;
	content: "";
	display: block;
	width: 7px;
	height: 10px;
	mask: url("../../images/icon_arrow.svg") no-repeat center / contain;
	background-color: var(--color-strong);
	right: 11px;
	top: 1px;
	bottom: 0;
	margin: auto;
	transition: background-color 0.3s ease;
}

@media (hover: hover) {
	.top-Link:hover {
		color: color-mix(in srgb, var(--color-soft) 70%, transparent);
	}

	.top-Link:hover::before {
		background-color: var(--color-accent);
	}

	.top-Link:hover::after {
		background-color: var(--color-soft);
	}
}

/* top-Hero
*******************************************/
.top-Hero {
	background: url(../../images/top/p_hero_bg_pc.jpg) no-repeat center / cover;
	padding: 200px 0 70px;
	min-height: 800px;
}

.top-Hero_inner {
	display: flex;
	justify-content: space-between;
}

.top-Hero_textArea {
	color: var(--color-soft);
}

.top-Hero_title {
	font-size: 5.6rem;
	font-weight: 500;
	margin-bottom: 30px;
}

.top-Hero_text {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

.top-Hero_linkWrap {
	margin-top: 30px;
}

.top-Hero_media {
	margin-top: 40px;
}

@media (max-width: 767px) {
	.top-Hero {
		background:
			url(../../images/top/p_hero_bg_sp.jpg) no-repeat top center / contain,
			var(--color-strong);
		padding: 30px 0 40px;
		min-height: 0;
	}

	.top-Hero_inner {
		display: block;
	}

	.top-Hero_title {
		font-size: 3.5rem;
		margin-bottom: 8px;
	}

	.top-Hero_linkWrap {
		margin-top: 20px;
	}

	.top-Hero_media {
		margin-top: 40px;
		text-align: center;
	}

	.top-Hero_img {
		width: 269px;
		height: auto;
	}
}

/* top-Enefarm
*******************************************/
.top-Enefarm {
	position: relative;
	background: var(--color-strong);
	padding: 100px 0 89px;
}

.top-Enefarm_textArea {
	width: 50%;
	padding-right: 20px;
}

.top-Enefarm_mediaArea {
	position: absolute;
	left: 50%;
	top: 0;
	width: 50%;
	height: 100%;
}

.top-Enefarm_img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center left;
}

@media (max-width: 767px) {
	.top-Enefarm {
		padding: 0;
	}

	.top-Enefarm_textArea {
		width: 100%;
		padding-right: 0;
	}

	.top-Enefarm_mediaArea {
		position: static;
		width: 100%;
		margin-top: 60px;
	}
}

/* top-Solar
*******************************************/
.top-Solar {
	background: var(--color-strong);
	padding-top: 100px;
	padding-bottom: 70px;
}

.top-Solar_link {
	position: relative;
	display: flex;
	border: 1px solid var(--color-soft);
	transition:
		color 0.3s ease,
		border-color 0.3s ease;
}

.top-Solar_link::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	background-color: var(--color-soft);
	right: calc(50% + 14px);
	bottom: 17px;
	border-radius: 100%;
	transition: background-color 0.3s ease;
}

.top-Solar_link::after {
	position: absolute;
	content: "";
	display: block;
	width: 7px;
	height: 10px;
	mask: url("../../images/icon_arrow.svg") no-repeat center / contain;
	background-color: var(--color-strong);
	right: calc(50% + 24px);
	bottom: 26px;
	transition: background-color 0.3s ease;
}

.top-Solar_textArea {
	flex-basis: 50%;
	padding: 35px 14px 17px 20px;
	background-color: transparent;
	transition:
		background-color 0.3s ease,
		opacity 0.3s ease;
}

.top-Solar_text {
	font-size: 1.6rem;
	margin-top: 5px;
	color: var(--color-soft);
}

.top-Solar_media {
	flex-basis: 50%;
	transition: opacity 0.3s ease;
}

.top-Solar_img {
	width: 100%;
	height: auto;
}

.top-Solar_new {
	display: inline-block;
	font-size: 1.8rem;
	font-family: "Roboto", sans-serif;
	background: var(--color-accent);
	color: var(--color-soft);
	border-radius: 4px;
	margin-bottom: 3px;
	padding: 0px 13px;
}

@media (hover: hover) {
	.top-Solar_link:hover {
		color: color-mix(in srgb, var(--color-soft) 70%, transparent);
		border-color: 1px solid vcolor-mix(in srgb, var(--color-soft) 70%, transparent);
	}

	.top-Solar_link:hover::before {
		background-color: var(--color-accent);
		z-index: 1;
	}

	.top-Solar_link:hover::after {
		background-color: var(--color-soft);
		z-index: 1;
	}

	.top-Solar_link:hover .top-Solar_textArea {
		opacity: 0.7;
		background-color: color-mix(in srgb, var(--color-soft) 30%, transparent);
	}

	.top-Solar_link:hover .top-Solar_media {
		opacity: 0.7;
	}
}

@media (max-width: 767px) {
	.top-Solar {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.top-Solar_link {
		display: block;
	}

	.top-Solar_link::before {
		right: 14px;
		bottom: 35vw;
	}

	.top-Solar_link::after {
		right: 23px;
		bottom: clamp(36.6vw, calc(37.6vw - (100vw - 375px) / 375), 38.6vw);
	}

	.top-Solar_textArea {
		padding: 16px 14px;
	}

	.top-Solar_text {
		font-size: 1.4rem;
	}

	.top-Solar_new {
		font-size: 1.6rem;
		margin-bottom: 8px;
		padding: 0px 9px;
	}

	.top-Solar_media {
		margin-top: 54px;
	}
}

/* top-Function
*******************************************/
.top-Function {
	background: var(--color-bg-strong);
	padding-top: 70px;
}

.top-Function_inner {
	display: flex;
	flex-direction: row-reverse;
	gap: 30px;
}

.top-Function_textArea {
	flex-grow: 1;
}

.top-Function_media {
	flex: 0 0 670px;
}

.top-Function_img {
	width: 100%;
	height: auto;
}

@media (max-width: 767px) {
	.top-Function {
		padding-top: 60px;
	}

	.top-Function_inner {
		flex-direction: column-reverse;
	}

	.top-Function_media {
		flex: 0 0 100%;
	}
}

/* top-Gas
*******************************************/
.top-Gas {
	background: var(--color-bg-strong);
	padding-top: 70px;
	padding-bottom: 100px;
}

.top-Gas_line {
	border-top: 1px solid var(--color-accent);
}

.top-Gas_lineText {
	display: inline-block;
	border-top: 3px solid var(--color-accent);
	padding-top: 10px;
	font-family: "Roboto", sans-serif;
	color: var(--color-soft);
	font-size: 1.8rem;
}

.top-Gas_inner {
	display: flex;
	gap: 30px;
}

.top-Gas_textArea {
	flex-grow: 1;
	padding-top: 30px;
}

.top-Gas_media {
	flex: 0 0 670px;
}

.top-Gas_img {
	width: 100%;
	height: auto;
}

@media (max-width: 767px) {
	.top-Gas {
		padding: 60px 0;
	}

	.top-Gas_lineText {
		padding-top: 6px;
		font-size: 1.4rem;
	}

	.top-Gas_inner {
		flex-direction: column;
		gap: 30px;
	}

	.top-Gas_textArea {
		padding-top: 20px;
	}

	.top-Gas_media {
		flex: 0 0 100%;
	}
}

/* top-Gas
*******************************************/
.top-News {
	margin-bottom: -80px;
	background: var(--color-strong);
	color: var(--color-soft);
	padding: 100px 0;
}

.top-News_inner {
	position: relative;
}

.top-News_textBox {
	width: calc(100% - 400px);
	margin-left: auto;
}

.top-News_title {
	margin-bottom: 30px;
}

.top-News_titleEn {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 5.6rem;
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	line-height: 1.2;
}

.top-News_titleJp {
	font-size: 3.6rem;
}

.top-News_list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.top-News_listItem {
	display: flex;
	gap: 20px;
	color: var(--color-soft);
}

.top-News_linkWrap {
	margin-top: 40px;
}

.top-News_link {
	font-size: 1.4rem;
	position: relative;
	padding-right: 55px;
	color: var(--color-soft);
	transition: color 0.3s ease;
}

.top-News_link::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background-color: var(--color-bg-soft);
	border-radius: 100%;
	transition: background-color 0.3s ease;
}

.top-News_link::after {
	position: absolute;
	content: "";
	width: 11px;
	height: 13px;
	right: 8px;
	top: 3px;
	bottom: 0;
	margin: auto;
	mask: url("../../images/icon_arrow.svg") no-repeat center / contain;
	background-color: var(--color-strong);
	transition: background-color 0.3s ease;
}

@media (hover: hover) {
	.top-News_link:hover {
		color: color-mix(in srgb, var(--color-soft) 70%, transparent);
	}

	.top-News_link:hover::before {
		background-color: var(--color-accent);
	}

	.top-News_link:hover::after {
		background-color: var(--color-soft);
	}
}

@media (max-width: 767px) {
	.top-News {
		padding: 60px 0;
	}

	.top-News_textBox {
		width: 100%;
	}

	.top-News_title {
		display: flex;
		flex-direction: column;
	}

	.top-News_titleEn {
		position: static;
		font-size: 5rem;
		line-height: 1.1;
	}

	.top-News_titleJp {
		font-size: 2.4rem;
	}

	.top-News_listItem {
		flex-direction: column;
		gap: 3px;
		font-size: 1.6rem;
	}

	.top-News_link {
		padding-right: 45px;
	}
}
