@charset "UTF-8";

:root {
  /* color */
  --base-color: #344A63;
  --base-color-rgb: 52, 74, 99;
  --bg-color: #F2F8FD;
  --bg02-color: #EEF2F7;
  --line-color: #C7CEE0;
  --point-color: #0185E4;
  --gray-color: #F9FAFC;
  --lblue-color: #7ACFF3;
  --blue-color: #28B6F2;
  --dblue-color: #004476;
  --yellow-color: #F2C31E;
  --gradation-color: linear-gradient(#AEDAED, #0184E4);
  /* transition */
  --base-transition: 0.2s ease-out;
}

/* font */

/* animation */

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0) scale(1, 0);
    transform: translateY(0) scale(1, 0);
  }

  50% {
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(0) scale(1, 0);
    transform: translateY(0) scale(1, 0);
  }

  50% {
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

*:focus-visible {
  outline: 2px solid var(--point-color);
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--base-color);
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}

body::after {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: url(/img/common/bg.jpg) no-repeat center center/cover;
  content: "";
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

::-moz-selection {
  background: var(--point-color);
  color: #fff;
}

::selection {
  background: var(--point-color);
  color: #fff;
}

.body-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 490.31px);
  min-height: calc(100dvh - 490.31px);
}

section {
  position: relative;
  padding: 140px 0;
}

main {
  position: relative;
  overflow: hidden;
}

.bg {
  background-color: var(--bg-color);
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner_under {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

img,
iframe,
video {
  display: block;
  width: 100%;
  max-width: 100%;
}

a,
button,
select {
  color: var(--base-color);
  font-style: normal;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
}

a {
  -webkit-transition: var(--base-transition);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: var(--base-transition);
}

p {
  line-height: 1.86;
}

span {
  font-weight: inherit;
}

.ib {
  display: inline-block;
}

.en {
  font-style: normal;
  font-weight: 400;
  font-family: "Jost", sans-serif;
}

.caution {
  color: var(--point-color);
}

.component section.bg {
  background-color: var(--base-color);
}

.component .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.component h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

.component .color-list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 30px;
}

.component .color-list li {
  position: relative;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

.component .color-list li::before {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  content: "";
}

.component .color-list li.black::before {
  background-color: var(--base-color);
}

.component .color-list li.bg::before {
  background-color: var(--bg-color);
}

.component .color-list li.bg02::before {
  background-color: var(--bg02-color);
}

.component .color-list li.point::before {
  background-color: var(--point-color);
}

.component .color-list li.gray::before {
  background-color: var(--gray-color);
}

.component .color-list li.lblue::before {
  background-color: var(--lblue-color);
}

.component .color-list li.blue::before {
  background-color: var(--blue-color);
}

.component .color-list li.dblue::before {
  background-color: var(--dblue-color);
}

.component .color-list li.yellow::before {
  background-color: var(--yellow-color);
}

.component .color-list li.gradation::before {
  background-image: var(--gradation-color);
}

.component .color-list li.line::before {
  background-color: var(--line-color);
}

/* --------------------------------
 * logo  
-------------------------------- */

.c-logo-wrap .txt {
  font-size: 1rem;
  white-space: nowrap;
}

/* --------------------------------
 * 下層mv  
-------------------------------- */

.c-mv {
  width: 100%;
  height: 390px;
  padding: 0;
  background: url(/img/common/mv-bg.jpg) no-repeat center center/cover;
}

.c-mv .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 50px;
}

.c-mv__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-mv__title .en {
  color: var(--point-color);
  font-weight: 400;
  font-size: 9.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  text-transform: uppercase;
  mix-blend-mode: lighten;
}

.c-mv__title .ja {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}

.c-mv__breadcrumb ol {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-mv__breadcrumb li {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  white-space: nowrap;
}

.c-mv__breadcrumb li:not(:last-of-type) {
  opacity: 0.6;
}

.c-mv__breadcrumb li:last-of-type {
  pointer-events: none;
}

.c-mv__breadcrumb li + li {
  padding-left: 13px;
}

.c-mv__breadcrumb li + li::before {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  content: "";
  opacity: 0.6;
}

.c-mv__breadcrumb a {
  color: #fff;
  font-size: 1.2rem;
}

/* --------------------------------
 * 太陽光発電・蓄電池 Intro
-------------------------------- */

.c-intro__title {
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
}

.c-intro__text {
  margin-top: 50px;
  line-height: 1.8125;
  text-align: center;
}

.c-intro__text .underline {
  text-decoration: underline;
}

.c-intro__text .strong {
  font-weight: 700;
}

.c-intro__figure--solar-power {
  max-width: 860px;
  margin: 60px auto 0;
}

.c-intro__figure--battery {
  max-width: 1100px;
  margin: 60px auto 0;
}

.c-intro__figure-caption {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.8;
  text-align: center;
}

.c-intro__figure-text {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 2.1666666667;
}

.c-intro__box {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 30px;
  background-color: var(--bg02-color);
}

.c-intro__box-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
}

.c-intro__box-text {
  margin-top: 18px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
}

.c-intro__box-text--small {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2.1666666667;
}

.c-intro__box-figure {
  display: block;
  margin-top: 40px;
}

.c-intro__btn-wrap {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: end;
  max-width: 960px;
  margin: 50px auto 0;
  gap: 50px;
}

.c-intro__wrap {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1140px;
  margin: 40px auto 0;
  padding: 0 20px;
  gap: 60px;
}

.c-intro__column {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  padding: 60px 20px 40px;
  gap: 0px;
  background-color: #fff;
}

.c-intro__column-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
}

.c-intro__column-title .small {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
}

.c-intro__column-image {
  margin-top: 30px;
}

.c-intro__column-text {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
}

.c-intro__column-list {
  margin-top: 5px;
}

.c-intro__column-item {
  font-size: 1.2rem;
  line-height: 1.6666666667;
}

/* --------------------------------
 * 太陽光発電・蓄電池 Merit
-------------------------------- */

.c-merit {
  background-color: var(--bg-color);
}

.c-merit__head {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.c-merit__head-text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}

.c-merit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.c-merit__item {
  position: relative;
  width: calc(25% - 15px);
  padding-top: 70px;
}

.c-merit__item-number {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  font-size: 4.5rem;
}

.c-merit__item-icon {
  max-width: 112px;
  margin: 0 auto;
}

.c-merit__item-text {
  margin-top: 30px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.c-merit__item-text span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0.6px;
}

/* --------------------------------
 * 太陽光発電・蓄電池 Flow
-------------------------------- */

.c-flow {
  background-color: var(--bg-color);
}

.c-flow__head {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.c-flow__head-text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}

.c-flow__list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.c-flow__item {
  width: calc(50% - 10px);
  min-height: 204px;
  padding: 30px;
  background-color: #fff;
}

.c-flow__item-step {
  color: var(--point-color);
  font-weight: 600;
  text-transform: uppercase;
}

.c-flow__item-title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.c-flow__item-title:has(.c-flow__item-label) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.c-flow__item-text {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
}

