@charset "UTF-8";
/*
|---------------------------------------------------------------
| フリーページ：ご利用ガイド
|---------------------------------------------------------------
*/
:root {
  --qfsd-color-font--pageHeading: #231816;
}

.aba-f-guide a {
  color: inherit;
  text-decoration: underline;
}

/*
 * ナビゲーション
------------------------------------------------*/
.aba-f-nav {
  display: block;
  width: 100%;
  margin: clamp(30px, 4vw, 60px) 0;
}
.aba-f-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}
.aba-f-nav__list__item {
  display: flex;
  width: 100%;
  margin: 0;
}
.aba-f-nav__list__item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em 2em;
  border: 1px solid #CCCCCC;
  position: relative;
}
.aba-f-nav__list__item a[href] {
  text-decoration: none !important;
}
.aba-f-nav__list__item a[href]::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: CurrentColor;
  transform: translateY(-25%) rotate(45deg);
  position: absolute;
  top: 0;
  left: auto;
  right: 1em;
  bottom: 0;
  z-index: 2;
  margin: auto;
}
