  @charset "UTF-8";
/* settings.css
--------------------------------------------------------------------------
 変数?Mixin設定はここに記述します。
--------------------------------------------------------------------------*/
/* init.css
--------------------------------------------------------------------------
 各ブラウザのデフォルト設定を統一させたい場合はこのCSSに記述します。
--------------------------------------------------------------------------*/
/* リセット
--------------------------------------------------------------------------*/
html, body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset {
  margin: 0px;
  padding: 0px;
  line-height: 1;
}

/* フォントサイズの統一
--------------------------------------------------------------------------*/
:root {
  font-size: 16px;
}
@media (max-width: 1019px) {
  :root {
    font-size: 1.5701668302vw;
  }
}
@media (max-width: 767px) {
  :root {
    font-size: 4.2666666667vw;
  }
}

/* Win IE のみ */
body {
  font-size: 100%;
}

/* Win IE 以外のブラウザ */
html > body {
  font-size: 1rem;
}

/* Win IE7 のみ */
*:first-child + html body {
  font-size: 100%;
}

/* フォントサイズ切り替え設定
--------------------------------------------------------------------------*/
.font1 {
  font-size: 85%;
}

.font2 {
  font-size: 100%;
}

.font3 {
  font-size: 117%;
}

body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic Pro W3", Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  background: #fff;
  color: #333;
}

a, a:link, a:visited, a:hover {
  color: #3f51a0;
  text-decoration: underline;
}

a:hover {
  color: #EA6500;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

th, td {
  border: 0;
}

hr {
  display: none;
}

img {
  border: 0;
  vertical-align: bottom;
}

strong {
  font-weight: bold;
}

ul li, ol li {
  list-style-type: none;
}

h1, h2, h3, h4 {
  clear: both;
  font-weight: normal;
}

h1 {
  margin-bottom: 20px;
  *font-size: 9px;
}

/* フォントサイズ設定 */
ul li, ol li, th, td, dl dt, dl dd, p {
  font-size: 87.5%;
  line-height: 1.8;
}

p {
  margin-bottom: 30px;
}

/* 入れ子のフォントサイズ設定 */
li li, li p, li th, li td,
td th, td td, td p, td li, td dt, td dd,
dd p, dd li, dd th, dd td {
  font-size: 100%;
}

*:first-child + html * {
  letter-spacing: 0;
}

@media (max-width: 1219px) {
  img {
    max-width: 100%;
    height: auto;
  }
}
/* フロートのクリア(clearfix)
--------------------------------------------------------------------------*/
.clearfix,
.wrap {
  zoom: 1;
  display: inline-block;
}
.clearfix:after,
.wrap:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

/* ここから MacIE5を除外 \*/
* html .clearfix,
* html .wrap,
* html ul,
* html #header,
* html #footer,
* html #container {
  height: 1%;
}

.clearfix,
.wrap,
#header,
#footer,
#container {
  display: block;
}

/* ここまで MacIE5を除外 */
/* base.css
--------------------------------------------------------------------------
 全ページ共通のレイアウト設定?汎用スタイルはこのCSSに記述します。
--------------------------------------------------------------------------*/
._disp-ib {
  display: inline-block !important;
}

@media (max-width: 1219px) {
  ._view-xl-high {
    display: none !important;
  }
}
@media (min-width: 1220px) {
  ._view-xl-low {
    display: none !important;
  }
}
@media (max-width: 1019px) {
  ._view-lg-high {
    display: none !important;
  }
}
@media (min-width: 1020px) {
  ._view-lg-low {
    display: none !important;
  }
}
@media (max-width: 767px) {
  ._view-md-high {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._view-md-low {
    display: none !important;
  }
}
@media (max-width: 479px) {
  ._view-sm-high {
    display: none !important;
  }
}
@media (min-width: 480px) {
  ._view-sm-low {
    display: none !important;
  }
}
/* ページ全体のレイアウト（ブロック設定） */
html, body {
  height: 100%;
}

body {
  background-color: #edf4f9;
  min-width: 375px;
}

a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

#inbox {
  width: 100%;
  margin: 0 auto;
}

#container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  background: #edf4f9;
}

#side-navi {
  flex: 0 0 auto;
  width: 12.5rem;
  background: #fff;
}

#side-navi .side-inner {
  position: sticky;
  top: 0;
}

#main-content {
  zoom: 1;
  display: block;
  width: 60rem;
  padding: 0 1.25rem;
  background-color: #fff;
}
#main-content:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

#main-content .inner {
  position: relative;
  padding: 0.9375rem 1.25rem 6.25rem;
}

#main-content .inner .page-title {
  margin-left: -0.3125rem;
  margin-right: -0.3125rem;
}

.page-contents {
  padding: 0 0.875rem;
}

@media (max-width: 1219px) {
  #container {
    display: block;
  }
  #side-navi {
    display: none;
  }
  #main-content {
    margin: auto;
  }
}
@media (max-width: 1019px) {
  #main-content {
    width: auto;
  }
}
@media (max-width: 767px) {
  #main-content {
    padding: 0;
  }
  #main-content .inner {
    padding: 0.9375rem 0.625rem 5rem;
  }
  #main-content .inner .page-title {
    margin-left: 0;
    margin-right: 0;
  }
  .page-contents {
    padding: 0;
  }
}
/* ヘッダーエリア */
#header {
  box-sizing: border-box;
  position: relative;
  height: 4.875rem;
  padding: 0 1.25rem;
  background: #fff bottom repeat-x;
  z-index: 100;
}

#header h1 {
  width: 15rem;
  margin: 0;
}

#header h1 a {
  display: block;
}

#header .inner {
  position: relative;
  max-width: 72.5rem;
  margin: 0 auto;
  padding: 1.125rem 0 0.875rem;
}

#utility-navi,
#header .yonden {
  position: absolute;
}

#utility-navi {
  top: 1.25rem;
  right: 0;
}

#utility-navi li {
  float: left;
  font-size: 0.6875rem;
  padding-left: 1.25rem;
  line-height: 1;
}

#utility-navi a {
  display: block;
  padding-left: 0.75rem;
  background: url(/business/solution/images/share/icon_arrow01.png) left center no-repeat;
  color: #333;
  text-decoration: none;
}

#utility-navi a:hover {
  color: #999;
}

#header .yonden {
  top: 2.8125rem;
  right: 0;
  line-height: 1;
}

#hamburger-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.875rem;
  height: 4.875rem;
  background: #132781;
  cursor: pointer;
}

#hamburger-button .icon,
#hamburger-button .icon::before,
#hamburger-button .icon::after {
  display: block;
  position: absolute;
  width: 2.25rem;
  height: 2px;
  background: #fff;
  content: "";
  transition: all 0.3s ease;
}

#hamburger-button .icon {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 1.125rem);
}

#hamburger-button .icon::before {
  top: -0.625rem;
  left: 0;
}

#hamburger-button .icon::after {
  top: 0.625rem;
  left: 0;
}

#hamburger-button.-open .icon {
  background-color: transparent;
}

#hamburger-button.-open .icon::before {
  top: 0;
  transform: rotate(45deg);
}

#hamburger-button.-open .icon::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (min-width: 1220px) {
  #hamburger-button {
    display: none;
  }
}
@media (max-width: 1219px) {
  #header {
    border-bottom: 1px solid #ccc;
  }
  #header .yonden {
    top: calc(50% - 0.5rem);
    right: 4.875rem;
  }
  #utility-navi {
    display: none;
  }
}
@media (max-width: 767px) {
  #header {
    height: 3.75rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  #header .inner {
    padding: 0.9375rem 0 0.75rem;
  }
  #header h1 {
    width: 9rem;
  }
  #header h1 img {
    width: 100%;
  }
  #hamburger-button {
    width: 3.75rem;
    height: 3.75rem;
  }
  #header .yonden {
    top: calc(50% - 0.5rem);
    right: 3.75rem;
  }
  #hamburger-button .icon,
  #hamburger-button .icon::before,
  #hamburger-button .icon::after {
    width: 1.5rem;
  }
  #hamburger-button .icon {
    left: calc(50% - 0.75rem);
  }
  #hamburger-button .icon::before {
    top: -0.5rem;
  }
  #hamburger-button .icon::after {
    top: 0.5rem;
  }
}
/* スマホメニュー */
@keyframes spnav_open {
  0% {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  0% {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
  100% {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
.sp-navi {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
@media (min-width: 1220px) {
  .sp-navi {
    display: none !important;
  }
}

.sp-navi-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  max-height: 100%;
  padding: 6.125rem 1.25rem 1.25rem;
  background: #fff;
  overflow-y: auto;
  box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.1);
}
.sp-navi-container::-webkit-scrollbar {
  display: none;
}

.sp-navi-list {
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}

.sp-navi-list > li {
  display: block;
  border-bottom: 1px solid #ccc;
}

.sp-navi-list > li > .head {
  display: block;
  position: relative;
  padding: 0.9375rem 0.625rem;
  line-height: 1.8;
  color: inherit;
}

.sp-navi-list > li > .ac-head::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.75rem);
  right: 0.625rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--spnav-category, currentColor);
  content: "";
  -webkit-mask: url(/business/solution/images/share/icon_arrow4.svg) no-repeat center/contain;
          mask: url(/business/solution/images/share/icon_arrow4.svg) no-repeat center/contain;
  transform: rotate(90deg);
}

.sp-navi-list > li > .ac-head.-open::after {
  transform: rotate(-90deg);
}

.sp-navi-list > li > .head .label {
  display: inline-block;
  position: relative;
  padding-left: 1.5em;
}

.sp-navi-list > li > .head .label::before {
  flex: 0 0 auto;
  display: inline-block;
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 1em;
  height: 1em;
  background: var(--spnav-category, currentColor);
  content: "";
}

.sp-navi-list .secondary {
  display: none;
  list-style: none;
  padding: 0.9375rem 0.625rem;
  border-top: 1px solid #ccc;
  line-height: 1.6;
}

.sp-navi-list .secondary > li {
  display: block;
  position: relative;
  padding-left: 1rem;
}

.sp-navi-list .secondary > li::before {
  flex: 0 0 auto;
  display: inline-block;
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0.5rem;
  height: 1px;
  background: var(--spnav-category, currentColor);
  content: "";
}

.sp-navi-list .secondary > li + li {
  margin-top: 0.3125rem;
}

.sp-navi-list .secondary > li > .link {
  color: inherit;
  text-decoration: none;
}

.sp-navi-list .secondary.-open {
  display: block;
  animation: snav_open 0.2s ease-out forwards;
}

@media (max-width: 767px) {
  .sp-navi-container {
    padding: 5rem 0.625rem 1.25rem;
  }
}
[data-spnav=equipment] {
  --spnav-category: #FF6699;
}

[data-spnav=vppdr] {
  --spnav-category: #FF5050;
}

