/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0px;
	padding: 0px;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
iframe,
img,
svg,
video {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 2rem;
	color: #002c83;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #7f95c1;
}
h1 {
	font-size: 2rem;
	line-height: 3.25rem;
}
h2 {
	font-size: 1.75rem;
	line-height: 2.75rem;
}
h3 {
	font-size: 1.375rem;
}
h4,
h5,
h6 {
	font-size: 1.125rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #e44939;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input:is([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	outline: none;
	border-radius: 5px;
	appearance: none;
}
input:is([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #000000;
	border: none;
	background-color: #f8f8f8;
}
input:is([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:is([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 50px;
	text-align: center;
	font-weight: 500;
	color: #ffffff;
	border: 1px solid #002c83;
	cursor: pointer;
	background-color: #002c83;
	border-radius: 25px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
input:is([type=button], [type=submit]):hover,
button:hover {
	color: #002c83;
	background-color: #ffffff;
}
button {
	position: relative;
}
button::before {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 50px;
	height: 50px;
	right: 0px;
	top: 0px;
	font-family: "icon";
	font-size: 1.25rem;
	font-weight: 400;
	content: "\e900";
}
input:is([type=radio], [type=checkbox]),
input:is([type=radio], [type=checkbox])::before,
label.alternate input:is([type=radio], [type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
input:is([type=radio], [type=checkbox]),
label.alternate {
	margin-right: 5px;
}
input:is([type=radio], [type=checkbox]) {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input:is([type=radio], [type=checkbox])::before,
input:is([type=radio], [type=checkbox])::after,
label.alternate {
	cursor: pointer;
}
input:is([type=radio], [type=checkbox])::before,
input:is([type=radio], [type=checkbox])::after,
label.alternate input:is([type=radio], [type=checkbox]) + span::before {
	position: absolute;
	content: "";
}
input:is([type=radio], [type=checkbox])::before,
input:is([type=radio], [type=checkbox])::after {
	transform: translate(9999px, -1px);
}
input:is([type=radio], [type=checkbox])::before,
label.alternate input:is([type=radio], [type=checkbox]) + span {
	background-color: #f8f8f8;
}
input:is([type=radio], [type=checkbox])::after,
label.alternate input:is([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input:is([type=radio], [type=checkbox]):checked::after,
label.alternate input:is([type=radio], [type=checkbox]):checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 12px;
	height: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #002c83;
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 10px;
	height: 15px;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 2px solid #002c83;
	border-bottom: 2px solid #002c83;
}
input[type=checkbox]::after {
	transform: translate(calc(9999px - 1px), -3px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		transform: translate(0px, -1px);
	}
}
label {
	display: inline-block;
	vertical-align: text-top;
}
label.alternate input:is([type=radio], [type=checkbox]) {
	display: none;
}
label.alternate input:is([type=radio], [type=checkbox]) + span {
	display: block;
	position: relative;
	cursor: pointer;
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(-1px, -3px) rotate(45deg);
}
textarea {
	padding: 10px 15px;
}
select {
	padding-right: 40px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #cccccc;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "icon";
	src: url("../fonts/icon.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-arrow::before {
	content: "\e900";
}
i.icon-line::before {
	content: "\e901";
}
i.icon-instagram::before {
	content: "\e902";
}
i.icon-facebook::before {
	content: "\e903";
}
i.icon-youtube::before {
	content: "\e904";
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border: none;
	border-bottom: 1px solid #cccccc;
	margin: 20px 0px;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}
iframe.wp-embedded-content {
	width: 100%;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #f8f8f8;
	border-radius: 5px;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}
div#trigger {
	position: absolute;
	left: 0px;
	top: 50svh;
	pointer-events: none;
}
nav#navi-sub {
	margin-left: -120px;
	margin-right: -120px;
}
nav#navi-sub:not(:first-child) {
	margin-top: 120px;
}
nav#navi-sub div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px -20px;
}
nav#navi-sub div.list div.row {
	width: 320px;
	font-size: 1.25rem;
	margin: 0px 20px;
}
nav#navi-sub div.list div.row a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 100px;
	overflow: hidden;
	color: #ffffff;
	padding: 0px 50px;
	border-radius: 50px;
}
nav#navi-sub div.list div.row a::before,
nav#navi-sub div.list div.row a::after {
	position: absolute;
	width: 60px;
	height: 0px;
	z-index: 1;
	border-bottom: 1px solid #ffffff;
	content: "";
	transform-origin: left bottom;
	transform: rotate(-45deg);
}
nav#navi-sub div.list div.row a::before {
	left: 15px;
	top: 40px;
}
nav#navi-sub div.list div.row a::after {
	left: 0px;
	top: 70px;
}
nav#navi-sub div.list div.row p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
nav#navi-sub div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
nav#navi-sub div.list div.row p.headline {
	position: relative;
	z-index: 1;
}
body:is(.clean-energy, .high-performance) nav#navi-sub div.list div.row-talk,
body:is(.clean-energy, .high-performance) nav#navi-sub div.list div.row-top-interview,
body.company nav#navi-sub div.list div.row-talk,
body.talk nav#navi-sub div.list div.row-talk,
body.top-interview nav#navi-sub div.list div.row-top-interview {
	display: none;
}
nav#navi-sub div.list div:is(.row-clean-energy, .row-high-performance) {
	font-weight: 500;
}
nav#navi-sub div.list div:is(.row-clean-energy, .row-high-performance) a {
	justify-content: center;
}
nav#navi-sub div.list div:is(.row-talk, .row-top-interview) {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
nav#navi-sub div.list div.row-talk p.image {
	background-color: #e44939;
}
nav#navi-sub div.list div.row-top-interview p.image {
	background-color: #002c83;
}
h2.balloon,
h2.balloon span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
h2.balloon {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.875rem;
	margin-bottom: 50px;
	transform: translateY(-30px);
}
h2.balloon span,
h2.balloon span::before {
	background-color: #e44939;
}
h2.balloon span {
	align-items: center;
	position: relative;
	color: #ffffff;
	padding: 15px 20px;
}
h2.balloon span::before {
	position: absolute;
	width: 15px;
	height: 15px;
	left: calc(50% - 7.5px);
	bottom: -7.5px;
	content: "";
	transform: rotate(45deg);
}
h2.balloon-alternate span,
h2.balloon-alternate span::before {
	background-color: #002c83;
}
h3.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
h3.headline span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	min-width: 260px;
	min-height: 55px;
	color: #ffffff;
	padding: 0px 10px;
	background-color: #e44939;
}
h3.headline span i,
h3.headline span i em {
	position: absolute;
}
h3.headline span i {
	top: 50%;
}
h3.headline span i.left {
	left: -5px;
	transform: scaleX(-1);
}
h3.headline span i.right {
	right: -5px;
}
h3.headline span i::before,
h3.headline span i::after,
h3.headline span i em::before {
	position: absolute;
	width: 15px;
	height: 0px;
	left: 0px;
	top: calc(50% - 1.5px);
	border-bottom: 3px solid #e44939;
	content: "";
	transform-origin: left center;
}
h3.headline span i::before {
	transform: translateY(-10px) rotate(-22.5deg);
}
h3.headline span i::after {
	transform: translateY(10px) rotate(22.5deg);
}
h3.headline-alternate span {
	background-color: #002c83;
}
h3.headline-alternate span i::before,
h3.headline-alternate span i::after,
h3.headline-alternate span i em::before {
	border-color: #002c83;
}
ul.emphasis {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
ul.emphasis li {
	width: 33.33%;
	text-align: center;
	border-right: 1px solid #cccccc;
}
ul.emphasis li:first-child {
	border-left: 1px solid #cccccc;
}
ul.emphasis li a,
ul.emphasis li span {
	display: block;
}
ul.emphasis li span.main {
	font-size: 1.125rem;
	font-weight: 700;
}
ul.emphasis li span.sub {
	font-family: "Montserrat", sans-serif;
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin-bottom: 5px;
}
ul.emphasis li i.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-size: 1.25rem;
	color: #ffffff;
	border: 1px solid #002c83;
	margin: 0px auto;
	background-color: #002c83;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
ul.emphasis li a:hover i.icon {
	color: #002c83;
	background-color: #ffffff;
}
div.sns ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div.sns ul li {
	font-size: 1.625rem;
}
div.sns ul li:not(:last-child) {
	margin-right: 20px;
}
p.button-default,
p.button-default a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: center;
	font-weight: 500;
	line-height: 1.5rem;
}
p.button-default a {
	align-items: center;
	position: relative;
	width: 240px;
	height: 50px;
	color: #ffffff;
	border: 1px solid #002c83;
	background-color: #002c83;
	border-radius: 25px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
p.button-default a:hover {
	color: #002c83;
	background-color: #ffffff;
}
p.button-default a::before {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 50px;
	height: 50px;
	right: 0px;
	top: 0px;
	font-family: "icon";
	font-size: 1.25rem;
	font-weight: 400;
	content: "\e900";
}
p.button-mail {
	width: 220px;
	text-align: center;
}
p.button-mail-fixed {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10;
}
p.button-mail a {
	display: block;
	color: #ffffff;
	border: 3px solid #002c83;
	padding: 10px 0px;
	background-color: #002c83;
	border-radius: 10px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
p.button-mail a:hover {
	color: #002c83;
	background-color: #ffffff;
}
p.button-mail span {
	display: block;
	font-weight: 700;
}
p.button-mail span.sub {
	position: relative;
	margin-bottom: 50px;
}
p.button-mail span.sub::before,
p.button-mail span.sub::after {
	position: absolute;
	width: 80px;
	height: 0px;
	bottom: -40px;
	border-bottom: 3px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease;
}
p.button-mail a:hover span.sub::before,
p.button-mail a:hover span.sub::after {
	border-color: #002c83;
}
p.button-mail span.sub::before {
	right: 50%;
	transform-origin: right bottom;
	transform: rotate(22.5deg);
}
p.button-mail span.sub::after {
	left: 50%;
	transform-origin: left bottom;
	transform: rotate(-22.5deg);
}
p.button-mail span.main {
	font-size: 1.5rem;
}
p.button-mail span.main i {
	color: #e44939;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
}
p.image-zoom img {
	transition: 0.375s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
*.scroll:is(.fade, .fade-slide),
*.scroll:is(.fade-each, .fade-each-slide) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll:is(.fade, .fade-slide).active,
*.scroll:is(.fade-each, .fade-each-slide).active > * {
	opacity: 1;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -40px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header {
	position: relative;
	z-index: 100;
}
header#header::before,
header#header :is(*#logo, p#button-menu, div#menu, nav#navi-alternate) {
  position: fixed;
	top: 0px;
}
body.admin-bar header#header::before,
body.admin-bar header#header :is(*#logo, p#button-menu, div#menu, nav#navi-alternate) {
	top: 32px;
}
header#header::before,
header#header :is(*#logo, p#button-menu, nav#navi-alternate) {
	height: 80px;
}
header#header::before,
header#header div#menu {
	width: 100%;
}
header#header::before,
header#header *#logo {
	left: 0px;
}
header#header::before {
	background-color: rgba(255, 255, 255, 0.875);
	content: "";
}
header#header *#logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
  z-index: 30;
  padding-left: 20px;
}
header#header *#logo img {
	width: 250px;
}
header#header p#button-menu {
  width: 80px;
  right: 0px;
	z-index: 40;
  cursor: pointer;
}
header#header p#button-menu i {
  display: block;
  position: absolute;
  width: 28px;
  height: 0px;
  left: calc(50% - 14px);
  top: calc(50% - 1px);
	border-bottom: 2px solid #002c83;
  transition: 0.25s all ease;
}
header#header p#button-menu i:nth-child(1) {
	transform: translateY(-9px);
}
header#header p#button-menu i:nth-child(2) {
	transform: translateY(9px);
}
div.menu-header header#header p#button-menu i:nth-child(-n+3) {
  width: 0px;
  left: 50%;
  opacity: 0;
	transform: translateY(0px);
}
div.menu-header header#header p#button-menu i:nth-child(4) {
	transform: rotate(45deg);
}
div.menu-header header#header p#button-menu i:nth-child(5) {
	transform: rotate(-45deg);
}
header#header div#menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	right: 0px;
	overflow: auto;
	z-index: 20;
	background-color: #ffffff;
	transform: translateY(-100%);
	transition: 0.375s transform ease;
	-webkit-overflow-scrolling: touch;
}
body.admin-bar header#header div#menu {
	height: calc(100% - 32px);
}
div.menu-header header#header div#menu {
	transform: translateY(0%);
}
header#header div#menu::-webkit-scrollbar {
  display: none;
}
header#header div#menu div.inner-menu {
	width: 1040px;
}
header#header div#menu nav#navi {
	margin-bottom: 60px;
}
header#header div#menu nav#navi div.list {
	display: flex;
	flex-wrap: wrap;
}
header#header div#menu nav#navi div.list div.row:not(:last-child) {
	width: 40%;
}
header#header div#menu nav#navi div.list div.row:last-child {
	width: 20%;
}
header#header div#menu nav#navi div.list div.row a {
	display: block;
}
header#header div#menu nav#navi div.list div.row ul li:not(:last-child) {
	margin-bottom: 10px;
}
header#header div#menu nav#navi div.list div.row > ul > li.collapse:not(:last-child) {
	margin-bottom: 40px;
}
header#header div#menu nav#navi div.list div.row > ul > li > a {
	font-size: 1.25rem;
	font-weight: 700;
}
header#header div#menu nav#navi div.list div.row div.nest {
	padding: 10px 0px 0px 20px;
}
header#header div#menu nav#navi div.list div.row div.nest ul li a {
	position: relative;
	font-weight: 500;
	padding-left: 20px;
}
header#header div#menu nav#navi div.list div.row div.nest ul li a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 14px;
	background-color: #002c83;
	content: "";
	border-radius: 50%;
}
header#header div#menu nav#navi div.list div.row div.nest ul li a:hover::before {
	border-color: #7f95c1;
}
header#header div#menu div.misc {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
header#header div#menu div.misc p.privacy-policy {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
header#header nav#navi-alternate {
	right: 80px;
	z-index: 10;
}
header#header nav#navi-alternate > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
header#header nav#navi-alternate > ul > li {
	position: relative;
	font-weight: 500;
}
header#header nav#navi-alternate > ul > li > a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 80px;
	padding: 0px 20px;
}
header#header nav#navi-alternate > ul > li div.nest {
	position: absolute;
	height: 0px;
	left: 0px;
	top: 80px;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.875);
	transition: 0.25s height ease;
}
header#header nav#navi-alternate > ul > li.clean-energy div.nest {
	width: 230px;
}
header#header nav#navi-alternate > ul > li.high-performance div.nest {
	width: 170px;
}
header#header nav#navi-alternate > ul > li:is(.business) div.nest {
	width: 260px;
}
header#header nav#navi-alternate > ul > li div.nest ul {
	padding: 0px 0px 10px 20px;
}
header#header nav#navi-alternate > ul > li div.nest ul li {
	font-size: 0.875rem;
}
header#header nav#navi-alternate > ul > li:hover div.nest:has(li:nth-child(1)) {
	height: calc(calc(2rem * 1) + 10px);
}
header#header nav#navi-alternate > ul > li:hover div.nest:has(li:nth-child(2)) {
	height: calc(calc(2rem * 2) + 10px);
}
header#header nav#navi-alternate > ul > li:hover div.nest:has(li:nth-child(3)) {
	height: calc(calc(2rem * 3) + 10px);
}
header#header nav#navi-alternate > ul > li:hover div.nest:has(li:nth-child(4)) {
	height: calc(calc(2rem * 4) + 10px);
}
header#header nav#navi-alternate > ul > li:hover div.nest:has(li:nth-child(5)) {
	height: calc(calc(2rem * 5) + 10px);
}
header#header nav#navi-alternate > ul > li div.nest ul li a {
	display: block;
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div#cover {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: calc(100svh - 80px);
	min-height: 880px;
	overflow: hidden;
	padding-top: 80px;
}
body.admin-bar div#cover {
	height: calc(100svh - 112px);
}
div#cover div.background,
div#cover div.inner-cover {
	opacity: 0;
}
div#cover.active div.background,
div#cover.active div.inner-cover {
	opacity: 1;
}
div#cover div.background {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	transition: 1.25s opacity ease-in-out;
}
div#cover div.background img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.inner-cover {
	position: relative;
	width: calc(calc(calc(480px * 0.5) * 5) + calc(60px * 4));
	overflow: hidden;
	z-index: 1;
	margin: 0px auto;
	transition: 1.25s opacity 0.25s ease-in-out, 1s transform 0.25s ease;
	transform: scale(0.95);
}
div#cover.active div.inner-cover {
	transform: scale(1);
}
div#cover div.image {
	padding: calc(720px * 0.25) 0px;
}
div#cover div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
}
div#cover div.image p.row {
	width: calc(480px * 0.5);
	overflow: hidden;
	margin-right: 60px;
	background-color: #ffffff;
}
div#cover div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 0.25s opacity ease;
}
div#cover div.image p.row a:hover img {
	opacity: 0.875;
}
div#cover div.pager {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 10;
	pointer-events: none;
}
div#cover div.pager p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
	border: 1px solid #002c83;
	pointer-events: auto;
	cursor: pointer;
	background-color: #ffffff;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
