/* 蓄電池プロジェクトのメインスタイル */

:root {
  --batt-color-black: #1f1f1f;
  --batt-color-white: #fff;
  --batt-color-blue01: #03AED1;
  --batt-color-blue02: #AFF1FF;
  --batt-color-blue03: #E1F4FF;
  --batt-color-blue04: #EDF2F8;
  --batt-color-blue05: #005E88;
  --batt-color-blue06: #627B97;
  --batt-color-blue07: #0093E0;
  --batt-color-blue08: #9FAAC4;
  --batt-color-blue09: #5DCBE2;
  --batt-color-blue10: #008eb2;
  --batt-color-green01: #31BAB4;
  --batt-color-red01: #E83817;
  --batt-color-red02: #C12E65;
  --batt-color-pink01: #E9588E;
  --batt-color-yellow01: #FFE600;
  --batt-color-yellow02: #DCA60F;
  --batt-color-gray01: #9F9E9E;
  --batt-color-gray02: #E4E4E4;
  --batt-color-gray03: #F2F2F2;
  --batt-color-gray04: #777;
  --batt-color-beige01: #FFEFDE;
  --batt-color-main: var(--batt-color-blue01);
  --batt-font: 'Manrope', var(--font-base);
  --batt-width-m: 940px;
  --batt-width-l: 1100px;
  --batt-wrap-gap: 30px;
  @media screen and (max-width: 768px) {
    --batt-wrap-gap: 20px;
  }
}

.batt {
  color: var(--batt-color-black);
  :where(a) {
    color: var(--batt-color-blue01);
    &:hover {
      color: var(--batt-color-blue05);
    }
    &[target="_blank"] {
      padding-right: 16px;
      background-image: url(../img/icon_blank.svg);
      background-position: right .35em;
      background-size: 13px auto;
    }
    &[href$=".pdf"] {
      padding-right: 18px;
      background-image: url(../img/icon_pdf_blue.svg);
      background-position: right .2em;
      background-size: 14px auto;
    }
  }
}

/* 東急PSロゴ */
.batt-logo {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  margin: 0;
  @media screen and (max-width: 768px) {
    width: 100%;
    top: clamp(10px, 19 / 390 * 100vw, 78px);
    left: 0;
    right: 0;
    text-align: center;
    img {
      width: 220px;
      width: clamp(10px, 220 / 390 * 100vw, 440px);
    }
  }
}
/* TELとお問い合わせ */
.batt-contact {
  display: flex;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: -5px 5px 10px 0 rgba(0, 0, 0, .1);
  border-radius: 0 0 0 16px;
  @media screen and (max-width: 768px) {
    display: none;
  }
}
.batt-contact__item {
  margin: 0;
  padding: 8px 16px;
  line-height: 1.2;
  text-align: center;
}
.batt-contact .batt-contact__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0;
  margin: 0;
  color: currentColor;
  text-decoration: none;
  font-weight: 400;
  background: none;
  &:hover {
    color: currentColor;
  }
}
.batt-contact__item.-tel {
  background: var(--batt-color-white);
  border-radius: 0 0 0 16px;
}
.batt-contact__item.-mail {
  color: var(--batt-color-white);
  background: var(--batt-color-green01);
}
.batt-contact__item.-entry {
  color: var(--batt-color-white);
  background: var(--batt-color-pink01);
}
.batt-contact__telNumber {
  color: var(--batt-color-main);
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--batt-font);
  letter-spacing: -0.08em;
  &::before {
    content: "";
    padding-left: 28px;
    background: url(../img/icon_tel.svg) no-repeat left center;
  }
}
.batt-contact__telHours {
  font-size: 1.2rem;
  padding-left: 28px;
}
.batt-contact__mail {
  margin-top: 2px;
  font-weight: 600;
  font-size: 1.6rem;
  &::before {
    content: "";
    padding-left: 28px;
    background: url(../img/icon_mail.svg) no-repeat left center;
  }
}
.batt-contact__mailHours {
  margin-top: 3px;
  font-size: 1.2rem;
}

.batt-contact__entryText {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-weight: 700;
  margin-top: -5px;
}
.batt-contact__entry5m {
  display: flex;
  align-items: center;
  font-size: 1rem;
  position: relative;
  padding-inline: 7px 3px;
  color: white;
  font-size: 1.4rem;
  &::after,
  &::before {
    content: "";
    position: absolute;
    bottom: 3px;
    width: 1px;
    height: 16px;
    background: white;
  }
  &::before {
    left: 0;
    rotate: 160deg;
  }
  &::after {
    right: 0;
    rotate: 20deg;
  }
  b {
    margin-inline: 3px;
    font-size: 2rem;
    font-family: var(--batt-font);
  }
}
.batt-contact__entryEasy {
  font-size: 0.9rem;
}
.batt-contact__entryRest {
  padding-bottom: 1px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--batt-color-yellow01);
  b {
    margin-right: 3px;
    font-family: var(--batt-font);
    letter-spacing: -1px;
    font-size: 2.7rem;
  }
}
.batt-contact__entryBtn {
  margin: 3px 0 0;
  a {
    position: relative;
    display: block;
    padding: 4px 38px;
    background: var(--batt-color-yellow01);
    border-radius: 8px;
    color: var(--batt-color-red02);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    transition: .4s;
    @media screen and (max-width: 768px) {
      padding: 4px clamp(10px, 16 / 390 * 100vw, 18px);
      border-radius: 2px;
      font-size: clamp(1px, 14 / 390 * 100vw, 18px);
    }
    &::after {
      content: "";
      position: absolute;
      top: calc(50% - 5px);
      right: 7px;
      width: 8px;
      height: 9px;
      background: url(../img/arrow_right_red.svg) no-repeat;
      background-size: 100% auto;
      @media screen and (max-width: 768px) {
        right: 5px;
      }
    }
    &:hover {
      transform: translateY(2px);
    }
  }
}

