@charset "UTF-8";
main {
  container-name: main-column;
  container-type: inline-size;
}

.post-card {
  background-color: #fff;
  position: relative;
}
.top-post .post-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.top-post .post-card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.post-card__footer {
  width: 100%;
  display: flex;
}
.post-card__footer a span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #003067;
  font-size: 1.6rem;
  font-weight: bold;
}
.post-card__footer a span::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../img/icon-blank.svg");
  mask-image: url("../img/icon-blank.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #003067;
}
.post-card:hover .post-card__img img {
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.post-card:hover .post-card__footer a::before {
  background-color: #fff;
  transition: all 0.3s ease;
  opacity: 0.3;
}
.post-card__category {
  padding: 8px 12px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
}
.post-card__category.house-for-sale {
  background-color: #003067;
}
.post-card__category.residential-lots-for-sale {
  background-color: #763535;
}
.post-card__category.brokerage-property {
  background-color: #006760;
}
.post-card__title {
  font-size: 3rem;
  font-weight: 700;
  color: #003067;
  line-height: 1.4;
}
@container main-column (width < 767px) {
  .post-card__title {
    font-size: 2.4rem;
  }
}
.post-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #eee;
  position: relative;
}
.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card__information {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post-card__information .information-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 15px;
}
.post-card__information .information-grid .term {
  display: flex;
  align-items: flex-start;
  color: #003067;
  font-weight: bold;
}
@container main-column (width < 767px) {
  .post-card__information .information-grid .term {
    font-size: 1.3rem;
  }
}
.post-card__information .information-grid .term .term-text {
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-card__information .information-grid .term .term-text::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  flex-shrink: 0;
}
@container main-column (width < 767px) {
  .post-card__information .information-grid .term .term-text::before {
    width: 18px;
    height: 18px;
  }
}
.post-card__information .information-grid .term.type .term-text::before {
  background-image: url("../img/icon-house.svg");
}
.post-card__information .information-grid .term.address .term-text::before {
  background-image: url("../img/icon-pin.svg");
}
.post-card__information .information-grid .term.access .term-text::before {
  background-image: url("../img/icon-train.svg");
}
.post-card__information .information-grid .term.land-area .term-text::before, .post-card__information .information-grid .term.floor-area .term-text::before {
  background-image: url("../img/icon-size.svg");
}
.post-card__information .information-grid .term.floor-plan .term-text::before {
  background-image: url("../img/icon-layout.svg");
}
.post-card__information .information-grid .data {
  font-size: 1.6rem;
  line-height: 1.8;
}
@container main-column (width < 767px) {
  .post-card__information .information-grid .data {
    font-size: 1.3rem;
  }
}
.post-card__information .tags-flex {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.post-card__information .tags-flex .tag {
  border-radius: 20px;
  padding: 8px 10px;
  background-color: #F3F2F0;
  color: #15181C;
  font-size: 1.3rem;
  line-height: 1;
}
.post-card.top-post {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  height: 100%;
}
@container main-column (width < 767px) {
  .post-card.top-post {
    padding: 16px;
  }
}
.post-card.top-post .post-card__information .tags-flex {
  height: calc((1.3rem + 16px) * 2 + 10px);
  overflow: hidden;
}
.post-card.top-post .post-card__footer {
  height: 100%;
  align-items: flex-end;
}
.post-card.archive-post {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
}
@container main-column (width < 767px) {
  .post-card.archive-post {
    padding: 16px;
    gap: 14px;
  }
}
.post-card.archive-post .post-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
}
@container main-column (width < 767px) {
  .post-card.archive-post .post-card__body {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.post-card.archive-post .post-card__header {
  display: grid;
  gap: 16px;
  align-items: center;
  grid-template-columns: auto auto 1fr;
  width: 100%;
}
@container main-column (width < 767px) {
  .post-card.archive-post .post-card__header {
    gap: 8px;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
}
@container main-column (width < 767px) {
  .post-card.archive-post .post-card__header .post-card__category {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
@container main-column (width < 767px) {
  .post-card.archive-post .post-card__header .post-card__title {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@container main-column (width < 767px) {
  .post-card.archive-post .post-card__header .pickup-icon {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.post-card.pickup-category_residential-lots-for-sale .term.type,
.post-card.pickup-category_residential-lots-for-sale .data.type, .post-card.pickup-category_house-for-sale .term.type,
.post-card.pickup-category_house-for-sale .data.type {
  display: none;
}

.pickup-block {
  background-color: #003067;
  display: grid;
  grid-template-columns: 429px 1fr;
}
@container main-column (width < 767px) {
  .pickup-block {
    grid-template-columns: 1fr;
    position: relative;
    padding: 10% 5% 48%;
  }
}
.pickup-block .navigation-area {
  padding: 100px 60px 65px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@container main-column (width < 767px) {
  .pickup-block .navigation-area {
    padding: 0;
  }
}
.pickup-block .navigation-area .top-area .title-set {
  font-family: "Zen Old Mincho", serif;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  line-height: normal;
}
@container main-column (width < 767px) {
  .pickup-block .navigation-area .top-area .title-set {
    margin-bottom: 0;
  }
}
.pickup-block .navigation-area .top-area .title-set .en-title {
  color: #E0BC58;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: -8px;
}
.pickup-block .navigation-area .top-area .title-set .ja-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
}
@container main-column (width < 767px) {
  .pickup-block .navigation-area .top-area .title-set .ja-title {
    font-size: 3.2rem;
  }
}
@container main-column (width < 767px) {
  .pickup-block .navigation-area .top-area .archive-link {
    position: absolute;
    width: 90%;
    bottom: 0;
    left: 5%;
    margin-bottom: 10%;
  }
}
.pickup-block .navigation-area .top-area .archive-link a {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 10px;
  padding: 16px;
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: normal;
}
.pickup-block .navigation-area .top-area .archive-link a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../img/icon-right-arrow.svg");
  mask-image: url("../img/icon-right-arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.pickup-block .navigation-area .top-area .archive-link a:hover {
  background-color: #fff;
  color: #003067;
  transition: all 0.3s ease;
}
.pickup-block .navigation-area .top-area .archive-link a:hover::after {
  background-color: #003067;
}
.pickup-block .navigation-area .bottom-area {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
@container main-column (width < 767px) {
  .pickup-block .navigation-area .bottom-area {
    position: absolute;
    width: 90%;
    bottom: 0;
    left: 5%;
    justify-content: center;
    margin-bottom: 34%;
  }
}
.pickup-block .navigation-area .bottom-area .swiper-button-prev,
.pickup-block .navigation-area .bottom-area .swiper-button-next {
  margin: 0;
  width: 48px;
  height: 48px;
  position: static;
  flex-shrink: 0;
}
.pickup-block .navigation-area .bottom-area .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pickup-block .navigation-area .bottom-area .swiper-pagination .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  margin: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pickup-block .navigation-area .bottom-area .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #969696;
}
.pickup-block .navigation-area .bottom-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: #fff;
  width: 17px;
  height: 17px;
}
.pickup-block .pickup-slider {
  width: 100%;
  padding: 60px 0;
}
@container main-column (width < 767px) {
  .pickup-block .pickup-slider {
    padding: 10% 0 0;
  }
}
.pickup-block .pickup-slider .swiper-wrapper {
  box-sizing: content-box;
}
.pickup-block .pickup-slider .swiper-wrapper .swiper-slide {
  width: 480px;
  /* 100% (画面幅) から、スライド自身の幅 480px を引いた分を余白にする */
}
@container main-column (width < 767px) {
  .pickup-block .pickup-slider .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
.pickup-block .pickup-slider .swiper-wrapper .swiper-slide:last-child {
  margin-right: calc(100% - 480px) !important;
}
@container main-column (width < 767px) {
  .pickup-block .pickup-slider .swiper-wrapper .swiper-slide:last-child {
    margin-right: 0 !important;
  }
}

.post-card.top-post.last-card {
  width: 100%;
  height: 100%;
}
.post-card.top-post.last-card .information-box {
  border: 1px solid #003067;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@container main-column (width < 767px) {
  .post-card.top-post.last-card .information-box {
    padding: 16px;
  }
}
.post-card.top-post.last-card .information-box .title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  display: flex;
  gap: 9px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.post-card.top-post.last-card .information-box .title::before, .post-card.top-post.last-card .information-box .title::after {
  content: "";
  display: block;
  width: 1.4em;
  height: 1px;
  background-color: #000;
}
.post-card.top-post.last-card .information-box .title::before {
  transform: rotate(45deg);
}
.post-card.top-post.last-card .information-box .title::after {
  transform: rotate(-45deg);
}
.post-card.top-post.last-card .information-box .archive-link {
  width: 329px;
}
@container main-column (width < 767px) {
  .post-card.top-post.last-card .information-box .archive-link {
    width: 100%;
  }
}
.post-card.top-post.last-card .information-box .archive-link a {
  border: 1px solid #003067;
  color: #003067;
  border-radius: 10px;
  padding: 16px;
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: normal;
}
.post-card.top-post.last-card .information-box .archive-link a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../img/icon-right-arrow.svg");
  mask-image: url("../img/icon-right-arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #003067;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.post-card.top-post.last-card .information-box .archive-link a:hover {
  background-color: #003067;
  color: #fff;
  transition: all 0.3s ease;
}
.post-card.top-post.last-card .information-box .archive-link a:hover::after {
  background-color: #fff;
}
.top-post .post-card__footer {
  justify-content: center;
}
.top-post .post-card__footer a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}

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