div#cover div.pager p.button:hover {
	color: #ffffff;
	background-color: #002c83;
}
div#cover div.pager p.button-prev {
	right: calc(50% + 535px);
	transform: scaleX(-1);
}
div#cover div.pager p.button-next {
	left: calc(50% + 535px);
}
div#cover div.pager p.button i.icon {
	font-size: 1.25rem;
}



/* --------------------------------------------------------------------------------
title
-------------------------------------------------------------------------------- */

div#title {
	text-align: center;
	padding-top: 80px;
}
body:has(#message) div#title {
	margin-bottom: 20px;
}
div#title :is(h1, p.sub) {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
div#title.active :is(h1, p.sub) {
	opacity: 1;
}
div#title h1 {
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
	border-bottom: 1px solid #cccccc;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
div#title p.sub {
	font-family: "Montserrat", sans-serif;
	font-size: 1.125rem;
	transition-delay: 0.125s;
}



/* --------------------------------------------------------------------------------
main
-------------------------------------------------------------------------------- */

main,
main section,
main section div.inner-section {
	position: relative;
}
main section.background-gradation::before,
main section.background-gradation::after {
	position: absolute;
	width: 300px;
	height: calc(100svh - 80px);
	top: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
	mix-blend-mode: multiply;
}
main section.background-gradation.active::before,
main section.background-gradation.active::after {
	opacity: 1;
}
main section.background-gradation::before {
	left: 0px;
	background-image: url(../images/background-gradation-01.jpg);
	background-position: right top;
}
main section.background-gradation::after {
	right: 0px;
	background-image: url(../images/background-gradation-02.jpg);
	background-position: left top;
}
main section.background-gradation-fix::before,
main section.background-gradation-fix::after {
	position: fixed;
	height: 100svh;
}
body.admin-bar main section.background-gradation-fix::before,
body.admin-bar main section.background-gradation-fix::after {
	height: calc(100svh - 32px);
	top: 32px;
}
main section div.inner-section {
	width: 800px;
	z-index: 1;
	margin: 0px auto;
	padding: 120px 0px;
}
body.clean-energy main section#summary {
	z-index: 1;
	background-color: #eceff6;
}
body.high-performance main section#summary {
	background-color: #fdf1f0;
}
main section#summary::before,
main section#summary::after {
	height: 100%;
}
main section#summary h1 {
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size: 4rem;
	font-weight: 600;
	line-height: 4.5rem;
	margin-bottom: 60px;
}
main section#summary h2 {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 2.75rem;
	margin-bottom: 20px;
}
main section#summary p.description {
	width: 480px;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.25rem;
}
main section#summary p.illust {
	position: absolute;
	width: 720px;
	left: calc(50% + 80px);
	bottom: -60px;
}
main section#summary p.illust img {
	width: 100%;
}
main section#message div#trigger-message {
	position: absolute;
	top: -80px;
}
main section#message p.background {
	position: absolute;
	width: 50vw;
	height: calc(100svh - 80px);
	left: 50%;
	top: 0px;
}
main section#message.start p.background {
	position: fixed;
	top: 80px;
}
main section#message.end p.background {
	position: absolute;
	top: auto;
	bottom: 0px;
}
main section#message p.background img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#message p.background span {
	position: absolute;
	left: 80px;
	top: 160px;
	z-index: 1;
	font-size: 3rem;
	font-weight: 500;
	line-height: 5rem;
	color: #ffffff;
	letter-spacing: 0.1em;
}
body.admin-bar main section#message p.background span {
	top: 192px;
}
main section#message div.inner-section {
	width: 1040px;
	padding: 160px 0px;
}
main section#message p.label {
	font-family: "Montserrat", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 40px;
}
main section#message h2 {
	font-size: 2rem;
	font-weight: 500;
	line-height: 3.25rem;
	margin-bottom: 40px;
}
main section#message h2.alternate {
	display: none;
}
main section#message p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 3.75rem;
}
main section#message p.description:not(:last-child) {
	margin-bottom: 40px;
}
main section#message p.description sup {
	font-size: 0.75rem;
}
main p.more {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-weight: 500;
}
main p.more a::after {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-left: 1px solid #002c83;
	border-top: 1px solid #002c83;
	margin-left: 5px;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateY(-1px) rotate(135deg);
}
main p.more a:hover::after {
	border-color: #7f95c1;
}
main p.button-mail {
	margin: 0px auto;
}
main div.list-category {
	margin-bottom: 80px;
}
main div.list-category ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: -10px;
}
main div.list-category ul li {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5rem;
	margin-bottom: 10px;
}
main div.list-category ul li:not(:last-child) {
	margin-right: 10px;
}
main div.list-category ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 35px;
	border: 1px solid #002c83;
	padding: 0px 17.5px;
	border-radius: 17.5px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div.list-category ul li a:hover,
