@charset "UTF-8";

.gateway {
  position: relative;
  padding: 12.5rem 0;
  margin-bottom: 0rem;

  @media (max-width: 768px) {
    padding: 5rem 0;
  }
}

.gateway::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200vw;
  height: 100%;
  background: #FFEFC4;
  z-index: -1;

  @media (max-width: 768px) {
    width: 100vw;
  }
}

.gateway .inner {
  max-width: 1200px;
  margin: 0 auto;

  .gateway_txt {
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 5rem;

    @media (max-width: 768px) {
      font-size: 1.8rem;
      margin-bottom: 3rem;
    }
  }

  .gateway_btn_contents {
    display: flex;
    justify-content: center;
    gap: 5rem;

    @media (max-width: 768px) {
      gap: 3rem;
      flex-direction: column;
    }

    .gateway_btn_content {
      position: relative;
      width: 33.8rem;
      text-align: center;

      @media (max-width: 768px) {
        width: 100%;
      }

      .gateway_btn {
        position: relative;
        display: block;
        top: 0;
        width: 100%;
        height: 9rem;
        padding-top: 2rem;
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        box-sizing: border-box;
        border-radius: 1rem;
        text-decoration: none;
        transition: all 0.1s ease-in-out;
        cursor: pointer;

        span {
          font-size: 1.4rem;
          display: block;
          font-weight: 400;
        }
      }
    }
    

    .gateway_btn_content::before {
      position: absolute;
      content: "";
      top: 0.5rem;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 1rem;
    }

    .gateway_btn_content:hover {
      .gateway_btn {
        top: 0.5rem;
      }
    }

    .gateway_btn_yes::before {
      background: #AB412E;
    }

    .gateway_btn_yes .gateway_btn {
      background: #FF5436;
    }
    .gateway_btn_no::before {
      background: #014943;
    }
    .gateway_btn_no .gateway_btn {
      background: #00A395;
    }
  }
}