@charset "UTF-8";

.community-area {
  margin-bottom: 12rem;
}
.community-area h2 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #e9ecee;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.community-area h2.mb5 {
  margin-bottom: 5rem;
}
.community-area p {
  font-size: 1.6rem;
  line-height: 2;
}
.community-area p.mb4 {
  margin-bottom: 4rem;
}
.community-area p.mb10 {
  margin-bottom: 10rem;
}
.community-area ul {
}
.community-area ul li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid #e9ecee;
}
.community-area ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.community-box {
  width: 50%;
}
.community-box:first-child {
  margin-right: 6rem;
}
.community-box h3 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 3rem;
}
/* .community-box p {
    
} */
.community-box figure.t-border {
  border: 1px solid #e9ecee;
}
.community-box figure img {
}
/* ----------------------------------------
.c-r-generic-link
---------------------------------------- */
.c-r-generic-link {
  max-width: 28rem;
}
.c-r-generic-link a {
  font-size: 1.6rem;
  font-weight: bold;
  min-height: 5rem;
  border-radius: 10rem;
  border: 1px solid #e9ecee;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0068b7;
  position: relative;
  z-index: 0;
}

.c-r-generic-link a::after {
  content: "";
  width: 0.7rem;
  display: inline-block;
  aspect-ratio: 1;
  border-bottom: 1px solid #0068b7;
  border-right: 1px solid #0068b7;
  transform-origin: right top;
  transform: rotate(-45deg);
  position: absolute;
  right: 3rem;
}
.c-r-generic-link a.blank::after {
  display: none;
}
.c-r-generic-link a.hover {
  border: 1px solid #0068b7;
  color: #fff;
  background-color: #0068b7;
}
.c-r-generic-link a.hover::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.c-r-generic-link a span {
  position: relative;
  z-index: 0;
}
.c-r-generic-link a span::after {
  content: "";
  width: 1.1rem;
  position: absolute;
  margin: 0.5rem 0 0 0.5rem;
  aspect-ratio: 1;
  background: url(/images3/common/icon-blank.png) no-repeat center / contain;
}
.c-r-generic-link a.hover span::after {
  filter: brightness(0) invert(1) opacity(0.8);
}
/* ----------------------------------------
css animation
---------------------------------------- */

.js-fade {
  opacity: 0;
  transform: translateY(2rem);
}

.js-fadeUp {
  transition: all 0.5s ease-out;
  transition-delay: 0.1s;
  transform: translateY(0);
  opacity: 1;
}