/* 固定表示のボタン */
.js-entryFixedBtn {
  position: fixed;
  z-index: 9;
  top: -100px;
  right: 0;
  width: 100%;
  opacity: 0;
  transition: .5s;
  @media screen and (max-width: 768px) {
    display: none;
  }
  &.is-show {
    top: 0;
    opacity: 1;
  }
}

/* SP用の固定ボタン */
.batt-sp-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  @media screen and (min-width: 769px) {
    display: none;
  }
}
.batt-sp-contact {
  overflow: hidden;
  display: flex;
  gap: 1px;
  background: white;
  border-radius: 16px 16px 0 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.batt-sp-contact .batt-sp-contact__link {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0;
  background: none;
  font-weight: 400;
}
.batt-sp-contact__item {
  flex: 91;
  margin: 0;
  padding: 10px clamp(1px, 10 / 390 * 100vw, 15px) 7px;
  background: var(--batt-color-green01);
  color: white;
  text-align: center;
  &.-entry {
    flex: 206;
    background: var(--batt-color-pink01);
  }
  &.-mail {
    font-size: clamp(1px, 13 / 390 * 100vw, 16px);
    span {
      display: block;
      padding-top: 33px;
      background: url(../img/icon_mail.svg) no-repeat center 5px;
      background-size: 32px auto;
    }
  }
  &.-tel {
    font-size: clamp(1px, 13 / 390 * 100vw, 16px);
    span {
      display: block;
      padding-top: 33px;
      background: url(../img/icon_tel_white.svg) no-repeat center 2px;
      background-size: 32px auto;
    }
  }
  .batt-sp-contact__entryText {
    display: flex;
    justify-content: center;
    line-height: 1.1;
    margin-bottom: 7px;
  }
  .batt-sp-contact__entry5m {
    position: relative;
    display: flex;
    align-items: flex-end;
    &::after,
    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      width: 1px;
      height: 16px;
      background: white;
    }
    &::before {
      left: -5px;
      rotate: 160deg;
    }
    &::after {
      right: -4px;
      rotate: 20deg;
    }
    b {
      margin-inline: 1px;
      font-family: var(--batt-font);
      font-size: clamp(1px, 22 / 390 * 100vw, 24px);
      line-height: .8;

    }
    span {
      font-size: clamp(1px, 10 / 390 * 100vw, 12px);
      &.batt-sp-contact__entryEasy {
        font-size: clamp(1px, 8 / 390 * 100vw, 11px);
      }
      span {
        font-size: clamp(1px, 13 / 390 * 100vw, 15px);
      }
    }
  }
  .batt-sp-contact__entryRest {
    margin-left: clamp(1px, 10 / 390 * 100vw, 12px);
    color: var(--batt-color-yellow01);
    transform: translateY(1px);
    font-size: clamp(1px, 15 / 390 * 100vw, 18px);
    b {
      font-family: var(--batt-font);
      letter-spacing: -2px;
      line-height: 0.9;
      font-size: clamp(1px, 25 / 390 * 100vw, 29px);
    }
  }
}