main div.list-category ul li.active a {
	color: #ffffff;
	background-color: #002c83;
}
main div.created-category {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.5rem;
}
main div.created-category p.created {
	font-family: "Montserrat", sans-serif;
	transform: translateY(1px);
}
main div.created-category p.created:not(:last-child) {
	position: relative;
	margin-right: 30px;
}
main div.created-category p.created:not(:last-child)::before {
	position: absolute;
	width: 0px;
	height: 15px;
	right: -15px;
	top: 5px;
	border-right: 1px solid #cccccc;
	content: "";
}
main div.created-category p.category {
	font-weight: 500;
}
main div.faq:not(:last-child) {
	margin-bottom: 120px;
}
main div.faq h2 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 40px;
}
main div.faq div.list {
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	padding: 40px 0px;
}
main div.faq div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main div.faq div.list div.row :is(h3, div.body) {
	position: relative;
	padding-left: 50px;
}
main div.faq div.list div.row h3 {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 10px;
}
main div.faq div.list div.row :is(h3, div.body)::before {
	position: absolute;
	left: 0px;
	top: 0px;
	font-family: "Montserrat", sans-serif;
	font-size: 2rem;
	font-weight: 400;
}
main div.faq div.list div.row h3::before {
	content: "Q";
}
main div.faq div.list div.row div.body::before {
	content: "A";
}
main div.related div.header {
	text-align: center;
	margin-bottom: 40px;
}
main div.related div.header h3 {
	font-size: 1.5rem;
	font-weight: 700;
}
main div.slide {
	position: relative;
}
main div.slide:not(:last-child) {
	margin-bottom: 40px;
}
main div.slide div.list {
	overflow: hidden;
}
main div.slide div.list div.inner-list {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
}
main div.slide div.list div.row {
	overflow: hidden;
	margin-right: 40px;
}
main div.slide div.list div.row a {
	display: block;
}
main div.slide div.list div.row div.text p.created {
	font-family: "Montserrat", sans-serif;
	margin-bottom: 5px;
	transform: translateY(1px);
}
main div.slide div.list div.row div.text h3 {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625rem;
}
main div.slide-common div.list div.row {
	width: 240px;
	background-color: #ffffff;
	border-radius: 10px;
}
main div.slide-common div.list div.row p.image {
	aspect-ratio: 960 / 1140;
}
main div.slide-common div.list div.row p.image img {
	object-fit: cover;
	object-position: center top;
	width: 100%;
	height: 100%;
}
main div.slide-common div.list div.row div.text {
	padding: 20px;
	background-color: #f8f8f8;
}
main div.slide-common div.pager {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 10;
	pointer-events: none;
}
main div.slide-common div.pager p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
	border: 1px solid #002c83;
	pointer-events: auto;
	cursor: pointer;
	background-color: #ffffff;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div.slide-common div.pager p.button:hover {
	color: #ffffff;
	background-color: #002c83;
}
main div.slide-common div.pager p.button-prev {
	left: -80px;
	transform: scaleX(-1);
}
main div.slide-common div.pager p.button-next {
	right: -80px;
}
main div.slide-common div.pager p.button i.icon {
	font-size: 1.25rem;
}
main div.slide-talk {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
main div.slide-talk div.list div.row {
	width: 400px;
}
main div.slide-talk div.list div.row p.image {
	aspect-ratio: 500 / 320;
	margin-bottom: 20px;
	border-radius: 10px;
}
main div.slide-talk div.list div.row div.text :is(div.created-category, h3:not(:last-child)) {
	margin-bottom: 5px;
}
main div.slide-talk div.list div.row p:is(.name, .position) {
	font-weight: 500;
	line-height: 1.5rem;
}
main div.slide-talk div.list div.row p.position {
	font-size: 0.875rem;
}
main div.slide-talk div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 40px;
}
main div.slide-talk div.navi p.button {
	width: 10px;
	height: 10px;
	cursor: pointer;
	margin: 0px 5px;
	background-color: #cccccc;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
main div.slide-talk div.navi p.button:is(:hover, .active) {
	background-color: #002c83;
}
main div.banner-common {
	margin: 120px -120px 0px -120px;
}
body.page main section#column div.banner-common {
	margin-left: 0px;
	margin-right: 0px;
}
main div.banner-common a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	height: 220px;
	overflow: hidden;
	color: #ffffff;
	border-radius: 10px;
	transition: 0.25s background-color ease;
}
main div.banner-common a::before,
main div.banner-common a::after {
	position: absolute;
	height: 0px;
	left: 0px;
	z-index: 1;
	border-bottom: 1px solid #ffffff;
	content: "";
	transform-origin: left bottom;
	transform: rotate(-45deg);
}
main div.banner-common a::before {
	width: 80px;
	top: 45px;
}
main div.banner-common a::after {
	width: 40px;
	top: 60px;
}
main div.banner-common div.text {
	width: calc(100% - 370px);
	text-align: center;
	padding-top: 20px;
}
main div.banner-common div.text p:is(.sub, .button) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main div.banner-common div.text p.sub {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
main div.banner-common div.text p:is(.sub, .more) span {
	display: block;
}
main div.banner-common div.text p.sub span {
	padding: 7.5px 10px;
	background-color: #ffffff;
}
main div.banner-common div.text h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 20px;
}
main div.banner-common div.text h3 span {
	font-size: 2.5rem;
}
main div.banner-common div.text p.button {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}
main div.banner-common div.text p.button span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 35px;
	padding: 0px 17.5px;
	border-radius: 17.5px;
}
main div.banner-common div.text p.button i.icon {
	font-size: 1.125rem;
	font-weight: 400;
	margin-right: 5px;
}
main div.banner-common p.illust {
	position: absolute;
	width: 370px;
	right: 0px;
	bottom: 0px;
}
main div.banner-common p.illust img {
	width: 100%;
}
main div.banner-clean-energy a {
	background-color: #002c83;
}
main div.banner-clean-energy a:hover {
	background-color: #204693;
}
main div.banner-clean-energy div.text p.sub {
	color: #002c83;
}
main div.banner-clean-energy div.text p.button span {
	background-color: #e44939;
}
main div.banner-high-performance a {
	background-color: #e44939;
}
main div.banner-high-performance a:hover {
	background-color: #e76052;
}
main div.banner-high-performance div.text p.sub {
	color: #e44939;
}
main div.banner-high-performance div.text p.button span {
	background-color: #002c83;
}
main article.common div.body a {
	text-decoration: underline;
}
main article.common div.body :is(h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 700;
}
main article.common div.body h1 {
	margin-bottom: 20px;
}
main article.common div.body h2 {
	margin-bottom: 20px;
}
main article.common div.body h3 {
	margin-bottom: 10px;
}
main article.common div.body h4,
main article.common div.body h5,
main article.common div.body h6 {
	margin-bottom: 5px;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #f8f8f8;
	border-radius: 5px;
}
main article.common div.body ul li,
main ul.bullet li {
	position: relative;
	padding-left: 20px;
}
main article.common div.body ul li::before,
main ul.bullet li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 14px;
	background-color: #002c83;
	content: "";
	border-radius: 50%;
}
main article.common div.body ol {
	padding-left: 20px;
}
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :is(th, td) {
	line-height: 1.625rem;
	border: 1px solid #cccccc;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #f8f8f8;
}
main article.common div.body table :is(th, td) ul li::before {
	top: 12px;
}
main article.common div.body img.alignleft {
	margin-left: 0px;
	margin-right: auto;
}
main article.common div.body img.alignright {
	margin-left: auto;
	margin-right: 0px;
}
main article.common div.body img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
main article.common div.body :is(a.wp-block-button__link, a.wp-block-file__button) {
	display: inline-block;
	height: 50px;
	text-decoration: none;
	font-size: 1rem;
	line-height: 50px;
	color: #ffffff;
	padding: 0px 20px;
	background-color: #002c83;
	border-radius: 5px;
	transition: 0.25s background-color ease;
}
main article.common div.body :is(a.wp-block-button__link, a.wp-block-file__button):hover {
	background-color: #7f95c1;
}
main div#pager,
main nav#navi-article {
	position: relative;
	font-weight: 500;
	margin-top: 80px;
	padding: 0px 60px;
}
main div#pager,
main nav#navi-article ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main div#pager {
	margin-bottom: -10px;
}
main div#pager :is(span.current, a),
main nav#navi-article ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	border-radius: 5px;
	transition: 0.25s color ease, 0.25s border-color ease, 0.25s background-color ease;
}
main div#pager :is(span.current, a:not(.prev):not(.next)) {
	position: relative;
	width: 40px;
	margin-bottom: 10px;
}
main div#pager :is(span, a:not(.prev):not(.next))::before {
	position: absolute;
	width: 20px;
	height: 0px;
	left: calc(50% - 10px);
	bottom: 5px;
	border-bottom: 1px solid #002c83;
	content: "";
	transition: 0.25s opacity ease, 0.25s transform ease;
	transform-origin: center top;
	transform: scaleX(0);
}
main div#pager :is(span.current, a:hover:not(.prev):not(.next))::before {
	opacity: 1;
	transform: scaleX(1);
}
main div#pager :is(a.prev, a.next),
main nav#navi-article ul li:is(.prev, .next) a {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 0px;
	font-size: 1.125rem;
	font-weight: 400;
	border: 1px solid #002c83;
	background-color: #ffffff;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div#pager :is(a.prev, a.next):hover,