.c-flow__item-label {
  display: inline-block;
  min-width: 90px;
  margin-left: 20px;
  padding: 8px 0;
  border-radius: 100px;
  background-color: var(--base-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

/* --------------------------------
 * 太陽光発電・蓄電池 Q&A
-------------------------------- */

.c-faq {
  background-color: var(--bg-color);
}

.c-faq__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.c-faq__tab-item {
  width: calc(50% - 20px);
}

.c-faq__tab-link {
  display: block;
  padding: 25px 0;
  background-color: var(--line-color);
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

.c-faq__tab-link.is-active {
  background-color: var(--base-color);
}

.c-faq__list {
  display: none;
  margin-top: 40px;
}

.c-faq__list.is-active {
  display: block;
}

.c-faq__item {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  cursor: pointer;
}

.c-faq__item:not(:first-child) {
  margin-top: 3px;
}

.c-faq__question {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 2rem;
  line-height: normal;
}

.c-faq__question-head {
  display: block;
  margin-right: 13px;
  font-weight: 600;
  font-size: 2.2rem;
}

.c-faq__question-toggle {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  margin-left: auto;
  border: solid 1px var(--base-color);
  border-radius: 100px;
}

.c-faq__question-toggle::before,
.c-faq__question-toggle::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  transform: translate(-50%, -50%);
  background-color: var(--base-color);
  content: "";
}

.c-faq__question-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-faq__item.is-open .c-faq__question-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-faq__answer {
  margin-top: 15px;
  color: var(--point-color);
  font-size: 1.6rem;
  line-height: 1.75;
}

.c-faq__answer-image {
  max-width: 290px;
  margin-top: 15px;
  padding-left: 20px;
}

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

.c-title01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.c-title01 .en {
  color: var(--dblue-color);
  font-weight: 600;
  font-size: 5.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.c-title01 .ja {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(var(--base-color-rgb), 0.6);
  font-weight: 500;
  font-size: 1.6rem;
}

.c-title01 .ja::before {
  width: 35px;
  height: 1px;
  background-color: var(--point-color);
  content: "";
}

.c-title01__under .en {
  font-size: 4.5rem;
}

.c-title01__white .en,
.c-title01__white .ja {
  color: #fff;
}

.c-title01__white .ja::before {
  background-color: #fff;
}

/* --------------------------------
 * btn
-------------------------------- */

.c-btn01 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
}

.c-btn01 .txt {
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: underline;
}

.c-btn01 .arrow {
  -webkit-transition: var(--base-transition);
  position: relative;
  width: 50px;
  height: 50px;
  border: solid 1px var(--point-color);
  border-radius: 50%;
  background-color: var(--point-color);
  transition: var(--base-transition);
}

.c-btn01 svg {
  fill: #fff;
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  transition: var(--base-transition);
}

.c-btn01__white {
  color: #fff;
}

.c-btn01__white .arrow {
  border: solid 1px #fff;
  background-color: transparent;
}

.c-btn01__white svg {
  fill: #fff;
}

.c-btn02 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  border: solid 1px var(--point-color);
  background-color: var(--point-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}

.c-btn02::after {
  -webkit-mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  background-color: #fff;
  content: "";
  mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: var(--base-transition);
}

/* --------------------------------
 * table  
-------------------------------- */

.c-table {
  width: 100%;
  border-top: solid 1px var(--line-color);
  font-size: 1.4rem;
}

.c-table table {
  width: 100%;
}

.c-table th,
.c-table td {
  padding: 20px;
  border-bottom: solid 1px var(--line-color);
  line-height: 1.85;
  text-align: left;
}

.c-table th {
  font-weight: 500;
}

.c-table ul li,
.c-table ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.c-table ul span,
.c-table ol span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* --------------------------------
 * map
-------------------------------- */

.c-map {
  width: 100%;
  height: 360px;
  background-color: #98aab2;
}

.c-map iframe {
  -webkit-filter: grayscale(1);
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  filter: grayscale(1);
}

/* --------------------------------
 * js-slide-txt
-------------------------------- */

.js-slide-txt {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: -1.389vw;
  left: 0;
  align-items: center;
  width: 100%;
}

.js-slide-txt .en {
  color: var(--point-color);
  font-size: 8.889vw;
  line-height: 1;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  white-space: nowrap;
  mix-blend-mode: lighten;
  opacity: 0.3;
}

/* --------------------------------
 * works swiper
-------------------------------- */

.works {
  background-color: #fff;
}

.top .works {
  background-color: transparent;
}

.js-works-swiper {
  position: relative;
  min-height: 314px;
}

.js-works-swiper .swiper-slide {
  width: 300px;
}

.js-works-swiper .swiper-slide a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-shadow: 0 10px 20px rgba(38, 93, 132, 0.1490196078);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 314px;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(38, 93, 132, 0.1490196078);
}

.js-works-swiper .swiper-slide .wrap {
  padding: 10px;
}

.js-works-swiper .swiper-slide .date {
  margin-bottom: 4px;
  font-size: 1.2rem;
  opacity: 0.4;
}

.js-works-swiper .swiper-slide .title {
  font-weight: 500;
  font-size: 1.4rem;
}

.js-works-swiper .swiper-slide .tag_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 0 10px 10px;
  gap: 10px 20px;
}

.js-works-swiper .swiper-slide .tag_list li {
  font-size: 1.2rem;
  opacity: 0.4;
}

.js-works-swiper .swiper-pagination {
  display: none;
}

.js-works-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px !important;
  background-color: var(--base-color);
}

.js-works-swiper .swiper-button {
  right: 0;
  width: 60px;
  height: 60px;
  border: solid 1px var(--base-color);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}

.js-works-swiper .swiper-button::after {
  width: 16px;
  height: 16px;
  background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.js-works-swiper .swiper-button-prev {
  right: inherit;
  left: 0;
}

.js-works-swiper .swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.js-works-swiper .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

/* --------------------------------
 * notfound 404
-------------------------------- */

.notfound__wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.notfound .txt {
  font-size: 1.4rem;
}

.notfound .c-btn02 {
  margin: 40px auto 0;
}

.header {
  z-index: 9999;
  position: fixed;
  top: 0;
  width: 100%;
  height: min(6.25vw, 90px);
}

.header.active {
  background-color: #fff;
}

.header.active .header__nav_sp {
  background-color: #fff;
}

.header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: min(2.083vw, 30px);
}

.header__logo a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: min(16.042vw, 231px);
  gap: min(0.347vw, 5px);
}

.header__logo_txt {
  font-size: min(0.694vw, 10px);
  letter-spacing: 0.05em;
}

.header .js-toggle-menu {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--dblue-color);
}

.header .js-toggle-menu .inn {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 21px;
}

.header .js-toggle-menu .line {
  -webkit-transition: var(--base-transition);
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: var(--base-transition);
}

.header .js-toggle-menu .line:first-of-type {
  top: 0;
}

.header .js-toggle-menu .line:nth-of-type(2) {
  top: 10px;
  opacity: 1;
}

.header .js-toggle-menu .line:last-of-type {
  bottom: 0;
}

.header .js-toggle-menu.active .line:first-of-type {
  -webkit-transform: rotate(45deg);
  top: 11px;
  transform: rotate(45deg);
}

.header .js-toggle-menu.active .line:nth-of-type(2) {
  opacity: 0;
}

.header .js-toggle-menu.active .line:last-of-type {
  -webkit-transform: rotate(-45deg);
  bottom: 9px;
  transform: rotate(-45deg);
}

.header__nav_pc,
.header__nav_list,
.header__nav_contact {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.header__nav_pc {
  gap: min(2.778vw, 40px);
}

.header__nav_sp {
  display: none;
}

.header__nav_list {
  gap: min(2.083vw, 30px);
  font-size: min(0.972vw, 14px);
}

.header__nav_list a {
  position: relative;
}

.header__nav_list a::before {
  -webkit-transition: var(--base-transition);
  -webkit-transform: scale(0, 1);
  -webkit-transform-origin: center top;
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: center top;
  background-color: var(--base-color);
  content: "";
  transition: var(--base-transition);
}

.header .header__nav_sub {
  padding: 15px 0;
  border-top: solid 1px #718091;
}

.header .header__nav_sub a {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 5px 0;
  gap: 25px;
  border-top: none;
}

.header .header__nav_sub a::after {
  content: none;
}

.header .header__nav_sub .thumb {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 85px;
}

.header__nav_contact .tel__link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(14.097vw, 203px);
  height: min(6.25vw, 90px);
  background-color: #fff;
  text-align: center;
}

.header__nav_contact .tel__title {
  font-weight: 700;
  font-size: min(0.972vw, 14px);
}

.header__nav_contact .tel__number {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: min(0.278vw, 4px);
  color: var(--point-color);
  font-weight: 700;
  font-size: min(1.389vw, 20px);
}

.header__nav_contact .tel__number::before {
  width: min(1.111vw, 16px);
  height: min(1.111vw, 16px);
  background: url(/img/common/icon-tel.svg) no-repeat center center/contain;
  content: "";
}

.header__nav_contact .tel__txt {
  font-weight: 400;
  font-size: min(0.694vw, 10px);
}

.header__nav_contact .form__link,
.header__nav_contact .event__link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: min(6.25vw, 90px);
  height: min(6.25vw, 90px);
  padding: min(0.833vw, 12px);
  gap: min(0.347vw, 5px);
  color: #fff;
  font-weight: 700;
  font-size: min(0.694vw, 10px);
  text-align: center;
}

.header__nav_contact .form__link {
  background-color: var(--blue-color);
}

.header__nav_contact .event__link {
  background-color: var(--point-color);
}

.footer {
  background-color: var(--base-color);
  color: #fff;
}

.footer .inner {
  padding: 60px 20px 72px;
}

.footer__contact {
  margin-bottom: 30px;
  padding-bottom: 50px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.footer__contact_title {
  margin-bottom: 35px;
  font-weight: 600;
  font-size: 4.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.footer__contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.footer__contact_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(33.3333333333% - 15px);
  height: 60px;
}

.footer__contact_item.tel {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: solid 2px var(--point-color);
  background-color: #fff;
}

.footer__contact_item.tel .num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  gap: 8px;
  color: var(--point-color);
  font-weight: 700;
  font-size: 2rem;
}

.footer__contact_item.tel .num::before {
  width: 19px;
  height: 19px;
  background: url(/img/common/icon-tel.svg) no-repeat center center/contain;
  content: "";
}

.footer__contact_item.tel .txt {
  font-weight: 400;
  font-size: 1.2rem;
}

.footer__contact_item.form,
.footer__contact_item.event {
  gap: 10px;
  color: #fff;
}

.footer__contact_item.form .icon,
.footer__contact_item.event .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.footer__contact_item.form {
  background-color: var(--blue-color);
}

.footer__contact_item.event {
  background-color: var(--point-color);
}