/* メインビジュアル */
.batt-hero {
  background: url(../img/hero_bg_repeat.png) repeat-x;
  background-size: 20px auto;
  @media screen and (max-width: 768px) {
    padding-inline: 0;
    background: none;
  }
}
.batt-hero__inner {
  box-sizing: border-box;
  position: relative;
  max-width: 1386px;
  min-height: 601px;
  margin: 0 auto;
  padding: 45px 10px 20px;
  background: url(../img/hero_bg.png) no-repeat center top;
  background-size: 1366px auto;
  @media screen and (max-width: 1320px) {
    padding-top: 40px;
  }
  @media screen and (max-width: 768px) {
    min-height: 0;
    padding: 0;
    background: none;
  }
}
.batt-hero__main {
  margin: 0 auto;
  padding-left: clamp(10px, 10 / 1360 * 100vw, 51px);
  @media screen and (max-width: 1320px) {
    text-align: center;
    padding-inline: 20px;
    max-width: 630px;
    img {
      max-width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 768px) {
    max-width: none;
    padding-inline: 0;
  }
}

/* メインビジュアルにある申込むボタン */
.batt-hero__entry {
  box-sizing: border-box;
  min-width: 316px;
  position: absolute;
  top: 167px;
  right: 40px;
  padding: 6px 24px 16px;
  background: var(--batt-color-pink01);
  border-radius: 16px;
  text-align: center;
  @media screen and (max-width: 1320px) {
    position: static;
    max-width: 330px;
    margin: 10px auto 0;
  }
  @media screen and (max-width: 768px) {
    display: none;
  }
}
.batt-hero__entryText {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}
.batt-hero__entry5m {
  position: relative;
  margin-right: 8px;
  padding-inline: 7px;
  color: white;
  font-size: 1.4rem;
  &::after,
  &::before {
    content: "";
    position: absolute;
    top: -4px;
    width: 1px;
    height: 24px;
    background: white;
  }
  &::before {
    left: 0;
    rotate: 160deg;
  }
  &::after {
    right: 0;
    rotate: 20deg;
  }
  b {
    margin-left: 3px;
    font-family: var(--batt-font);
    font-size: 2.4rem;
  }
  span {
    font-size: 1.6rem;
    span {
      font-size: 2.0rem;
    }
  }
}
.batt-hero__entryRest {
  color: var(--batt-color-yellow01);
  font-size: 1.8rem;
  b {
    margin-right: 4px;
    font-family: var(--batt-font);
    font-size: 3.8rem;
    letter-spacing: -3px;
  }
}
.batt-hero__entryBtn {
  margin: 0 0 0;
  a {
    position: relative;
    display: block;
    padding: 16px;
    background: var(--batt-color-yellow01);
    border-radius: 8px;
    color: var(--batt-color-red02);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 4px 0 var(--batt-color-yellow02);
    transition: .4s;
    &::after {
      content: "";
      position: absolute;
      top: calc(50% - 8px);
      right: 14px;
      width: 15px;
      height: 18px;
      background: url(../img/arrow_right_red.svg) no-repeat;
      background-size: 100% auto;
    }
    &:hover {
      color: var(--batt-color-red02);
      transform: translateY(2px);
      box-shadow: 0 2px 0 var(--batt-color-yellow02);
    }
  }
}

/* キャンペーン概要 */
.batt-summary_fuan {
  @media screen and (max-width: 768px) {
    background: linear-gradient(to bottom,  #edf2f8 0%,#ffffff 100%);
  }
}

.batt-projectSummarySection {
  margin-bottom: 10px;
  padding-inline: var(--batt-wrap-gap);
  background: linear-gradient(to bottom,  #edf2f8 0%,#ffffff 100%);
  @media screen and (max-width: 768px) {
    margin-bottom: 64px;
    padding-top: 24px;
    background: none;
  }
}

.batt-projectSummary {
  position: relative;
  max-width: var(--batt-width-m);
  margin: 0 auto 0;
  padding: 36px 24px 24px;
  background: white;
  border-radius: 16px;
  transform: translateY(-65px);
  @media screen and (max-width: 768px) {
    margin-bottom: 32px;
    transform: translateY(0);
  }
}
.batt-projectSummary__group {
  margin: 0 auto 16px;
  text-align: center;
  @media screen and (max-width: 768px) {
    img {
      width: 157px;
    }
  }
}
.batt-projectSummary__title {
  width: fit-content;
  margin: 0 auto 16px;
  padding-bottom: 8px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  /* line-height: 1.2; */
  line-height: 1.5;
  border-bottom: 2px solid var(--batt-color-blue01);
  @media screen and (max-width: 768px) {
    width: auto;
    font-size: 1.6rem;
  }
  > span {
    display: block;
  }
  b {
    position: relative;
    display: block;
    font-size: 3.5rem;
    @media screen and (max-width: 768px) {
      font-size: 2.2rem;
    }
  }
  .qoute {
    position: relative;
    top: -17px;
    font-size: 3.1rem;
    @media screen and (max-width: 768px) {
      font-size: 2.2rem;
    }
  }
  .number {
    margin-left: 3px;
    font-size: 6.1rem;
    font-family: var(--batt-font);
    letter-spacing: -2px;
    @media screen and (max-width: 768px) {
      font-size: 4.4rem;
    }
  }
}
.batt-projectSummary__p {
  margin: 0 auto;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 1.8rem;
  }
}
.batt-projectSummaryDetail {
  text-align: center;
}
.batt-projectSummaryDetail__main {
  margin: 0 auto 16px;
  font-size: 2rem;
  font-weight: 500;
  @media screen and (max-width: 768px) {
    font-size: 1.4rem;
  }
}
.batt-projectSummaryDetail__notes {
  margin: 0 auto;
  font-size: 1.7rem;
  @media screen and (max-width: 768px) {
    font-size: 1.2rem;
  }
}

/* 不安ありませんか？ */
.batt-fuan {
  padding-inline: var(--batt-wrap-gap);
  @media screen and (max-width: 768px) {
    margin-bottom: 32px;
    padding-inline: 0;
  }
  p {
    margin: 0 auto;
    text-align: center;
  }
}

.batt-kaiketsu {
  padding: 120px var(--batt-wrap-gap) 250px;
  background: var(--batt-color-blue07) url(../img/kaiketsu_bg.jpg) no-repeat center bottom;
  background-size: cover;
  text-align: center;
  @media screen and (max-width: 768px) {
    padding-top: 32px;
    padding-bottom: 170px;
  }
}
.batt-kaiketsu__text01 {
  width: fit-content;
  margin: 0 auto 33px;
  border-bottom: 4px dotted #fff;
  color: white;
  font-size: 3.2rem;
  font-weight: 500;
  @media screen and (max-width: 768px) {
    margin-bottom: 16px;
    font-size: 2.4rem;
  }
}
.batt-kaiketsu__text02 {
  @media screen and (max-width: 768px) {
    max-width: 80%;
    margin: 14px auto;
  }
}
.batt-kaiketsu__text03 {
  box-sizing: border-box;
  max-width: 982px;
  margin: 0 auto;
  padding: 18px 30px;
  background: white;
  border-radius: 1000px;
  @media screen and (max-width: 768px) {
    padding-block: 12px;
  }
}

/* 解決の詳細 1～3 */
.batt-kaiketsuDetail {
  margin-top: -80px;
  background: var(--batt-color-blue03);
  border-radius: 56px 56px 0 0;
  &:last-child {
    border-radius: 56px;
    .batt-kaiketsuDetail__section {
      padding-bottom: 96px;
    }
  }
  @media screen and (max-width: 768px) {
    margin-top: -50px;
    border-radius: 32px 32px 0 0;
    &:last-child {
      border-radius: 32px;
      .batt-kaiketsuDetail__section {
        padding-bottom: 40px;
      }
    }
  }
  &.-white {
    background: white;
  }
}
.batt-kaiketsuDetail__section {
  max-width: var(--batt-width-l);
  margin-inline: auto;
  padding-block: 96px calc(96px + 80px);
  padding-inline: var(--batt-wrap-gap);
  @media screen and (max-width: 768px) {
    padding-block: 40px calc(40px + 50px);
  }
}
.batt-kaiketsuDetail__title {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    gap: 8px;
  }
  .no {
    width: 64px;
    height: 64px;
    background: var(--batt-color-blue01);
    border-radius: 100%;
    color: white;
    font-size: 4.8rem;
    font-family: var(--batt-font);
    font-weight: 500;
    line-height: 64px;
    text-align: center;
    @media screen and (max-width: 768px) {
      width: 48px;
      height: 48px;
      line-height: 48px;
      font-size: 3.2rem;
    }
  }
  .text {
    font-size: 4rem;
    font-weight: 700;
    @media screen and (max-width: 768px) {
      font-size: 2.8rem;
    }
    b {
      color: var(--batt-color-blue01);
    }
  }
}
.batt-kaiketsuDetail__body {
  font-size: 1.8rem;
  @media screen and (max-width: 768px) {
    font-size: 1.6rem;
  }
  :where(p) {
    margin-bottom: 40px;
  }
}
.batt-kaiketsuDetail__col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  padding: 0;
  list-style: none;
  @media screen and (max-width: 768px) {
    display: flex;
    flex-direction: column;
  }
  li {
    margin: 0;
    padding: 32px;
    background: white;
    border-radius: 16px;
    text-align: center;
    @media screen and (max-width: 768px) {
      padding: 24px 20px;
    }
    span {
      display: inline-block;
      margin-top: 5px;
    }
  }
}
.batt-kaiketsuDetail__table {
  width: 100%;
  table-layout: fixed;
  line-height: 1.4;
  text-align: center;
  border-collapse: separate;
  margin-bottom: 10px;
  th {
    font-size: 1.4rem;
  }
  thead {
    color: white;
    font-weight: 700;
    th {
      padding: 20px 10px;
      border-radius: 16px 16px 0 0;
    }
    .lease {
      background: var(--batt-color-blue08);
    }
    .our {
      background: var(--batt-color-blue01);
    }
  }
  tbody {
    tr {
      &:first-child {
        th {
          border-radius: 16px 0 0 0;
        }
      }
      &:last-child {
        th {
          border-radius: 0 0 0 16px;
        }
        td:last-child {
          border-radius: 0 0 16px 0;
        }
      }
    }
    th {
      background: var(--batt-color-gray02);
      font-weight: 500;
      small {
        display: block;
        font-size: 1.2rem;
      }
    }
    td {
      padding: 20px 10px;
      font-weight: 700;
      &.lease {
        background: var(--batt-color-gray03);
        font-size: 1.8rem;
        @media screen and (max-width: 768px) {
          font-size: 1.4rem;
        }
      }
      &.our {
        background: var(--batt-color-blue03);
        font-size: 2rem;
        color: var(--batt-color-blue01);
        @media screen and (max-width: 768px) {
          font-size: 1.6rem;
        }
      }
    }
  }
}
.batt-kaiketsuDetail__tableNotes {
  margin: 0 auto 1em;
  text-align: center;
  font-size: 1.6rem;
  @media screen and (max-width: 768px) {
    text-align: left;
  }
}
.batt-kaiketsuDetail__otoku {
  display: flex;
  gap: 10px 40px;
  align-items: center;
  margin-bottom: 40px;
  padding: 32px 64px;
  background: white;
  border-radius: 16px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    padding-inline: 20px;
  }
}
.batt-kaiketsuDetail__otokuImage {
  margin: 0;
}
.batt-kaiketsuDetail__otokuText {
  flex: 1;
  p {
    line-height: 1.4;
    margin: 0 0 1.2rem;
    font-size: 3.2rem;
    font-weight: 700;
    @media screen and (max-width: 768px) {
      font-size: 2rem;
    }
    span {
      margin-inline: 5px 2px;
      color: var(--batt-color-blue01);
    }
    b {
      margin-right: 3px;
      font-size: 4rem;
      font-family: var(--batt-font);
      font-weight: 900;
      letter-spacing: -2px;
      @media screen and (max-width: 768px) {
        font-size: 3.8rem;
      }
    }
  }
}
.batt-kaiketsuDetail__pro {
  margin-bottom: 40px;
}
.batt-kaiketsuDetail__proTitle {
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    margin-bottom: 24px;
  }
  span {
    width: fit-content;
    margin: auto;
    display: block;
    font-weight: 700;
    font-size: 2.4rem;
    &:first-child {
      margin-bottom: 20px;
      padding-bottom: 90px;
      background: url(../img/pro_arrow.png) no-repeat center bottom;
      background-size: 71px auto;
    }
    &:last-child {
      font-size: 3.2rem;
      background: linear-gradient(transparent 80%, var(--batt-color-blue02) 80%);
    }
    @media screen and (max-width: 768px) {
      font-size: 1.8rem;
      &:first-child {
        margin-bottom: 12px;
        padding-bottom: 60px;
        background-size: 48px auto;
      }
      &:last-child {
        font-size: 2.4rem;
      }
    }
  }
}
.batt-kaiketsuDetail__proCol2 {
  display: flex;
  gap: 16px 32px;
  max-width: var(--batt-width-m);
  margin: 0 auto;
  @media screen and (max-width: 768px) {
    flex-direction: column-reverse;
  }
}
.batt-kaiketsuDetail__proCol2Text {
  flex: 1;
  b {
    color: var(--batt-color-blue01);
  }
  @media screen and (max-width: 768px) {
    p {
      margin: 0;
    }
  }
}
.batt-kaiketsuDetail__proCol2Image {
  margin: 0;
  padding: 20px 24px;
  background: white;
  border: 1px solid var(--batt-color-blue01);
  border-radius: 8px;
  span {
    display: block;
    margin-top: 8px;
    text-align: right;
    font-size: 1.4rem;
  }
  @media screen and (max-width: 1024px) {
    width: 50%;
  }
  @media screen and (max-width: 768px) {
    width: auto;
    padding: 15px 9px;
    span {
      text-align: center;
    }
  }
}
.batt-kaiketsuDetail__projectJoin {
  box-sizing: border-box;
  max-width: var(--batt-width-m);
  margin: 0 auto;
  padding: 97px 40px 48px;
  background: white;
  border-radius: 16px;
  @media screen and (max-width: 768px) {
    padding: 45px 20px 48px;
    overflow: hidden;
  }
}
.batt-kaiketsuDetail__projectJoinTitle {
  position: relative;
  margin: 0 auto 24px;
  padding-bottom: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  &::before {
    content: "Campaign";
    position: absolute;
    top: -75px;
    left: 0;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--batt-font);
    font-size: 120px;
    font-weight: 900;
    color: #e5f7fb;
  }
  @media screen and (max-width: 768px) {
    &::before {
      top: -30px;
      font-size: clamp(0px, 50 / 390 * 100vw, 100px);
      left: 50%;
      transform: translateX(-50%);
    }
  }
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 467px;
    width: 100%;
    height: 4px;
    background: var(--batt-color-blue01);
    border-radius: 50px;
    transform: translateX(-50%);
  }
  .first {
    position: relative;
    display: block;
    font-size: 3.5rem;
    color: var(--batt-color-blue01);
    @media screen and (max-width: 768px) {
      font-size: 2.2rem;
    }
    b {
      margin-inline: 3px;
      font-family: var(--batt-font);
      font-size: 6.1rem;
      font-weight: 900;
      letter-spacing: -5px;
      @media screen and (max-width: 768px) {
        font-size: 4.4rem;
      }
    }
  }
  .second {
    position: relative;
    display: block;
    font-size: 2.4rem;
    @media screen and (max-width: 768px) {
      font-size: 2.0rem;
    }
    b {
      color: var(--batt-color-blue01);
    }
  }
}
.batt-kaiketsuDetail__projectJoinLead {
  text-align: center;
  font-size: 1.6rem;
}
.batt-kaiketsuDetail__lifefit {
  margin: 0 auto 20px;
  text-align: center;
  color: var(--batt-color-blue01);
  font-weight: 700;
  font-size: 2.4rem;
  @media screen and (max-width: 768px) {
    font-size: 1.8rem;
  }
  &::after,
  &::before {
    content: "";
    display: inline-block;
    position: relative;
    top: 7px;
    width: 2px;
    height: 35px;
    background: var(--batt-color-blue01);
    @media screen and (max-width: 768px) {
      height: 25px;
    }
  }
  &::before {
    left: -13px;
    rotate: 160deg;
  }
  &::after {
    right: -15px;
    rotate: 20deg;
  }
}
.batt-kaiketsuDetail__lifefitList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px 24px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  @media screen and (max-width: 768px) {
    display: flex;
    flex-direction: column;
  }
  li {
    margin: 0;
    padding: 24px 9px;
    border: 1px solid var(--batt-color-blue01);
    border-radius: 8px;
    @media screen and (max-width: 768px) {
      padding: 20px 16px;
    }
  }
}