main nav#navi-article ul li:is(.prev, .next) a:hover {
	color: #ffffff;
	background-color: #002c83;
}
main div#pager a.prev,
main nav#navi-article ul li.prev a {
	left: 0px;
	transform: scaleX(-1);
}
main div#pager a.next,
main nav#navi-article ul li.next a {
	right: 0px;
}

/* home
-------------------------------------------------------------------------------- */

main section.home-common header {
	text-align: center;
	margin-bottom: 60px;
}
main section.home-common header h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 4rem;
	font-weight: 600;
	line-height: 4.5rem;
}
main section.home-common header p.sub {
	font-weight: 500;
}
main section.home-common header p.description {
	font-size: 1.125rem;
	font-weight: 500;
	padding-top: 20px;
}
main section#home-summary div.inner-section {
	width: auto;
	text-align: center;
	padding: 80px 0px 0px 0px;
}
main section#home-summary h2 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.5rem;
	margin-bottom: 10px;
}
main section:is(#home-clean-energy, #home-high-performance) {
	margin-top: 120px;
}
main section:is(#home-clean-energy, #home-high-performance) div.inner-section {
	padding-top: 0px;
}
main section:is(#home-clean-energy, #home-high-performance) header {
	transform: translateY(-35px);
	margin-bottom: 25px;
}
main section:is(#home-clean-energy, #home-high-performance) div.slide-common div.list div.row div.text {
	background-color: #ffffff;
}
main section#home-clean-energy {
	background-color: #eceff6;
}
main section#home-high-performance {
	background-color: #fdf1f0;
}
main section#home-high-performance header :is(h2, p.sub) {
	color: #e44939;
}
main section#home-news div.inner-section {
	padding-top: 0px;
}
main section#home-news header {
	text-align: center;
	margin-bottom: 40px;
}
main section#home-news header h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 3rem;
}
main section#home-news div.list-news {
	margin-bottom: 40px;
}

