@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css2?family=Palanquin+Dark&display=swap');

.pc_only {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  .max-w-1200 {
    max-width: 1200px;
  }

  .mx-auto-1200 {
    margin-inline: auto;
  }

  .px-0-1200 {
    padding-inline: 0;
  }
}

/* --------------------------------------------------------------------------
  料金シュミレーション１、２
-------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  #rateexample .wrap {
    margin: 0 auto;
    width: 90%;
  }
}

.p_simulator_select_content {
  display: block;
  --color-blue-1: #0168b6;
  --color-blue-2: #00589B;
}

.rate-example {
  margin-bottom: 24px;

  @media screen and (min-width: 1200px) {
    margin-bottom: 40px;
  }
}

.rate-example__step-row {
  display: flex;
  flex-direction: column;
  gap: 42px;

  @media screen and (min-width: 1200px) {
    flex-direction: row;
    justify-content: space-between;
    gap: initial;
  }
}

.rate-example__step {
  position: relative;
  border: 2px solid var(--color-blue-1) !important;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 15px;

  @media screen and (min-width: 1200px) {
    width: calc(33.3333% - 40px);
  }
}

.rate-example__step:nth-child(1)::after,
.rate-example__step:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-blue-1);
  width: 20px;
  height: calc(tan(60deg) * 20px / 2);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-top: 15px;
}

@media screen and (min-width: 1200px) {
  .rate-example__step:nth-child(1)::after,
  .rate-example__step:nth-child(2)::after {
    top: 50%;
    bottom: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin: 0 0 0 25px;
    width: 20px;
    height: calc(tan(60deg) * 60px / 2);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}

.rate-example__step-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  background-color: var(--color-blue-1);
  border-top-left-radius: 13px;
  border-bottom-right-radius: 13px;

  @media screen and (min-width: 1200px) {
    width: 54px;
    height: 54px;
  }
}

.rate-example__step-num-text {
  font: bold 18px Oswald;
  color: #fff;

  @media screen and (min-width: 1200px) {
    font-size: 28px;
  }
}

.rate-example__ttl {
  font-size: 18px;
  font-weight: bold;
  margin-inline: 10px;
  margin-bottom: 20px;
}

.rate-example__ttl-text {
  margin-left: 16px;
  font-size: inherit !important;
  line-height: 1.2;
}

.rate-example__area {
  display: flex;
  flex-direction: row-reverse;
  gap: 6px;
  align-items: flex-start;
  justify-content: space-between;
  width: fit-content;
  margin: auto;
}

.rate-example__area-col {
  flex-direction: column;
  flex: auto;
  gap: 6px 0;
}

.rate-example__area-item {
  width: 100%;
}

.rate-example__area-item.hokkaido {
  width: 80px;
}

.rate-example__area-item.tohoku {
  width: 56px;
}

.rate-example__area-item.tokyo {
  width: 80px;
  height: 80px;
}

.rate-example__area-item.kansai {
  height: 68px;
}

@media screen and (min-width: 1200px) {
  .rate-example__area-item.hokkaido {
    width: 90px;
  }

  .rate-example__area-item.tohoku {
    width: 60px;
  }

  .rate-example__area-item.tokyo {
    width: 90px;
    height: 90px;
  }

  .rate-example__area-item.kansai {
    height: 68px;
  }
}

.rate-example__area-label {
  width: 100%;
  height: 100%;
  padding: 8px;
  flex-direction: column;
  border: 1px solid var(--color-blue-2);
  border-radius: 8px;
  box-shadow: 0 3px var(--color-blue-2);
  color: var(--color-blue-2);
  font-weight: bold;
  transition: .2s;
}

@media screen and (min-width: 1200px) {
  .rate-example__area-label {
    padding: 12px;
  }

  .rate-example__area-label:hover {
    background-color: var(--color-blue-1);
    color: #fff;
  }
}

.rate-example__area-label:has(:checked) {
  background-color: var(--color-blue-1);
  color: #fff;
}

.rate-example__area-label:has(:disabled) {
  background-color: #ccc;
  cursor: default;
  pointer-events: none;
}

.rate-example__step-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 10px;
}

.rate-example__step-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: calc(50% - 5px);
  border: 1px solid var(--color-blue-2);
  border-radius: 8px;
  box-shadow: 0 3px var(--color-blue-2);
  overflow: hidden;

  @media screen and (min-width: 1200px) {
    max-width: 200px;
  }
}

.rate-example__step-item-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 18px;
  background-color: transparent;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-blue-1);
  transition: .2s;
}

@media screen and (min-width: 1200px) {
  .rate-example__step-item-label:hover {
    background-color: #0168b6;
    color: #fff;
  }
}

:checked+.rate-example__step-item-label {
  background-color: #0168b6;
  color: #fff;
}
:disabled+.rate-example__step-item-label {
  background-color: #ccc;
  cursor: default;
  pointer-events: none;
}

.btn-result {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  margin: auto;
  margin-bottom: 20px;
  padding: 16px;
  background-color: var(--color-blue-1);
  border-radius: 10px;
  box-shadow: 0 4px var(--color-blue-2);
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  transition: .2s;
}

.btn-result:disabled {
  background: #d6d6d6;
  box-shadow: 0 4px transparent;
}

@media screen and (min-width: 1200px) {
  .btn-result:enabled:hover {
    transform: translateY(4px);
    box-shadow: none;
    opacity: 0.7;
  }
}

/* --------------------------------------------------------------------------
  シュミレーション結果
-------------------------------------------------------------------------- */
.result-wrap {
  display: none;

  &.onset {
    margin-top: 40px;
    margin-bottom: 24px;

    @media only screen and (min-width: 1200px) {
      margin-top: 80px;
      margin-bottom: 40px;
    }
  }

  & .simulation-result {
    background-color: #EDF6FC;
    border-radius: 10px;
    padding: 20px;

    @media screen and (min-width: 769px) {
      padding: 48px;
    }
  }
}