.footer__contents {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer__logo_wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__logo {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 231px;
  gap: 5px;
}

.footer__logo .sub {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.footer__logo .logo {
  -webkit-mask-image: url(/img/common/logo.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  width: 231px;
  height: 30px;
  background-color: #fff;
  mask-image: url(/img/common/logo.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.footer__address {
  font-size: 1.2rem;
}

.footer__nav_wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__nav_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__nav_list li {
  line-height: 1;
}

.footer__nav_list a {
  color: #fff;
  font-weight: 400;
  font-size: 1.4rem;
}

.footer__copy {
  padding: 8px 0;
  background-color: var(--bg-color);
  color: var(--base-color);
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
}

.fix-bottom {
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: var(--base-transition);
}

.fix-bottom__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33.3333333333%;
  height: 60px;
  gap: 5px;
  color: #fff;
  font-size: 1.2rem;
}

.fix-bottom__item .icon {
  width: 20px;
  height: 20px;
}

.fix-bottom__item.tel {
  background-color: var(--point-color);
}

.fix-bottom__item.tel .icon {
  -webkit-mask: url(/img/common/icon-tel.svg) no-repeat center center/contain;
  background-color: #fff;
  mask: url(/img/common/icon-tel.svg) no-repeat center center/contain;
}

.fix-bottom__item.form {
  background-color: var(--blue-color);
}

.fix-bottom__item.event {
  background-color: var(--yellow-color);
}

.archive .news__category_list {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.archive .news__category_btn {
  padding: 6px 30px;
  border: solid 1px var(--line-color);
  border-radius: 100px;
}

.archive .news__category_btn.active {
  border-color: var(--base-color);
  background-color: var(--base-color);
  color: #fff;
  pointer-events: none;
}

.archive .news__contents {
  margin-top: 20px;
}

.archive .news__contents_wrapper {
  border-bottom: solid 1px var(--line-color);
}

.archive .news__item {
  border-top: solid 1px var(--line-color);
}

.archive .news__item a {
  padding: 20px 0;
}

.archive .news__item_head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 15px;
}

.archive .news__item .category {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-negative: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 90px;
  padding: 2px 10px;
  border: solid 1px var(--line-color);
  border-radius: 100px;
  color: rgba(var(--base-color-rgb), 0.6);
  font-weight: 500;
  font-size: 1rem;
}

.archive .news__item .date {
  font-size: 1.2rem;
}

.archive .news__item .title {
  margin-top: 14px;
  font-weight: 500;
  font-size: 1.4rem;
}

.archive .news__item .tag_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 13px;
  gap: 10px 20px;
}

.archive .news__item .tag_list li {
  font-size: 1.2rem;
  opacity: 0.4;
}

.archive .news .pager {
  margin-top: 50px;
}

.archive .news .pager_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.archive .news .pager_item {
  width: 40px;
  height: 40px;
}

.archive .news .pager_item a,
.archive .news .pager_item .current {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-style: normal;
  font-weight: 400;
  font-family: "Jost", sans-serif;
}

.archive .news .pager_item .current {
  background-color: rgba(var(--base-color-rgb), 0.1);
}

.archive .news .pager_item.prev,
.archive .news .pager_item.next {
  position: relative;
}

.archive .news .pager_item.prev::after,
.archive .news .pager_item.next::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-right: solid 2px var(--base-color);
  border-bottom: solid 2px var(--base-color);
  content: "";
}

.archive .news .pager_item.prev.disable,
.archive .news .pager_item.next.disable {
  opacity: 0.3;
  pointer-events: none;
}

.archive .news .pager_item.prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

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

/* types
/* ------------------------------------- */

.types {
  padding: 130px 0 0;
}

.types__container:nth-of-type(2) {
  margin-top: 140px;
}

.types__title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 1.5px;
  text-align: center;
}

.types__text {
  margin-top: 40px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  text-align: center;
}

.types__figure {
  max-width: 780px;
  margin: 60px auto 0;
}

.types__button {
  max-width: 250px;
  margin: 40px auto 0;
}

.types__link {
  display: block;
  width: 100%;
  padding: 15px 0;
  background-color: var(--point-color);
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  text-align: center;
}

.types__box {
  max-width: 780px;
  margin: 56px auto 0;
  padding: 50px 60px;
  background-color: var(--gray-color);
}

.types__box-title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.9px;
}

.types__box-figure {
  margin-top: 20px;
}

.types__box-note {
  margin-top: 20px;
  color: rgba(52, 74, 99, 0.6);
  font-size: 1.2rem;
  text-align: right;
}

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

/* eco-cute
/* ------------------------------------- */

.eco-cute .inner_under {
  max-width: 1140px;
}

.eco-cute__title {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.8;
  text-align: center;
}

.eco-cute__text {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-top: 40px;
  margin-inline: auto;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  text-align: center;
}

.eco-cute__text .strong {
  font-weight: 700;
}

.eco-cute__box {
  padding: 40px 50px;
  background-color: #fff;
}

.eco-cute__box:nth-of-type(1) {
  margin-top: 57px;
}

.eco-cute__box:nth-of-type(2) {
  margin-top: 40px;
}

.eco-cute__box-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
}

.eco-cute__box-title br.sp {
  display: none;
}

.eco-cute__box-wrap--first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  gap: 30px;
}

.eco-cute__box-wrap--second {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 88px;
}

.eco-cute__box-image--first {
  width: 35%;
  max-width: 344px;
}

.eco-cute__box-image--second {
  width: 63%;
  max-width: 627px;
}

.eco-cute__box-image--third {
  width: 43%;
  max-width: 430px;
}

.eco-cute__box-image--fourth {
  width: 49%;
  max-width: 482px;
}

.eco-cute__box-text {
  margin-top: 17px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
}

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

/* battery works
/* ------------------------------------- */

.battery .works .btn {
  position: absolute;
  top: 16px;
  right: 20px;
}

.company .greeting__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

.company .greeting__title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 335px;
}

.company .greeting__title .copy {
  margin-bottom: 52px;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.875;
}

.company .greeting__title .president {
  font-weight: 700;
}

.company .greeting .txt {
  padding: 10px 0 14px 60px;
  border-left: solid 1px var(--line-color);
}

.company .access .c-map {
  height: 500px;
}

.company .access__wrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 20px 40px;
}

.company .access .wrap {
  width: calc(50% - 20px);
  background-color: var(--gray-color);
}

.company .access .wrap__title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  padding: 13px 20px;
  gap: 10px;
  background-color: var(--bg02-color);
  font-weight: 500;
}

.company .access .wrap__title::before {
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.company .access .wrap__title.address::before {
  background-image: url(/img/common/icon-info.svg);
}

.company .access .wrap__title.access::before {
  background-image: url(/img/common/icon-access.svg);
}

.company .access .wrap__txt {
  padding: 20px;
  font-size: 1.4rem;
}

.company .access .wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.company .access .wrap dl + dl {
  margin-top: 10px;
}

.company .access .wrap dt {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  font-weight: 500;
}

.company .showroom__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  gap: 100px;
}

.company .showroom__head .c-title01 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.company .showroom__head .txt {
  font-size: 1.4rem;
}

.company .showroom__img {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.company .showroom__img_top {
  height: 480px;
}

.company .showroom__img_top img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.company .showroom__img_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}

.company .showroom__img_bottom img {
  -o-object-fit: cover;
  aspect-ratio: 4/3;
  width: calc(33.3333333333% - 23.5px);
  height: 100%;
  object-fit: cover;
}

.company .staff .js-staff-swiper {
  position: relative;
}

.company .staff .js-staff-swiper .wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin: 15px 0 5px;
}

.company .staff .js-staff-swiper .department {
  font-weight: 500;
  font-size: 1.2rem;
}

.company .staff .js-staff-swiper .name {
  font-weight: 500;
  font-size: 1.6rem;
}

.company .staff .js-staff-swiper .txt {
  font-size: 1.2rem;
}

.contact .form__intro {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px;
  padding: 22px;
  background-color: var(--bg02-color);
}

.contact .form_area.thanks {
  text-align: center;
}

.contact .form_area.thanks .title {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 2.4rem;
}

.contact .form_area.thanks .c-btn02 {
  margin: 40px auto 0;
}

.contact .form .table {
  width: 100%;
  border-bottom: solid 1px var(--line-color);
}

.contact .form th,
.contact .form td {
  height: 80px;
  padding: 20px;
  border-top: solid 1px var(--line-color);
  font-size: 1.4rem;
  vertical-align: middle;
}

.contact .form th {
  width: 20%;
  min-width: 185px;
  font-weight: 500;
  text-align: left;
}

.contact .form td {
  width: 80%;
  padding-left: 50px;
}

.contact .form .is-error {
  color: rgb(218, 30, 30);
  font-size: 1.2rem;
}