[data-spnav=consulting] {
  --spnav-category: #FF9900;
}

[data-spnav=decarbonize] {
  --spnav-category: #00AD9C;
}

[data-spnav=electricity] {
  --spnav-category: #2F5597;
}

.sp-utility-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.25rem auto 0;
  padding-left: 0;
  list-style: none;
}

.sp-utility-navi > li {
  display: block;
  font-size: 0.8125rem;
}

.sp-utility-navi .link {
  display: inline-block;
  position: relative;
  padding-left: 1em;
  color: inherit;
  text-decoration: none;
}

.sp-utility-navi .link::before {
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.25rem);
  left: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  border-right: 1px solid;
  border-top: 1px solid;
  content: "";
  transform: rotate(45deg);
}

/* フッターエリア */
#footer {
  margin: 0 auto;
  padding: 1.25rem 0;
  background: #fff;
}

#footer .inner {
  max-width: 60rem;
  margin: 0 auto;
}

#footer .copyright {
  clear: both;
  margin: 0;
  font-size: 62.5%;
  line-height: 1.5;
  text-align: center;
}

.btn-pagetop {
  box-sizing: border-box;
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  max-width: 75rem;
  width: 100%;
  margin: 0;
  padding: 0 1.25rem;
  transform: translateX(-50%);
  text-align: right;
  z-index: 98;
}

.btn-pagetop a {
  display: inline-block;
}

.btn-pagetop img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  #footer {
    padding: 0.9375rem 0;
  }
  .btn-pagetop {
    bottom: 2.5rem;
    padding: 0 0.625rem;
  }
  .btn-pagetop a {
    width: 2.75rem;
  }
}
/* サイドナビゲーション */
.snav-list {
  list-style: none;
  padding: 1.25rem 0.625rem 1.25rem 1.25rem;
}

.snav-list > li {
  font-size: 0.9375rem;
  display: block;
  position: relative;
  padding-left: 1.5em;
  line-height: 1.6;
}

.snav-list > li::before {
  display: inline-block;
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 0.9em;
  height: 0.9em;
  background: var(--snav-category, currentColor);
  content: "";
}

.snav-list > li + li {
  margin-top: 1.25em;
}