.result-wrap-b-outline {
  margin: 0 20px;

  @media screen and (min-width: 1200px) {
    margin: 0 80px;
  }
}

/* 電力会社選択 */
.div_pulldown-company {
  display: flex;
  justify-content: center;
  padding: 25px 0 15px;

  @media screen and (max-width: 768px) {
    display: block;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.pulldown-title {
  font-weight: 700;
  font-size: 20px;
  margin-right: 24px;
  line-height: 92px;
  color: var(--color-blue-1);

  @media screen and (max-width: 768px) {
    font-size: 14px;
    line-height: normal;
  }
}

.select-company-area {
  position: relative;
  border: 1px solid var(--color-blue-1);
  border-radius: 10px;
  z-index: 10;
  font-size: 20px;
  color: var(--color-blue-1);
  padding: 30px;
  width: 393px;
  cursor: pointer;
  &.is-disabled {
    pointer-events: none;
    border: none;
    width: auto;
    padding: 0;
    margin-left: -20px;
    line-height: 92px;
    .pulldown-company-first::after {
      content: none;
    }
  }

  @media screen and (max-width: 768px) {
    font-size: 14px;
    padding-inline: 20px;
    margin-top: 8px;
    width: 100%;
    &.is-disabled {
      margin-left: 0;
      line-height: 1;
    }
  }
}

.pulldown-company-first {
  position: relative;
  font-weight: 700;
  color: inherit;
}

.pulldown-company-first::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: inherit;
  translate: 0 -50%;
  rotate: 135deg;
  transition: all 0.5s;
}

.pulldown-company-first.is-active::after {
  rotate: -45deg;
}

.pulldown-company-list {
  display: none;
  margin-top: 20px;
  border-top: 1px dashed var(--color-blue-1);
  color: #000;
}

.pulldown-company-list.is-visible {
  display: block;
}

.pulldown-company-list li:not(:nth-child(1)) {
  display: none;
}

.pulldown-company-list li.is-visible:not(:nth-child(1)) {
  display: block;
}

.pulldown-company-list label {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #DFDFDF;
  padding: 18px 0;
  cursor: pointer;

  @media (min-width: 1200px) {
    padding-block: 12px;
  }
}

/* 月々の料金一覧 */
.month-price-table {
  margin-top: 30px;

  @media screen and (min-width: 769px) {
    margin-top: 48px;
  }
}

.month-price-table-area {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-blue-1);
  border-radius: 10px;
  z-index: 10;
  font-size: 12px;
  padding: 20px;
  margin-top: 8px;
  width: 100%;

  @media screen and (min-width: 769px) {
    font-size: 18px;
    padding: 20px 40px;
  }
}

