@charset "UTF-8";

/* リンクカード(内部リンク用) */
.linkcard {
  margin-bottom: 2.5rem;
}
.linkcard a {
  display: block;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid #999;
  text-decoration: none !important;
}
.linkcard a:hover {
  background: #f7f7ff;
}
.linkcard-content {
  display: block;
  line-height: 1.5;
}
.linkcard-title {
  display: block;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1em;
  font-weight: 400;
  color: #333;
  border-bottom: 1px dotted #999;
}
.linkcard-image {
  display: block;
  float: left;
  margin-right: 1.5rem;
  width: 160px;
  height: 100px;
  box-shadow: 1px 1px 1px #ccc
}
.linkcard-image img {
  max-width: 160px;
  max-height: 100px;
  vertical-align: bottom;
}
.linkcard-text {
  font-size: 0.875em;
  display: block;
  color: #333;
}

/* リンクカード(タイル型) */
.linkcard-tile {
  width: 100%;
  max-width: 400px;
}
.linkcard-tile .linkcard-image {
  display: block;
  float: none;
}
.linkcard-tile .linkcard-image img {
  margin: 0;
  width: 100%;
}
.linkcard-tile .linkcard-title {
  display: flex;
  justify-content: center;
  font-size: 1.25em;
  font-weight: 700;
  color: #333;
  border-bottom: 0 none;
  margin: 0.5em 0;
}
.linkcard-tile .linkcard-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* リンクテープ(内部リンク用) */
.linktape {
  margin-bottom: 2.5rem;
}
.linktape a {
  display: block;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid #999;
  text-decoration: none !important;
}
.linktape a:hover {
  background: #f7f7ff;
}
.linktape-content {
  display: block;
  font-size: 0.875em;
  line-height: 1.5;
}
.linktape-title {
  display: block;
  color: #333333;
}
.linktape-title:before {
  content: "»\20";
}

/* リンクテキスト(内部リンク用) */
.linktext:before {
  content: "»\20";
}