/* clean-energy
-------------------------------------------------------------------------------- */

main section#clean-energy div.inner-section {
	padding-bottom: 0px;
}
main section#clean-energy div.block,
main section#clean-energy div.block div.inner-block {
	position: relative;
}
main section#clean-energy div.block div.inner-block {
	padding: 0px 0px 120px 0px;
}
main section#clean-energy div.block-feature div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -60px 0px;
}
main section#clean-energy div.block-feature div.list div.row {
	width: calc(50% - 40px);
	margin: 0px 40px 60px 0px;
}
main section#clean-energy div:is(.block-new-era, .block-generator)::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	content: "";
}
main section#clean-energy div.block-new-era::before {
	background-color: #eceff6;
}
main section#clean-energy div.block-new-era h3 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.5rem;
	margin-bottom: 10px;
}
main section#clean-energy div.block-new-era div.diagram-text,
main section#clean-energy div.block-new-era div.diagram {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
main section#clean-energy div.block-new-era div.diagram-text {
	flex-direction: row-reverse;
}
main section#clean-energy div.block-new-era div.diagram-text p.diagram,
main section#clean-energy div.block-new-era div.diagram {
	padding: 10px;
	background-color: #ffffff;
}
main section#clean-energy div.block-new-era div.diagram-text p.diagram {
	width: 400px;
}
main section#clean-energy div.block-new-era div.diagram-text p.diagram img {
	width: 100%;
}
main section#clean-energy div.block-new-era div.diagram-text div.text {
	width: calc(100% - 440px);
}
main section#clean-energy div.block-new-era div.diagram p.row {
	width: calc(50% - 10px);
}
main section#clean-energy div.block-new-era div.diagram p.row img {
	width: 100%;
}
main section#clean-energy div.block-generator {
	color: #ffffff;
}
main section#clean-energy div.block-generator div.inner-block {
	padding-top: 120px;
}
main section#clean-energy div.block-generator div.diagram-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#clean-energy div.block-generator div.diagram-text div.text {
	width: calc(100% - 420px);
}
main section#clean-energy div.block-generator div.diagram-text div.text h2 {
	position: relative;
	text-align: center;
	font-weight: 700;
	margin-bottom: 30px;
	padding-bottom: 15px;
}
main section#clean-energy div.block-generator div.diagram-text div.text h2::before,
main section#clean-energy div.block-generator div.diagram-text div.text h2::after {
	position: absolute;
	border-bottom: 1px solid #ffffff;
	content: "";
}
main section#clean-energy div.block-generator div.diagram-text div.text h2::before {
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
}
main section#clean-energy div.block-generator div.diagram-text div.text h2::after {
	width: 20px;
	height: 20px;
	left: calc(50% - 10px);
	bottom: -10px;
	border-left: 1px solid #ffffff;
	background-color: #e44939;
	transform: rotate(-45deg);
}
main section#clean-energy div.block-generator div.diagram-text div.text h2 span {
	display: block;
}
main section#clean-energy div.block-generator div.diagram-text div.text h2 span.sub {
	position: relative;
	font-size: 1.5rem;
	line-height: 2.5rem;
}
main section#clean-energy div.block-generator div.diagram-text div.text h2 span.sub::before {
	position: absolute;
	left: 10px;
	top: -10px;
	font-family: "Montserrat", sans-serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 3.5rem;
	content: "？";
	transform: rotate(-30deg);
}
main section#clean-energy div.block-generator div.diagram-text div.text h2 span.main {
	font-size: 2rem;
}
main section#clean-energy div.block-generator div.diagram-text p.diagram {
	width: 380px;
}
main section#clean-energy div.block-generator div.diagram-text p.diagram img {
	width: 100%;
}
main section#clean-energy div.block-generator::before {
	background-color: #e44939;
}
main section#clean-energy div.block-case div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -60px 0px;
}
main section#clean-energy div.block-case div.list div.row {
	width: calc(50% - 40px);
	margin: 0px 40px 60px 0px;
}
main section#clean-energy div.block-case div.list div.row p.label {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	margin-bottom: 5px;
}
main section#clean-energy div.block-case div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section#clean-energy div.block-case div.list div.row h3 span {
	display: block;
	padding: 2.5px 15px;
	background-color: #eceff6;
}
main section#clean-energy div.block-case div.list div.row p.image {
	margin-bottom: 20px;
}
main section#clean-energy div.block-contact div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 60px;
}
main section#clean-energy div.block-contact div.button-wrapper p.button-default:not(:last-child) {
	margin-right: 20px;
}
main section#clean-energy + section#contact {
	background-color: #eceff6;
}
main section#clean-energy + section#contact header {
	text-align: center;
	margin-bottom: 40px;
}
main section#clean-energy + section#contact header h2 {
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
}

/* high-performance
-------------------------------------------------------------------------------- */

main section#high-performance div.inner-section {
	padding-bottom: 0px;
}
main section#high-performance div.block,
main section#high-performance div.block div.inner-block {
	position: relative;
}
main section#high-performance div.block div.inner-block {
	padding: 0px 0px 120px 0px;
}
main section#high-performance div.block-plan h3 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.5rem;
	margin-bottom: 10px;
}
main section#high-performance div.block-plan div.diagram-text,
main section#high-performance div.block-plan div.diagram {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
main section#high-performance div.block-plan div.diagram-text {
	flex-direction: row-reverse;
}
main section#high-performance div.block-plan div.diagram-text p.diagram,
main section#high-performance div.block-plan div.diagram {
	padding: 10px;
	background-color: #ffffff;
}
main section#high-performance div.block-plan div.diagram-text p.diagram {
	width: 400px;
}
main section#high-performance div.block-plan div.diagram-text p.diagram img {
	width: 100%;
}
main section#high-performance div.block-plan div.diagram-text div.text {
	width: calc(100% - 440px);
}
main section#high-performance div.block-plan div.diagram p.row {
	width: calc(50% - 10px);
}
main section#high-performance div.block-plan div.diagram p.row img {
	width: 100%;
}
main section#high-performance div.block-attention::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	background-color: #fdf1f0;
	content: "";
}
main section#high-performance div.block-attention div.segment:not(:last-child) {
	margin-bottom: 120px;
}
main section#high-performance div.block-attention div.segment p.image {
	margin-bottom: 60px;
}
main section#high-performance div.block-attention div.segment div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -60px 0px;
}
main section#high-performance div.block-attention div.segment div.list div.row {
	width: calc(50% - 40px);
	margin: 0px 40px 60px 0px;
}

