@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
.pickup {
  padding: 50px 5%;
  padding-top: 0;
  margin-top: -300px;
  position: relative;
  z-index: 2;
  padding-right: 0;
}
@media (max-width: 767px) {
  .pickup {
    margin-top: 0px;
    padding-top: 50px;
  }
}
.pickup h2 {
  color: white;
}
@media (max-width: 767px) {
  .pickup h2 {
    color: black;
  }
}
.pickup .swiper {
  margin-top: 40px;
}
.pickup .swiper .swiper-slide {
  filter: drop-shadow(0 5px 8px rgba(149, 157, 165, 0.5));
}
.pickup .swiper .swiper-slide .img-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .pickup .swiper .swiper-slide .img-wrapper img {
    height: 160px;
  }
}
.pickup .swiper .swiper-slide .txt-wrapper {
  background-color: #eee;
  width: 100%;
  height: auto;
  min-height: 140px;
  padding: 18px 31px 21px;
}
.pickup .swiper .swiper-slide .txt-wrapper h4 {
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .pickup .swiper .swiper-slide .txt-wrapper h4 {
    font-size: 14px;
  }
}
.pickup .swiper .swiper-slide .txt-wrapper .about {
  display: flex;
  align-items: center;
}
.pickup .swiper .swiper-slide .txt-wrapper .about .cat {
  background-color: #002653;
  color: #fff;
  padding: 3px;
  font-size: 11px;
  margin-right: 12px;
}
.pickup .swiper .swiper-slide .txt-wrapper .about time {
  font-size: 11px;
}

.news-sec ul {
  margin-top: 30px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin: 57.5px 50px 15.5px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .news-sec ul {
    margin: 0;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.news-sec ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}
.news-sec ul li .time {
  border-right: 1px solid white;
  padding-right: 15px;
  margin-right: 15px;
}
.news-sec ul li .time .year {
  font-size: 12px;
}
.news-sec ul li .time .date {
  font-size: 16px;
}
.news-sec ul li .ttl {
  font-size: 16px;
}

.zisseki {
  position: relative;
}
.zisseki::after {
  position: absolute;
  content: "";
  width: 84%;
  height: 250px;
  height: 15.625rem;
  bottom: 60px;
  bottom: 3.75rem;
  right: 0;
  background: #f0f4f7;
}
@media (max-width: 767px) {
  .zisseki::after {
    width: 100%;
    bottom: 0;
  }
}
.zisseki .More_link-wrapper__RLvKM {
  position: relative;
  z-index: 2;
}
.zisseki .zissekiSwiper {
  margin-bottom: 50px;
}
.zisseki img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .zisseki img {
    height: 160px;
  }
}
.zisseki p {
  font-size: 16px;
}

.ServicePageTop_service-page__top__HKJFG * {
  white-space: normal !important;
}

.ServicePageSteps_service-page__step-title__h5jrw:after {
  display: none;
}

@media (min-width: 768px) {
  .Top_service-cards__uc2SG {
    justify-content: center;
  }
  .Top_service-cards__wrap__W3B2C .TopServiceCard_service-card__gfYYq {
    width: 33%;
    margin-right: 0%;
    margin-left: 0%;
  }
  .Top_service-cards__wrap__W3B2C .TopServiceCard_service-card__gfYYq:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .Service_service-cards__zRWx_ {
    justify-content: center;
  }
  .Service_service-cards__zRWx_ .ServiceCard_service-cards__item__pYEB9 {
    width: 30%;
    margin-right: 1% !important;
    margin-left: 1%;
  }
  .Service_service-cards__zRWx_ .ServiceCard_service-card__text__4gaV3 {
    text-align: center;
  }
}
/* =========================
   Articles Card Layout
========================= */
.articles {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-item {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* サムネ */
.article-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f2f2f2;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキスト */
.article-meta {
  padding: 20px 20px 24px;
}

.article-date {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.article-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  .articles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .articles {
    grid-template-columns: 1fr;
    margin: 48px auto;
  }
}
.Posts_title-box__thumbnail__pMMz3 img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*# sourceMappingURL=style.css.map */