.contact .form input[type=text],
.contact .form input[type=email],
.contact .form select,
.contact .form textarea {
  height: 50px;
  padding: 0 30px;
  border: solid 1px var(--line-color);
  border-radius: 5px;
  background-color: #fff;
  color: var(--base-color);
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.contact .form input[type=text]::-webkit-input-placeholder,
.contact .form input[type=email]::-webkit-input-placeholder,
.contact .form select::-webkit-input-placeholder,
.contact .form textarea::-webkit-input-placeholder {
  color: var(--line-color);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.contact .form input[type=text]::-moz-placeholder,
.contact .form input[type=email]::-moz-placeholder,
.contact .form select::-moz-placeholder,
.contact .form textarea::-moz-placeholder {
  color: var(--line-color);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.contact .form input[type=text]:-ms-input-placeholder,
.contact .form input[type=email]:-ms-input-placeholder,
.contact .form select:-ms-input-placeholder,
.contact .form textarea:-ms-input-placeholder {
  color: var(--line-color);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.contact .form input[type=text]::-ms-input-placeholder,
.contact .form input[type=email]::-ms-input-placeholder,
.contact .form select::-ms-input-placeholder,
.contact .form textarea::-ms-input-placeholder {
  color: var(--line-color);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.contact .form input[type=text]::placeholder,
.contact .form input[type=email]::placeholder,
.contact .form select::placeholder,
.contact .form textarea::placeholder {
  color: var(--line-color);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.contact .form input[type=text],
.contact .form input[type=email],
.contact .form select,
.contact .form textarea {
  width: 100%;
}

.contact .form textarea {
  height: 120px;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.contact .form .select-box {
  position: relative;
  width: 250px;
  font-weight: 400;
}

.contact .form .select-box::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 8px solid var(--base-color);
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
  border-style: solid;
  content: "";
  pointer-events: none;
}

.contact .form__radio .databox {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px 62px;
}

.contact .form__radio label {
  cursor: pointer;
}

.contact .form__radio input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.contact .form__radio input[type=radio]:checked + span::after {
  opacity: 1;
}

.contact .form__radio input[type=radio] + span {
  position: relative;
  padding-left: 30px;
}

.contact .form__radio input[type=radio] + span::before,
.contact .form__radio input[type=radio] + span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  content: "";
}

.contact .form__radio input[type=radio] + span::before {
  left: 0;
  width: 20px;
  height: 20px;
  border: solid 1px var(--base-color);
}

.contact .form__radio input[type=radio] + span::after {
  left: 3px;
  width: 14px;
  height: 14px;
  background-color: var(--point-color);
  opacity: 0;
}

.contact .form__radio .is-error-inquiryType {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}

.contact .form__event input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact .form__preferred .datebox {
  width: 100%;
}

.contact .form__preferred .datebox_wrapper {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.contact .form__preferred_calendar {
  position: relative;
  width: 250px;
}

.contact .form__preferred_calendar::after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  background: url(/img/common/icon-calendar.svg) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.contact .form tr[data-wrapper=preferred02] td {
  position: relative;
}

.contact .form tr[data-wrapper=preferred02] .caution_txt {
  position: absolute;
  bottom: 13px;
  left: -170px;
  color: rgba(var(--base-color-rgb), 0.6);
  font-size: 1.2rem;
}

.contact .form .addressbox {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact .form .addressbox_top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.contact .form .addressbox_num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact .form .addressbox_text {
  width: 150px !important;
}

.contact .form .addressbox_prefecture {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact .form .addressbox_title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contact .privacy {
  max-width: 900px;
  margin: 40px auto 0;
}

.contact .privacy__wrap {
  height: 230px;
  padding: 20px;
  overflow-y: scroll;
  border: solid 1px var(--base-color);
  font-size: 1.3rem;
}

.contact .privacy__wrap::-webkit-scrollbar {
  width: 5px;
}

.contact .privacy__wrap::-webkit-scrollbar-track {
  border: none;
  background-color: #f2f2f2;
}

.contact .privacy__wrap::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

.contact .privacy__wrap .title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.4rem;
}

.contact .privacy__wrap .sub-title {
  margin: 10px 0 5px;
  font-weight: 700;
}

.contact .privacy__wrap .txt {
  padding-left: 10px;
}

.contact .privacy .privacyAgree {
  margin-top: 40px;
  font-size: 1.4rem;
  text-align: center;
}

.contact .privacy .privacyAgree input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact .privacy .privacyAgree input:checked + label::after {
  opacity: 1;
}

.contact .privacy .privacyAgree label {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
}

.contact .privacy .privacyAgree label::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  border: solid 1px var(--base-color);
  content: "";
}

.contact .privacy .privacyAgree label::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 6px;
  left: 2px;
  width: 10px;
  height: 6px;
  transform: rotate(-45deg);
  border-bottom: solid 2px var(--point-color);
  border-left: solid 2px var(--point-color);
  content: "";
  opacity: 0;
}

.contact .btn-area {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 30px;
}

.contact .btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  font-style: normal;
  font-weight: 500;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
  transition: var(--base-transition);
}

.contact .btn#submit,
.contact .btn.send {
  background-color: var(--point-color);
  color: #fff;
}

.contact .btn#reset,
.contact .btn.back {
  background-color: var(--bg02-color);
  color: var(--base-color);
}

.contact .tel .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 120px;
}

.contact .tel .c-title01 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contact .tel__wrap {
  padding: 20px 120px;
  border-left: solid 1px var(--line-color);
}

.contact .tel__wrap .txt {
  font-weight: 700;
  font-size: 2rem;
}

.contact .tel__btn_wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  gap: 10px;
}

.contact .tel__btn_wrap a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 370px;
  height: 70px;
  gap: 8px;
  border: solid 2px var(--point-color);
  background-color: #fff;
  color: var(--point-color);
  font-weight: 700;
  font-size: 3rem;
}

.contact .tel__btn_wrap a::before {
  width: 22px;
  height: 22px;
  background: url(/img/common/icon-tel.svg) no-repeat center center/contain;
  content: "";
}

.contact .tel__btn_wrap .sub-txt {
  font-size: 1.2rem;
}

.detail .news__detail {
  padding: 80px 0 140px;
}

.detail .news__detail_contents {
  margin-bottom: 60px;
  padding: 60px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
}

.detail .news__detail_contents .title_wrap {
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: solid 1px var(--line-color);
}

.detail .news__detail_contents .head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail .news__detail_contents .category {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-negative: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 90px;
  padding: 2px 10px;
  border: solid 1px var(--line-color);
  border-radius: 100px;
  color: rgba(var(--base-color-rgb), 0.6);
  font-weight: 500;
  font-size: 1rem;
}

.detail .news__detail_contents .date {
  font-size: 1.2rem;
}

.detail .news__detail_contents .title {
  margin-top: 14px;
  font-weight: 700;
  font-size: 3rem;
}

.detail .news__detail_contents .tag_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 13px;
  gap: 10px 20px;
}

.detail .news__detail_contents .tag_item {
  font-size: 1.2rem;
  opacity: 0.4;
}

.detail .news__detail_contents h2,
.detail .news__detail_contents h3,
.detail .news__detail_contents h4,
.detail .news__detail_contents h5,
.detail .news__detail_contents h6 {
  margin-bottom: 30px;
  font-weight: 700;
}

.detail .news__detail_contents h2 {
  font-size: 2.8rem;
}

.detail .news__detail_contents h3 {
  padding: 10px 20px;
  background-color: rgba(var(--base-color-rgb), 0.1);
  font-size: 2.4rem;
}

.detail .news__detail_contents h4 {
  position: relative;
  padding-left: 30px;
  font-size: 2rem;
}

.detail .news__detail_contents h4::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "■";
  font-weight: 700;
  font-size: 2rem;
}

.detail .news__detail_contents h5 {
  position: relative;
  padding-left: 25px;
  font-size: 1.8rem;
}

.detail .news__detail_contents h5::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "◇";
  font-weight: 700;
  font-size: 1.8rem;
}

.detail .news__detail_contents h6 {
  position: relative;
  padding-left: 20px;
  font-size: 1.6rem;
}

.detail .news__detail_contents h6::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "－";
  font-weight: 700;
  font-size: 1.6rem;
}

.detail .news__detail_contents p {
  margin-bottom: 40px;
}

.detail .news__detail_contents .wp-block-image {
  margin-bottom: 40px;
}

.detail .news__detail_contents .wp-block-image img {
  -o-object-fit: contain;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.detail .news__detail_contents .wp-block-table {
  width: 100%;
  margin-bottom: 40px;
  font-size: 1.6rem;
}

.detail .news__detail_contents .wp-block-table table {
  width: 100%;
  min-width: 600px;
}

.detail .news__detail_contents .wp-block-table tr td {
  padding: 15px 20px;
  border: solid 1px var(--line-color);
  vertical-align: middle;
}

.detail .news__detail_contents .wp-block-table tr td:first-of-type {
  width: 200px;
  background-color: var(--bg02-color);
}

.detail .news__detail_contents .wp-block-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail .news__detail_contents .wp-block-button__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  background-color: var(--point-color);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: var(--base-transition);
}