/* business
-------------------------------------------------------------------------------- */

main section#business div.inner-section {
	padding-bottom: 0px;
}
main section#business header {
	margin: 0px -120px 120px -120px;
}
main section#business div.block,
main section#business div.block div.inner-block {
	position: relative;
}
main section#business div.block div.inner-block {
	padding: 0px 0px 120px 0px;
}
main section#business div.block-summary div.header {
	margin-left: -120px;
	margin-right: -120px;
}
main section#business div.block-summary :is(div.header, p.diagram, h2) {
	margin-bottom: 60px;
}
main section#business div.block-summary div.header {
	text-align: center;
}
main section#business div.block-summary div.header p.description {
	font-size: 1.125rem;
	font-weight: 500;
}
main section#business div.block-summary h2 {
	text-align: center;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3.5rem;
}
main section#business div.block-service h2 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3.5rem;
	margin-bottom: 60px;
}
main section#business div.block-service div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px 60px 0px;
}
main section#business div.block-service div.list div.row {
	width: calc(50% - 40px);
	overflow: hidden;
	margin: 0px 40px 60px 0px;
}
main section#business div.block-service div.list div.row p.image {
	position: relative;
	margin-bottom: 20px;
}
main section#business div.block-service div.list div.row p.image span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 140px;
	height: 30px;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1rem;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	z-index: 1;
}
main section#business div.block-service div.list div.row h3 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.25rem;
	margin-bottom: 10px;
}

/* design-support
-------------------------------------------------------------------------------- */

main section#design-support header {
	margin: 0px -120px 60px -120px;
}
main section#design-support div.block,
main section#design-support div.block div.inner-block {
	position: relative;
}
main section#design-support div.block div.inner-block {
	padding: 120px 0px;
}
main section#design-support div.block-summary div.inner-block {
	padding-top: 0px;
}
main section#design-support div.block-summary h2 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3.5rem;
	margin-bottom: 20px;
}
main section#design-support div.block-summary p.emphasis {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 60px;
}
main section#design-support div.block-summary h3 {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 10px;
}
main section#design-support div:is(.block-merit-01, .block-merit-03, .block-merit-05)::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	background-color: #eceff6;
	content: "";
}
main section#design-support div.block-merit div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}
main section#design-support div.block-merit div.image-text p.image {
	width: 380px;
}
main section#design-support div.block-merit div.image-text div.text {
	width: calc(100% - 420px);
}
main section#design-support div.block-merit div.image-text div.text p.label,
main section#design-support div.block-merit div.image-text div.text h2:not(:last-child),
main section#design-support div.block-merit div.image-text div.text div.segment :is(ul.bullet-emphasis, h3):not(:last-child) {
	margin-bottom: 10px;
}
main section#design-support div.block-merit div.image-text div.text p.label,
main section#design-support div.block-merit div.image-text div.text p.label span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
main section#design-support div.block-merit div.image-text div.text p.label {
	width: 160px;
	height: 40px;
	font-size: 1.25rem;
	font-weight: 500;
	color: #ffffff;
	background-color: #002c83;
}
main section#design-support div.block-merit div.image-text div.text p.label span {
	width: 25px;
	height: 25px;
	font-family: "Montserrat", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.125rem;
	color: #002c83;
	margin-left: 10px;
	background-color: #ffffff;
	border-radius: 50%;
	transform: translateY(1px);
}
main section#design-support div.block-merit div.image-text div.text h2 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.5rem;
}
main section#design-support div.block-merit div.image-text div.text :is(p.description, div.segment):not(:last-child) {
	margin-bottom: 40px;
}
main section#design-support div.block-merit div.image-text div.text div.segment {
	border-left: 1px solid #cccccc;
	padding-left: 20px;
}
main section#design-support div.block-merit div.image-text div.text div.segment :is(ul.bullet-emphasis, h3) {
	font-size: 1.125rem;
	font-weight: 700;
}
main section#design-support div.block-merit div.image-text div.text div.segment h4 {
	font-weight: 500;
}
main section#design-support div.block-merit div.image-text div.text div.segment span.arrow {
	display: inline-block;
	position: relative;
	font-weight: 500;
	padding-left: 20px;
}
main section#design-support div.block-merit div.image-text div.text div.segment span.arrow::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 12px;
	border-left: 2px solid #002c83;
	border-top: 2px solid #002c83;
	transform: rotate(135deg);
	content: "";
}
main section#design-support div.block-merit div.image-text div.text div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -30px 0px;
}
main section#design-support div.block-merit div.image-text div.text div.list div.row {
	width: calc(50% - 40px);
	margin: 0px 40px 30px 0px;
}
main section#design-support div.block-merit div.image-text div.text div.list div.row h3 {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 10px;
}
main section#design-support div.block-merit div.image-text div.text div.list div.row p.button-default a {
	width: 100%;
}
main section#design-support div.block-merit-06 div.inner-block {
	padding-bottom: 0px;
}

/* wooden-buildings
-------------------------------------------------------------------------------- */

main section#wooden-buildings div.inner-section {
	padding-bottom: 0px;
}
main section#wooden-buildings header {
	margin: 0px -120px 60px -120px;
}
main section#wooden-buildings div.block,
main section#wooden-buildings div.block div.inner-block {
	position: relative;
}
main section#wooden-buildings div.block div.inner-block {
	padding: 120px 0px;
}
main section#wooden-buildings div.block-summary div.inner-block {
	padding-top: 0px;
}
main section#wooden-buildings div.block-summary h2 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3.5rem;
	margin-bottom: 20px;
}
main section#wooden-buildings div.block-summary p.emphasis {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 60px;
}
main section#wooden-buildings div.block-summary div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}
main section#wooden-buildings div.block-summary div.image-text p.image {
	width: 380px;
}
main section#wooden-buildings div.block-summary div.image-text div.text {
	width: calc(100% - 420px);
}
main section#wooden-buildings div:is(.block-merit, .block-flow)::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	content: "";
}
main section#wooden-buildings div.block-merit::before {
	background-color: #eceff6;
}
main section#wooden-buildings div.block-merit p.image {
	position: absolute;
	width: 380px;
	right: 0px;
	top: 120px;
}
main section#wooden-buildings div.block-merit div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -60px 0px;
}
main section#wooden-buildings div.block-merit div.list div.row {
	width: calc(50% - 40px);
	margin: 0px 40px 60px 0px;
}
main section#wooden-buildings div.block-merit div.list div.row:first-child {
	margin-right: calc(50% + 40px);
}
main section#wooden-buildings div.block-merit div.list div.row p.label,
main section#wooden-buildings div.block-merit div.list div.row p.label span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
main section#wooden-buildings div.block-merit div.list div.row p.label {
	width: 160px;
	height: 40px;
	font-size: 1.25rem;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 10px;
	background-color: #002c83;
}
main section#wooden-buildings div.block-merit div.list div.row p.label span {
	width: 25px;
	height: 25px;
	font-family: "Montserrat", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.125rem;
	color: #002c83;
	margin-left: 10px;
	background-color: #ffffff;
	border-radius: 50%;
	transform: translateY(1px);
}
main section#wooden-buildings div.block-merit div.list div.row h2 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.5rem;
	margin-bottom: 10px;
}
main section#wooden-buildings div.block-works h2 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	border-bottom: 1px solid #cccccc;
	margin-bottom: 60px;
	padding-bottom: 10px;
}
main section#wooden-buildings div.block-works div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -60px 0px;
}
main section#wooden-buildings div.block-works div.list div.row {
	width: calc(50% - 40px);
	margin: 0px 40px 60px 0px;
}
main section#wooden-buildings div.block-works div.list div.row p.image {
	margin-bottom: 10px;
}
main section#wooden-buildings div.block-works div.list div.row p.caption {
	font-size: 1.125rem;
	font-weight: 500;
}
main section#wooden-buildings div.block-works div.list div.row ul {
	display: flex;
	flex-wrap: wrap;
}
main section#wooden-buildings div.block-works div.list div.row ul li:not(:last-child) {
	position: relative;
	margin-right: 30px;
}
main section#wooden-buildings div.block-works div.list div.row ul li:not(:last-child)::before {
	position: absolute;
	width: 0px;
	height: 15px;
	right: -15px;
	top: 10px;
	border-right: 1px solid #cccccc;
	content: "";
}
main section#wooden-buildings div.block-flow::before {
	background-color: #f8f8f8;
}
main section#wooden-buildings div.block-flow div.diagram-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#wooden-buildings div.block-flow div.diagram-text div.text,
main section#wooden-buildings div.block-flow div.diagram-text div.diagram {
	width: calc(50% - 20px);
}
main section#wooden-buildings div.block-flow div.diagram-text div.text h2 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.5rem;
	margin-bottom: 10px;
}
main section#wooden-buildings div.block-flow div.diagram-text div.diagram ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-right: -20px;
}
main section#wooden-buildings div.block-flow div.diagram-text div.diagram ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: calc(16.66% - 20px);
	height: 240px;
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-weight: 700;
	line-height: 1.25rem;
	color: #ffffff;
	background-color: #002c83;
	margin-right: 20px;
}
main section#wooden-buildings div.block-flow div.diagram-text div.diagram ul li:not(:last-child)::before {
	position: absolute;
	width: 10px;
	height: 15px;
	right: -15px;
	top: calc(50% - 7.5px);
	background-color: #7f95c1;
	content: "";
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
main section#wooden-buildings div.block-flow div.diagram-text div.diagram ul li span {
	display: block;
}