/* 利用者の声 */
.batt-voice {
  padding: 96px 0 65px;
  @media screen and (max-width: 768px) {
    padding: 64px 0 32px;
  }
}
.batt-voice__title {
  margin: 0 auto 3px;
  font-size: 2.6rem;
  color: var(--batt-color-blue01);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.batt-voice__lead {
  margin: 0 auto 40px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    margin-bottom: 24px;
  }
}
#myCarousel {
  --f-carousel-slide-padding: 0;
  --f-carousel-dot-width: 8px;
  --f-carousel-dot-height: 8px;
  --f-carousel-dot-bg: white;
  --f-carousel-dot-selected-bg: var(--batt-color-blue01);
  --f-carousel-dot-opacity: 1;
  --f-carousel-dot-hover-opacity: 1;
  --f-carousel-dot-hover-bg: var(--batt-color-blue01);
  --f-carousel-dots-top: auto;
  --f-carousel-dots-bottom: 0px;
}
.batt-voice__main {
  .f-carousel__slide {
    max-width: 300px;
  }
  .f-carousel__dot {
    &::after {
      border: 1px solid var(--batt-color-blue01);
    }
  }
}
.batt-voice__item {
  max-width: 280px;
  margin: 0 auto 32px;
}
.batt-voice__image {
  margin-bottom: 16px;
  img {
    border-radius: 8px;
  }
}
.batt-voice__text {
  margin: 0;
  font-size: 1.6rem;
  dt {
    margin: 0;
    padding: 0;
    font-weight: 500;
  }
  dd {
    margin: 0;
    padding: 0;
  }
}
.carousel-nav {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(var(--batt-width-m) + 60px);
  padding: 0 30px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  button {
    position: relative;
    width: 32px;
    height: 32px;
    background: var(--batt-color-blue01);
    border-radius: 100%;
    text-align: center;
    color: white;
    font-size: 0;
    line-height: 0;
    &::before {
      content: "";
      position: absolute;
      top: calc(50% - 6px);
      left: calc(50% - 3px);
      width: 10px;
      height: 13px;
      background: url(../img/arrow_right_white.svg);
      background-size: 100% auto;
    }
    &[data-carousel-go-prev] {
      &::before {
        rotate: 180deg;
        left: calc(50% - 7px);
      }
    }
  }
}