.detail .page-control-list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.detail .page-control-item.back {
  width: 280px;
  padding: 12px;
  border-right: solid 1px var(--line-color);
  border-left: solid 1px var(--line-color);
  text-align: center;
}

.detail .page-control-item.back .btn-back {
  display: inline-block;
}

.detail .page-control-item.prev a,
.detail .page-control-item.next a {
  position: relative;
}

.detail .page-control-item.prev a::before,
.detail .page-control-item.next a::before {
  -webkit-mask-image: url(/img/common/icon-arrow.svg);
  -webkit-mask-size: 16px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-transition: var(--base-transition);
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  mask-image: url(/img/common/icon-arrow.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 16px;
  transition: var(--base-transition);
}

.detail .page-control-item.prev a::after,
.detail .page-control-item.next a::after {
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  border: solid 1px var(--base-color);
  border-radius: 50%;
  background-color: transparent;
  content: "";
  transition: var(--base-transition);
}

.detail .page-control-item.prev a {
  padding-left: 48px;
}

.detail .page-control-item.prev a:before,
.detail .page-control-item.prev a::after {
  left: 0;
}

.detail .page-control-item.prev a::before {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.detail .page-control-item.next a {
  padding-right: 48px;
}

.detail .page-control-item.next a:before,
.detail .page-control-item.next a::after {
  right: 0;
}

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

/* reform
/* ------------------------------------- */

.reform .inner_under {
  max-width: 1140px;
}

.reform__copy {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-bottom: 106px;
  margin-inline: auto;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.8;
  text-align: center;
}

.reform__list {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 52px 25px;
}

.reform__item {
  -webkit-box-shadow: 0 10px 20px rgba(38, 93, 132, 0.1490196078);
  display: grid;
  box-shadow: 0 10px 20px rgba(38, 93, 132, 0.1490196078);
}

.reform__item a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  background-color: #fff;
}

.reform__item-head {
  aspect-ratio: 350/262;
  overflow: hidden;
}

.reform__item-head img {
  -o-object-fit: cover;
  -webkit-transition: var(--base-transition);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}

.reform__item-body {
  padding: 20px 15px 15px;
}

.reform__item-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.reform__item-title span {
  font-size: 1.4rem;
}

.reform__tag-list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.reform__tag-item {
  color: rgba(var(--base-color-rgb), 0.4);
  font-size: 1.2rem;
}

.reform__item-link {
  -webkit-transition: var(--base-transition);
  position: relative;
  width: 150px;
  margin: 26px 0 0 auto;
  padding-bottom: 6px;
  border-bottom: solid 1px var(--point-color);
  color: var(--point-color);
  font-weight: 700;
  font-size: 1.4rem;
  transition: var(--base-transition);
}

.reform__item-link .arrow {
  fill: var(--point-color);
  position: absolute;
  top: 3px;
  right: 0;
  width: 16px;
  height: 16px;
}

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

/* maker
/* ------------------------------------- */

.maker {
  background-color: var(--bg-color);
}

.maker .inner_under {
  max-width: 1140px;
}

.maker__list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.maker__item {
  width: calc(25% - 15px);
}

.maker__text {
  margin-top: 30px;
  text-align: right;
}

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

/* electric
/* ------------------------------------- */

.electric__title {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.8;
  text-align: center;
}

.electric__text {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-top: 40px;
  margin-inline: auto;
  font-size: 1.4rem;
  text-align: center;
}

.electric__text .strong {
  font-weight: 700;
}

.electric__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  gap: 40px;
}

.electric__wrap-image--left {
  position: relative;
  width: 53%;
  max-width: 580px;
  padding-right: 28px;
}

.electric__wrap-image--left::after {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 28px;
  height: 56px;
  transform: translateY(-50%);
  background-color: var(--bg02-color);
  content: "";
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.electric__wrap-image--right {
  width: 44%;
  max-width: 480px;
}

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

/* reason
/* ------------------------------------- */

.reason {
  padding: 130px 0 0;
  background-color: #fff;
}

.reason .inner_under {
  max-width: 1140px;
}

.reason__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.reason__item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.reason__info,
.reason__image {
  width: 50%;
}

.reason__info:not(.-reverse) {
  padding-left: max((100vw - 1100px) / 2, 20px);
}

.reason__info.-reverse {
  padding-left: 100px;
}

.reason__info-number {
  color: var(--point-color);
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.reason__info-title {
  margin-top: 20px;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4285714286;
}

.reason__info-title span {
  display: block;
  font-size: 2.2rem;
}

.reason__info-text {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
}

.reason__info-text span {
  display: block;
}

.reason__image {
  background-color: var(--gray-color);
}

.reason__image:has(.reason__image-text) {
  padding: 100px 28px;
}

.reason__image-text {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5555555556;
}

.reason__image-caption {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 2.3333333333;
  text-align: right;
}

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

/* solar-power works
/* ------------------------------------- */

.solar-power .works .btn {
  position: absolute;
  top: 16px;
  right: 20px;
}

.top__mv {
  width: 100%;
  height: 100dvh;
  max-height: max(52.778vw, 760px);
  padding: 0;
  background: url(/img/top/main-bg.jpg) no-repeat center center/cover;
}

.top__mv .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  align-items: center;
  max-width: 1300px;
  height: 100%;
}

.top__mv_wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top__mv_txt {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 6.6rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(var(--base-color-rgb), 0.25);
  text-transform: uppercase;
}

.top__mv_txt small {
  display: block;
  font-weight: 600;
  font-size: 5.3rem;
}

.top__mv_txt .vertical {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  position: absolute;
  top: 103px;
  left: 240px;
  font-size: 2.8rem;
  writing-mode: vertical-lr;
}

.top__mv_txt .txt {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 103px;
  left: 285px;
  flex-direction: column;
  gap: 4px;
  color: var(--base-color);
  font-style: normal;
  font-weight: 500;
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.top__mv_txt .inn span {
  display: inline-block;
  padding: 7px 10px;
  background-color: #fff;
  font-weight: 700;
  text-shadow: none;
  white-space: nowrap;
}

.top__mv_sub {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(var(--base-color-rgb), 0.25);
}

.top__mv .scroll {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 20px;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  writing-mode: vertical-lr;
}

.top__mv .scroll .line {
  position: relative;
  width: 1px;
  height: 60px;
  overflow: hidden;
}

.top__mv .scroll .line::after {
  -webkit-transform-origin: top center;
  -webkit-animation: scroll 2s ease-in-out infinite;
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: top center;
  background-color: #fff;
  content: "";
  animation: scroll 2s ease-in-out infinite;
}

.top__mv_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70.833vw;
  height: max(100% - 6.25vw, 100% - 90px);
}

.top__mv_img img {
  -o-object-fit: cover;
  -o-object-position: bottom left;
  height: 100%;
  object-fit: cover;
  object-position: bottom left;
}

.top__mv .fix-info {
  -webkit-transform: translateX(120%);
  -webkit-transition: 0.8s ease-out;
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  transform: translateX(120%);
  background-color: var(--dblue-color);
  transition: 0.8s ease-out;
}

.top__mv .fix-info .icon {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -54px;
  left: -54px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 109px;
  height: 109px;
  background: url(/img/top/icon-event.png) no-repeat center center/contain;
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
}

.top__mv .fix-info .icon small {
  font-weight: 700;
  font-size: 1.6rem;
}

.top__mv .fix-info__title {
  padding: 9px;
  background-color: #005DA0;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}

.top__mv .fix-info .js-info-close {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--point-color);
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}

.top__mv .fix-info .thumb {
  padding: 20px;
}

.top__mv .fix-info .btn {
  position: relative;
  width: 100%;
  padding: 12px;
  background-color: var(--yellow-color);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
}

.top__mv .fix-info .btn::after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.top .news .inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: min(12.153vw, 175px);
}

.top .news__category {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.top .news__category_list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.top .news .category_btn {
  width: auto;
  padding: 7px 20px;
  border: solid 1px var(--line-color);
  border-radius: 100px;
  font-size: 1.2rem;
}

.top .news .category_btn.active {
  border: solid 1px var(--base-color);
  background-color: var(--base-color);
  color: #fff;
}

.top .news__list_wrap {
  width: 100%;
  max-width: 800px;
  margin: 1px;
}

.top .news__item {
  margin: -1px 0;
}

.top .news__item a {
  padding: 15px 0;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.top .news__item .date {
  display: inline-block;
  padding-right: 15px;
  font-size: 1.2rem;
}

.top .news__item .category {
  display: inline-block;
  width: 90px;
  padding: 2px 5px;
  border: solid 1px var(--line-color);
  border-radius: 100px;
  color: rgba(var(--base-color-rgb), 0.6);
  font-size: 1rem;
  text-align: center;
}

.top .news__item .title {
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.4rem;
}

.top .news__tag_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px 20px;
}

.top .news__tag_list li {
  color: rgba(var(--base-color-rgb), 0.4);
  font-size: 1.2rem;
}

.top .news .btn {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  margin: 30px 0 0;
}

.top .service__title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top .service__title .txt {
  font-weight: 700;
  font-size: 2rem;
}

.top .service__point_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 64px;
  gap: 20px;
}

