@charset "UTF-8";
/*==settings========================*/
/*-----font-----*/
/*-----color-----*/
/*-----margin-----*/
/*-----mixin-----*/
/*==================================*/
::-moz-selection {
  background: rgba(5, 137, 196, 0.8);
  color: #000;
}
::selection {
  background: rgba(5, 137, 196, 0.8);
  color: #000;
}

main p, main ul, main ol {
  margin: 0;
}
main p + main p, main p + main ul, main p + main ol, main ul + main p, main ul + main ul, main ul + main ol, main ol + main p, main ol + main ul, main ol + main ol {
  margin-top: 1lh;
}

/*-----Animation-----*/
@-webkit-keyframes fadeInUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-loadAnime,
.js-scrollAnime-fadeInUp {
  opacity: 0;
}
.js-loadAnime.is-animated,
.js-scrollAnime-fadeInUp.is-animated {
  -webkit-animation-name: fadeInUpAnime;
          animation-name: fadeInUpAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

.js-loadAnime {
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

/*-----Layout-----*/
.l-main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  color: #000;
}
.l-main__section {
  padding: 100px 0;
}
.l-main__section:not(.--not-down):not(:has(+ .l-main__section--cta)):not(:last-child) {
  position: relative;
  z-index: 1;
}
.l-main__section:not(.--not-down):not(:has(+ .l-main__section--cta)):not(:last-child)::after {
  content: "";
  width: 76px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  background: #FFF;
  position: absolute;
  bottom: -30px;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.l-main__section:not(.u-bg--lightgray):not(.u-bg--blue) + .l-main__section:not(.u-bg--lightgray):not(.u-bg--blue) {
  padding-top: 0;
}
.l-main__section.u-bg--lightgray, .l-main__section.u-bg--blue {
  width: min(100%, 1280px);
  padding: 80px 0;
  margin: 0 auto;
  border: 17px solid #FFF;
  border-radius: 32px;
}
.l-main__section.u-bg--lightgray:not(.--not-down):not(:has(+ .l-main__section--cta)):not(:last-child)::after {
  background-color: #F4F5F9;
}
.l-main__section.u-bg--blue:not(.--not-down):not(:has(+ .l-main__section--cta)):not(:last-child)::after {
  background-color: #0071AB;
}
.l-main__section--cta {
  padding: 70px 0 80px;
}

.l-inner {
  width: min(100% - 17px * 2, 1084px);
  margin: 0 auto;
}

/*-----Component-----*/
.c-heading {
  padding: 0;
  margin: 0;
  background: none;
  font-size: clamp(26px, 2.65625vw, 34px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5294117647;
  text-align: center;
}
.c-heading:not(:last-child) {
  margin-bottom: 46px;
}

.c-title-en-ja {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5384615385;
  color: #0071AB;
}
.c-title-en-ja::before {
  content: attr(data-en);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1.2777777778em;
  margin: 0 auto 6px;
  background: url(../images/8828_icon_h2.svg) left center no-repeat;
  background-size: 0.8333333333em auto;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6923076923em;
  letter-spacing: 0;
  line-height: 1;
  color: #000;
}

.c-heading-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  background: none;
  text-align: center;
}
.c-heading-group:not(:last-child) {
  margin-bottom: 60px;
}
.c-heading-group:not(:last-child):has(+ .c-summary) {
  margin-bottom: 46px;
}

.c-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  width: min(100%, 522px);
  padding: 25px 38px;
  border-radius: 3em;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
  color: #FFF;
  position: relative;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  text-decoration: none;
}
.c-btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
.c-btn::before, .c-btn::after {
  content: "";
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 3em;
  background: #FFF;
  position: absolute;
  top: 50%;
  right: 26px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.c-btn::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-mask: url(../images/8828_arrow_more.svg) center no-repeat;
          mask: url(../images/8828_arrow_more.svg) center no-repeat;
  -webkit-mask-size: 17px auto;
          mask-size: 17px auto;
  z-index: 2;
}
.c-btn.--mono {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #4A4747;
  text-align: center;
}
.c-btn.--mono::before {
  background: #4A4747;
}
.c-btn.--dl {
  background: -webkit-gradient(linear, left top, right top, from(#00AFDD), to(#E74291));
  background: linear-gradient(to right, #00AFDD 0%, #E74291 100%);
}
.c-btn.--dl::before {
  background: #E74291;
}
.c-btn__img {
  width: 116px;
  aspect-ratio: 116/65;
  -webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.16));
}
.c-btn__text {
  position: relative;
}

.c-list-circle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}
.c-list-circle > li {
  padding-left: 1.5em;
  position: relative;
}
.c-list-circle > li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}
.c-list-circle > li:not(:last-child) {
  margin-bottom: 0.5em;
}

