@charset "UTF-8";
/*
  /rakurakucloud/mailmarketing/asset/css/object/component/c-anchorlink.css
  アンカーリンクCSS
*/
.c-anchorlink-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  @media screen and (max-width: 1024px) {
    flex-wrap: wrap;
  }
  @media screen and (max-width: 600px) {
    flex-direction: column;
  }
}
.c-anchorlink-box-link {
  position: relative;
  flex-basis: 20%;
  display: grid;
  place-content: center;
  height: 90px;
  padding: 10px;
  color: var(--rmailmarketing-dark);
  font-size: 16px;
  font-weight: bold;
  background: var(--white);
  border-radius: 10px;
  @media screen and (max-width: 1024px) {
    flex-basis: 30%;
  }
  @media screen and (max-width: 600px) {
    flex-basis: auto;
    width: 100%;
    height: 70px;
  }
  &::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 10px;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid var(--rmailmarketing-dark);
    border-right: 2px solid var(--rmailmarketing-dark);
    transition: all ease 0.3s;
    transform: translate(-50%, -50%);
    transform: rotate(135deg);
    z-index: 10;
  }
  &:hover {
    color: var(--white);
    background: var(--rmailmarketing-dark);
    &::after {
      border-top: 2px solid var(--white);
      border-right: 2px solid var(--white);
    }
  }
}
.c-anchorlink-box-link__text {
  position: relative;
  top: -3px;
  text-align: center;
  line-height: 1.1;
}