.top .service__point_item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-direction: column;
  width: calc(20% - 16px);
  padding: 35px 10px 20px;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}

.top .service__point_item .num {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(var(--base-color-rgb), 0.4);
  font-weight: 700;
  font-size: 1.4rem;
}

.top .service__point_item .icon {
  width: 78px;
  height: 78px;
  margin: 0 auto;
}

.top .service__point_item .title {
  font-weight: 700;
  font-size: 2rem;
}

.top .service__point_item .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  font-size: 1.2rem;
}

.top .service__main_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  gap: 25px;
}

.top .service__main_item {
  -webkit-box-shadow: 0 10px 20px rgba(38, 93, 132, 0.1490196078);
  width: calc(33.3333333333% - 16px);
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(38, 93, 132, 0.1490196078);
}

.top .service__main_item a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
}

.top .service__main_item .thumb {
  aspect-ratio: 350/262;
  overflow: hidden;
}

.top .service__main_item .thumb img {
  -o-object-fit: cover;
  -webkit-transition: var(--base-transition);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}

.top .service__main_item .wrap {
  padding: 24px 20px 10px;
}

.top .service__main_item .title {
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 2rem;
}

.top .service__main_item .txt {
  font-size: 1.4rem;
}

.top .service__main_item .btn {
  -webkit-transition: var(--base-transition);
  position: relative;
  width: 150px;
  margin: auto 20px 0 auto;
  padding-bottom: 6px;
  border-bottom: solid 1px var(--point-color);
  color: var(--point-color);
  font-weight: 700;
  font-size: 1.4rem;
  transition: var(--base-transition);
}

.top .service__main_item .btn .arrow {
  fill: var(--point-color);
  position: absolute;
  top: 3px;
  right: 0;
  width: 16px;
  height: 16px;
}

.top .company {
  padding-bottom: 8.333vw;
  background: url(/img/top/bg-company.jpg) no-repeat center center/cover;
}

.top .company .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  gap: 120px;
}

.top .company__txt {
  color: #fff;
}

.top .company__txt .txt {
  font-size: 1.4rem;
}

.top .company__txt .btn {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}

.top .company__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 414px;
}

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

  .c-mv__breadcrumb {
    position: absolute;
    right: 15px;
    bottom: 20px;
  }

  .c-table th {
    width: 200px;
  }

  .notfound__wrap {
    padding: 60px;
    background-color: rgba(255, 255, 255, 0.5);
  }

  .header__nav_contact .tel__link {
    pointer-events: none;
  }

  .footer__contact_item.tel {
    pointer-events: none;
  }

  .footer__nav_list li + li {
    padding-left: 20px;
    border-left: solid 1px #fff;
  }

  .fix-bottom {
    display: none;
  }

  .archive .news__contents {
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.6);
  }

  .company .access .wrap dt {
    padding-right: 12px;
  }

  .company .access .wrap dt::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 90%;
    margin: auto;
    background-color: var(--base-color);
    content: "";
  }

  .company .staff .js-staff-swiper .swiper-wrapper {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 25px;
  }

  .company .staff .js-staff-swiper .swiper-slide {
    width: calc(25% - 19px);
    padding-bottom: 40px;
    border-bottom: solid 1px var(--line-color);
  }

  .company .staff .js-staff-swiper .swiper-pagination,
  .company .staff .js-staff-swiper .swiper-button {
    display: none;
  }

  .contact .form__intro {
    text-align: center;
  }

  .contact .form_area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.6);
  }

  .contact .form tr[data-wrapper=preferred02] th,
  .contact .form tr[data-wrapper=preferred02] td {
    padding-bottom: 70px;
  }

  .contact .tel__wrap .txt {
    text-align: center;
  }

  .contact .tel__btn_wrap a {
    pointer-events: none;
  }

  .top .news {
    padding-left: 120px 0;
  }

  .top .service .c-title01 {
    margin-bottom: 0;
  }

  .top .works .btn {
    position: absolute;
    top: 16px;
    right: 20px;
  }

  .top .company {
    padding-top: 140px;
  }
}

