@charset "UTF-8";
/* 市場価格によって電気料金が30分ごとに変動するプランのスタイル */

.howtoCalcDenki__annotation {
  width: 100%;
  margin: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  background-color: #ffefde;
  height: 97px;
  border-radius: 10px;
}

.howtoCalcDenki__annotation:after {
  content: "";
  display: block;
  margin-bottom: -12px;
  margin-left: 5px;
  background-image: url("../img/icon_exclamation.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 22px;
  height: 33px;
}

.howtoCalcDenki__annotation__sub {
  font-size: 30px;
  margin: 0;
  margin-bottom: -12px;
}

.howtoCalcDenki__annotation__main {
  color: var(--color-main);
  font-size: 62px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  margin: 0;
  margin-top: -6px;
  margin-left: 4px;
}

.howtoCalcDenki__annotation__end {
  font-size: 36px;
  color: var(--color-main);
  margin: 0;
  margin-bottom: -6px;
}

.howtoCalcDenki__list {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.howtoCalcDenki__list:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #1492D5;
  background-image: url("../img/icon_plus_white.png");
  background-size: 30.68px;
  background-position: center;
  background-repeat: no-repeat;
}

.howtoCalcDenki__list__block {
  width: 48%;
  border-radius: 10px;
  border: 2px solid #1492D5;
  padding: 34px 16px;
  box-sizing: border-box;
}

.howtoCalcDenki__list__block__inner {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.howtoCalcDenki__list__block__ttl {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  padding-top: 12px;
}

.howtoCalcDenki__list__block__ttl02 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  margin: 0;
}

.howtoCalcDenki__list__block__ttl02 span sup {
  font-size: 1.1rem;
  margin-left: 5px;
}

.howtoCalcDenki__list__block__ltop {
  margin: 40px 0 0;
  background-color: #1492D5;
  width: calc(100% - 40px);
  box-sizing: border-box;
  color: #FFFFFF;
  padding: 8px;
  border-radius: 10px;
}

.howtoCalcDenki__list__block__lbottom {
  padding: 20px;
  background-color: #E9EEF3;
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
}

.howtoCalcDenki__list__block__lbottom__block {
  color: #FFFFFF;
  background-color: #1492D5;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 10px;
}

.howtoCalcDenki__list__block__lbottom__kakeru {
  margin: 8px auto;
  width: 18px;
}

.howtoCalcDenki__list__block__lbottom__kakeru img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.howtoCalcDenki__list__block__usage {
  border: 2px solid #1492D5;
  font-size: 18px;
  font-weight: 700;
  padding: 9.5px 0;
  margin: 0;
  text-align: center;
  background: #FFFFFF;
  width: 100%;
}

.howtoCalcDenki__list__block__kakeru {
  margin: 8px auto;
  width: 18px;
}

.howtoCalcDenki__list__block__kakeru img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.howtoCalcDenki__list__block__lplus {
  width: 22.93px;
  margin: 22px auto;
}

.howtoCalcDenki__list__block__lplus img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.howtoCalcDenki__list__block__rplus {
  width: 22.93px;
  margin: 10px auto;
}

.howtoCalcDenki__list__block__rplus img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.howtoCalcDenki__list__block__rtop {
  padding: 20px;
  background-color: #E9EEF3;
  box-sizing: border-box;
  width: 100%;
  border-radius: 10px;
}

.howtoCalcDenki__list__block__rbottom {
  padding: 16px 20px;
  background-color: #E9EEF3;
  box-sizing: border-box;
  width: 100%;
  border-radius: 10px;
}

.howtoCalcDenki__planb {
  background-color: #E9EEF3;
  padding: 13px 8px;
  text-align: center;
  margin: 20px 0;
  font-size: 26px;
  font-weight: 700;
  border-radius: 10px;
  line-height: 1.4;
}


@media screen and (max-width: 768px) {
  .howtoCalcDenki__annotation {
    margin: 0 0 0;
    height: 78px;
  }

  .howtoCalcDenki__annotation:after {
    width: 18px;
    height: 30px;
  }

  .howtoCalcDenki__annotation__sub {
    font-size: 20px;
  }

  .howtoCalcDenki__annotation__main {
    font-size: 48px;
    margin-left: 2px;
  }

  .howtoCalcDenki__annotation__end {
    font-size: 26px;
  }

  .howtoCalcDenki__list {
    flex-direction: column;
  }

  .howtoCalcDenki__list:after {
    content: none;
  }

  .howtoCalcDenki__list__block {
    width: 100%;
    margin-top: 24px;
  }
  .howtoCalcDenki__list__block + .howtoCalcDenki__list__block {
    position: relative;
  }
  .howtoCalcDenki__list__block + .howtoCalcDenki__list__block::before {
    content: "";
    position: absolute;
    top: -40px;
    left: calc(50% - 24px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1492D5;
    background-image: url("../img/icon_plus_white.png");
    background-size: 20.68px;
    background-position: center;
    background-repeat: no-repeat;
  }

  .howtoCalcDenki__list__block__ttl {
    font-size: 20px;
    padding-top: 0;
  }

  .howtoCalcDenki__list__block__ttl02 {
    font-size: 16px;
  }

  .howtoCalcDenki__list__block__ltop {
    margin: 20px 0 0;
    border-radius: 6px;
    width: calc(100% - 28px);
  }

  .howtoCalcDenki__list__block__lbottom {
    padding: 24px 12px;
  }

  .howtoCalcDenki__list__block__lbottom__block {
    border-radius: 6px;
  }

  .howtoCalcDenki__list__block__usage {
    font-size: 16px;
  }

  .howtoCalcDenki__list__block__lplus {
    margin: 12px auto;
  }

  .howtoCalcDenki__list__block__rplus {
    margin: 10px auto;
  }

  .howtoCalcDenki__list__block__rtop {
    padding: 20px 12px;
    border-radius: 6px;
  }

  .howtoCalcDenki__list__block__rbottom {
    padding: 16px 12px;
    border-radius: 6px;
  }

  .howtoCalcDenki__planb {
    font-size: 18px;
    margin: 16px 0;
  }

}