.snav-list .link:not(:hover) {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.snav-list .link:hover {
  text-decoration: none;
  cursor: pointer;
}

.snav-list .secondary {
  display: none;
  list-style: none;
}

.snav-list .secondary > li {
  font-size: 0.8125rem;
  margin-top: 0.75em;
}

.snav-list .secondary.-open {
  display: block;
  animation: snav_open 0.2s ease-out forwards;
}

@keyframes snav_open {
  0% {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  0% {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
  100% {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
[data-snav=equipment] {
  --snav-category: #FF6699;
}

[data-snav=vppdr] {
  --snav-category: #FF5050;
}

[data-snav=consulting] {
  --snav-category: #FF9900;
}

[data-snav=decarbonize] {
  --snav-category: #00AD9C;
}

[data-snav=electricity] {
  --snav-category: #2F5597;
}

/* メインコンテンツ */
.bc-navi {
  zoom: 1;
  margin-left: -0.3125rem;
  margin-bottom: 0.625rem;
}
.bc-navi:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

.bc-navi li {
  float: left;
  margin-bottom: 0.3125rem;
  padding: 0 0 0 1.25rem;
  background: url(/business/solution/images/share/icon_bc-navi.png) no-repeat 0.5rem 50%;
  font-size: 0.625rem;
  line-height: 1.3;
}

.bc-navi li.home {
  padding: 0;
  background: none;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.0625rem;
}

.bc-navi a, .bc-navi a:link, .bc-navi a:visited, .bc-navi a:hover {
  color: #333;
  text-decoration: underline;
}

.bc-navi a:hover {
  color: #666;
}

@media (max-width: 767px) {
  .bc-navi {
    margin-left: 0;
  }
}
.heading2 {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 0 0 0.375rem 0.9375rem;
  border-bottom: 0.125rem dotted #2660ac;
  color: #2660ac;
  font-size: 140%;
  font-weight: bold;
  line-height: 1.2;
}

.heading2::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.3125rem;
  height: 1.25rem;
  background-color: #2660ac;
  left: 0;
  top: 0.125rem;
}

@media (max-width: 767px) {
  .heading2 {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .heading2::before {
    top: 0;
    bottom: 0.4375rem;
    height: auto;
  }
}
.heading3 {
  margin-bottom: 0.9375rem;
  padding: 0 0 0.125rem 1.125rem;
  border-bottom: 1px solid #999;
  background: url(/business/solution/common/images/share/icon_h_circle.gif) no-repeat 0 0.4375rem;
  font-size: 137.5%;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .heading3 {
    padding-left: 0.3125rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.heading4 {
  margin-bottom: 0.3125rem;
  color: #132781;
  font-size: 100%;
  line-height: 1.4;
}

.heading5 {
  color: #1898cb;
  font-size: 100%;
  margin-bottom: 0.9375rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .heading5 {
    line-height: 1.4;
  }
}
/* 見出し：電化ナビから引越し用 */
.heading2_dn {
  margin-bottom: 1.25rem;
  padding: 0 0 0.1875rem;
  background: url(/business/solution/images/share/line_horizon_blue.gif) no-repeat left bottom;
  color: #0B8ACA;
  font-size: 150%;
  line-height: 1.4;
}

.heading2_dn .wrap_text {
  display: block;
  padding: 0 0 0 0.625rem;
  background: url(/business/solution/images/share/icon_h2.gif) no-repeat 0 0.375rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .heading2_dn {
    font-size: 1.125rem;
  }
  .heading2_dn .wrap_text {
    background-position: 0 0.25rem;
  }
}
.heading3_dn {
  margin-bottom: 0.9375rem;
  padding: 0 0 0.125rem 1.125rem;
  border-bottom: 1px solid #999;
  background: url(..//business/solution/common/images/share/icon_h_circle.gif) no-repeat 0 0.4375rem;
  font-size: 137.5%;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .heading3_dn {
    font-size: 1.125rem;
    background-position: 0 0.3125rem;
  }
}
.heading4_dn {
  margin-bottom: 0.3125rem;
  color: #036DB9;
  font-size: 112.5%;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .heading4_dn {
    font-size: 1rem;
  }
}
/* 導入されているシステム：電化ナビから引越し */
.list_products {
  border: 1px solid #E5E5E5;
}

.list_products li {
  margin: 0;
  padding: 0.625rem;
  line-height: 1;
}

.list_products li:nth-child(even) {
  background-color: #E4E4E4;
}

.list_products li .unit {
  width: calc(100% - 6.4375rem);
  min-height: 4.0625rem;
}

.list_products li .image {
  margin: 0 0.8125rem 0 0;
  width: 5.625rem;
  height: 4.0625rem;
}

.list_products li .image img {
  width: 100%;
  height: auto;
}

.list_products li p {
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

.list_products li .maker_link {
  margin: 0;
  text-align: right;
}

/* リストのスタイル
--------------------------------------------------------------------------*/
ul.list li {
  padding: 0 0 0.375rem 0.625rem;
  background: url(/business/solution/common/images/share/icon_list.gif) no-repeat 0.125rem 0.4375rem;
  line-height: 1.6;
}

ul.disc {
  padding-left: 1.5em;
}

ul.disc li {
  list-style-type: disc;
  line-height: 1.6;
}

ul.textlink {
  margin-left: 1em;
}

ul.textlink li {
  padding: 0 0 0.1875rem 1em;
  background: url(/business/solution/images/share/icon_arrow03.png) no-repeat 0 0.3125rem;
  line-height: 1.6;
}

ul.textlink2 {
  margin-top: 5px;
}

ul.textlink2 li {
  position: relative;
  padding-left: 1.5em;
  background-image: none;
}
ul.textlink2 li::after, ul.textlink2 li::before {
  position: absolute;
  top: calc(50% - 3.5px);
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  transform: rotate(45deg) translateY(-50%);
}
ul.textlink2 li::after {
  background-color: #FFF;
}
ul.textlink2 li::before {
  left: 2px;
  background-color: #678FC5;
}

ul.textlink2 li a {
  color: #678FC5;
}
ul.textlink2 li a:hover {
  color: #F0934C;
}

/* 電化ナビから引越し用 */
.textlink_dn li {
  padding: 0 0 0.1875rem 0.9375rem;
  background: url(/business/solution/images/share/icon_textlink.gif) no-repeat 0 0.3125rem;
  line-height: 1.6;
}

/* table設定
--------------------------------------------------------------------------*/
.TB {
  width: 42.8125rem;
  margin-bottom: 1.875rem;
  border: 1px solid #ccc;
}

.TB th, .TB td {
  padding: 0.4375rem 0.75rem;
  border-left: 1px solid #ccc;
}

.TB th {
  border-top: 1px solid #ccc;
  color: #333333;
  font-weight: normal;
}

.TB td {
  border-bottom: 1px solid #ccc;
}

@media (max-width: 767px) {
  .TB {
    width: 100%;
  }
  .TB th,
  .TB td {
    font-size: 0.75rem;
    padding: 0.375rem 0.5rem;
    width: auto;
    white-space: normal !important;
  }
}
/* その他汎用設定
--------------------------------------------------------------------------*/
.btn-details {
  display: block;
  margin-bottom: 0;
  line-height: 1;
  text-align: right;
}

.pagetop {
  margin: 0;
  font-size: 75%;
  text-align: right;
}

.small {
  font-size: 75%;
}

p .small {
  font-size: 85%;
}

.sub {
  font-size: 62.5%;
}

/* 小文字を大文字で表示 */
.upper {
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}

/* アイコン */
img.iconL {
  vertical-align: baseline;
  padding-right: 0.625rem;
}

img.iconR {
  vertical-align: baseline;
  padding-left: 0.625rem;
}

/* フロート */
.unit {
  float: left;
}

.unit2 {
  float: right;
}

/* フロートのクリア */
.clear {
  clear: both;
  display: block;
}

/* 隠す */
.hide {
  position: absolute;
  left: -187.5rem;
  width: 0.625rem;
  height: 0.625rem;
  overflow: hidden;
}

.nowrap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.indention, .indention li {
  text-indent: -1em;
  margin-left: 1em;
}

ul.indention {
  text-indent: 0;
  margin-left: 0;
}

.m_tx0 {
  margin-top: 0;
}

.m_tx1 {
  margin-top: 0.625rem;
}

.m_tx2 {
  margin-top: 1.25rem;
}

.m_tx3 {
  margin-top: 1.875rem;
}

.m_tx4 {
  margin-top: 2.5rem;
}

.m_rx0 {
  margin-right: 0;
}

.m_rx05 {
  margin-right: 0.3125rem;
}

.m_rx1 {
  margin-right: 0.625rem;
}

.m_rx15 {
  margin-right: 0.9375rem;
}

.m_rx1 {
  margin-right: 1.25rem;
}

.m_rx25 {
  margin-right: 1.5625rem;
}

.m_rx3 {
  margin-right: 1.875rem;
}

.m_rx35 {
  margin-right: 2.1875rem;
}

.m_rx4 {
  margin-right: 2.5rem;
}

.m_bx0 {
  margin-bottom: 0;
}

.m_bx05 {
  margin-bottom: 0.3125rem;
}

.m_bx1 {
  margin-bottom: 0.625rem;
}

.m_bx15 {
  margin-bottom: 0.9375rem;
}

.m_bx2 {
  margin-bottom: 1.25rem;
}

.m_bx3 {
  margin-bottom: 1.875rem;
}

.m_bx4 {
  margin-bottom: 2.5rem;
}

.m_lx0 {
  margin-left: 0;
}

.m_lx05 {
  margin-left: 0.3125rem;
}

.m_lx1 {
  margin-left: 0.625rem;
}

.m_lx15 {
  margin-left: 0.9375rem;
}

.m_lx2 {
  margin-left: 1.25rem;
}

.m_lx25 {
  margin-left: 1.5625rem;
}

.m_lx3 {
  margin-left: 1.875rem;
}

.m_lx35 {
  margin-left: 2.1875rem;
}

.m_lx4 {
  margin-left: 2.5rem;
}

.icon-newwin {
  padding-left: 0.1875rem;
  text-decoration: none;
}

.icon-newwin img {
  vertical-align: baseline;
}

a:hover img.lucent {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* detail.css
--------------------------------------------------------------------------
 各ページで必要となる個別の記述はこのCSSに記述します。
--------------------------------------------------------------------------*/
.-p1emL {
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .-p1emL {
    padding-left: 0;
  }
}

.solution .txtRed {
  color: #c50018;
}

.solution .backRed {
  background-color: #c50018;
  color: white;
  padding: 3.5px 7px;
}

.related-links .service {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.related-links .service > * {
  font-size: 0.875em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: calc((100% - 0.75rem) / 2);
  height: 8.5rem;
  padding: 0 0.625rem;
  border: 1px solid #2660AC;
  text-align: center;
  box-shadow: 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, 0.2);
}
.related-links .service > .case .title {
  font-size: 1.3571428571em;
  color: #2660AC;
  font-weight: 600;
}
.related-links .service > .case .txt {
  font-size: 0.9285714286em;
  margin: 0;
  margin-top: 1rem;
  line-height: 1;
}
.related-links .service > .case .btn-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-top: 1.0625rem;
  margin-left: -1.5rem;
}
.related-links .service > .case .btn {
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
  padding-left: 1.5rem;
}
.related-links .service > .case .btn > a {
  display: block;
  position: relative;
  font-size: 0.7857142857em;
  border: solid 1px #fff;
  color: #3f51a0;
  background: linear-gradient(0deg, #dedede 0, #fff 100%);
  text-decoration: none;
  letter-spacing: 0.03125rem;
  font-weight: 600;
  padding: 0.375rem 1.5625rem 0.375rem 0.46875rem;
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
}
.related-links .service > .case .btn > a::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px #dedede;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.related-links .service > .case .btn > a::after {
  display: block;
  position: absolute;
  content: "";
  background: no-repeat center/contain;
  background-image: url(/business/solution/images/home/arrow-icon_blue.png);
  width: 0.75rem;
  height: 0.75rem;
  right: 0.46875rem;
  top: 50%;
  transform: translateY(-50%);
}
.related-links .service > .zeb .area-box {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
  box-sizing: border-box;
  width: 100%;
  padding-right: 0.5rem;
}
.related-links .service > .zeb .img {
  width: 6.25rem;
}
.related-links .service > .zeb .img img {
  display: block;
  width: 100%;
}
.related-links .service > .zeb .label {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.related-links .service > .zeb .txt {
  font-size: 1.3571428571em;
  margin: 0;
  font-weight: 600;
}
.related-links .service > .zeb .bold {
  color: #2660AC;
}
.related-links .service > .zeb .btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.4375rem auto 0;
}
.related-links .service > .zeb .btn > a {
  display: block;
  position: relative;
  font-size: 0.7857142857em;
  border: solid 1px #fff;
  color: #3f51a0;
  background: linear-gradient(0deg, #dedede 0, #fff 100%);
  text-decoration: none;
  letter-spacing: 0.03125rem;
  font-weight: 600;
  padding: 0.375rem 1.5625rem 0.375rem 0.46875rem;
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
}
.related-links .service > .zeb .btn > a::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px #dedede;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.related-links .service > .zeb .btn > a::after {
  display: block;
  position: absolute;
  content: "";
  background: no-repeat center/contain;
  background-image: url(/business/solution/images/home/arrow-icon_blue.png);
  width: 0.75rem;
  height: 0.75rem;
  right: 0.46875rem;
  top: 50%;
  transform: translateY(-50%);
}
.related-links .bnrs {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin: 1.5rem 0 0;
}
.related-links .bnrs > li {
  display: block;
  box-sizing: border-box;
}
.related-links .bnrs .bnr {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  transition: ease 0.3s;
}
.related-links .bnrs .bnr:hover {
  opacity: 0.7;
}
.related-links .bnrs .bnr:hover img {
  opacity: 1;
}
@media (max-width: 767px) {
  .related-links .service > * {
    width: 100%;
    height: auto;
    padding: 1.25rem 0.5rem;
  }
  .related-links .service > .case .title {
    font-size: 1.125rem;
  }
  .related-links .service > .case .txt {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .related-links .service > .zeb .area-box {
    gap: 0.3125rem;
  }
  .related-links .service > .zeb .txt {
    font-size: 1.0625rem;
  }
  .related-links .service > .zeb .img {
    width: 4.5rem;
  }
  .related-links .bnrs {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  #main-content .inner .related-links {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}
.system-lnav,
.case2-lnav {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -0.3125rem 0.5rem -1.0625rem;
}
.system-lnav > li,
.case2-lnav > li {
  font-size: 1em;
  box-sizing: border-box;
  width: 100%;
  max-width: 25%;
  padding: 0 0 0.75rem 0.75rem;
  font-weight: 600;
  text-align: center;
}
.system-lnav > li .btn,
.case2-lnav > li .btn {
  display: block;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 0;
  padding: 0.78125rem 0.625rem 0.78125rem 0;
  border-radius: 0.265625rem;
  background-color: #C8E2E8;
  line-height: 1.6;
  text-decoration: none;
}
.system-lnav > li .btn::after,
.case2-lnav > li .btn::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  width: 0.6875rem;
  height: 0.6875rem;
  background: no-repeat center/contain;
  background-image: url(/business/solution/images/home/arrow-icon_blue.png);
  content: "";
  transform: translateY(-50%);
}
.system-lnav > li .btn.-active,
.case2-lnav > li .btn.-active {
  padding-right: 0;
  background-color: #3F51A0;
  color: #FFF;
}
.system-lnav > li .btn.-active::after,
.case2-lnav > li .btn.-active::after {
  display: none;
}
@media (max-width: 767px) {
  .system-lnav,
  .case2-lnav {
    margin: 0 0 0.5rem -0.5rem;
  }
  .system-lnav > li,
  .case2-lnav > li {
    font-size: 0.8125em;
    width: 50%;
    max-width: none;
    padding: 0 0 0.5rem 0.5rem;
  }
  .system-lnav > li .btn,
  .case2-lnav > li .btn {
    padding: 0.5625rem 0.5rem 0.4375rem 0.625rem;
    border-radius: 0.25rem;
    text-align: left;
  }
}

.works-index {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  margin: -2.5rem 0 1.875rem -0.625rem;
}
.works-index > li {
  display: flex;
  flex-flow: column wrap;
  box-sizing: border-box;
  width: 100%;
  max-width: 25%;
  padding-top: 2.5rem;
  padding-left: 0.625rem;
  font-size: 75%;
}
.works-index > li a {
  display: flex;
  flex-direction: column;
  color: #333;
  text-decoration: none;
  transition: ease 0.3s;
}
.works-index > li a > img {
  width: 100%;
}
.works-index > li a:hover {
  opacity: 0.8;
  transition: ease 0.3s;
}
.works-index > li a:hover > img {
  opacity: 1;
}
.works-index > li a:hover .heading4 {
  color: #EA6500;
}
.works-index .heading4 {
  box-sizing: border-box;
  margin-bottom: 0.625rem;
  padding: 0.375rem 0.375rem;
  background: #ebedf5;
  font-size: 105%;
}
.works-index .read-text {
  margin-bottom: 1rem;
}
.works-index .btn-details {
  text-align: right;
}
@media (max-width: 767px) {
  .works-index {
    justify-content: center;
    gap: 1.875rem 0.625rem;
    margin-top: 0;
    margin-left: 0;
  }
  .works-index > li {
    width: 13.4375rem;
    max-width: none;
    padding: 0;
  }
  .works-index .heading4 {
    font-size: 0.75rem;
  }
}

.esco-desc {
  margin-bottom: 5.625rem;
}
.esco-desc .problem-content {
  margin-top: 3.125rem;
}
.esco-desc .problem-content .title {
  max-width: 32.3125rem;
  margin: auto;
  text-align: center;
}
.esco-desc .problem-content .problem-list {
  display: flex;
  align-items: flex-end;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 1.25rem 0.625rem;
  width: 100%;
  max-width: 45.625rem;
  margin: 0 auto;
  margin-top: 2rem;
}
.esco-desc .problem-content .problem-list::after {
  display: none;
}
.esco-desc .problem-content .problem-list > li {
  display: block;
  width: 9.9375rem;
}
.esco-desc .problem-content .problem-list > li img {
  width: 100%;
  height: auto;
}
.esco-desc .problem-content .worried {
  margin-top: -0.75rem;
  text-align: center;
}
.esco-desc .problem-content .text {
  font-size: 0.8125em;
  max-width: 48.75rem;
  margin: 0 auto;
  margin-top: 1.5rem;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .esco-desc .problem-content .problem-list {
    box-sizing: border-box;
    padding: 0 0.9375rem;
  }
  .esco-desc .problem-content .problem-list > li {
    box-sizing: border-box;
    width: calc((100% - 0.625rem) / 2);
    padding: 0 0.9375rem;
  }
}

.esco-example {
  width: 100%;
  max-width: 51.75rem;
  margin: 0 auto;
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  border: 1px solid #2660AC;
  background-color: #FFF;
  box-sizing: border-box;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
}
.esco-example .facility {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0.625rem;
  max-width: 39.25rem;
  width: 100%;
  margin-left: auto;
}
.esco-example .facility .exs {
  display: block;
  padding-left: 3.125rem;
}
.esco-example .structure {
  margin-top: 1.625rem;
  text-align: center;
}
.esco-example .yonden-active {
  box-sizing: border-box;
  margin-top: 2.875rem;
  padding: 1.5625rem 1.25rem 1.875rem;
  background-color: #F4F7FB;
}
.esco-example .yonden-active .title {
  max-width: 12.25rem;
  margin: auto;
  text-align: center;
}
.esco-example .yonden-active .title img {
  width: 100%;
  height: auto;
}
.esco-example .yonden-active .active-list {
  display: flex;
  flex-flow: row wrap;
  width: calc(100% + 1.375rem);
  max-width: calc(100% + 1.375rem);
  margin-top: 1.625rem;
  margin-left: -1.375rem;
}
.esco-example .yonden-active .title2 {
  max-width: 21.875rem;
  margin: auto;
  text-align: center;
}
.esco-example .yonden-active .title2 img {
  width: 100%;
  height: auto;
}
.esco-example .yonden-active .item {
  box-sizing: border-box;
  width: 100%;
  max-width: 50%;
  padding-left: 1.375rem;
}
.esco-example .yonden-active .energy, .esco-example .yonden-active .service {
  display: flex;
  flex-flow: row wrap;
  margin-top: 0.375rem;
}
.esco-example .yonden-active .energy > li, .esco-example .yonden-active .service > li {
  text-align: right;
  max-width: 50%;
  width: 100%;
  padding-top: 0.625rem;
}
.esco-example .yonden-active .exs {
  max-width: 100%;
  width: 100%;
  text-align: right;
  margin-top: 0.25rem;
}
@media (max-width: 767px) {
  .esco-example {
    padding: 1.75rem 0.9375rem;
  }
  .esco-example .facility {
    gap: 0;
  }
  .esco-example .facility .exs {
    padding-left: 0.625rem;
  }
  .esco-example .yonden-active {
    margin-top: 1.5625rem;
    padding: 1.5625rem 0.625rem;
  }
  .esco-example .yonden-active .active-list {
    gap: 1.25rem;
    width: auto;
    max-width: none;
    margin: 1.25rem auto 0;
  }
  .esco-example .yonden-active .item {
    width: 100%;
    max-width: none;
    padding-left: 0;
  }
}

.esco-list {
  width: 100%;
  max-width: 53.5rem;
  margin: 0 auto;
}
.esco-list > li {
  font-size: 0.8125em;
}
.esco-list > li .sml {
  font-size: 0.8461538462em;
  padding-left: 0.625rem;
}
.esco-list + .image {
  margin-top: 3.125rem;
}

.esco-feature {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3.75rem;
}
.esco-feature .graph {
  width: 9.5625rem;
}
.esco-feature .fukidashi {
  position: relative;
  margin-left: 2.625rem;
  padding: 2.1875rem;
  background-color: #F4F7FB;
  z-index: 0;
}
.esco-feature .fukidashi::before {
  display: block;
  position: absolute;
  top: 50%;
  left: -0.9375rem;
  width: 1.875rem;
  height: 1.875rem;
  background: #F4F7FB;
  content: "";
  transform: translateY(-50%) rotate(142.5deg) skew(20deg);
  z-index: -1;
}
.esco-feature .title {
  font-size: 0.75em;
  color: #2660AC;
}
.esco-feature .feature-list {
  margin-top: 0.75rem;
}
.esco-feature .feature-list > li {
  font-size: 0.75em;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .esco-feature .graph {
    width: 7.8125rem;
  }
  .esco-feature .fukidashi {
    box-sizing: border-box;
    width: calc(100% - 9.375rem);
    margin-left: 1.5625rem;
    padding: 1.5625rem 0.9375rem;
  }
  .esco-feature .fukidashi::before {
    left: -0.3125rem;
  }
}

.charge-contents {
  margin-bottom: 5rem;
  padding: 0 5.625rem;
}
@media (max-width: 767px) {
  .charge-contents {
    padding: 0 0.625rem;
  }
}

.charge-img {
  margin: 3.125rem 0 0 0;
}
.charge-img img {
  width: 100%;
}

.charge-list {
  display: flex;
  gap: 1.875rem 2.5rem;
  margin: 1.25rem 0 0 0;
}
.charge-list > li {
  flex: 1;
}
.charge-list .heading {
  padding: 0.625rem 0 0.5rem;
  border: solid 1px #375FA7;
  color: #375FA7;
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .charge-list {
    flex-direction: column;
  }
  .charge-list .heading {
    font-size: 1rem;
  }
}

.charge-checkList {
  margin: 1rem 0 0 0;
}
.charge-checkList > li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
}
.charge-checkList > li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 1.25rem;
  height: 1.125rem;
  background: url(/business/solution/solution/diagnosis/images/charge/icon-check.png) no-repeat center center/contain;
  content: "";
}
.charge-checkList > li + li {
  margin: 0.375rem 0 0 0;
}

.charge-lead {
  margin: 1.875rem 0 0 0;
  color: #375FA7;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.charge-lead > span {
  display: inline-block;
  border-bottom: solid 0.3125rem #375FA7;
}
@media (max-width: 767px) {
  .charge-lead {
    font-size: 1.125rem;
  }
  .charge-lead > span {
    border-bottom-width: 0.1875rem;
  }
}

.charge-btn {
  width: 100%;
  max-width: 29.375rem;
  margin: 2.5rem auto 0;
}
.charge-btn > a {
  display: block;
  box-sizing: border-box;
  position: relative;
  padding: 1.0625rem 2.5rem 0.875rem;
  background-color: #375FA7;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}
.charge-btn > a::before {
  box-sizing: border-box;
  position: absolute;
  top: 0.3125rem;
  left: -0.3125rem;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #375FA7;
  border-left: solid 1px #375FA7;
  content: "";
  pointer-events: none;
}
.charge-btn > a::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1rem;
  height: 1.125rem;
  background: url(/business/solution/solution/diagnosis/images/charge/icon-arrow.png) no-repeat center center/contain;
  content: "";
  transform: translateY(-50%);
}
.charge-btn > a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .charge-btn > a {
    padding: 1.0625rem 1.25rem 0.875rem 0.625rem;
    font-size: 0.9375rem;
  }
  .charge-btn > a::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.75rem;
    height: 0.875rem;
  }
}

.solar-desc .title {
  margin: 0.9375rem auto 0;
  text-align: center;
}
.solar-desc .title.-t1 {
  max-width: 20.0625rem;
}
.solar-desc .title.-t2 {
  max-width: 23.5625rem;
}
.solar-desc .title.-t3 {
  max-width: 20.0625rem;
}
.solar-desc .img-list {
  display: flex;
  align-items: flex-end;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  margin-top: 2rem;
}
.solar-desc .img-list > .item {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.solar-desc .img-list.-first {
  max-width: 48.25rem;
}
.solar-desc .img-list.-first > .item {
  width: 22.4375rem;
}
.solar-desc .img-list.-second {
  max-width: 43.375rem;
  margin-bottom: 0.3125rem;
}
.solar-desc .img-list.-second > .item:nth-child(1) {
  width: 16.75rem;
}
.solar-desc .img-list.-second > .item:nth-child(2) {
  width: 18rem;
}
.solar-desc .image {
  max-width: 32.5rem;
  margin: 1.25rem auto 0;
}
.solar-desc .line {
  max-width: 45.4375rem;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .solar-desc .title.-t1 {
    max-width: 15.046875rem;
  }
  .solar-desc .title.-t2 {
    max-width: 17.671875rem;
  }
  .solar-desc .title.-t3 {
    max-width: 15.046875rem;
  }
  .solar-desc .img-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
  .solar-desc .img-list.-first > .item {
    width: 16.828125rem;
  }
  .solar-desc .img-list.-second > .item:nth-child(1) {
    width: 12.5625rem;
  }
  .solar-desc .img-list.-second > .item:nth-child(2) {
    width: 13.5rem;
  }
}

.solar-model .lead {
  font-size: 0.8125em;
  max-width: 46.25rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 3.5rem;
}
.solar-model .btn {
  display: block;
  position: relative;
  background-color: #59cacf;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 24px 0;
  box-shadow: 0px 3px 0px #1996a3;
  transition: all ease 0.2s;
  font-weight: 600;
  font-size: 1.25em;
  width: 100%;
  max-width: 37.3125rem;
  margin: 3.5rem auto 0;
}
.solar-model .btn::after {
  display: block;
  position: absolute;
  content: "";
  background: url(/business/solution/images/share/btn-arrow.png);
  width: 20px;
  height: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.solar-model .btn:hover {
  transform: translateY(3px);
  box-shadow: none;
  transition: all ease 0.2s;
}
@media (max-width: 767px) {
  .solar-model .lead {
    margin-top: 1.75rem;
  }
  .solar-model .btn {
    font-size: 1rem;
    margin-top: 1.75rem;
  }
}

.solar-works .title {
  font-size: 0.8125em;
  padding: 0 1.25rem;
}
.solar-works .works {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 48.75rem;
  margin: 2rem auto 0;
}
.solar-works .image {
  width: 55.7692307692%;
}
.solar-works .table-content {
  width: 39.7435897436%;
}
.solar-works .table-content table {
  border-collapse: collapse;
  border-top: solid 0.125rem #251e1c;
  border-bottom: solid 0.125rem #251e1c;
  width: 100%;
}
.solar-works .table-content table:not(:first-of-type) {
  margin-top: 1.5rem;
}
.solar-works .table-content th, .solar-works .table-content td {
  text-align: left;
  padding: 1rem 0;
  border-top: solid 1px #251e1c;
}
.solar-works .table-content th p, .solar-works .table-content td p {
  font-size: 1em;
  margin-bottom: 0;
  line-height: 1.5;
}
.solar-works .table-content th {
  max-width: 60.6451612903%;
  width: 100%;
  border-right: 1px solid #251e1c;
  padding: 0 0.75rem;
  font-weight: 400;
}
.solar-works .table-content th span {
  font-size: 0.5714285714em;
  vertical-align: top;
}
.solar-works .table-content td {
  max-width: 39.3548387097%;
  width: 100%;
}
.solar-works .table-content td p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.solar-works .table-content table.panel th {
  background-color: #fce9d0;
}
.solar-works .table-content table.used th {
  background-color: #f1f6d8;
}
.solar-works .text {
  font-size: 0.8125em;
  width: 100%;
  margin: 0.9375rem 0 0;
}
.solar-works .text .vsml {
  font-size: 0.5em;
}
@media (max-width: 767px) {
  .solar-works .title {
    padding: 0;
  }
  .solar-works .works {
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
  }
  .solar-works .image {
    width: 100%;
  }
  .solar-works .table-content {
    width: 100%;
    margin-top: 1.5rem;
  }
}

body.solution .heading2:not(.-firstChild) {
  margin-top: 3.75rem;
}
body.solution .heading2.-notline {
  font-size: 1.375em;
  border: none;
  background: none;
  margin-bottom: 0;
}
body.solution .heading2.-notline::before {
  display: none;
}
body.solution .heading5:not(.-firstChild) {
  margin-top: 1.875rem;
}

body.solution .service-flow {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  margin: 2.5rem 0.4375rem 2.5rem 0.625rem;
  overflow: hidden;
}
body.solution .service-flow li {
  flex: 1 1 auto;
  box-sizing: border-box;
  width: calc(33.3333333333% - 0.1875rem);
  margin-right: 0.1875rem;
  padding-bottom: 1.25rem;
  background-color: #e9eff7;
  text-align: center;
}
body.solution .service-flow .step {
  position: relative;
  margin-bottom: 1.5625rem;
  padding: 0.875rem;
  background-color: #6790C5;
  color: #FFF;
  font-size: 1rem;
}
body.solution .service-flow .step::before,
body.solution .service-flow .step::after {
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 1.375rem 0.875rem;
  content: "";
  z-index: 1;
}
body.solution .service-flow .step::before {
  right: -1.8125rem;
  border-left-color: #FFF;
}
body.solution .service-flow .step::after {
  right: -1.625rem;
  border-left-color: #6790C5;
}
body.solution .service-flow .heading4 {
  margin: 1.25rem 0.9375rem 0;
  font-size: 115%;
  font-weight: bold;
}
body.solution .service-flow .text {
  margin-top: 0.625rem;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 85.75%;
  text-align: left;
}
body.solution .service-flow .image {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  body.solution .service-flow li:last-child .step::before,
  body.solution .service-flow li:last-child .step::after {
    display: none;
  }
  body.solution .service-flow.-four li {
    width: calc(25% - 0.1875rem);
  }
}
@media (max-width: 767px) {
  body.solution .service-flow {
    flex-direction: column;
  }
  body.solution .service-flow li {
    width: 100%;
    margin: 0 0 0.1875rem;
  }
  body.solution .service-flow .step {
    padding-top: 1.375rem;
    padding-bottom: 1.125rem;
  }
  body.solution .service-flow .step::before,
  body.solution .service-flow .step::after {
    right: calc(50% - 1.25rem);
    border: solid transparent;
    border-width: 0.75rem 1.25rem 0rem;
  }
  body.solution .service-flow .step::before {
    top: 0;
    border-top-color: #FFF;
  }
  body.solution .service-flow .step::after {
    top: -0.25rem;
    border-top-color: #e9eff7;
  }
  body.solution .service-flow li:first-child .step::before,
  body.solution .service-flow li:first-child .step::after {
    display: none;
  }
}

body.solution .service-flow.-process li {
  margin: 0;
  padding-bottom: 0;
  background-color: #e7f3f7;
}
body.solution .service-flow.-process li.line {
  font-size: 1em;
  position: relative;
  width: 100%;
  max-width: 66.6666666667%;
  margin-top: 1.125rem;
  padding-top: 0.375rem;
  border-top: solid 0.125rem #E84D39;
  background-color: transparent;
  color: #E84D39;
  font-weight: 600;
}
body.solution .service-flow.-process li.line::before, body.solution .service-flow.-process li.line::after {
  position: absolute;
  top: -0.9375rem;
  width: 0.125rem;
  height: 0.9375rem;
  background-color: #E84D39;
  content: "";
}
body.solution .service-flow.-process li.line::before {
  left: 0;
}
body.solution .service-flow.-process li.line::after {
  right: 0;
}
body.solution .service-flow.-process .heading4 {
  font-size: 1.1428571429em;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
  height: 7.5rem;
  margin: 0;
  border-left: 0.125rem solid #FFF;
  background-color: #E9EFF7;
  font-weight: bold;
}
body.solution .service-flow.-process .step {
  font-size: 1.1428571429em;
  position: relative;
  margin-bottom: 0;
  padding: 0.875rem;
  background-color: #6790C5;
  color: #FFF;
}

.process-flow {
  max-width: 21.25rem;
  margin: auto;
  text-align: center;
}
.process-flow img {
  width: 100%;
}
.service-subtitle {
  margin-bottom: 0.3125rem;
  font-size: 112.5%;
  font-weight: bold;
  line-height: 1.4;
}

.service-block {
  position: relative;
}
.service-block .text {
  position: relative;
  margin: 0;
  padding-left: 1em;
}
.service-block .text::before {
  position: absolute;
  left: 0;
  content: "?";
}
.service-block .btn {
  display: block;
  margin-top: 0.5rem;
}
.service-block .title {
  font-size: 1em;
  position: relative;
  margin: 1.5rem 0 0;
  padding-left: 1.2em;
  font-weight: bold;
  line-height: 1.5;
}
.service-block .title::before {
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #2660AC;
  content: "";
  transform: scale(0.6);
}
.service-block .worries .btn {
  max-width: 31.875rem;
}
.service-block .shosai {
  margin-top: 0.625rem;
}
.service-block .shosai > *:first-child {
  margin-top: 0 !important;
}
.service-block .shosai .text {
  margin-top: 1rem;
}
.service-block .shosai .btn {
  max-width: 17.8125rem;
}
.service-block .suggest {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 2rem;
}
.service-block .suggest::before {
  flex: 0 0 auto;
  display: inline-block;
  width: 1.25rem;
  height: 2.125rem;
  margin-right: 1.25rem;
  background: url(/business/solution/solution/images/icon_arrow_r.png) no-repeat center/contain;
  content: "";
}
@media (max-width: 767px) {
  .service-block .worries .btn {
    max-width: 100%;
  }
  .service-block .shosai .btn {
    max-width: 13.0974264706rem;
  }
}

.diagnosis-img {
  margin: 2.5rem 0 3.75rem;
}
.diagnosis-img.-mthf {
  margin-top: 1.25rem;
}
.diagnosis-img.-center {
  text-align: center;
}
.diagnosis-img.-right {
  text-align: right;
}

.column-block {
  display: flex;
  justify-content: space-between;
}
.column-block.-start {
  justify-content: flex-start;
}
.column-block.-start .img {
  margin-left: 1.875rem;
}
@media (max-width: 767px) {
  .column-block {
    flex-direction: column;
  }
  .column-block.-start .img {
    margin-left: 0;
  }
}

.diagnosis-list > .item {
  margin-bottom: 1em;
  font-size: 81.25%;
}
.diagnosis-list > .item .nest-list .item:not(:first-child) {
  margin-top: 0.7em;
}
.diagnosis-list > .item .title {
  display: block;
  margin-bottom: 0.5em;
}
.diagnosis-list.-disc > .item {
  position: relative;
  padding-left: 1em;
}
.diagnosis-list.-disc > .item::before {
  position: absolute;
  left: 0;
  content: "?";
}

.diagnosis-desc {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 1.5rem;
}
.diagnosis-desc .title {
  font-size: 1em;
  color: #2660ac;
  line-height: 1.5;
  font-weight: 600;
}
.diagnosis-desc .diagram {
  width: 100%;
  max-width: 64.84375%;
}
.diagnosis-desc .diagram .img {
  margin-top: 2rem;
}
.diagnosis-desc .diagram .img img {
  width: 100%;
}
.diagnosis-desc .graph {
  width: 100%;
  max-width: 26.7857142857%;
}
.diagnosis-desc .graph .img {
  margin-top: 3.75rem;
}
.diagnosis-desc .graph .img img {
  width: 100%;
}
@media (max-width: 767px) {
  .diagnosis-desc {
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 0;
  }
  .diagnosis-desc .diagram {
    max-width: none;
  }
  .diagnosis-desc .diagram .img {
    margin-top: 1.25rem;
  }
  .diagnosis-desc .graph {
    max-width: none;
  }
  .diagnosis-desc .graph .img {
    max-width: 15rem;
    margin-top: 1.25rem;
  }
}

.section-desc {
  font-size: 0.8125em;
}

.decoration-txt {
  font-size: 0.8125em;
}
.decoration-txt::before {
  content: "●";
  color: #2660ac;
}

.bcp-box {
  max-width: 51.75rem;
  margin: 2.6875rem auto 0;
}
.bcp-box .box-content {
  box-sizing: border-box;
  width: 100%;
  padding: 1.625rem 2.125rem 6.25rem;
  border: solid 1px #2660AC;
}
.bcp-box .box-content:not(:first-of-type) {
  margin-top: 3.5rem;
}
.bcp-box .box-content.normal .title {
  color: #2660AC;
}
.bcp-box .box-content.alert .title {
  color: #E84D39;
}
.bcp-box .lead {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  flex-direction: flex-start;
}
.bcp-box .title {
  font-size: 1.1875em;
  font-weight: 600;
}
.bcp-box .sub {
  font-size: 0.8125em;
  margin-bottom: 0;
  padding-left: 1.375rem;
}
.bcp-box .image {
  margin-top: 4.5rem;
}
.bcp-box .text {
  margin-top: 1.75rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .bcp-box .box-content {
    padding: 1.875rem 0.875rem;
  }
  .bcp-box .box-content:not(:first-of-type) {
    margin-top: 1.875rem;
  }
  .bcp-box .lead {
    flex-direction: column;
    align-items: stretch;
  }
  .bcp-box .sub {
    margin-top: 0.625rem;
    padding-left: 0;
  }
  .bcp-box .image {
    margin-top: 1.875rem;
  }
}

.co2free-block {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  max-width: 51.75rem;
  margin: 0 auto;
}
.co2free-block .img01 > img,
.co2free-block .img02 > img {
  width: 100%;
  max-width: 100%;
}
.co2free-block .img02 {
  margin-top: 3.125rem;
}

.co2free-btn {
  max-width: 37.5rem;
  width: 100%;
  margin: 5rem auto 0;
}
.co2free-btn .btn {
  display: block;
  position: relative;
  background-color: #59cacf;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 24px 0;
  box-shadow: 0px 3px 0px #1996a3;
  transition: all ease 0.2s;
  font-weight: 600;
}
.co2free-btn .btn::after {
  display: block;
  position: absolute;
  content: "";
  background: url(/business/solution/images/share/btn-arrow.png);
  width: 20px;
  height: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.co2free-btn .btn:hover {
  transform: translateY(3px);
  box-shadow: none;
  transition: all ease 0.2s;
}

body.case .list-service {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  margin-bottom: 0.625rem;
  margin-left: -0.625rem;
}
body.case .list-service .unit {
  box-sizing: border-box;
  width: 100%;
  max-width: 33.3333333333%;
  padding: 0 0 0.625rem 0.625rem;
  overflow: hidden;
}
body.case .list-service .disc {
  box-sizing: border-box;
  min-height: 8.125rem;
  margin: 0;
  padding: 0.625rem;
  border-radius: 0 0 0.25rem 0.25rem;
  background-color: #ebedf5;
}
body.case .list-service .disc li {
  font-size: 0.8125em;
  list-style: none;
  line-height: 1.8;
}
body.case .list-service .disc li::before {
  content: "?";
}
body.case .list-service .heading4 {
  margin-bottom: 0;
  padding: 0.5rem 0.625rem;
  border-bottom: 0.125rem solid #FFF;
  border-radius: 0.25rem 0.25rem 0 0;
  background-color: #3F51A0;
  color: #FFF;
  font-weight: 600;
}
body.case .image {
  margin-bottom: 2.5rem;
}
body.case .image + .image {
  margin-top: 5rem;
}
body.case .factory-btnlist {
  display: flex;
  flex-flow: row wrap;
  margin-left: -2.75rem;
}
body.case .factory-btnlist .btn {
  box-sizing: border-box;
  width: 100%;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.75rem;
}
body.case .factory-btnlist .btn a {
  font-size: 1.4285714286em;
  display: block;
  position: relative;
  background-color: #59cacf;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 24px 0;
  box-shadow: 0px 3px 0px #1996a3;
  transition: all ease 0.2s;
  font-weight: 600;
  line-height: 1;
}
body.case .factory-btnlist .btn a::after {
  display: block;
  position: absolute;
  content: "";
  background: url(/business/solution/images/share/btn-arrow.png);
  width: 20px;
  height: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
body.case .factory-btnlist .btn a:hover {
  transform: translateY(3px);
  box-shadow: none;
  transition: all ease 0.2s;
}
@media (max-width: 767px) {
  body.case .list-service .unit {
    max-width: none;
  }
  body.case .list-service .disc {
    min-height: 0;
  }
  body.case .image + .image {
    margin-top: 2.5rem;
  }
  body.case .factory-btnlist .btn {
    max-width: none;
  }
  body.case .factory-btnlist .btn a {
    font-size: 1rem;
  }
}

body.user .profile {
  margin-bottom: 1.875rem;
}
body.user .profile .detail {
  float: left;
  width: 36.25rem;
}
body.user .profile .gmap {
  position: relative;
  float: right;
  width: 18.75rem;
  border: 1px solid #ccc;
  padding-top: 15.625rem;
  height: 0;
  overflow: hidden;
}
body.user .profile .gmap iframe, body.user .profile .gmap object, body.user .profile .gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.user .profile .title {
  margin-bottom: 0.625rem;
  padding: 0.375rem 0;
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 1px solid #999;
}
body.user .profile .title .sama {
  font-size: 80%;
}
body.user .user-content {
  padding: 0 1.25rem;
}
body.user .heading2 .release {
  display: inline-block;
  margin-left: 1.25rem;
  font-size: 1rem;
}
body.user .heading4 {
  margin-bottom: 0.625rem;
  font-size: 112.5%;
}
body.user .subtitle {
  margin-top: -0.625rem;
  font-size: 1rem;
}
body.user .unit-box {
  margin-bottom: 1.875rem;
}
body.user .unit-box .unit {
  width: 18.75rem;
}
body.user .unit-box .unit.-large {
  width: 25rem;
}
body.user .unit-box .unit2 {
  width: 33.75rem;
}
body.user .unit-box .unit2.-large {
  width: 27.5rem;
}
body.user .unit-box2 {
  margin-bottom: 1.875rem;
}
body.user .unit-box2 .unit {
  width: 33.75rem;
}
body.user .unit-box2 .unit2 {
  width: 18.75rem;
}
body.user .flex-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 2.5rem;
  gap: 0 1.875rem;
}
body.user .flex-box .item {
  box-sizing: border-box;
  width: 33.3333333333%;
  border: 1px solid #1898cb;
  padding: 1em;
}
body.user .flex-box .item > p {
  margin: 0;
}
body.user .image {
  margin: 1.875rem auto;
  text-align: center;
}
body.user .merit dt {
  font-weight: bold;
}
body.user .merit dd {
  margin-bottom: 0.625rem;
}
body.user .caution {
  color: #666;
  font-size: 75%;
}
body.user .voice {
  margin: 3.125rem 0;
  padding: 1.5625rem;
  background-color: #e7f3f7;
}
body.user .voice .heading2 {
  border-bottom: 1px solid;
  background-position: 0 1px;
  font-size: 125%;
}
body.user .voice p {
  margin: 0;
}
body.user .pdf {
  margin-bottom: 0.625rem;
  text-align: right;
}
@media (max-width: 767px) {
  body.user .profile {
    margin-bottom: 1.875rem;
  }
  body.user .profile .detail {
    float: none;
    width: auto;
  }
  body.user .profile .gmap {
    float: none;
    width: auto;
    margin-top: 0.9375rem;
  }
  body.user .profile .title {
    font-size: 1.125rem;
  }
  body.user .heading2 .release {
    display: block;
    margin: 0.3125rem 0 0;
    font-size: 0.75em;
  }
  body.user .unit-box .unit,
  body.user .unit-box .unit2 {
    width: auto;
  }
  body.user .unit-box .unit.-large,
  body.user .unit-box .unit2.-large {
    width: auto;
  }
  body.user .unit-box .unit2 {
    margin-top: 1.25rem;
  }
  body.user .unit-box2 .unit,
  body.user .unit-box2 .unit2 {
    width: auto;
  }
  body.user .unit-box2 .unit2 {
    margin-top: 1.25rem;
  }
  body.user .flex-box {
    flex-direction: column;
    justify-content: stretch;
    margin-top: 2.5rem;
    gap: 1.875rem;
  }
  body.user .flex-box .item {
    width: 100%;
  }
}

.tokucho {
  margin: 0 -0.5rem 1.875rem;
  background-color: #DBEAF2;
  border-radius: 0.625rem;
  overflow: hidden;
}
.tokucho .heading_img {
  border-bottom: 1px solid #0B8ACA;
}
.tokucho .heading3_dn {
  margin-bottom: 0.625rem;
  padding: 0;
  border: 0;
  background: url(/business/solution/images/share/line_horizon_gray.gif) repeat-x left bottom;
  color: #0B8ACA;
}
.tokucho .wrap_text {
  display: block;
  padding: 0 0 0.125rem 1.125rem;
  background: url(/business/solution/system/images/icon_h_circle_blue.gif) no-repeat 0 0.4375rem;
}
.tokucho .kitchen-point {
  margin-bottom: 0.9375rem;
  padding: 0.75rem;
  background-color: #0B8ACA;
}
.tokucho .kitchen-point h3 {
  margin-bottom: 0.375rem;
  padding: 0;
  font-size: 137.5%;
  color: #FFFFFF;
  line-height: 1;
}
.tokucho .kitchen-point p {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
}
.tokucho h3.heading2_dn {
  margin-bottom: 1.25rem;
  padding: 0 0 0.5rem;
  background: url(/business/solution/images/share/line_horizon_blue.gif) no-repeat left bottom;
}
@media (max-width: 767px) {
  .tokucho {
    margin-left: 0;
    margin-right: 0;
  }
  .tokucho .heading3_dn {
    font-size: 1rem;
  }
  .tokucho .wrap_text {
    background-position: 0 0.25rem;
  }
}

.tokucho-list {
  padding: 0.9375rem 1.875rem 0.3125rem;
}
.tokucho-list p {
  margin-bottom: 0.9375rem;
}
@media (max-width: 767px) {
  .tokucho-list {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.mb-sm {
  margin-bottom: 0.3125rem !important;
}

.tokucho-faq dt, .tokucho-faq dd {
  min-height: 1.8125rem;
  height: auto !important;
  height: 1.8125rem;
}
.tokucho-faq dt {
  margin-bottom: 0.625rem;
  padding: 0.5rem 0 0.5rem 3.375rem;
  border-bottom: 0.125rem dotted #0B8ACA;
  background: no-repeat 0 0.625rem;
  font-size: 112.5%;
}
.tokucho-faq dt.q1 {
  background-image: url(/business/solution/system/images/icon_q1.png);
}
.tokucho-faq dt.q2 {
  background-image: url(/business/solution/system/images/icon_q2.png);
}
.tokucho-faq dt.q3 {
  background-image: url(/business/solution/system/images/icon_q3.png);
}
.tokucho-faq dd {
  padding: 0 0 0 3.375rem;
  margin-bottom: 1.875rem;
  background: no-repeat 0 0;
}
.tokucho-faq dd.a1 {
  background-image: url(/business/solution/system/images/icon_a1.png);
}
.tokucho-faq dd.a2 {
  background-image: url(/business/solution/system/images/icon_a2.png);
}
.tokucho-faq dd.a3 {
  background-image: url(/business/solution/system/images/icon_a3.png);
}
@media (max-width: 767px) {
  .tokucho-faq dt {
    font-size: 1rem;
  }
}

.tokucho .heatpump-patent {
  margin-bottom: 0.9375rem;
  padding: 1.25rem 1.25rem 0.3125rem;
  background-color: #fff;
  border-radius: 0.625rem;
}
.tokucho .heatpump-patent h3 {
  margin-bottom: 0.5rem;
  font-size: 100%;
  color: #0B8ACA;
}

.special-contents-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
}
.special-contents-wrap .bnrarea {
  width: 48%;
  text-align: center;
}
@media (max-width: 767px) {
  .special-contents-wrap {
    flex-direction: column;
    gap: 1.25rem;
  }
  .special-contents-wrap .bnrarea {
    width: auto;
  }
}

#special-contents {
  width: 48%;
  padding-left: 0.625rem;
  overflow: hidden;
}
#special-contents h3 {
  margin-left: -0.625rem;
}
#special-contents ul {
  zoom: 1;
  margin-left: -0.625rem;
  padding: 0.625rem 0.5625rem 0.5625rem 0;
  border: 1px solid #ccc;
  border-top: 0;
}
#special-contents ul:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
#special-contents li {
  display: block;
  float: left;
  width: 9.875rem;
  height: 3.875rem;
  padding: 0 0 0 0.625rem;
  line-height: 1;
}
@media (max-width: 767px) {
  #special-contents {
    width: auto;
  }
  #special-contents li img {
    display: block;
    width: 100%;
  }
}

.case-btn {
  max-width: 37.5rem;
  width: 100%;
  margin: 2.5rem auto 0;
}
.case-btn .btn {
  display: block;
  position: relative;
  background-color: #59cacf;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 24px 0;
  box-shadow: 0px 3px 0px #1996a3;
  transition: all ease 0.2s;
  font-weight: 600;
  font-size: 1.25em;
}
.case-btn .btn::after {
  display: block;
  position: absolute;
  content: "";
  background: url(/business/solution/images/share/btn-arrow.png);
  width: 20px;
  height: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.case-btn .btn:hover {
  transform: translateY(3px);
  box-shadow: none;
  transition: all ease 0.2s;
}
@media (max-width: 767px) {
  .case-btn .btn {
    font-size: 1em;
  }
}

.category_index {
  max-width: 58.75rem;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.category_index .unit {
  display: block;
  width: 13.4375rem;
  padding: 0 0.625rem;
  color: inherit;
  text-decoration: none;
}
.category_index .img {
  margin-bottom: 0.5rem;
}
.category_index .read-text {
  margin-bottom: 0.3125rem;
  font-size: 75%;
  line-height: 1.6;
}
.category_index .details {
  margin: 0;
  text-align: right;
}
@media (max-width: 767px) {
  .category_index {
    display: flex;
    flex-wrap: wrap;
    gap: 1.875rem 0.625rem;
    margin-left: auto;
    margin-right: auto;
  }
  .category_index::after {
    display: none !important;
  }
  .category_index .unit {
    float: none;
    box-sizing: border-box;
    width: calc((100% - 0.625rem) / 2);
    padding: 0;
  }
  .category_index .img img {
    width: 100%;
  }
}

body.case2 h2.title {
  margin-bottom: 0.5rem;
  padding: 0 0 0.25rem;
  border-bottom: 1px solid #999;
  font-size: 112.5%;
  font-weight: bold;
  line-height: 1.6;
}
body.case2 h2.title .iconL {
  padding-right: 0.625rem;
}
body.case2 h2.title .small {
  font-size: 87.5%;
}
body.case2 h2.title .sama {
  font-size: 75%;
}
body.case2 .profile {
  margin-bottom: 1.875rem;
}
body.case2 .profile .unit {
  width: 40rem;
}
@media (max-width: 767px) {
  body.case2 .profile .unit {
    float: none;
    width: auto;
  }
}
body.case2 #map_canvas {
  position: relative;
  width: 15.625rem;
  height: 12.5rem;
  margin: 0.125rem 0 0;
  border: 1px solid #CCC;
}
body.case2 #map_canvas iframe, body.case2 #map_canvas object, body.case2 #map_canvas embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  body.case2 #map_canvas {
    float: none;
    margin: 0.9375rem auto 0;
  }
}
body.case2 .environment {
  margin-bottom: 1.875rem;
}
body.case2 .environment .unit2 {
  width: 40.3125rem;
}
body.case2 .environment .image {
  width: 15.625rem;
}
body.case2 .environment .comment {
  margin-bottom: 0;
}
body.case2 .environment .comment1 {
  margin-bottom: 0.9375rem;
}
body.case2 .environment .comment2 {
  margin-bottom: 0;
  padding-top: 1.25rem;
  border-top: 1px solid #CCC;
}
body.case2 .environment .imageL {
  float: left;
  padding: 0 0.9375rem 0.3125rem 0;
}
body.case2 .environment .small {
  font-size: 75%;
}
@media (max-width: 767px) {
  body.case2 .environment .unit2 {
    width: auto;
  }
  body.case2 .environment .image {
    margin: 0.9375rem auto;
  }
}
body.case2 .info {
  margin-bottom: 0.625rem;
}
body.case2 .spec {
  margin-bottom: 0;
}
body.case2 .injection_deal {
  margin-bottom: 0.9375rem;
  font-size: 75%;
  text-align: right;
}
body.case2 .injection_deal .word {
  color: #003E74;
}
body.case2 .dl_pdf {
  margin-bottom: 1.25rem;
  text-align: right;
}
body.case2 .dl_pdf .border {
  padding: 0.375rem;
  border: 1px solid #999;
}
body.case2 .dl_pdf a {
  padding: 0 0 0 1.125rem;
  background: url(/business/solution/case2/images/icon-pdf_s.gif) no-repeat left 50%;
}
body.case2 .plugin-pdf {
  margin-bottom: 1.875rem;
  padding: 0.625rem;
  border: 1px dotted #999;
}
body.case2 .plugin-pdf dt {
  float: left;
  width: 7rem;
  line-height: 1;
}
body.case2 .plugin-pdf dd {
  float: right;
  width: 48.125rem;
  font-size: 75%;
  line-height: 1.6;
}
@media (max-width: 767px) {
  body.case2 .plugin-pdf dt {
    float: none;
  }
  body.case2 .plugin-pdf dd {
    float: none;
    width: auto;
    margin-top: 0.3125rem;
  }
}
body.case2 #employ {
  padding-left: 0.625rem;
}
body.case2 #employ h3 {
  margin-left: -0.625rem;
  background-color: #0B8ACA;
}
body.case2 #employ .list_system {
  zoom: 1;
  margin-left: -0.625rem;
  padding: 0.625rem 0.5625rem 0.5625rem 0;
  border: 1px solid #CCC;
  border-top: 0;
}
body.case2 #employ .list_system:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
body.case2 #employ .list_system li {
  float: left;
  display: block;
  padding: 0 0 0 0.625rem;
  line-height: 1;
}
body.case2 #employ .list_system li a {
  display: block;
  width: 9.875rem;
  height: 3.875rem;
  background: url(/business/solution/case2/images/bg_btn_system_s.jpg) no-repeat;
  background-size: 39.6875rem 7.8125rem;
  text-indent: -624.9375rem;
  overflow: hidden;
}
body.case2 #employ #system1 a {
  background-position: left top;
}
body.case2 #employ #system2 a {
  background-position: -9.9375rem top;
}
body.case2 #employ #system3 a {
  background-position: -19.875rem top;
}
body.case2 #employ #system4 a {
  background-position: -29.8125rem top;
}
body.case2 #employ #system1 a:hover {
  background-position: left bottom;
}
body.case2 #employ #system2 a:hover {
  background-position: -9.9375rem bottom;
}
body.case2 #employ #system3 a:hover {
  background-position: -19.875rem bottom;
}
body.case2 #employ #system4 a:hover {
  background-position: -29.8125rem bottom;
}
@media (max-width: 767px) {
  body.case2 #employ .list_system {
    margin-bottom: -0.625rem;
  }
  body.case2 #employ .list_system li {
    padding-bottom: 0.625rem;
  }
}
body.case2 table.icon_system {
  margin-bottom: 1.25rem;
}
body.case2 table.icon_system th {
  font-size: 0.5625rem;
  line-height: 1;
  vertical-align: top;
}
body.case2 table.icon_system td {
  padding-right: 0.9375rem;
  font-size: 75%;
  line-height: 1.6;
}
body.case2 table.icon_system .employ {
  padding-right: 0.3125rem;
}
@media (max-width: 767px) {
  body.case2 table.icon_system {
    display: block;
  }
  body.case2 table.icon_system thead, body.case2 table.icon_system tbody, body.case2 table.icon_system th, body.case2 table.icon_system td {
    display: block;
  }
  body.case2 table.icon_system tr {
    display: grid;
    grid-template-columns: 1.25rem 1fr 1.25rem 1fr 1.25rem 1fr;
    align-items: center;
    gap: 0.3125rem;
  }
  body.case2 table.icon_system th img {
    display: block;
    width: 100%;
  }
  body.case2 table.icon_system .employ {
    grid-column: span 6;
  }
}
body.case2 .list_products .icon_system {
  float: left;
  width: 7.8125rem;
  margin: 0;
  font-size: 0;
  line-height: 1;
}

