@charset "UTF-8";

/* ================================================
   custom.css
   style.css に影響を与えずに追加・上書きするスタイル
   ================================================ */

/* --------------------------------------------------
   施設基準ボタン no44
   使用箇所：TOPページ お知らせセクション
   -------------------------------------------------- */
a.c-btn2 {
  background: linear-gradient(90deg, #8aaad8, #bdcce5);
  border: none;
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 500;
  height: 100%;
  letter-spacing: .05em;
  line-height: 1.6666666667;
  margin: 15px auto 0;
  max-width: 300px;
  padding: 13px 0;
  position: relative;
  text-align: center;
  transition: opacity .3s ease-in-out;
  width: 100%;
}
a.c-btn2:hover {
  opacity: .8;
}
a.c-btn2::before {
  aspect-ratio: 20/5;
  background: 50%/contain no-repeat url(../img/common/icon_arrow_right.svg);
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
@media only screen and (min-width: 992px) {
  a.c-btn2 {
    font-size: 16px;
    max-width: 316px;
    padding: 17px 0;
  }
}