@charset "UTF-8";

/* ==========================================================================
   cta-list.css
   ========================================================================== */

.o-m__cta-list_column {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  @media screen and (max-width: 768px) {
    display: block;
  }
}

.o-m__cta-list_column_item {
  min-height: 290px;
  width: 32%;
  background-color: var(--rmeisai-bg-sub-03);
  border-radius: 10px;
  padding: 40px 15px 30px;
  position: relative;
  /* &:hover{ */
  /*   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2); */
  /* } */
  @media screen and (max-width: 768px) {
    width: 100%;
    margin-bottom: 20px;
    padding: 30px 20px;
    min-height: inherit;
  }
  &:last-child {
    @media screen and (max-width: 768px) {
      margin-bottom: 0;
    }
  }
}

.o-m__cta-list_column_title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--rmeisai-primary);
  margin-bottom: 10px;
  min-height: 50px;
  @media screen and (max-width: 768px) {
    margin-bottom: 10px;
    min-height: inherit;
  }
}

.o-m__cta-list_column_text {
  font-size: 16px;
  text-align: center;
  color: var(--black);
  @media screen and (max-width: 768px) {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.o-m__cta-list_column_btn {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  @media screen and (max-width: 768px) {
    position: static;
  }
}

.o-m__cta-list_column_btn .o-c__btn-link._white {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 84%;
  height: 60px;
  margin: auto;
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}