.month-price-table-title {
  position: relative;
  font-weight: 700;
  color: var(--color-blue-1);
  cursor: pointer;
}

.month-price-table-title::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #0168b6;
}

.month-price-table-title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 2px;
  right: 7px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #0168b6;
  transition: all 0.5s;
}

.month-price-table-title.is-open::after {
  transform: rotate(90deg);
}

.month-price-table {
  display: none;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 12px;
  margin: 20px 0;

  @media screen and (min-width: 769px) {
    font-size: 15px;
  }
}

.month-price-table.is-visible {
  display: table;
}
.month-price-table tr {
  border-bottom: 1px solid #DFDFDF;
}

.month-price-table th {
  padding: 12px 8px;
  border-top: 1px solid #DFDFDF;
  font-weight: 700;
  text-align: right;

  @media screen and (min-width: 769px) {
    padding: 12px 20px;
  }
}
.month-price-table .price-table-header-month {
  text-align: left;

  @media screen and (min-width: 769px) {
    width: 60%;
  }
}

.month-price-table td {
  padding: 12px 8px;
  text-align: right;

  @media screen and (min-width: 769px) {
    padding: 12px 20px;
  }
}

.price-table-data .price-table-month-data {
  text-align: left;
}

.no-merit-annotation {
  margin-top: 10px;
  padding-bottom: 40px;
}

.c_plan__service {
  display: none;
  margin: 24px 0;

  & .p_home_menu_plan2__plan_button_sp {
    display: block;
  }

  & .p_home_menu_plan2__service_title_copy,
  & .p_home_menu_plan2__service_title {
    display: block;
    text-align: center;
    background: initial;
  }

  & .p_home_menu_plan2__service_title span {
    background: linear-gradient(transparent 65%, #fee100 0);
  }
}

.c_plan__service.visible {
  display: block;
}

@media screen and (min-width: 769px) {
  .c_plan__service {
    padding: 45px 100px;
    margin-top: 40px;
    margin-bottom: 0;
  }
}

.c_btn10__obj.__long {
  position: relative;
}

.c_btn10__obj.__long::after {
  content: "";
  width: 8px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-size: cover;
  background-image: url(/assets/images/layer.svg);
}

/* シュミレーションB用 */
.result-wrap-b {
  position: relative;
  border: 2px solid #0168B6;
  border-radius: 16px;
  background-color: #fff;

  &::after {
    content: "";
    position: absolute;
    top: -45px;
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-blue-1);
    width: 20px;
    height: calc(tan(60deg) * 20px / 2);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-top: 15px;
  }

  & .result-ttl {
    padding: 16px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background: #0168B6;
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
    color: #FFF;
  }

  & .result-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px 0;
  }

  & .result-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
  }

  & .result-header-ttl {
    padding-left: 30px;
    min-height: 24px;
  }

  & .result-header-ttl-pin {
    background: url("/assets/images/simulator/icon-pin-sp.svg") 0 center no-repeat;
    background-size: 24px auto;
  }

  & .result-header-ttl-home {
    background: url("/assets/images/simulator/icon-home-sp.svg") 0 center no-repeat;
    background-size: 24px auto;
  }

  & .result-header-data {
    text-align: right;
    font-weight: bold;
  }

  & .no-merit-simulation-result {
    text-align: center;
  }

  & .result-check-glaph-modal-trigger {
    display: table;
    font-size: 15px;
    margin: 40px auto;
    cursor: pointer;
    text-decoration: underline;
  }
}