/* 0円導入までのかんたん4ステップ */
.batt-step {
  position: relative;
  padding: 96px var(--batt-wrap-gap);
  background: var(--batt-color-blue01) url(../img/step_bg.png) no-repeat center;
  background-size: cover;
  @media screen and (max-width: 768px) {
    padding-block: 64px;
  }
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,  rgba(0,147,224,1) 0%,rgba(125,185,232,0.5) 100%);
  }
}
.batt-step__inner {
  position: relative;
  top: 0;
  z-index: 2;
  box-sizing: border-box;
  max-width: var(--batt-width-m);
  margin: 0 auto;
  padding: 48px 64px;
  background: white;
  border-radius: 16px;
  @media screen and (max-width: 768px) {
    padding: 36px 20px;
  }
}
.batt-step__title {
  margin: 0 0 16px;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    line-height: 1.2;
  }
  span {
    color: var(--batt-color-blue01);
    b {
      font-size: 4.7rem;
      font-family: var(--batt-font);
      font-weight: 900;
    }
  }
}
.batt-step__lead {
  margin: 0 auto 36px;
  text-align: center;
}
.batt-step__list {
  position: relative;
  margin: 0;
  padding: 0 0 0 38px;
  list-style: none;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    padding-left: 28px;
  }
  &::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 6px;
    width: 2px;
    height: calc(100% - 42px);
    background: var(--batt-color-black);
  }
  > li {
    position: relative;
    margin: 0 0 32px;
    &::before {
      content: "";
      position: absolute;
      top: 5px;
      left: -38px;
      width: 10px;
      height: 10px;
      border-radius: 100%;
      background: white;
      border: 2px solid var(--batt-color-black);
      @media screen and (max-width: 768px) {
        left: -28px;
      }
    }
    .no {
      display: block;
      width: fit-content;
      margin-bottom: 5px;
      padding: 3px 8px;
      background: var(--batt-color-blue01);
      border-radius: 4px;
      color: white;
      text-transform: uppercase;
      font-size: 1.2rem;
      font-family: var(--batt-font);
      font-weight: 900;
    }
    .text {
      font-weight: 700;
      font-size: 1.8rem;
      background: linear-gradient(transparent 75%, #fff066 75%);
    }
    ul {
      list-style: none;
      margin-top: 8px;
      padding: 0;
      li {
        font-size: 1.4rem;
      }
    }
  }
}
.batt-step__after {
  margin: 32px auto 0;
  padding: 16px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--batt-color-gray03);
  border-radius: 8px;
  @media screen and (max-width: 768px) {
    font-weight: 400;
  }
}