/* column
-------------------------------------------------------------------------------- */

main div.list-column {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -60px 0px;
}
main div.list-column div.row {
	width: calc(33.33% - 40px);
	margin: 0px 40px 60px 0px;
}
main div.list-column p.image {
	aspect-ratio: 960 / 1140;
	margin-bottom: 20px;
	border-radius: 10px;
}
main div.list-column p.image img {
	object-fit: cover;
	object-position: center top;
	width: 100%;
	height: 100%;
}
main div.list-column div.row p.created {
	font-family: "Montserrat", sans-serif;
	line-height: 1.5rem;
	margin-bottom: 5px;
	transform: translateY(1px);
}
main div.list-column div.row h3 {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625rem;
}
main article.column header,
main article.column header div.image-text {
	position: relative;
}
main article.column header {
	margin: 0px -120px 80px -120px;
	padding-bottom: 80px;
}
main article.column header::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	content: "";
}
main section.clean-energy article.column header::before {
	background-color: #002c83;
}
main section.high-performance article.column header::before {
	background-color: #e44939;
}
main article.column header div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	color: #ffffff;
	padding: 80px 0px;
}
main article.column header div.image-text::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: -80px;
	top: 0px;
	border-left: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	pointer-events: none;
	content: "";
	border-bottom-left-radius: 40px;
}
main article.column header div.image-text:has(p.image) {
	flex-direction: row-reverse;
}
main article.column header div.image-text p.image {
	aspect-ratio: 960 / 1140;
	width: 480px;
}
main article.column header div.image-text p.image img {
	object-fit: cover;
	object-position: center top;
	width: 100%;
	height: 100%;
}
main article.column header div.image-text div.text {
	width: calc(100% - 540px);
}
main article.column header div.image-text div.text p.label,
main article.column header div.image-text div.text div.created-category {
	margin-bottom: 20px;
}
main article.column header div.image-text div.text p.label {
	font-family: "Montserrat", sans-serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 3.5rem;
}
main section.clean-energy article.column header div.image-text div.text p.label {
	color: #4061a2;
}
main section.high-performance article.column header div.image-text div.text p.label {
	color: #eb776b;
}
main article.column header div.image-text div.text h1 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3.5rem;
	margin-bottom: 40px;
}
body.page main section#column.clean-energy {
	background-color: #eceff6;
}
body.page main section#column.high-performance {
	background-color: #fdf1f0;
}
body.page main section#column div.inner-section {
	width: 1040px;
}
body.page main section#column header {
	text-align: center;
	margin-bottom: 60px;
}
body.page main section#column header h1 {
	font-family: "Montserrat", sans-serif;
	font-size: 4rem;
	font-weight: 600;
	line-height: 4.5rem;
}
body.page main section#column header p.sub {
	font-weight: 500;
}
body.page main section#column.high-performance header :is(h1, p.sub) {
	color: #e44939;
}
body.single main section#column div.inner-section {
	padding: 0px;
}

/* talk
-------------------------------------------------------------------------------- */

main div.list-talk {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -60px 0px;
}
main div.list-talk div.row {
	width: calc(50% - 40px);
	margin: 0px 40px 60px 0px;
}
main div.list-talk p.image {
	aspect-ratio: 500 / 320;
	margin-bottom: 20px;
	border-radius: 10px;
}
main div.list-talk p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main div.list-talk div.row div.text :is(div.created-category, h3:not(:last-child)) {
	margin-bottom: 5px;
}
main div.list-talk div.row h3 {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625rem;
}
main div.list-talk div.row p:is(.position, .name) {
	font-weight: 500;
}
main div.list-talk div.row p.position {
	font-size: 0.875rem;
}
main article.talk header {
	margin-bottom: 80px;
}
main article.talk header p.image {
	aspect-ratio: 1040 / 600;
	margin: 0px -120px 60px -120px;
}
main article.talk header p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main article.talk header div.text p.label {
	font-family: "Montserrat", sans-serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 3.5rem;
	color: #9fb0d0;
	margin-bottom: 10px;
}
main article.talk header div.text div.created-category {
	margin-bottom: 40px;
}
main article.talk header div.text h1 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3.5rem;
	margin-bottom: 20px;
}
main article.talk header div.text p:is(.name, .position) {
	font-weight: 500;
}
main article.talk header div.text p.name {
	font-size: 1.25rem;
}
main article.talk header div.text:not(:has(p.position)) p.name,
main article.talk header div.text p.position {
	margin-bottom: 40px;
}
main article.talk div.body {
	margin-bottom: 120px;
}
main article.talk div.body p:has(img) {
	aspect-ratio: 1040 / 360;
	margin: 0px -120px;
}
main article.talk div.body p img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main article.talk div.profile {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	margin: 0px -120px;
	padding: 60px 40px;
}
main article.talk div.profile:has(p.image) {
	flex-direction: row-reverse;
}
main article.talk div.profile p.image {
	width: 400px;
}
main article.talk div.profile div.text {
	width: calc(100% - 460px);
}
main article.talk div.profile div.text h4 {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	margin-bottom: 20px;
}
main article.talk div.profile div.text p:is(.name, .position, .label) {
	font-weight: 500;
}
main article.talk div.profile div.text p.name {
	font-size: 1.25rem;
}
main article.talk div.profile div.text:not(:has(p.position)) p.name,
main article.talk div.profile div.text p.position {
	margin-bottom: 20px;
}
body.page main section#talk div.inner-section {
	width: 1040px;
}

/* company
-------------------------------------------------------------------------------- */