@media only screen and (min-width: 769px) {
  .result-wrap-b {
    & .result-ttl {
      padding: 24px;
      font-size: 24px;
    }

    & .result-header {
      flex-direction: row;
      gap: 100px;
      position: relative;
    }

    & .result-header::after {
      content: "";
      position: absolute;
      inset: 0;
      width: 1px;
      height: 60px;
      margin: auto;
      background-color: #dfdfdf;
    }

    & .result-header-row {
      flex: 1;
    }

    & .result-check-glaph-modal-trigger {
      font-size: 18px;
    }
  }
}

@media only screen and (min-width: 1200px) {
  .result-wrap-b {
    &::after {
      width: 60px;
      height: calc(tan(60deg) * 20px / 2);
      margin-top: 0;
    }

    & .result-header-row {
      font-size: 18px;
    }

    & .result-header-ttl {
      padding-left: 68px;
      min-height: 60px;
      line-height: 60px;
      font-weight: bold;
    }

    & .result-header-ttl-pin {
      background-image: url("/assets/images/simulator/icon-pin-pc.svg");
      background-size: 60px auto;
    }

    & .result-header-ttl-home {
      background-image: url("/assets/images/simulator/icon-home-pc.svg");
      background-size: 60px auto;
    }

    & .result-header-data {
      text-align: center;
    }
  }
}

/* 簡易版シミュレーション結果 */
.p_areaNew__box_title_content_wrap {
  display: flex;
  gap: 35px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p_areaNew__box_title_content_wrap {
    padding: 0;
    gap: 0;
    flex-flow: column;
    margin: 20px 0 0;
  }
}

.p_areaNew__price_box {
  flex: 1;
  width: 100%;
  border-radius: 15px;
  text-align: center;

  @media screen and (min-width: 769px) {
    width: 58%;
  }
}

@media screen and (max-width: 1199px) {
  .p_areaNew__price_box {
    text-align: center;
  }
}

.result_catch_title {
  display: none;
}

.result_catch_title.is-visible {
  display: block;
}

.p_areaNew__price_box_title {
  font-size: 30px;
  color: var(--color-blue-1);
  font-weight: 700;
  padding-left: 10px;
  line-height: 1.4;
}

@media screen and (max-width: 1199px) {
  .p_areaNew__price_box_title {
    font-size: 22px;
  }
}

.p_areaNew__price_box_title .pc_only {
  @media screen and (min-width: 769px) {
    display: inline-block;
  }
}

.p_areaNew__price_box_contents {
  color: var(--color-blue-1);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;

  @media screen and (min-width: 769px) {
    font-size: 36px;
  }
}

.p_areaNew__price_box_underline_price {
  font-size: 80px;
}

@media screen and (max-width: 1199px) {
  .p_areaNew__price_box_underline_price {
    font-size: 46px;
  }
}

.p_areaNew__price_box_underline_text {
  display: inline-flex;
  padding: 0 4px;
  font-family: Oswald, sans-serif;
  align-items: baseline;
  font-weight: 600;
}

@media screen and (max-width: 1199px) {
  .p_areaNew__price_box_underline_text {
    padding: 0;
  }
}

.approximately_text {
  font-size: 22px;
  margin-right: 4px;

  @media screen and (min-width: 1199px) {
    font-size: 36px;
  }
}

