/* --------------------------------------------------------------------------
   .factbook-content
--------------------------------------------------------------------------- */
.factbook-content {
  margin-top: 40px;
}
.factbook-content .message__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  background: #edece7;
}
.factbook-content .message .heading {
  font-family: serif;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.1em;
}
.factbook-content .message__content {
  background: #fff;
}
.factbook-content .message .content {
  padding: 0 10px;
}
.factbook-content .message .content__text {
  margin-top: 14px;
  font-size: 13px;
  line-height: 2;
}
.factbook-content .message .commonText + .commonCautionText {
  margin-top: 10px;
}
.factbook-content .link-list {
  margin: 35px 0 0;
}
.factbook-content .link-list__item {
  margin: 30px 0 0;
  text-align: center;
}
.factbook-content .link-list__bnrLink {
  display: inline-flex;
  width: 305px;
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.factbook-content .link-list__bnrLink > img {
  width: 100%;
  height: auto;
}
.factbook-content .link-list .item {
  transition: opacity 0.3s;
}
.factbook-content .link-list .item__caution {
  display: block;
  margin: 5px 0 0;
}
.factbook-content .link-list .link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 102px;
  font-family: serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  background: #fff;
  border-radius: 2px;
  transition: opacity 0.3s;
}
.factbook-content .link-list .link::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  content: "";
  background: transparent;
  border: 2px solid #a30004;
  border-radius: 2px;
}
.factbook-content .link-list .link__inner {
  width: 204px;
  margin: 0 auto;
}
.factbook-content .link-list + .message {
  margin: 40px 0 0;
}
@media (min-width: 768px) {
  .factbook-content {
    margin-top: 80px;
  }
  .factbook-content .message__heading {
    height: 75px;
    background: transparent;
  }
  .factbook-content .message .heading {
    font-size: 32px;
  }
  .factbook-content .message .heading img {
    width: auto;
    height: auto;
  }
  .factbook-content .message__content {
    margin-top: -49px;
    background: transparent;
  }
  .factbook-content .message .content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 262px;
    padding: 0;
  }
  .factbook-content .message .content__image {
    width: auto;
    height: auto;
  }
  .factbook-content .message .content__text {
    font-size: 20px;
  }
  .factbook-content .link-list {
    display: flex;
    margin: 30px 0 0 -35px;
  }
  .factbook-content .link-list__item {
    margin: 0 0 0 35px;
  }
  .factbook-content .link-list__bnrLink {
    width: 576px;
  }
  .factbook-content .link-list .item__caution {
    margin: 10px 0 0 16px;
    font-size: 16px;
  }
  .factbook-content .link-list .link {
    width: 528px;
    height: 204px;
    font-size: 28px;
    border-radius: 4px;
  }
  .factbook-content .link-list .link::before {
    top: 9px;
    right: 9px;
    bottom: 9px;
    left: 9px;
    border: 3px solid #a30004;
    border-radius: 4px;
  }
  .factbook-content .link-list .link__inner {
    width: auto;
    margin: 0;
  }
  .factbook-content .link-list .link img {
    width: auto;
    height: auto;
  }
  .factbook-content .link-list .link:hover {
    opacity: 0.7;
  }
  .factbook-content .link-list + .message {
    margin: 80px 0 0;
  }
  .factbook-content .link-list--md-right {
    justify-content: flex-end;
  }
}
@media (hover: hover) and (pointer: fine) {
  .factbook-content .link-list__bnrLink:hover {
    opacity: 0.6;
  }
}