/* Q&A */
.batt-faq {
  padding-inline: var(--batt-wrap-gap);
  background: var(--batt-color-blue09);
}
.batt-faq__inner {
  max-width: var(--batt-width-m);
  margin-inline: auto;
  padding-block: 64px 92px;
  @media screen and (max-width: 768px) {
    padding-block: 60px 59px;
  }
}
.batt-faq__title {
  margin: 0 auto 20px;
  text-align: center;
  color: white;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.batt-faq {
  .accordion {
    margin-bottom: 0;
  }
  .accordion__item {
    margin: 0 0 16px;
    border: 0;
    border-radius: 8px;
    &:last-child {
      margin-bottom: 0;
    }
    &[open] {
      .accordion__title {
        &::before {
          rotate: 0deg;
        }
      }
    }
  }
  .accordion__title {
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 0;
    @media screen and (max-width: 768px) {
      font-size: 1.6rem;
    }
    &::after {
      content: none;
    }
    &::before {
      width: 16px;
      height: 12px;
      background: url(../img/arrow_top.svg) no-repeat;
      border-radius: 0;
      rotate: 180deg;
      transition: .3s;
    }
    &:hover {
      color: var(--batt-color-blue01);
    }
  }
  .accordion__title:has(>.accordion__titleQ) {
    padding-left: 80px;
    @media screen and (max-width: 768px) {
      padding-left: 40px;
    }
  }
  .accordion__titleQ {
    top: .5em;
    left: 26px;
    background: none;
    color: var(--batt-color-blue01);
    font-family: var(--batt-font);
    font-size: 3.2rem;
    @media screen and (max-width: 768px) {
      top: 0.4em;
      left: 5px;
      font-size: 2.1rem;
    }
  }
  .accordion__body {
    border-top: 2px solid var(--batt-color-blue09);
    padding: 0 40px;
    background: var(--batt-color-blue04);
    border-radius: 0 0 8px 8px;
    @media screen and (max-width: 768px) {
      padding-inline: 12px;
      font-size: 1.4rem;
    }
    &::before {
      height: 22px;
      @media screen and (max-width: 768px) {
        height: 12px;
      }
    }
    &::after {
      height: 16px;
      @media screen and (max-width: 768px) {
        height: 6px;
      }
    }
  }
}

.batt-btn {
  text-align: center;
  a {
    box-sizing: border-box;
    display: block;
    max-width: 320px;
    margin: auto;
    padding: 16px;
    background: var(--batt-color-blue01);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 0 var(--batt-color-blue10);
    transition: .4s;
    &:hover {
      transform: translateY(2px);
      box-shadow: 0 2px 0 var(--batt-color-blue10);
    }
  }
  &.-mail {
    a {
      background: var(--batt-color-blue01) url(../img/icon_mail.svg) no-repeat calc(100% - 16px) center;
      background-size: 26px auto;
    }
  }
}

/* FAQのボタン */
.batt-basicBtn {
  margin: var(--section-margin-xs) auto 0;
  text-align: center;
}
.batt-basicBtn__link {
  display: block;
  padding: 20px;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: var(--batt-color-blue10);
  box-shadow: 0 5px 0 var(--batt-color-blue10);
  transition: all .2s;
  &[target="_blank"] {
    padding-right: 20px;
    background: white;
  }
  &:hover {
    transform: translateY(5px);
    box-shadow: 0 0 0 var(--batt-color-blue10);
  }
}
.batt-basicBtn__text {
  padding-right: 18px;
  background: url(../img/icon_blank.svg) no-repeat right .43em;
}

/* お申し込み条件や約款 */
.batt-section {
  margin-bottom: 64px;
}
.batt-conditions {
  padding-block: 64px;
  padding-inline: var(--batt-wrap-gap);
  background: var(--batt-color-gray03);
}
.batt-conditions__inner {
  max-width: var(--batt-width-m);
  margin-inline: auto;
}
.batt-conditions__title {
  margin: 0 auto 24px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.batt-conditions__list {
  list-style: none;
  padding: 0;
  li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 18px;
    font-size: 1.4rem;
    &::before {
      content: "";
      position: absolute;
      top: .55em;
      left: 0;
      width: 7px;
      height: 7px;
      border: 2px solid var(--batt-color-blue01);
      border-radius: 100%;
    }
  }
}
.batt-conditions__terms {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }
  @media screen and (max-width: 389px) {
    padding-inline: 0;
  }
}
.batt-pdfList {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  list-style: none;
  margin: 0;
  padding: 0;
  li {
    margin: 0;
    .batt-pdfBtn {
      display: block;
      padding: 18px 32px;
      background: white url(../img/icon_pdf.svg) no-repeat calc(100% - 20px) center;
      background-size: 24px auto;
      border: 1px solid var(--batt-color-gray01);
      border-radius: 8px;
      text-decoration: none;
      color: var(--batt-color-black);
      box-shadow: 0 4px 0 var(--batt-color-gray01);
      transition: .4s;
      @media screen and (max-width: 768px) {
        font-size: 1.4rem;
        font-weight: 500;
        padding-inline: 20px 46px;
      }
      &:hover {
        transform: translateY(2px);
        box-shadow: 0 2px 0 var(--batt-color-gray01);
      }
    }
  }
}