.p_areaNew__price_box_sp_only_underline_text {
  background: linear-gradient(transparent 75%, #fee100 0);
  color: #e85f5f;

  @media screen and (min-width: 769px) {
    background-image: none;
    color: var(--color-blue-1);
  }
}

.p_areaNew__price_box_underline_text_sp_only {
  background: linear-gradient(transparent 75%, #fee100 0);
  color: #e85f5f;
  font-size: 22px;

  @media screen and (min-width: 769px) {
    background-image: none;
    color: var(--color-blue-1);
    font-size: 36px;
  }
}

.p_areaNew__price_box_underline_text_pc_only {
  background-image: none;

  @media screen and (min-width: 769px) {
    background: linear-gradient(transparent 75%, #fee100 0);
    color: #e85f5f;
  }
}

.no_merit_result_text.pc_only_inline div {
  display: block;

  @media screen and (min-width: 769px) {
    display: inline-block;
  }
}

.p_areaNew__price_box_text_blue.pc_only_inline {
  display: inline;
  padding-top: 10px;
}

@media screen and (max-width: 1199px) {
  .p_areaNew__price_box_contents .pc_only_inline {
    display: block;
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .p_areaNew__price_box_contents .pc_only_inline {
    display: none;
  }
}

.p_areaNew__price_box_text_blue.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .p_areaNew__price_box_text_blue.sp_only {
    display: block;
    font-size: 22px;
    padding-top: 10px;
  }
}

.p_areaNew__price_label {
  font-size: 14px;
  font-weight: 700;
}

.p_areaNew__price_text {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 700;
  font-family: Oswald, sans-serif;
  margin-top: 8px;
}

/* 簡易版シミュレーション結果 グラフ部分 */
.p_areaNew__price_image {
  width: 42%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_areaNew__price_image {
    width: 100%;
    padding-top: 30px;
  }
}

.p_areaNew__price_text_wrap {
  display: flex;
  width: 100%;
  top: 0;
  gap: 5%;
  align-items: flex-end;
  aspect-ratio: 374/193;
  background-image: url(/api/image?imageName=56cef93f115045f3b0476a8d347146fc/7a96f7ec76314512a1c733991009d78a/img-comparison-bg-pc.png);
  background-size: contain;
  background-repeat: no-repeat;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p_areaNew__price_text_wrap {
    aspect-ratio: 295/120;
    gap: 7%;
    justify-content: space-around;
    background-image: url(/api/image?imageName=56cef93f115045f3b0476a8d347146fc/2a4b843af1944e759613c7a4efcdfe28/img-comparison-bg-sp.png);
  }
}

.p_areaNew__price_big {
  color: #0168B6;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 0 10px;
  text-align: center;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .p_areaNew__price_big {
    width: 50%;
    padding: 0;
  }
}

.p_areaNew__price_looop {
  color: #fff;
  height: 75%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .p_areaNew__price_looop {
    width: 50%;
    height: 83%;
  }
}

.p_areaNew__price_unit {
  font-size: 14px;
  font-weight: 400;
}

/* ピークシフト説明 */
.peak_shift_area {
  padding-top: 40px;
  color: var(--color-blue-1);
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  border-top: 2px dashed #EDF6FC;
}

.peak_shift_catch_copy {
  font-size: 15px;

  @media screen and (min-width: 769px) {
    font-size: 18px;
  }
}

.peak_shift_catch_text {
  @media screen and (min-width: 769px) {
    font-size: 30px;
    display: flex;
    justify-content: center;
  }
}

.peak_shift_explanation_area {
  background-color: #EDF6FC;
  border-radius: 10px;
  margin-top: 20px;
  padding: 30px 20px;
  font-size: 15px;

  @media screen and (min-width: 769px) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 51px;
  }
}

.peak_shift_example_text {
  margin-bottom: 20px;

  @media screen and (min-width: 1200px) {
    font-size: 18px;
    margin-bottom: 0;
  }
}

.peak_shift_flex {
  @media screen and (min-width: 769px) {
    display: flex;
    justify-content: center;
  }
}

.text_red {
  color: #F85858;
}

.otoku_text {
  margin-top: 20px;
}

.peak_shift_graph {
  @media screen and (min-width: 769px) {
    width: 50%;
  }
}

/* モーダル料金計算の詳細 */
.modal-calc-condition__overlay {
  display: none;
  position: fixed;
  z-index: 5001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-calc-condition {
  display: none;
  position: fixed;
  z-index: 5001;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: #EDF6FC;
  overscroll-behavior-y: contain;

  @media screen and (min-width: 1200px) {
    width: 800px;
    height: min-content;
    position: absolute;
    top: 150px;
    bottom: unset;
    border-radius: 16px;
  }

  &::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    height: calc(100vh + 1px);
    width: 1px;
    background-color: transparent;
  }

  @media screen and (min-width: 1200px) {
    &::after {
      content: none;
    }
  }
}

.modal-calc-condition__inner {
  position: relative;
  overflow: hidden;
  min-height: 100vh;

  @media screen and (min-width: 1200px) {
    min-height: auto;
  }
}

.modal-calc-condition__close {
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 20px;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;

  @media screen and (min-width: 1200px) {
    top: 56px;
    right: 40px;
  }
}

.modal-calc-condition__close-line {
  position: relative;
  width: 100%;
  height: 100%;

  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    margin: auto;
    background-color: #0168b6;
  }

  &::before {
    rotate: 45deg;
  }

  &::after {
    rotate: 135deg;
  }
}

.modal-calc-condition__divider {
  margin: 40px 20px;

  @media screen and (min-width: 1200px) {
    margin: 40px;
  }
}

.modal-calc-condition__ttl {
  height: auto;
  margin-top: 0;
  padding-bottom: 30px;

  &::before {
    content: none;
  }
}

.modal-calc-condition__body {
  margin-top: 12px;
  border-radius: 12px;
  background-color: #fff;
}

.modal-calc-condition__list {
  padding: 20px;
}

.modal-calc-condition__item {
  padding-left: 1em;

  &::before {
    content: "・";
    margin-left: -1em;
  }

  &:not(:first-child) {
    margin-top: 4px;
  }
}
.modal-calc-condition__description {
    padding-left: 1em;
    margin-top: 4px;
}

.p_areaNew__ecocuto-box,
.p_areaNew__ecocuto-box-contents {
  margin-top: 32px;
}

@media screen and (max-width: 768px) {

  .p_areaNew__ecocuto-box,
  .p_areaNew__ecocuto-box-contents {
    margin-top: 20px;
  }
}

.p_areaNew__ecocuto-box-title {
  font-weight: bold;
  color: #0168b6;
  font-size: 32px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p_areaNew__ecocuto-box-title {
    font-size: 22px;
  }
}
.p_points-ecocuto__body {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p_points-ecocuto__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-top: 20px;
  }
}

