/* =======================================================================
   Information Page Styles
======================================================================= */

.information_card {
  div {
    padding: 0 0.25rem;
  }
  a {
    display: block;
    line-height: 1.7;
    transition: all 0.3s;
    width: 100%;
  }

  /* リンクテキスト */
  a:first-of-type {
    padding: 1rem 0;
    &:hover {
      color: var(--wp--preset--color--custom-blue);
    }
  }

  /* ボタン */
  .wp-block-file__button {
    box-sizing: border-box;
    max-width: 390px;
    margin: 0 !important;
    position: relative;
    text-align: center;

    &:after {
      content: "\f019";
      color: #fff;
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      position: absolute;
      right: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
    }

    &:hover {
      background-color: var(--wp--preset--color--custom-blue);
    }
  }
}

/* =======================================================================
   Media Query
======================================================================= */
@media (max-width: 768px) {
  .information_card {
    div {
      padding-bottom: 1rem;
    }
  }
}