.c-summary {
  font-weight: 600;
  text-align: center;
}
.c-summary:not(:last-child) {
  margin-bottom: 46px;
}

.p-mv {
  width: min(100%, 1280px);
  padding: 40px 0 39px;
  margin: 0 auto;
  border: 17px solid #FFF;
  border-bottom: none;
  border-radius: 37px;
  background: -webkit-gradient(linear, left top, right top, from(#00AFDD), to(#E74291));
  background: linear-gradient(to right, #00AFDD 0%, #E74291 100%);
  overflow: hidden;
}
.p-mv__contents {
  display: grid;
  grid-template-columns: min(50%, 536px) 1fr;
  gap: 31px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100% - 17px * 2, 1084px);
  margin: 0 auto 27px;
  position: relative;
}
.p-mv__slider {
  width: min(100%, 1288px);
  padding-bottom: 5px;
  margin: 0 auto;
  overflow: hidden;
}

.c-mv-left {
  font-size: min(18px, 1.40625vw);
  color: #FFF;
}
.c-mv-left__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 6px 0.5em 7px;
  margin-bottom: 1.5555555556em;
  border: 1px solid #FFF;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.7777777778;
}
.c-mv-left__h1 { margin: 0; }
.c-mv-left__logo {
  display: block;
  width: 100%;
  margin: 0 0 1.6666666667em;
}
.c-mv-left__summary {
  display: block;
  margin-bottom: 1.7391304348em;
  font-size: min(1.2777777778em, 22px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6956521739;
}
.c-mv-left__img {
  display: none;
}
.c-mv-left__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.c-mv-left__btns .c-btn {
  padding: 19px 12px 19px 29px;
  font-size: clamp(12px, 1.25vw, 16px);
}
.c-mv-left__btns .c-btn::before, .c-mv-left__btns .c-btn::after {
  width: 26px;
  right: 12px;
}
.c-mv-left__btns .c-btn::before {
  -webkit-mask-size: 10px auto;
          mask-size: 10px auto;
}
.c-mv-left__btns .c-btn.--dl {
  background: -webkit-gradient(linear, left top, right top, from(#4C8ABF), to(#E74291));
  background: linear-gradient(to right, #4C8ABF 0%, #E74291 100%);
}
.c-mv-left__btns .c-btn.--mono {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-mv-img {
  width: min(119%, 614px);
}

.c-slide-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: loop-slide var(--loop-duration, 10s) linear infinite;
          animation: loop-slide var(--loop-duration, 10s) linear infinite;
}

@-webkit-keyframes loop-slide {
  to {
    -webkit-transform: translateX(var(--loop-distance));
            transform: translateX(var(--loop-distance));
  }
}

@keyframes loop-slide {
  to {
    -webkit-transform: translateX(var(--loop-distance));
            transform: translateX(var(--loop-distance));
  }
}
.c-merit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.c-merit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 178px;
  aspect-ratio: 1/1;
  padding: 39px 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  -webkit-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.16);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.7142857143;
  color: #FFF;
  text-align: center;
}
.c-merit__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px;
  margin: 0 auto 17px;
  border-radius: 3em;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.c-merit__label::after {
  content: "";
  inset: 0;
  border-radius: 3em;
  background: #000;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
  opacity: 0.35;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-merit__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-issue-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.c-issue-list__item {
  width: min(100%, 301px);
}
.c-issue-list__item:nth-child(2) {
  margin: 0 -24px;
}
.c-issue-list__img {
  display: block;
  mix-blend-mode: multiply;
}
.c-issue-list__label {
  width: min(100%, 253px);
  margin: -1lh auto 0;
  font-size: clamp(14px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.75;
  position: relative;
}
.c-issue-list__summary {
  width: min(100%, 253px);
  margin: 30px auto 0;
  text-align: left;
}

.c-logo {
  display: block;
  width: min(100%, 621px);
  aspect-ratio: 621/162;
  margin: 0 auto;
}

.c-function {
  padding: 46px 17px 35px;
  border-radius: 15px;
  -webkit-box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.16);
  background: -webkit-gradient(linear, left top, right top, from(#00AFDD), to(#E74291));
  background: linear-gradient(to right, #00AFDD 0%, #E74291 100%);
  color: #FFF;
  text-align: center;
}
.c-function > * {
  width: min(100%, 942px);
  margin: 0 auto;
}
.c-function__logo {
  display: block;
  width: min(100%, 342px);
  margin: 0 auto 24px;
}
.c-function__lead {
  margin-bottom: 27px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.1666666667;
}

.c-function-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.c-function-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 56px;
  border-radius: 15px;
  font-size: clamp(12px, 1.25vw, 16px);
  position: relative;
}
.c-function-list__item::after {
  content: "";
  inset: 0;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.05);
  mix-blend-mode: overlay;
  position: absolute;
  top: 0;
  left: 0;
}
.c-function-list__item > span {
  position: relative;
  z-index: 1;
}

.c-feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.c-feature:not(:last-child) {
  margin-bottom: 28px;
}
.c-feature__box {
  padding: 45px 17px 47px;
  border: 2px solid #C4C4C4;
  border-radius: 20px;
  background: #FFF padding-box;
}
.c-feature__box.--after {
  padding: 43px 17px 45px;
  border-width: 6px;
  border-color: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF)) padding-box, -webkit-gradient(linear, left top, right top, from(#00AFDD), to(#E74291)) border-box;
  background: linear-gradient(#FFF) padding-box, linear-gradient(to right, #00AFDD 0%, #E74291 100%) border-box;
  position: relative;
}
.c-feature__box.--after::before {
  content: "";
  width: 34px;
  aspect-ratio: 34/66;
  background: url(../images/8828_arrow_after.svg) center no-repeat;
  position: absolute;
  top: 50%;
  left: -32px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-feature__box-inner {
  width: min(100%, 430px);
  margin: 0 auto;
}
.c-feature__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.3636363636;
}
.c-feature__label:not(:last-child) {
  margin-bottom: 23px;
}
.c-feature__label:has(.c-logo) {
  font-size: 24px;
}
.c-feature__label:has(.c-logo) span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  line-height: 1.4;
}
.c-feature__label .c-logo {
  width: 9.6666666667em;
}
.c-feature__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  padding: 9px 17px 10px;
  border-radius: 20px;
  background: #F4F5F9;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
}
.c-feature__summary:not(:last-child) {
  margin-bottom: 23px;
}
.c-feature__summary.--after {
  background: -webkit-gradient(linear, left top, right top, from(#00AFDD), to(#E74291));
  background: linear-gradient(to right, #00AFDD 0%, #E74291 100%);
  color: #FFF;
}
.c-feature__summary strong {
  font-weight: 700;
}
.c-feature__summary em {
  display: block;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.5;
}
.c-feature__summary-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 84px);
  aspect-ratio: 1/1;
  border-radius: 3em;
  overflow: hidden;
  position: relative;
}
.c-feature__summary-img::after {
  content: "";
  inset: 0;
  background: rgba(0, 0, 0, 0.21);
  mix-blend-mode: overlay;
  position: absolute;
  top: 0;
  left: 0;
}
.c-feature__text {
  line-height: 2;
}
.c-feature__text p {
  margin-bottom: 0;
}
.c-feature__text p + .c-feature__text p {
  margin-top: 1lh;
}

.p-enerisq {
  padding: 54px 17px 69px;
  border-radius: 15px;
}
.p-enerisq__inner {
  width: min(100%, 950px);
  margin: 0 auto;
}
.p-enerisq__logo-headline {
  display: grid;
  grid-template-columns: 427px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 46px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8181818182;
}
.p-enerisq__logo-headline:not(:last-child) {
  margin-bottom: 40px;
}
.p-enerisq__text {
  line-height: 2;
}
.p-enerisq__text p {
  margin: 0;
}
.p-enerisq__text p + .p-enerisq__text p {
  margin-top: 1lh;
}

.c-service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.c-service__heading {
  padding-left: 30px;
  border-left: 2px solid #000;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8181818182;
}
.c-service__heading:not(:last-child) {
  margin-bottom: 30px;
}
.c-service__contents {
  display: grid;
  grid-template-columns: 158px 1fr;
  gap: 28px;
}
.c-service__img {
  display: block;
  width: min(100%, 214px);
  margin: 0 auto;
}

.c-strength {
  counter-reset: number;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  padding: 0 0 60px;
  position: relative;
  z-index: 1;
}
.c-strength::after {
  content: "";
  width: min(100vw, 1258px);
  height: min(34.53125vw, 442px);
  border-radius: 15px;
  background: #0071AB;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.c-strength__section {
  counter-increment: number;
}
.c-strength__heading {
  padding-top: 39px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.5714285714;
  position: relative;
}
.c-strength__heading::before, .c-strength__heading::after {
  content: "Strength";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  border-radius: 3em;
  background: #0071AB;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 2.1666666667;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-strength__heading::after {
  content: counter(number, decimal-leading-zero);
  padding: 0 13px;
  background: #000;
  left: 77px;
  z-index: 2;
}
.c-strength__heading:not(:last-child) {
  margin-bottom: 39px;
}
.c-strength__img {
  display: block;
  width: min(100%, 510px);
  margin: 0 auto;
}
.c-strength__img:not(:last-child) {
  margin-bottom: 28px;
}
.c-strength__text {
  color: #FFF;
}

.js-accordion__trigger {
  cursor: pointer;
}
.js-accordion__target {
  height: 0;
  overflow: hidden;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: height;
  transition-property: height;
}
.js-accordion__target.is-open {
  height: auto;
}

.c-faq {
  border-top: 1px solid #C4C4C4;
}
.c-faq__section {
  padding: 25px 0;
  border-bottom: 1px solid #C4C4C4;
}
.c-faq__q, .c-faq__a {
  position: relative;
}
.c-faq__q::before, .c-faq__a::before {
  content: "q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 52px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  background: #0071AB;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
}
.c-faq__q {
  padding: 10px 88px 11px 73px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.7777777778;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: padding;
  transition-property: padding;
}
.c-faq__q::after {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../images/8828_icon_close.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 14px;
  right: 0;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-faq__q.is-open {
  padding-bottom: 25px;
}
.c-faq__q.is-open::after {
  background-image: url(../images/8828_icon_open.svg);
}
.c-faq__a {
  padding: 0 88px 0 73px;
  margin-left: 73px;
}
.c-faq__a::before {
  content: "a";
  background: #4A4747;
}
.c-faq__a.is-open {
  min-height: 52px;
}
.c-faq__a p {
  margin: 0;
}
.c-faq__a p + .c-faq__a p {
  margin-top: 1lh;
}

/*-----Project-----*/
.p-cta .c-btn {
  margin: 0 auto;
}

.p-issue {
  position: relative;
}
.p-issue::before {
  content: "";
  width: clamp(100px, 15.390625vw, 197px);
  aspect-ratio: 197/172;
  background: url(../images/8828_issues_top.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: -13px;
  right: 25px;
}
.p-issue__list::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/64;
  margin: 33px auto 23px;
  background: url(../images/8828_dots.svg) center no-repeat;
  background-size: contain;
}
.p-issue__result {
  width: min(100%, 940px);
  padding: 35px 17px 40px;
  margin: 0 auto;
  border-radius: 20px;
  background: #0071AB;
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8181818182;
  text-align: center;
}
.p-issue__result-label {
  margin-bottom: 28px;
  font-size: 1.4545454545em;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.625;
}
.p-issue__result-text {
  width: min(100%, 842px);
  padding: 32px 17px 40px;
  margin: 0 auto 44px;
  border-radius: 15px;
  background: #0589C4;
  position: relative;
  z-index: 1;
}
.p-issue__result-text::after {
  content: "";
  width: 76px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  background: #0589C4;
  position: absolute;
  bottom: -30px;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.p-issue__result-text p + p {
  margin-top: 0.5em;
}
.p-issue__result-text strong {
  font-size: 1.3636363636em;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 2;
}
.p-issue__result-last {
  margin-top: 2em;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.625;
  text-align: center;
}
.p-issue__last {
  display: block;
  margin-top: 38px;
  font-size: clamp(24px, 2.96875vw, 38px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6842105263;
  text-align: center;
}

.p-about__head {
  line-height: 2;
  text-align: center;
}
.p-about__head .c-heading {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.7105263158;
}
.p-about__head .c-heading__underline {
  border-bottom: 4px solid #52E4FF;
}
.p-about__head .c-text {
  width: min(100%, 900px);
  margin: 0 auto;
}
.p-about__foot {
  position: relative;
}
.p-about__foot::before {
  content: "";
  display: block;
  margin: 54px auto 20px;
  width: 106px;
  aspect-ratio: 106/54;
  background: url(../images/8828_arrow_down.svg) center no-repeat;
  background-size: contain;
}
.p-about__foot::after {
  content: "";
  width: 235px;
  aspect-ratio: 235/200;
  background: url(../images/8828_about_bottom.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 7px;
  right: 22px;
}
.p-about__foot .c-heading {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 2.2368421053;
  position: relative;
}
.p-about__foot .c-heading__underline {
  border-bottom: 4px solid #52E4FF;
}
.p-about__container:not(:last-child) {
  margin-bottom: 33px;
}
.p-about__container .c-heading {
  font-size: 28px;
  font-weight: 500;
}
.p-about__container .c-heading strong {
  font-weight: 700;
  color: #52E4FF;
}
.p-about__container.--after {
  padding: 12px 17px 32px;
  border: 2px solid #FFF;
  border-radius: 15px;
}
.p-about__inner {
  width: min(100%, 1022px);
  margin: 0 auto;
}
.p-about__label {
  display: block;
  margin: 0 auto -0.39lh;
  font-family: "Montserrat", sans-serif;
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  opacity: 0.1;
  text-align: center;
}
.p-about__img {
  display: block;
  margin: 0 auto;
}
.p-about__img > img {
  width: 100%;
}
.p-about__function {
  display: block;
  width: min(100%, 450px);
  margin: 0 auto 21px;
  position: relative;
}
.p-about__function > img {
  width: 100%;
}
.p-about__function::after {
  content: "";
  width: 30px;
  aspect-ratio: 30/55;
  background: url(../images/8828_arrow_ba.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -72px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*-----Utility-----*/
.u-bg--lightgray {
  background: #F4F5F9;
}
.u-bg--blue {
  background: #0071AB;
  color: #FFF;
}

.u-pc {
  display: inline;
}

.u-sp {
  display: none;
}

.u-dib {
  display: inline-block;
}

@media print, screen and (max-width: 600px){
  .l-main__section {
    padding: 57px 0;
  }
  .l-main__section:not(.--not-down):not(:has(+ .l-main__section--cta)):not(:last-child)::after {
    width: 50px;
    bottom: -25px;
  }
  .l-main__section.u-bg--lightgray, .l-main__section.u-bg--blue {
    padding: 60px 0;
    border-left: none;
    border-right: none;
  }
  .l-main__section--cta {
    padding: 40px 0;
  }
  .l-inner {
    width: min(100% - 17px * 2, 1084px);
  }
  .c-heading {
    font-size: 23px;
    letter-spacing: 0.03em;
    line-height: 1.652173913;
  }
  .c-heading.--ltsp0 {
    letter-spacing: 0;
  }
  .c-title-en-ja {
    font-size: 18px;
  }
  .c-title-en-ja::before {
    background-size: 12px auto;
    font-size: 14px;
  }
  .c-heading-group {
    gap: 24px;
  }
  .c-heading-group:not(:last-child) {
    margin-bottom: 40px;
  }
  .c-heading-group:not(:last-child):has(+ .c-summary) {
    margin-bottom: 26px;
  }
  .c-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 14px;
    padding: 26px 17px 22px;
    border-radius: 20px;
  }
  .c-btn::before, .c-btn::after {
    right: 17px;
  }
  .c-btn.--mono {
    text-align: left;
  }
  .c-btn.--dl:not(.--mv)::before, .c-btn.--dl:not(.--mv)::after {
    top: auto;
    bottom: 17px;
  }
  .c-btn__img {
    width: 130px;
    margin: 0 auto;
  }
  .c-summary:not(:last-child) {
    margin-bottom: 50px;
  }
  .p-mv {
    padding: 24px 0 32px;
    border: none;
    border-radius: 20px;
  }
  .p-mv__contents {
    display: block;
  }
  .c-mv-left {
    font-size: 14px;
  }
  .c-mv-left__sub {
    padding: 6px 0.5em 5px;
    margin-bottom: 19px;
  }
  .c-mv-left__logo {
    margin-bottom: 10px;
  }
  .c-mv-left__summary {
    margin-bottom: -1.3em;
    font-size: 20px;
    letter-spacing: -0.02em;
    line-height: 1.65;
    position: relative;
    z-index: 2;
  }
  .c-mv-left__img {
    display: block;
    width: 100vw;
    position: relative;
    left: calc(17px * -1);
  }
  .c-mv-left__img > img {
    width: 100%;
  }
  .c-mv-img {
    display: none;
  }
  .c-function {
    padding: 33px 13px 18px;
  }
  .c-function-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .c-function-list__item {
    min-height: 47px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2857142857;
  }
  .p-enerisq {
    padding: 40px 17px 50px;
  }
  .p-enerisq__inner .c-heading:not(:last-child) {
    margin-bottom: 32px;
  }
  .c-strength__heading {
    padding-top: 34px;
    font-size: 20px;
  }
  .c-strength__heading::before, .c-strength__heading::after {
    font-size: 10px;
  }
  .c-strength__heading::after {
    left: 70px;
  }
  .c-strength__heading:not(:last-child) {
    margin-bottom: 30px;
  }
  .p-cta .c-heading:not(:last-child) {
    margin-bottom: 26px;
  }
  .p-issue::before {
    width: 113px;
    top: -46px;
    right: -7px;
  }
  .p-issue .c-heading-group {
    position: relative;
    z-index: 2;
  }
  .p-issue__list::after {
    width: 10px;
    margin: 32px auto 20px;
  }
  .p-issue__result {
    padding: 30px 17px 24px;
    font-size: 18px;
    line-height: 1.7777777778;
    text-align: left;
  }
  .p-issue__result-label {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.6666666667;
    text-align: center;
  }
  .p-issue__result-text {
    padding: 22px 17px 25px;
  }
  .p-issue__result-text::after {
    width: 50px;
    bottom: -25px;
  }
  .p-issue__result-last {
    font-size: 24px;
    letter-spacing: 0.03em;
    line-height: 1.6666666667;
  }
  .p-issue__last {
    margin-top: 40px;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.652173913;
  }
  .p-about__head .c-heading {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 2.0869565217;
  }
  .p-about__head .c-heading:not(:last-child) {
    margin-bottom: 30px;
  }
  .p-about__head .c-text {
    text-align: left;
  }
  .p-about__container:not(:last-child) {
    margin-bottom: 15px;
  }
  .p-about__container .c-heading {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.652173913;
  }
  .p-about__container .c-heading:not(:last-child) {
    margin-bottom: 30px;
  }
  .p-about__container.--after {
    padding: 0px 17px 19px;
  }
  .p-about__label {
    margin-bottom: -0.75em;
    font-size: 70px;
    line-height: 1.8;
  }
  .p-about__img {
    width: 100vw;
    position: relative;
    left: calc(17px * -1);
  }
  .p-about__function::after {
    width: 25px;
    bottom: -54px;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: inline;
  }
}

@media print, screen and (max-width: 959px){
  .c-btns {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .c-mv-left__btns {
    grid-template-columns: repeat(1, 1fr);
    gap: 7px;
    width: min(100%, 342px);
    margin: -0.9em auto 0;
  }
  .c-mv-left__btns .c-btn {
    margin: 0 auto;
    border: 1px solid #FFF;
    border-radius: 3em;
    font-size: 16px;
  }
  .c-issue-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .c-issue-list__item {
    width: 100%;
  }
  .c-issue-list__item:nth-child(2) {
    margin: 0;
  }
  .c-issue-list__img {
    width: min(100%, 254px);
    margin: 0 auto;
  }
  .c-issue-list__label {
    font-size: 20px;
  }
  .c-issue-list__summary {
    width: 90%;
    margin-top: 21px;
  }
  .c-feature {
    grid-template-columns: repeat(1, 1fr);
    gap: 51px;
    width: min(100%, 700px);
    margin: 0 auto;
  }
  .c-feature:not(:last-child) {
    margin-bottom: 50px;
  }
  .c-feature__box {
    padding: 40px 17px;
  }
  .c-feature__box.--after::before {
    width: 56px;
    aspect-ratio: 56/29;
    background-image: url(../images/8828_arrow_after-sp.svg);
    top: -30px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .c-feature__label {
    gap: 8px;
    font-size: 18px;
    line-height: 2.8888888889;
  }
  .c-feature__label:not(:last-child) {
    margin-bottom: 30px;
  }
  .c-feature__label:has(.c-logo) {
    font-size: 20px;
  }
  .c-feature__label:has(.c-logo) span {
    line-height: 1.7;
  }
  .c-feature__label .c-logo {
    width: 10.6em;
  }
  .c-feature__summary {
    padding: 23px 17px;
    font-size: 16px;
    line-height: 1.875;
  }
  .p-enerisq__logo-img {
    width: 60%;
  }
  .p-enerisq__logo-headline {
    grid-template-columns: repeat(1, 1fr);
    gap: 29px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.7777777778;
    text-align: center;
  }
  .p-enerisq__logo-headline:not(:last-child) {
    margin-bottom: 26px;
  }
  .c-service {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .c-service__heading {
    padding-left: 1em;
    font-size: 20px;
    line-height: 1.6;
  }
  .c-service__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .c-strength {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .c-strength::after {
    display: none;
  }
  .c-strength__img {
    width: min(100% - 17px * 2, 510px);
    position: relative;
    z-index: 2;
  }
  .c-strength__img:not(:last-child) {
    margin-bottom: 0;
  }
  .c-strength__text {
    padding: 20px 0 28px;
    position: relative;
    z-index: 1;
  }
  .c-strength__text::after {
    content: "";
    width: 100vw;
    height: calc(100% + 35.4666666667vw);
    border-radius: 15px;
    background: #0071AB;
    position: absolute;
    bottom: 0;
    left: calc(17px * -1);
    z-index: -1;
  }
  .c-faq__section {
    padding: 20px 0;
  }
  .c-faq__q:before, .c-faq__a:before {
    width: 39px;
    border-radius: 10px;
    font-size: 17px;
  }
  .c-faq__q {
    min-height: 39px;
    padding: 0px 51px 0 59px;
    font-size: 16px;
    line-height: 1.875;
  }
  .c-faq__q::before {
    top: 0;
  }
  .c-faq__q::after {
    width: 22px;
    top: 22px;
  }
  .c-faq__a {
    padding: 0px 51px 0 59px;
    margin-left: 0;
  }
  .p-about__foot::before {
    width: 50px;
    margin: 39px auto 22px;
  }
  .p-about__foot::after {
    width: 126px;
    bottom: calc(100% - 43px);
    right: -11px;
  }
  .p-about__foot .c-heading {
    font-size: clamp(22px, 5.8666666667vw, 34px);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 2.1818181818;
  }
}
/*# sourceMappingURL=main.css.map */
