@charset "utf-8";

.un_sharedGasBrackdownErrorcode_panel_wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}

.un_sharedGasBrackdownErrorcode_panel {
  background: var(--secondBgColor);
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  .un_sharedGasBrackdownErrorcode_panel_head {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
  }

  .un_sharedGasBrackdownErrorcode_panel_body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .un_sharedGasBrackdownErrorcode_panel_body_link {
    width: 250px;
    height: 70px;
    background: #fff;
    border: 2px solid var(--dekiruGreen);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;

    &:nth-child(n+3) {
      margin-top: 10px;
    }
  }

  .un_sharedGasBrackdownErrorcode_panel_body_link_maker {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 22px;
      height: 22px;
      margin: auto;
      border-radius: 20px;
      background-color: var(--dekiruGreen);
    }

    &::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 8px;
      width: 9px;
      height: 9px;
      margin: auto;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(45deg);
      box-sizing: border-box;
    }
  }

  .un_sharedGasBrackdownErrorcode_panel_body_link_maker_logo {
    width: 120px;
    height: auto;
  }
}

@media screen and (max-width: 640px) {
  .un_sharedGasBrackdownErrorcode_panel_wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .un_sharedGasBrackdownErrorcode_panel {
    padding: 20px 10px;

    .un_sharedGasBrackdownErrorcode_panel_head {
      font-size: 15px;
    }

    .un_sharedGasBrackdownErrorcode_panel_body {
      gap: 10px;
      margin-top: 20px;
    }

    .un_sharedGasBrackdownErrorcode_panel_body_link {
      width: calc((100% - 10px) / 2);
      height: 55px;
      padding: 10px;

      &:nth-child(n+3) {
        margin-top: 10px;
      }
    }

    .un_sharedGasBrackdownErrorcode_panel_body_link_maker {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;

      &::before {
        width: 18px;
        height: 18px;
        border-radius: 18px;
      }

      &::after {
        right: 7px;
        width: 7px;
        height: 7px;
      }
    }

    .un_sharedGasBrackdownErrorcode_panel_body_link_maker_logo {
      width: 85px;

      &.un_sharedGasBrackdownErrorcode_panel_body_link_maker_logo__rinnai{
        width: 82px;
      }
      &.un_sharedGasBrackdownErrorcode_panel_body_link_maker_logo__noritz{
        width: 90px;
      }
    }
  }

}