/* 申し込みエリア */
.batt-entry {
  margin: 0 auto 96px;
  padding-inline: var(--batt-wrap-gap);
  max-width: var(--batt-width-m);
  a {
    color: var(--color-main);
    &:hover {
      color: var(--color-main);
    }
  }
}
.batt-entry__title {
  margin: 0 auto 24px;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
}
.batt-entry__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  line-height: 1.5;
  li {
    margin: 0 0 16px;
    padding: 0;
    span {
      margin-left: 8px;
    }
    label {
      display: flex;
      align-items: flex-start;
    }
    input {
      margin-top: 6px;
      transform: scale(1.5);
      + span {
        cursor: pointer;
      }
    }
  }
}

.batt-entry__btnMessage {
  margin: auto auto 16px;
  color: white;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  @media screen and (max-width: 768px) {
    font-size: 1.5rem;
  }
  b {
    font-size: 2.2rem;
    font-weight: 500;
    @media screen and (max-width: 768px) {
      font-size: 2rem;
    }
  }
  span {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    &::after,
    &::before {
      content: "";
      display: inline-block;
      position: relative;
      top: 7px;
      width: 2px;
      height: 32px;
      background: white;
    }
    &::before {
      left: -13px;
      rotate: 160deg;
    }
    &::after {
      right: -10px;
      rotate: 20deg;
    }
    b {
      font-size: 3.8rem;
      font-weight: 700;
    }
  }
}