body.system .zairyo {
  margin-bottom: 1.875rem;
}
body.system .zairyo .unit {
  max-width: 36.25rem;
}
body.system .zairyo .unit2 {
  max-width: 18.75rem;
}
body.system .zairyo ul {
  margin-bottom: 0.625rem;
}
body.system .flavoring {
  margin-bottom: 0;
  color: #0B8ACA;
}
body.system .how_to_make li {
  display: block;
  padding: 0 0 1.75rem 1.875rem;
  background: no-repeat 0 0.125rem;
  background-size: 1.375rem auto;
}
body.system .how_to_make li.num1 {
  background-image: url(/business/solution/system/recipe/images/icon_num_01.gif);
}
body.system .how_to_make li.num2 {
  background-image: url(/business/solution/system/recipe/images/icon_num_02.gif);
}
body.system .how_to_make li.num3 {
  background-image: url(/business/solution/system/recipe/images/icon_num_03.gif);
}
body.system .how_to_make li.num4 {
  background-image: url(/business/solution/system/recipe/images/icon_num_04.gif);
}
body.system .how_to_make li.num5 {
  background-image: url(/business/solution/system/recipe/images/icon_num_05.gif);
}
body.system .how_to_make li.num6 {
  background-image: url(/business/solution/system/recipe/images/icon_num_06.gif);
}
body.system .how_to_make li.num7 {
  background-image: url(/business/solution/system/recipe/images/icon_num_07.gif);
}
body.system .how_to_make li.num8 {
  background-image: url(/business/solution/system/recipe/images/icon_num_08.gif);
}
body.system .how_to_make li.num9 {
  background-image: url(/business/solution/system/recipe/images/icon_num_09.gif);
}
body.system .how_to_make li.num10 {
  background-image: url(/business/solution/system/recipe/images/icon_num_10.gif);
}
body.system .how_to_make .oven {
  width: auto;
  margin: 0.625rem 0 0;
}
body.system .how_to_make .oven th,
body.system .how_to_make .oven td {
  padding-top: 0.1875rem;
  padding-bottom: 0.1875rem;
  font-size: 85%;
  text-align: center;
}
body.system .how_to_make .oven th {
  background-color: #0B8ACA;
  color: #FFF;
}
body.system .how_to_make .text {
  float: left;
  max-width: 26.25rem;
}
body.system .how_to_make .image {
  float: right;
  max-width: 12.5rem;
}
body.system .one_point span {
  color: #0B8ACA;
}
body.system .info_service h4 {
  margin-bottom: 0.3125rem;
  color: #5C82C1;
  font-size: 125%;
  line-height: 1.4;
}
body.system .info_service p {
  font-size: 75%;
}
@media (max-width: 767px) {
  body.system .zairyo .unit {
    float: none;
    max-width: none;
  }
  body.system .zairyo .unit2 {
    float: none;
    max-width: none;
    margin-top: 1.25rem;
  }
}