@media screen and (min-width: 1024px) {
  .tabMin {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .tabMax {
    display: none !important;
  }

  .c-merit__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-merit__list {
    width: 100vw;
    margin: 40px calc(50% - 50vw + 20px) 0;
    padding: 0 40px 20px 10px;
  }

  .c-merit__item {
    width: 100%;
    min-width: 207px;
    padding-top: 42px;
  }

  .c-merit__item-number {
    font-size: 3rem;
  }

  .c-merit__item-icon {
    max-width: 90px;
  }

  .c-merit__item-text {
    margin-top: 20px;
  }

  .c-flow__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-flow__list {
    margin-top: 40px;
  }

  .c-flow__item-title {
    font-size: 1.8rem;
  }

  .header {
    height: 60px;
  }

  .header__inner {
    padding: 0 0 0 20px;
  }

  .header__logo a {
    width: 186px;
    gap: 2px;
  }

  .header__logo_txt {
    font-size: 0.8rem;
  }

  .header .js-toggle-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__nav_pc,
  .header__nav_list,
  .header__nav_contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
  }

  .header__nav_pc {
    display: none;
  }

  .header__nav_sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    flex-direction: column;
    width: 100%;
    height: calc(100dvh - 60px);
    padding: 20px 20px 100px;
    overflow-y: scroll;
  }

  .header__nav_sp.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__nav_list {
    gap: 0;
    border-bottom: solid 1px #718091;
    font-size: 1.4rem;
  }

  .header__nav_list li {
    width: 100%;
  }

  .header__nav_list a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
    border-top: solid 1px #718091;
  }

  .header__nav_list a::before {
    content: none;
  }

  .header__nav_list a::after {
    width: 16px;
    height: 4px;
    background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
    content: "";
  }

  .header__nav_contact {
    margin-top: 25px;
    gap: 10px;
  }

  .header__nav_contact .tel {
    width: 100%;
  }

  .header__nav_contact .tel__link {
    width: 100%;
    height: 90px;
    background-color: #F9FAFC;
  }

  .header__nav_contact .tel__title {
    font-size: 1.4rem;
  }

  .header__nav_contact .tel__number {
    gap: 4px;
    font-size: 2rem;
  }

  .header__nav_contact .tel__number::before {
    width: 16px;
    height: 16px;
  }

  .header__nav_contact .tel__txt {
    font-size: 1rem;
  }

  .header__nav_contact .form,
  .header__nav_contact .event {
    width: 100%;
  }

  .header__nav_contact .form__link,
  .header__nav_contact .event__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 60px;
    gap: 10px;
    font-size: 1.6rem;
  }

  .footer__contact_list {
    gap: 20px;
  }

  .footer__contact_item {
    width: calc(33.3333333333% - 10px);
  }

  .footer__contact_item.form,
  .footer__contact_item.event {
    gap: 10px;
    font-size: 1.4rem;
  }

  .footer__logo {
    width: 186px;
    gap: 2px;
  }

  .footer__logo .sub {
    font-size: 0.8rem;
  }

  .footer__logo .logo {
    width: 186px;
  }

  .footer__nav_list a {
    font-size: 1.2rem;
  }

  .company .greeting__wrapper {
    gap: 40px;
  }

  .company .greeting__title {
    width: 300px;
  }

  .company .greeting__title .copy {
    font-size: 3.6rem;
  }

  .company .greeting .txt {
    padding: 10px 0 14px 30px;
  }

  .company .showroom__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .company .showroom__img {
    gap: 0;
  }

  .company .showroom__img_top {
    height: 335px;
  }

  .company .showroom__img_bottom {
    gap: 0;
  }

  .company .showroom__img_bottom img {
    width: 33.3333333333%;
  }

  .contact .tel .inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
  }

  .contact .tel__wrap {
    padding: 20px 0 20px 50px;
  }

  .reason__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .reason__item:not(:first-child) {
    margin-top: 60px;
  }

  .reason__item:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .reason__info,
  .reason__image {
    width: 100%;
  }

  .reason__info:not(.-reverse) {
    padding: 0 20px;
  }

  .reason__info.-reverse {
    padding: 0 20px;
  }

  .reason__info-text br {
    display: none;
  }

  .reason__image {
    margin-top: 40px;
  }

  .top__mv_img {
    height: calc(100% - 60px);
  }

  .top__mv .fix-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: -60px;
    flex-direction: row-reverse;
    width: 300px;
    padding: 10px;
    gap: 12px;
  }

  .top__mv .fix-info .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 15px;
  }

  .top__mv .fix-info .icon {
    top: -35px;
    left: -35px;
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .top__mv .fix-info .icon small {
    font-size: 1rem;
  }

  .top__mv .fix-info__title {
    padding: 0;
    background-color: transparent;
    font-size: 1.6rem;
    text-align: left;
  }

  .top__mv .fix-info .thumb {
    width: 104px;
    padding: 0;
  }

  .top__mv .fix-info .btn {
    width: 165px;
    padding: 7px;
    font-size: 1rem;
  }

  .top__mv .fix-info .btn::after {
    right: 10px;
    width: 10px;
    height: 10px;
  }

  .top .service__title .txt {
    font-size: 1.4rem;
  }

  .top .service__point_list {
    padding-bottom: 20px;
    overflow-x: scroll;
  }

  .top .service__point_list::-webkit-scrollbar {
    height: 8px;
  }

  .top .service__point_list::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: rgba(var(--base-color-rgb), 0.15);
  }

  .top .service__point_item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 204px;
  }

  .top .company .inner {
    gap: 40px;
  }

  .top .company__img {
    width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  body {
    font-size: 1.4rem;
  }

  body::after {
    background: url(/img/common/sp/bg.jpg) no-repeat center center/cover;
  }

  .body-wrapper {
    min-height: calc(100vh - 789.31px);
    min-height: calc(100dvh - 789.31px);
  }

  section {
    padding: 80px 0;
  }

  .c-logo-wrap {
    width: 110px;
  }

  .c-logo-wrap .txt {
    font-size: 0.69rem;
  }

  .c-mv {
    height: 290px;
    background: url(/img/common/sp/mv-bg.jpg) no-repeat center center/cover;
  }

  .c-mv .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 20px;
    gap: 40px;
  }

  .c-mv__title {
    gap: 5px;
  }

  .c-mv__title .en {
    font-size: 4.5rem;
  }

  .c-mv__title .ja {
    font-size: 1.6rem;
  }

  .c-mv__breadcrumb {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .c-mv__breadcrumb ol {
    padding: 0 20px 10px;
    overflow-x: scroll;
  }

  .c-intro__title {
    inline-size: -webkit-fit-content;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    margin-inline: auto;
    font-size: 2.2rem;
    line-height: 1.8181818182;
    text-align: left;
  }

  .c-intro__text {
    inline-size: -webkit-fit-content;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    margin-top: 40px;
    margin-inline: auto;
    text-align: left;
  }

  .c-intro__text br.pc {
    display: none;
  }

  .c-intro__figure--solar-power {
    margin: 40px auto 0;
  }

  .c-intro__figure--battery {
    width: 100vw;
    margin: 40px calc(50% - 50vw) 0;
  }

  .c-intro__figure--battery img {
    min-width: 720px;
    padding: 0 20px;
  }

  .c-intro__figure-caption {
    margin-bottom: 30px;
    padding: 0 20px;
    font-size: 2.2rem;
  }

  .c-intro__figure-text {
    padding: 0 20px;
  }

  .c-intro__box {
    padding: 30px 20px;
  }

  .c-intro__box-title {
    font-size: 1.8rem;
  }

  .c-intro__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    flex-direction: column;
    align-items: end;
    margin-top: 40px;
    gap: 15px;
  }

  .c-intro__wrap {
    display: block;
    max-width: 100%;
    margin-top: 20px;
  }

  .c-intro__column {
    display: block;
    padding: 40px 20px;
  }

  .c-intro__column:nth-child(2) {
    margin-top: 25px;
  }

  .c-intro__column-title {
    font-size: 1.8rem;
  }

  .c-merit__head-text {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }

  .c-flow__head-text {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }

  .c-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .c-flow__item {
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 30px 20px;
  }

  .c-flow__item::after {
    position: absolute;
    bottom: -19px;
    left: 20px;
    width: 0;
    height: 0;
    border-top: 20px solid #fff;
    border-right: 20px solid transparent;
    border-bottom: 0;
    border-left: 20px solid transparent;
    border-style: solid;
    content: "";
  }

  .c-flow__item-title:has(.c-flow__item-label) {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .c-flow__item-text br {
    display: none;
  }

  .c-faq__tab-list {
    gap: 5px;
  }

  .c-faq__tab-item {
    width: calc(50% - 2.5px);
  }

  .c-faq__tab-link {
    padding: 27px 0;
    font-size: 1.6rem;
  }

  .c-faq__list {
    margin-top: 30px;
  }

  .c-faq__question {
    display: block;
    position: relative;
    padding-right: 40px;
    font-size: 1.6rem;
  }

  .c-faq__question-head {
    margin-right: 0;
    font-size: 1.8rem;
  }

  .c-faq__question-toggle {
    -webkit-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .c-faq__answer {
    font-size: 1.4rem;
  }

  .c-title01 {
    margin-bottom: 40px;
  }

  .c-title01 .en {
    font-size: 4rem;
  }

  .c-title01 .ja {
    font-size: 1.4rem;
  }

  .c-title01__under {
    margin-bottom: 35px;
  }

  .c-title01__under .en {
    font-size: 3.8rem;
  }

  .c-table th,
  .c-table td {
    display: block;
    width: 100%;
  }

  .c-table th {
    padding: 22px 0 0px;
    border: none;
  }

  .c-table td {
    padding: 0 0 22px;
  }

  .c-map {
    height: 375px;
  }

  .js-slide-txt .en {
    font-size: 9.2rem;
  }

  .js-works-swiper .swiper-slide {
    padding: 0 20px;
  }

  .js-works-swiper .swiper-pagination {
    display: block;
    bottom: -46px;
    left: 20px;
    text-align: left;
  }

  .notfound {
    background-color: rgba(255, 255, 255, 0.5);
  }

  .footer {
    padding-bottom: 60px;
  }

  .footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer__logo_wrap {
    gap: 30px;
  }

  .footer__logo {
    width: 231px;
  }

  .footer__logo .sub {
    font-size: 1rem;
  }

  .footer__logo .logo {
    width: 231px;
  }

  .footer__address {
    text-align: center;
  }

  .footer__nav_wrap {
    width: 100%;
    gap: 0;
  }

  .footer__nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: solid 1px #718091;
  }

  .footer__nav_list + .footer__nav_list {
    margin-top: -1px;
  }

  .footer__nav_list li {
    width: 100%;
  }

  .footer__nav_list a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 22px 10px;
    border-top: solid 1px #718091;
    font-size: 1.4rem;
  }

  .footer__nav_list a::after {
    -webkit-mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
    width: 16px;
    height: 16px;
    background-color: #fff;
    content: "";
    mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  }

  .archive .news {
    background-color: rgba(255, 255, 255, 0.6);
  }

  .archive .news__category_btn {
    padding: 7px 24px;
  }

  .archive .news__contents {
    margin-top: 30px;
  }

  .archive .news__item a {
    padding: 15px 0;
  }

  .archive .news .pager {
    margin-top: 40px;
  }

  .types {
    padding: 80px 0 0;
  }

  .types__container:nth-of-type(2) {
    margin-top: 80px;
  }

  .types__title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .types__figure {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin: 40px auto 0;
  }

  .types__figure img {
    min-width: 600px;
  }

  .types__button {
    margin: 30px auto 0;
  }

  .types__box {
    margin: 40px auto 0;
    padding: 30px 20px;
  }

  .types__box-title {
    font-size: 1.6rem;
  }

  .types__box-note {
    font-size: 1rem;
  }

  .eco-cute__title {
    font-size: 2.2rem;
    text-align: left;
  }

  .eco-cute__text {
    text-align: left;
  }

  .eco-cute__text br.pc {
    display: none;
  }

  .eco-cute__box {
    padding: 40px 20px;
  }

  .eco-cute__box-title {
    font-size: 1.8rem;
  }

  .eco-cute__box-title br.sp {
    display: block;
  }

  .eco-cute__box-wrap--first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .eco-cute__box-wrap--second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .eco-cute__box-image--first {
    width: 100%;
    max-width: 100%;
  }

  .eco-cute__box-image--second {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    padding-bottom: 10px;
  }

  .eco-cute__box-image--second img {
    min-width: 600px;
  }

  .eco-cute__box-image--third {
    width: 100%;
    max-width: 100%;
  }

  .eco-cute__box-image--fourth {
    width: 100%;
    max-width: 100%;
  }

  .battery .works .btn {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    justify-content: flex-end;
    margin-top: 80px;
  }

  .company .greeting__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 14px 0 0 20px;
    border-left: solid 1px var(--line-color);
  }

  .company .greeting__title {
    width: 100%;
  }

  .company .greeting__title .copy {
    margin-bottom: 20px;
    font-size: 3rem;
  }

  .company .greeting .txt {
    padding: 0;
    border: none;
  }

  .company .access .c-map {
    height: 334px;
  }

  .company .access__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
  }

  .company .access .wrap {
    width: 100%;
  }

  .company .access .wrap__title {
    padding: 13px 16px;
    font-weight: 700;
  }

  .company .access .wrap__txt {
    padding: 20px 16px;
  }

  .company .access .wrap dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0px;
  }

  .company .staff {
    padding-bottom: 140px;
  }

  .company .staff .js-staff-swiper .swiper-slide {
    padding: 0 20px;
  }

  .company .staff .js-staff-swiper .swiper-pagination {
    bottom: -46px;
    left: 20px;
    text-align: left;
  }

  .company .staff .js-staff-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 5px !important;
    background-color: var(--base-color);
  }

  .company .staff .js-staff-swiper .swiper-button {
    right: 0;
    width: 60px;
    height: 60px;
    border: solid 1px var(--base-color);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
  }

  .company .staff .js-staff-swiper .swiper-button::after {
    width: 16px;
    height: 16px;
    background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
    content: "";
  }

  .company .staff .js-staff-swiper .swiper-button-prev {
    right: inherit;
    left: 0;
  }

  .company .staff .js-staff-swiper .swiper-button-prev::after {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }

  .company .staff .js-staff-swiper .swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
  }

  .contact .form {
    background-color: rgba(255, 255, 255, 0.6);
  }

  .contact .form__intro {
    padding: 20px;
  }

  .contact .form_area.thanks .title {
    margin-bottom: 25px;
    font-size: 2rem;
  }

  .contact .form th,
  .contact .form td {
    display: block;
    width: 100% !important;
    height: auto;
  }

  .contact .form th {
    padding: 30px 0 10px;
  }

  .contact .form td {
    padding: 10px 0 30px;
    border-top: none;
  }

  .contact .form input[type=text],
  .contact .form input[type=email],
  .contact .form select,
  .contact .form textarea {
    padding: 0 20px;
  }

  .contact .form textarea {
    height: 200px;
  }

  .contact .form__radio .databox {
    gap: 40px;
  }

  .contact .form tr[data-wrapper=preferred02] td {
    padding-bottom: 10px;
  }

  .contact .form tr[data-wrapper=preferred02] .caution_txt {
    position: relative;
    bottom: inherit;
    left: inherit;
    width: 100%;
    margin-top: 10px;
    font-size: 1rem;
  }

  .contact .form .addressbox_text {
    width: 100% !important;
  }

  .contact .privacy .privacyAgree {
    margin-top: 20px;
  }

  .contact .btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .contact .tel .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .contact .tel__wrap {
    width: 100%;
    padding: 0;
    border-left: none;
  }

  .contact .tel__wrap .txt {
    font-size: 1.8rem;
  }

  .contact .tel__btn_wrap {
    margin-top: 30px;
  }

  .detail .news__detail_contents {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 60px;
    padding: 0 20px 60px;
  }

  .detail .news__detail_contents .title {
    font-size: 2.4rem;
  }

  .detail .news__detail_contents h2 {
    font-size: 2.4rem;
  }

  .detail .news__detail_contents h3 {
    font-size: 2.2rem;
  }

  .detail .news__detail_contents .wp-block-table {
    overflow-x: scroll;
  }

  .detail .page-control {
    max-width: 335px;
    margin: 0 auto;
  }

  .detail .page-control-list {
    display: grid;
    grid-template-rows: -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content;
    grid-template-columns: 50% 50%;
    grid-template-areas: "prev next" "back back";
    gap: 30px 0px;
  }

  .detail .page-control-item.back {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    grid-area: back;
    order: 3;
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
    border: solid 1px var(--base-color);
    background-color: #fff;
  }

  .detail .page-control-item.prev a::after,
  .detail .page-control-item.next a::after {
    background-color: #fff;
  }

  .detail .page-control-item.prev {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-area: prev;
    align-items: center;
    order: 1;
    height: 40px;
    border-right: solid 1px var(--line-color);
  }

  .detail .page-control-item.next {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-area: next;
    align-items: center;
    justify-content: flex-end;
    order: 2;
    height: 40px;
    margin-left: -1px;
    border-left: solid 1px var(--line-color);
  }

  .reform__copy {
    margin-bottom: 80px;
    font-size: 2.2rem;
    line-height: 1.8181818182;
    text-align: left;
  }

  .reform__list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
  }

  .reform__item-title {
    font-size: 1.8rem;
  }

  .reform__tag-list {
    margin-top: 10px;
  }

  .maker__list {
    gap: 10px;
  }

  .maker__item {
    width: calc(50% - 5px);
  }

  .maker__text {
    margin-top: 20px;
    font-size: 1rem;
  }

  .electric__title {
    font-size: 2.2rem;
    text-align: left;
  }

  .electric__text {
    text-align: left;
  }

  .electric__text br {
    display: none;
  }

  .electric__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
  }

  .electric__wrap-image--left {
    width: 100%;
    max-width: 100%;
    padding: 0 0 28px;
  }

  .electric__wrap-image--left::after {
    -webkit-transform: translateX(-50%);
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: initial;
    bottom: 0;
    left: 50%;
    width: 56px;
    height: 28px;
    transform: translateX(-50%);
    background-color: var(--bg02-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }

  .electric__wrap-image--right {
    width: 100%;
    max-width: 100%;
  }

  .reason {
    padding: 80px 0 0;
  }

  .reason__info-number {
    font-size: 1.4rem;
  }

  .reason__info-title {
    font-size: 2rem;
  }

  .reason__info-title span {
    font-size: 1.8rem;
  }

  .reason__info-text {
    margin-top: 20px;
  }

  .reason__image:has(.reason__image-text) {
    padding: 47px 20px;
  }

  .reason__image-text {
    margin-bottom: 16px;
    font-size: 1.4rem;
  }

  .reason__image-caption {
    font-size: 1rem;
  }

  .solar-power .works .btn {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    justify-content: flex-end;
    margin-top: 80px;
  }

  .top__mv {
    height: 100vh;
    max-height: 667px;
    background: url(/img/top/sp/main-bg.jpg) no-repeat center center/cover;
  }

  .top__mv .inner {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 94px 0 0 20px;
  }

  .top__mv_wrap {
    gap: 10px;
  }

  .top__mv_txt {
    font-size: 4.4rem;
    letter-spacing: 0;
  }

  .top__mv_txt small {
    font-size: 3.5rem;
  }

  .top__mv_txt .vertical {
    top: 72px;
    left: 154px;
    font-size: 1.8rem;
  }

  .top__mv_txt .txt {
    top: 68px;
    left: 185px;
    font-size: 1.2rem;
  }

  .top__mv_txt .inn span {
    padding: 4px 6px;
  }

  .top__mv_img {
    height: 376px;
  }

  .top .news .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .top .news__category_list {
    -ms-flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .top .service__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .top .service__title .txt {
    font-size: 1.8rem;
  }

  .top .service__point_list {
    width: 100vw;
    margin: 40px calc(50% - 50vw + 20px) 0;
    padding: 0 40px 20px 0;
  }

  .top .service__main_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 60px;
  }

  .top .service__main_item {
    width: 100%;
  }

  .top .service__main_item .title {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }

  .top .works .btn {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    margin-top: 80px;
  }

  .top .company {
    padding-bottom: 100px;
  }

  .top .company__txt .btn {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .top .company__img {
    width: 100%;
    margin: 0 auto 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .company .staff .js-staff-swiper .swiper-slide {
    width: calc(33.3333333333% - 19px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-mv__breadcrumb a:hover {
    text-decoration: underline;
  }

  .c-btn01:hover .arrow {
    background-color: #fff;
  }

  .c-btn01:hover svg {
    fill: var(--point-color);
  }

  .c-btn02:hover {
    background-color: #fff;
    color: var(--point-color);
  }

  .c-btn02:hover::after {
    background-color: var(--point-color);
  }

  .header__nav_list a:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  .header__nav_contact .form__link:hover {
    background-color: #7ACFF3;
  }

  .header__nav_contact .event__link:hover {
    background-color: var(--yellow-color);
  }

  .footer__contact_item.form:hover {
    background-color: var(--lblue-color);
  }

  .footer__contact_item.event:hover {
    background-color: var(--yellow-color);
  }

  .footer__nav_list a:hover {
    text-decoration: underline;
  }

  .archive .news__category_btn:hover {
    background-color: var(--bg-color);
  }

  .archive .news__item a:hover {
    background-color: var(--bg-color);
  }

  .types__link:hover {
    -webkit-transition: background-color 0.2s;
    background-color: var(--yellow-color);
    transition: background-color 0.2s;
  }

  .contact .btn#submit:hover,
  .contact .btn.send:hover {
    background-color: var(--yellow-color);
  }

  .contact .btn#reset:hover,
  .contact .btn.back:hover {
    background-color: #ccc;
  }

  .detail .news__detail_contents .wp-block-button__link:hover {
    background-color: var(--yellow-color);
  }

  .detail .page-control-item.prev a:hover::before,
  .detail .page-control-item.next a:hover::before {
    background-color: #fff;
  }

  .detail .page-control-item.prev a:hover::after,
  .detail .page-control-item.next a:hover::after {
    background-color: var(--base-color);
  }

  .reform__item a:hover .reform__item-head img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .reform__item a:hover .reform__item-link {
    opacity: 0.6;
  }

  .top .news__item a:hover {
    background-color: var(--bg-color);
  }

  .top .service__main_item a:hover .thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .top .service__main_item a:hover .btn {
    opacity: 0.6;
  }
}
/*# sourceMappingURL=style.css.map */