main section#company {
	background-color: #f8f8f8;
}
main section#company header {
	text-align: center;
	margin-bottom: 60px;
}
main section#company header h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 4rem;
	font-weight: 600;
	line-height: 4.5rem;
}
main section#company :is(div.block-wrapper, ul.emphasis, p.image, div.map) {
	margin-bottom: 120px;
}
main section#company div.block-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#company div.block-wrapper div.block {
	width: calc(50% - 20px);
}
main section#company div.block h3 {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 40px;
}
main section#company div.block div.list div.row {
	border-bottom: 1px solid #cccccc;
	padding: 20px 0px;
}
main section#company div.block div.list div.row:first-child {
	border-top: 1px solid #cccccc;
}
main section#company div.block div.list div.row p.label {
	font-weight: 500;
	margin-bottom: 10px;
}
main section#company div.map iframe {
	width: 100%;
	height: 480px;
}
main section#company div.access {
	width: 600px;
	margin: 0px auto;
}
main section#company div.access p.map {
	margin-bottom: 20px;
}
main section#company div.access p.map img {
	width: 100%;
}

/* top-interview
-------------------------------------------------------------------------------- */

main section#top-interview header {
	margin: 0px -120px 60px -120px;
}
main section#top-interview h2 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3.5rem;
	margin-bottom: 20px;
}
main section#top-interview p:is(.position, .name) {
	font-weight: 500;
}
main section#top-interview p.name {
	font-size: 1.25rem;
	margin-bottom: 40px;
}
main section#top-interview div.description p.row:not(:last-child) {
	margin-bottom: 40px;
}

/* history
-------------------------------------------------------------------------------- */

main section#history p.description {
	margin-bottom: 60px;
}
main section#history div.image-text {
	position: relative;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	padding: 60px 0px;
}
main section#history div.image-text div.image {
	position: absolute;
	width: 320px;
	right: 0px;
	top: 60px;
}
main section#history div.image-text div.image p.row:not(:last-child) {
	margin-bottom: 20px;
}
main section#history div.image-text div.image p.row img {
	width: 100%;
}
main section#history div.image-text div.text div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
main section#history div.image-text div.text div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section#history div.image-text div.text div.list div.row p.label {
	width: 100px;
	font-weight: 500;
}
main section#history div.image-text div.text div.list div.row p.body {
	width: calc(100% - 100px);
}

/* news
-------------------------------------------------------------------------------- */

main div.list-news div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main div.list-news div.row {
	border-bottom: 1px solid #cccccc;
	padding-bottom: 30px;
}
main div.list-news div.row:not(:last-child) {
	margin-bottom: 30px;
}
main div.list-news div.row div.created-category {
	width: 260px;
}
main div.list-news div.row div.created-category p.created {
	width: 120px;
	margin-right: 0px;
}
main div.list-news div.row div.created-category p.created::before {
	display: none;
}
main div.list-news div.row div.created-category p.category,
main article.news header div.created-category p.category {
	width: calc(100% - 120px);
}
main div.list-news div.row h3 {
	width: calc(100% - 260px);
	font-size: 1.125rem;
	font-weight: 500;
}
main article.news {
	padding-top: 80px;
}
main article.news header {
	border-bottom: 1px solid #cccccc;
	margin-bottom: 60px;
	padding-bottom: 20px;
}
main article.news header div.created-category {
	margin-bottom: 10px;
}
main article.news header h1 {
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 2.25rem;
}

/* column
-------------------------------------------------------------------------------- */

main div.list-column {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -60px 0px;
}
main div.list-column div.row {
	width: calc(33.33% - 40px);
	margin: 0px 40px 60px 0px;
}

/* form
-------------------------------------------------------------------------------- */

main section.form div.header {
	margin-bottom: 80px;
}
main section.form div.header p.description {
	margin-bottom: 20px;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div.form div.component-wrapper {
	margin-bottom: 80px;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
	border-bottom: 1px solid #cccccc;
	padding: 30px 0px;
}
main section.form div.form div.component:first-child {
	border-top: 1px solid #cccccc;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 220px;
	height: 50px;
	font-weight: 500;
}
main section.form div.form div.component-radio-checkbox p.label {
	height: auto;
}
main section.form div.mw_wp_form_preview div.form div.component p.label {
	display: block;
	height: auto;
}
main section.form div.form div.component p.label span.require {
	display: block;
	font-size: 0.875rem;
	font-weight: 400;
	color: #e44939;
	margin-left: 5px;
}
main section.form div.mw_wp_form_preview div.form div.component p.label span.require {
	display: none;
}
main section.form div.form div.component div.body {
	width: calc(100% - 220px);
}
main section.form div.form div.component-radio-checkbox div.body {
	margin-bottom: -5px;
}
main section.form div.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component div.body :is(input:is([type=text], [type=email]), select, textarea) {
	width: 100%;
}
main section.form div.form div.component div.body :is(span.mwform-radio-field, span.mwform-checkbox-field),
main section.form div.form div.component div.body :is(span.mwform-radio-field, span.mwform-checkbox-field) > label {
	display: block;
	font-weight: 500;
}
main section.form div.form div.component-radio-checkbox div.body :is(span.mwform-radio-field, span.mwform-checkbox-field) {
	margin: 0px 0px 5px 0px;
}
main section.form div.form div.component-horizontal div.body :is(span.mwform-radio-field, span.mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form :is(div.component div.body, div.agreement) span.error {
	font-size: 0.875rem;
	line-height: 25px;
	color: #e44939;
}
main section.form div.form div.component div.body span.error {
	width: 100%;
	padding-top: 5px;
}
main section.form div.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 80px;
}
main section.form div.mw_wp_form_preview div.form div.agreement {
	display: none;
}
main section.form div.form div.agreement span.mwform-checkbox-field,
main section.form div.form div.agreement span.mwform-checkbox-field > label {
	display: block;
}
main section.form div.form div.agreement span.mwform-checkbox-field {
	margin-right: 5px;
}
main section.form div.form div.agreement span.mwform-checkbox-field-text {
	display: none;
}
main section.form div.form div.agreement span.error {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: -25px;
	text-align: center;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.form div.action :is(input:is([type=button], [type=submit]), button):not(:last-child) {
	margin-right: 20px;
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
}

/* privacy-policy
-------------------------------------------------------------------------------- */

main section#privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
main section#privacy-policy div.list div.row h2 {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.875rem;
	margin-bottom: 10px;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	position: relative;
	z-index: 1;
	background-color: #eceff6;
}
footer#footer div.inner-footer {
	width: 800px;
	margin: 0px auto;
	padding: 60px 0px 40px 0px;
}
footer#footer nav#navi-footer {
	margin-bottom: 80px;
}
footer#footer nav#navi-footer div.main {
	margin-bottom: 40px;
}
footer#footer nav#navi-footer div.sub ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
footer#footer nav#navi-footer div.sub ul li {
	position: relative;
	font-weight: 500;
}
footer#footer nav#navi-footer div.sub ul li:not(:last-child) {
	margin-right: 30px;
}
footer#footer nav#navi-footer div.sub ul li a {
	display: block;
	position: relative;
}
footer#footer :is(div.information, div.misc, p.copyright) {
	text-align: center;
}
footer#footer div.information {
	margin-bottom: 20px;
}
footer#footer div.information h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}
footer#footer div.information h3 img {
	width: 250px;
}
footer#footer div.information p.address-tel-fax,
footer#footer p.copyright {
	color: #000000;
}
footer#footer div.misc {
	margin-bottom: 40px;
}
footer#footer div.misc p.privacy-policy {
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
footer#footer p.copyright {
	font-family: "Montserrat", sans-serif;
	font-size: 0.75rem;
	line-height: 1.25rem;
}



/* --------------------------------------------------------------------------------
tmp
-------------------------------------------------------------------------------- */

main div.created-category p.created::before,
main div.created-category p.category {
	display: none;
}
main div.list-news div.row div.created-category {
	width: 160px;
}
main div.list-news div.row h3 {
	width: calc(100% - 160px);
}
main section:is(#talk, #news) div.list-category {
	display: none;
}