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;
}

.title-block {
  background-color: #003067;
  padding: 123px 0 40px;
}
@container main-column (width < 767px) {
  .title-block {
    padding: 74px 0 24px;
  }
}
.title-block .title-set {
  font-family: "Zen Old Mincho", serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: normal;
}
.title-block .title-set .en-title {
  color: #E0BC58;
  font-size: 2rem;
  font-weight: 900;
}
.title-block .title-set .ja-title {
  color: #fff;
  font-size: 4.8rem;
  font-weight: 600;
}
@container main-column (width < 767px) {
  .title-block .title-set .ja-title {
    font-size: 3.2rem;
  }
}

.area-pickup {
  display: grid;
  grid-template-rows: auto auto;
  padding: 40px 0 112px;
  gap: 40px;
}
@container main-column (width < 767px) {
  .area-pickup {
    padding: 40px 0 76px;
    gap: 24px;
  }
}
.area-pickup .title {
  color: var(--003067, #003067);
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
}
@container main-column (width < 767px) {
  .area-pickup .title {
    font-size: 2.6rem;
  }
}
.area-pickup .banner-slider {
  width: 100%;
  position: relative;
}
.area-pickup .banner-slider .swiper {
  width: 100%;
  max-width: 1049px;
  margin: 0 auto;
}
@container main-column (width < 767px) {
  .area-pickup .banner-slider .swiper {
    max-width: none;
  }
}
.area-pickup .banner-slider .swiper .swiper-wrapper {
  margin: 0 auto;
}
.area-pickup .banner-slider .swiper .swiper-wrapper .swiper-slide {
  aspect-ratio: 113/80;
  overflow: hidden;
  background-color: #eee;
  position: relative;
}
.area-pickup .banner-slider .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@container main-column (width < 767px) {
  .area-pickup .banner-slider .swiper .swiper-wrapper .swiper-slide {
    width: 90%;
  }
}
.area-pickup .banner-slider .swiper .swiper-wrapper .swiper-slide a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.area-pickup .banner-slider .swiper-navigation-btn {
  position: absolute;
  width: 100%;
  max-width: 1177px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@container main-column (width < 767px) {
  .area-pickup .banner-slider .swiper-navigation-btn {
    display: none;
  }
}
.area-pickup .banner-slider .swiper-navigation-btn .swiper-button-prev,
.area-pickup .banner-slider .swiper-navigation-btn .swiper-button-next {
  margin: 0;
  width: 48px;
  height: 48px;
  position: static;
  flex-shrink: 0;
  pointer-events: initial;
}
.area-pickup .banner-slider .swiper-navigation-btn .swiper-button-prev:hover,
.area-pickup .banner-slider .swiper-navigation-btn .swiper-button-next:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.area-pickup .banner-slider .swiper-navigation-btn .swiper-button-prev svg,
.area-pickup .banner-slider .swiper-navigation-btn .swiper-button-next svg {
  fill: #003067;
}
.area-pickup .banner-slider .swiper-navigation-btn .swiper-button-prev svg path,
.area-pickup .banner-slider .swiper-navigation-btn .swiper-button-next svg path {
  fill: #003067;
}
.area-pickup .banner-slider .swiper-navigation-pager {
  position: absolute;
  top: 100%;
  transform: translateY(24px);
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 16px;
}
.area-pickup .banner-slider .swiper-navigation-pager .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.area-pickup .banner-slider .swiper-navigation-pager .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-pickup .banner-slider .swiper-navigation-pager .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #969696;
}
.area-pickup .banner-slider .swiper-navigation-pager .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: #003067;
  width: 12px;
  height: 12px;
}
.area-pickup .banner-slider .swiper-navigation-pager .swiper-stop {
  cursor: pointer;
  width: 48px;
  height: 48px;
}
@container main-column (width < 767px) {
  .area-pickup .banner-slider .swiper-navigation-pager .swiper-stop {
    display: none;
  }
}
.area-pickup .banner-slider .swiper-navigation-pager .swiper-stop::after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  -webkit-mask-image: url("../img/icon-slide-stop.svg");
  mask-image: url("../img/icon-slide-stop.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;
}
.area-pickup .banner-slider .swiper-navigation-pager .swiper-stop.is-paused::after {
  -webkit-mask-image: url("../img/icon-slide-play.svg");
  mask-image: url("../img/icon-slide-play.svg");
}
.area-pickup .banner-slider .swiper-navigation-pager .swiper-stop:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.pickup-block {
  background-color: #F3F2F0;
}
.pickup-block .pickup-header {
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto;
  gap: 40px;
  padding: 60px 0;
}
@container main-column (width < 767px) {
  .pickup-block .pickup-header {
    padding: 40px 5%;
  }
}
.pickup-block .pickup-header .title-caption {
  gap: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.pickup-block .pickup-header .title-caption .title {
  color: var(--003067, #003067);
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.25;
}
@container main-column (width < 767px) {
  .pickup-block .pickup-header .title-caption .title {
    font-size: 2.6rem;
  }
}
.pickup-block .pickup-header .title-caption .caption {
  color: var(--Black, #15181C);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: normal;
}
.pickup-block .pickup-header .filter-navigation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@container main-column (width < 767px) {
  .pickup-block .pickup-header .filter-navigation {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.pickup-block .pickup-header .filter-navigation .filter-ui input {
  visibility: hidden;
  position: absolute;
}
.pickup-block .pickup-header .filter-navigation .filter-ui label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  color: #003067;
  font-weight: bold;
  border: 2px solid transparent;
}
@container main-column (width < 767px) {
  .pickup-block .pickup-header .filter-navigation .filter-ui label {
    font-size: 1.8rem;
    height: 56px;
  }
}
.pickup-block .pickup-header .filter-navigation .filter-ui label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../img/icon-check.svg");
  mask-image: url("../img/icon-check.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;
  opacity: 0.1;
}
.pickup-block .pickup-header .filter-navigation .filter-ui label[for=house-for-sale]:hover {
  transition: all 0.3s ease;
  border-color: #003067;
}
.pickup-block .pickup-header .filter-navigation .filter-ui label[for=residential-lots-for-sale]:hover {
  transition: all 0.3s ease;
  border-color: #763535;
}
.pickup-block .pickup-header .filter-navigation .filter-ui label[for=brokerage-property]:hover {
  transition: all 0.3s ease;
  border-color: #006760;
}
.pickup-block .pickup-header .filter-navigation .filter-ui input:checked + label {
  color: #fff;
}
.pickup-block .pickup-header .filter-navigation .filter-ui input:checked + label::before {
  background-color: #fff;
  opacity: 1;
}
.pickup-block .pickup-header .filter-navigation .filter-ui input:checked + label[for=house-for-sale] {
  background-color: #003067;
}
.pickup-block .pickup-header .filter-navigation .filter-ui input:checked + label[for=residential-lots-for-sale] {
  background-color: #763535;
}
.pickup-block .pickup-header .filter-navigation .filter-ui input:checked + label[for=brokerage-property] {
  background-color: #006760;
}
.pickup-block .pickup-list {
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
}
@container main-column (width < 767px) {
  .pickup-block .pickup-list {
    width: 90%;
  }
}
.pickup-block .pickup-list .pickup-post {
  width: 100%;
  margin-bottom: 20px;
}
@container main-column (width < 767px) {
  .pickup-block .pickup-list .pickup-post {
    margin-bottom: 24px;
  }
}

.post-card .pickup-icon {
  color: #D53535;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.post-card .pickup-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../img/icon-flag.svg");
  mask-image: url("../img/icon-flag.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: #D53535;
}
.archive-post .post-card__footer {
  justify-content: flex-end;
}
@container main-column (width < 767px) {
  .archive-post .post-card__footer {
    justify-content: center;
  }
}
.archive-post .post-card__footer a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}

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