.zeb-register {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  box-sizing: border-box;
  max-width: 48.75rem;
  margin: 3.25rem auto 4.375rem;
  padding: 1.25rem 0.875rem 0.625rem 1.875rem;
  background: #FFFF97;
}
.zeb-register .lead {
  width: 100%;
  max-width: 36.25rem;
}
.zeb-register .lead .title {
  font-size: 1.375em;
  font-weight: 600;
  line-height: 1.5;
}
.zeb-register .lead .title span {
  padding: 0 0.25em;
  color: #00CACF;
}
.zeb-register .lead .sub {
  font-size: 1.125em;
  margin-top: 0.9375rem;
  color: #00CACF;
  font-weight: 600;
}
.zeb-register .lead .txt {
  font-size: 0.875em;
  line-height: 1.6;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.zeb-register .logo {
  max-width: 8.125rem;
}
@media (max-width: 767px) {
  .zeb-register {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 0.9375rem;
  }
  .zeb-register .lead .title {
    font-size: 1.125em;
  }
  .zeb-register .lead .sub {
    font-size: 1em;
  }
}

.zeb-description {
  max-width: 50.75rem;
  margin: 3.625rem auto 4.375rem;
}

.zeb-define .text {
  margin-top: 2rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .zeb-define .text {
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.zeb-subject,
.zeb-calculation {
  background-color: #FFFBE3;
}

.zeb-subject {
  margin-top: 3rem;
  padding: 1.4375rem 1.9375rem;
}
.zeb-subject .highlight {
  font-size: 0.9375em;
  margin-bottom: 0;
  font-weight: 600;
}
.zeb-subject .highlight span {
  color: #E50011;
}
.zeb-subject .subject-list {
  display: flex;
  flex-flow: row wrap;
  margin-top: 1rem;
  margin-left: -0.75rem;
}
.zeb-subject .subject-list > li {
  box-sizing: border-box;
  width: 100%;
  max-width: 16.6666666667%;
  padding-left: 0.75rem;
  font-weight: 600;
  text-align: center;
}
.zeb-subject .subject-list p {
  font-size: 1em;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 0.78125rem 0;
  border-radius: 0.265625rem;
  background-color: #C8E2E8;
  line-height: 1.25;
}
.zeb-subject .note {
  font-size: 0.75em;
  margin-top: 1.0625rem;
  margin-bottom: 0;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .zeb-subject {
    padding: 1.5625rem 0.9375rem;
  }
  .zeb-subject .subject-list {
    gap: 0.5rem;
    margin-left: 0;
  }
  .zeb-subject .subject-list > li {
    max-width: calc((100% - 1rem) / 3);
    padding-left: 0;
  }
}

.zeb-calculation {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  margin-top: 1.25rem;
  padding: 1.9375rem;
}
.zeb-calculation p {
  font-size: 0.90625em;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.25;
}
.zeb-calculation .calculation {
  display: flex;
  align-items: center;
  flex-flow: column wrap;
  width: 100%;
  max-width: 20.5rem;
  padding-left: 0.625rem;
}
.zeb-calculation .calculation .layout,
.zeb-calculation .calculation .basic {
  width: 100%;
  text-align: center;
}
.zeb-calculation .calculation .layout {
  padding-bottom: 0.625rem;
  border-bottom: 0.125rem solid #231815;
}
.zeb-calculation .calculation .basic {
  padding-top: 0.625rem;
}
@media (max-width: 767px) {
  .zeb-calculation {
    flex-direction: column;
    gap: 0.9375rem;
    align-items: flex-start;
    padding: 1.5625rem 0.9375rem;
  }
}

.zeb-table {
  width: 100%;
  max-width: 48.75rem;
  margin: 0 auto 4.375rem;
}
.zeb-table .title {
  font-size: 1.125em;
  color: #2660AC;
}
.zeb-table .title:not(:first-of-type) {
  margin-top: 3.375rem;
}
.zeb-table .works,
.zeb-table .percentage {
  width: 100%;
  margin-top: 1.125rem;
  border-collapse: collapse;
}
.zeb-table .works th,
.zeb-table .works td,
.zeb-table .percentage th,
.zeb-table .percentage td {
  font-size: 0.875em;
  line-height: 1.25;
}
.zeb-table .works th:not(:first-of-type),
.zeb-table .works td:not(:first-of-type),
.zeb-table .percentage th:not(:first-of-type),
.zeb-table .percentage td:not(:first-of-type) {
  border-left: 1px solid #251E1C;
}
.zeb-table .works th,
.zeb-table .percentage th {
  width: 100%;
  padding: 0.8125rem 0;
  border-top: 0.125rem solid #251E1C;
  border-bottom: 1px solid #251E1C;
  background-color: #D4DFEE;
}
.zeb-table .works td,
.zeb-table .percentage td {
  padding: 0.875rem 0;
  border-bottom: solid 1px #251E1C;
  background-color: #FFF;
  text-align: center;
}
.zeb-table .works tr:last-of-type td,
.zeb-table .percentage tr:last-of-type td {
  border-bottom: 0.125rem solid #251E1C;
}
.zeb-table .works .year {
  max-width: 16.6666666667%;
}
.zeb-table .works .name {
  max-width: 48.4615384615%;
}
.zeb-table .works .scale {
  max-width: 17.4358974359%;
}
.zeb-table .works .type {
  max-width: 17.4358974359%;
}
.zeb-table .percentage .unit {
  font-size: 0.5em;
  float: none;
  vertical-align: top;
}
.zeb-table .percentage .scale {
  max-width: 65.1282051282%;
}
.zeb-table .percentage .new {
  max-width: 17.4358974359%;
}
.zeb-table .percentage .reform {
  max-width: 17.4358974359%;
}

/* トップページ
--------------------------------------------------------------------------*/
.home-section {
  padding: 0 0 6.25rem;
}
@media (max-width: 767px) {
  .home-section {
    padding: 0 0.625rem 5rem;
  }
}

.home-mv {
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.home-carousel {
  --swiper-theme-color: #2660AC;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 2rem 3.75rem 5rem;
  overflow: hidden;
}
.home-carousel .swiper {
  width: 100%;
}
.home-carousel .swiper-slide {
  box-sizing: border-box;
  height: auto;
}
.home-carousel .swiper-slide .card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  padding: 1.375rem;
  border: 1px solid #ccc;
  border-radius: 0.625rem;
  color: inherit;
  text-decoration: none;
}
.home-carousel .swiper-slide .head {
  display: block;
}
.home-carousel .swiper-slide .title {
  position: relative;
  margin: 0;
  padding: 0 0 0.375rem 0.9375rem;
  border-bottom: 0.125rem dotted #2660AC;
  color: #2660AC;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
}
.home-carousel .swiper-slide .title::before {
  display: block;
  position: absolute;
  top: 0.125rem;
  left: 0;
  width: 0.3125rem;
  height: 1rem;
  background-color: #2660AC;
  content: "";
}
.home-carousel .swiper-slide .img {
  margin-top: 0.75rem;
}
.home-carousel .swiper-slide .img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 226/104;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-carousel .swiper-slide .body {
  margin: 0.75rem 0 0;
}
.home-carousel .swiper-slide .name {
  margin: 0;
  font-size: 0.875rem;
  color: #2660AC;
  font-weight: bold;
  line-height: 1.5;
}
.home-carousel .swiper-slide .text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.home-carousel .swiper-custom-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  width: 100%;
}
.home-carousel .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  width: auto;
}
.home-carousel .swiper-autoplay {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--swiper-theme-color, #2660AC);
  border-radius: 50%;
  cursor: pointer;
}
.home-carousel .swiper-autoplay::before {
  display: none;
  position: relative;
  left: 0.0625rem;
  border: solid transparent;
  border-width: 0.3125rem 0 0.3125rem 0.4375rem;
  border-left-color: var(--swiper-theme-color, #2660AC);
  content: "";
}
.home-carousel .swiper-autoplay::after {
  display: block;
  box-sizing: border-box;
  width: 0.5rem;
  height: 0.5rem;
  border: solid var(--swiper-theme-color, #2660AC);
  border-width: 0 0.1875rem;
  content: "";
}
.home-carousel .swiper-autoplay.is-paused::before {
  display: block;
}
.home-carousel .swiper-autoplay.is-paused::after {
  display: none;
}
.home-carousel .swiper-button-prev,
.home-carousel .swiper-button-next {
  top: calc(50% - 1.4375rem);
  width: 2.875rem;
  height: 2.875rem;
  border: 1px solid #ccc;
  border-radius: 50%;
}
.home-carousel .swiper-button-prev::after,
.home-carousel .swiper-button-next::after {
  font-size: 1.125rem;
  font-weight: 700;
}
.home-carousel .swiper-button-prev {
  left: 0;
}
.home-carousel .swiper-button-next {
  right: 0;
}
@media (max-width: 767px) {
  .home-carousel {
    padding: 2rem 2.625rem 5rem;
  }
  .home-carousel .swiper-button-prev,
  .home-carousel .swiper-button-next {
    top: calc(50% - 1rem);
    width: 2rem;
    height: 2rem;
  }
  .home-carousel .swiper-button-prev::after,
  .home-carousel .swiper-button-next::after {
    font-size: 0.875rem;
  }
}

.home-navi {
  margin-bottom: 6.25rem;
}
.home-navi > *:first-child {
  margin-top: 0 !important;
}
.home-navi .heading {
  display: block;
  position: relative;
  margin: 3.75rem 0 0;
  padding: 0.4375rem 1.25rem 0.375rem;
  background: var(--nav-category, #132781);
  font-size: 1.125rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}
.home-navi .navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.25rem 0 0;
  padding: 0 1.375rem;
}
.home-navi .navigation > li {
  display: block;
  width: calc((100% - 3.75rem) / 4);
}
.home-navi .navigation .link {
  display: flex;
  flex-direction: column;
  transition: all ease 0.3s;
}
.home-navi .navigation .link img {
  display: block;
  width: 100%;
}
.home-navi .navigation .link:hover {
  opacity: 0.7;
}
.home-navi [data-nav=equipment] {
  --nav-category: #FF6699;
}
.home-navi [data-nav=vppdr] {
  --nav-category: #FF5050;
}
.home-navi [data-nav=consulting] {
  --nav-category: #FF9900;
}
.home-navi [data-nav=decarbonize] {
  --nav-category: #00AD9C;
}
.home-navi [data-nav=electricity] {
  --nav-category: #2F5597;
}
@media (max-width: 767px) {
  .home-navi {
    margin-bottom: 3rem;
  }
  .home-navi .heading {
    margin-top: 2rem;
    padding: 0.4375rem 0.75rem 0.375rem;
    font-size: 1rem;
  }
  .home-navi .navigation {
    gap: 0.625rem;
    padding: 0 0.3125rem;
  }
  .home-navi .navigation > li {
    width: calc((100% - 0.625rem) / 2);
  }
}

.home-inquiry {
  width: 100%;
  max-width: 37.5rem;
  margin: 5rem auto 0;
}
.home-inquiry .btn {
  display: block;
  position: relative;
  background-color: #59cacf;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 24px 0;
  box-shadow: 0px 3px 0px #1996a3;
  transition: all ease 0.2s;
  font-weight: 600;
  font-size: 1.125em;
}
.home-inquiry .btn::after {
  display: block;
  position: absolute;
  content: "";
  background: url(/business/solution/images/share/btn-arrow.png);
  width: 20px;
  height: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.home-inquiry .btn:hover {
  transform: translateY(3px);
  box-shadow: none;
  transition: all ease 0.2s;
}