.p_points-ecocuto__catch,
.p_points-ecocuto__sub-catch {
  color: #0168b6;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.p_points-ecocuto__catch {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .p_points-ecocuto__catch {
    font-size: 15px;
  }
}

.p_points-ecocuto__graph {
  aspect-ratio: 264/180;
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p_points-ecocuto__graph {
    max-width: 264px;
  }
}

.p_points-ecocuto__sub-catch {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .p_points-ecocuto__sub-catch {
    font-size: 15px;
  }
}

.p_points-ecocuto__sub-catch-large {
  font-size: 24px;
  display: block;
}

@media screen and (max-width: 768px) {
  .p_points-ecocuto__sub-catch-large {
    font-size: 18px;
  }
}

.p_points-ecocuto__contents {
  display: grid;
  place-items: center;
  gap: 16px;
  max-width: 450px;
  width: 100%;
}

.p_points-ecocuto__sub-catch-num {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
}

@media screen and (max-width: 768px) {
  .p_points-ecocuto__sub-catch-num {
    font-size: 40px;
  }
}

.p_points-ecocuto-wrap {
  background-color: #EDF6FC;
  border-radius: 20px;
  padding: 30px 20px;
}

.p_points-ecocuto__label {
  background-color: #fff;
  color: #0168b6;
  font-weight: 900;
  border-radius: 8px;
  font-size: 20px;
  padding: 12px 16px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .p_points-ecocuto__label {
    padding: 8px 12px;
    font-size: 15px;
  }
}