.batt-entry__btnMain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  @media screen and (max-width: 1024px) {
    gap: 24px;
  }
  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  button {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    display: block;
    padding: 16px;
    background: var(--batt-color-yellow01);
    border-radius: 8px;
    color: var(--batt-color-blue05);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 4px 0 var(--batt-color-yellow02);
    transition: .4s;
    @media screen and (max-width: 768px) {
      font-size: 1.4rem;
    }
    &::after {
      content: "";
      position: absolute;
      top: calc(50% - 9px);
      right: 14px;
      width: 15px;
      height: 18px;
      background: url(../img/arrow_right.svg) no-repeat;
      background-size: 100% auto;
    }
    &:hover {
      transform: translateY(2px);
      box-shadow: 0 2px 0 var(--batt-color-yellow02);
    }
    span {
      display: block;
      &:first-child {
        &::after,
        &::before {
          content: "";
          display: inline-block;
          position: relative;
          top: 3px;
          width: 1px;
          height: 18px;
          background: var(--batt-color-blue05);
          @media screen and (max-width: 768px) {
            height: 16px;
          }
        }
        &::before {
          left: -10px;
          rotate: 160deg;
        }
        &::after {
          right: -8px;
          rotate: 20deg;
        }
      }
      + span {
        font-size: 2.4rem;
      }
    }
    &[disabled] {
      pointer-events: none;
      opacity: .8;
      filter: grayscale(1);
    }
  }
}

/* フッター */
.batt-footer {
  padding: 64px 0 0;
  background: linear-gradient(to bottom,  #91e8fb 0%, var(--batt-color-blue09) 80%);
}
.batt-copyright {
  margin: 0 auto;
  padding: 86px var(--batt-wrap-gap) 33px;
  background: url(../img/footer_bg.png) repeat-x center top;
  background-size: 504px auto;
  text-align: center;
  color: white;
  line-height: 1.4;
  small {
    font-size: 1.3rem;
    font-family: var(--batt-font);
  }
}

/* 終了時のスタイル */
.page-1000battery-close {
  .batt-hero__entry {
    display: none;
  }
  .batt-hero__main {
    padding-left: clamp(10px, 70 / 1360 * 100vw, 71px);
    @media screen and (max-width: 1320px) {
      padding-inline: 20px;
    }
    @media screen and (max-width: 768px) {
      padding-inline: 0;
    }
  }
  .batt-hero__inner {
    @media screen and (max-width: 1320px) {
      padding-top: 100px;
    }
    @media screen and (max-width: 768px) {
      padding-top: 0;
    }
  }
  .batt-contact__item.-entry {
    display: none;
  }
  .batt-projectSummary {
    text-align: center;
    &::before {
      content: "てるまるでんちプロジェクトのお申込み受付けは終了いたしました。";
      display: block;
      margin: 0 auto var(--section-margin-m);
      padding: 25px 15px;
      background: var(--batt-color-gray04);
      color: white;
      border-radius: 8px;
      font-weight: 700;
      font-size: 2.4rem;
      text-align: center;
      @media screen and (max-width: 768px) {
        padding: 20px;
        font-size: 2.2rem;
      }
    }
  }
  .batt-projectSummary__title {
    margin-top: var(--section-margin-xs);
  }
  .batt-entry__title {
    font-size: 0;
    &::before {
      content: "てるまるでんちプロジェクトのお申込み受付けは終了いたしました。";
      display: block;
      margin-bottom: 100px;
      padding: 25px 15px;
      background: var(--batt-color-gray04);
      color: white;
      border-radius: 8px;
      opacity: 1;
      font-size: 2rem;
      @media screen and (max-width: 768px) {
        margin-bottom: 40px;
      }
    }
  }
  .batt-entry__body {
    display: none;
  }
  .batt-sp-contact__item.-entry {
    display: none;
  }
}
