/* ========================================
Key Visual
======================================== */
.kv {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto 20px;
  padding-top: 129px;
}
@media (max-width: 1100px) {
  .kv {
    padding-top: 154px;
  }
}
@media (max-width: 768px) {
  .kv {
    padding-top: 66px;
  }
}
.kv-swiper {
  width: 100%;
  padding-bottom: 20px;
}
.kv-swiper img {
  width: 100%;
  height: auto;
  display: block;
}
.kv-pagination {
  --swiper-pagination-top: auto;
  --swiper-pagination-bottom: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 0;
}
.kv-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: background 0.3s ease;
}

/* ========================================
Campaign Banner Carousel
======================================== */
.campaign-banner-swiper {
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
}
@media (max-width: 768px) {
  .campaign-banner-swiper {
    padding: 0 0 12px;
  }
}
.campaign-banner-swiper .swiper-wrapper {
  display: flex;
  box-sizing: border-box;
  width: max-content;
  margin: 0 auto;
}
.campaign-banner-swiper .swiper-slide {
  width: 400px;
  flex-shrink: 0;
}
.campaign-banner-swiper .swiper-slide img {
  height: auto;
  background: #fff;
  aspect-ratio: 5/3;
  object-fit: contain;
}
@media (max-width: 768px) {
  .campaign-banner-swiper .swiper-slide {
    width: auto;
    height: 150px;
  }
  .campaign-banner-swiper .swiper-slide img {
    width: auto;
    height: 100%;
  }
}
.campaign-banner-swiper .campaign-banner-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .campaign-banner-swiper .campaign-banner-pagination {
    padding: 10px 0 0;
    gap: 2px;
  }
}

/* ========================================
Section & Button
======================================== */
.section {
  padding: 35px 0 38px;
}
@media (max-width: 768px) {
  .section {
    padding: 15px 0 40px;
  }
}
.section--gray {
  background: var(--color-gray-bg);
}
.section--blue {
  background: var(--color-light-selco-blue);
}
.section__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .section__container {
    padding: 0 12px;
  }
}
.section__title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .section__title {
    margin-bottom: 14px;
    gap: 13px;
  }
}
.section__title-en {
  font-family: var(--font-libre);
  font-size: 32px;
  font-weight: 400;
}
.section__title-ja {
  font-family: var(--font-noto-serif);
  font-size: 16px;
  font-weight: 600;
}
.section__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .button {
    width: 280px;
    height: 40px;
    font-size: 15px;
  }
}
.button--outline {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

/* ========================================
Event Grid
======================================== */
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
  max-width: 1190px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .event-grid {
    gap: 14px;
  }
}

.event-card__link {
  display: flex;
  gap: 20px;
  height: 100%;
}
@media (max-width: 768px) {
  .event-card__link {
    gap: 10px;
  }
}
.event-card__image {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 4 / 3;
  position: relative;
  border: 1px solid var(--color-border);
}
@media (max-width: 768px) {
  .event-card__image {
    width: 150px;
    height: 112px;
  }
}
.event-card__image .placeholder,
.event-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}
.event-card__image .placeholder {
  position: relative;
  background: #ddd;
}
.event-card__image .placeholder::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "No Image";
  font-weight: 700;
  color: #999;
  font-size: 16px;
}
.event-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .event-card__content {
    gap: 6px;
  }
}
.event-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .event-card__meta {
    gap: 5px;
  }
}
.event-card__category {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0 7px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .event-card__category {
    font-size: 12px;
  }
}
.event-card__label {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .event-card__label {
    font-size: 12px;
  }
}
.event-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 50px;
}
@media (max-width: 768px) {
  .event-card__title {
    font-size: 13px;
    line-height: 1.5;
    max-height: 41px;
  }
}
.event-card__info {
  font-size: 13px;
}
@media (max-width: 768px) {
  .event-card__info {
    font-size: 12px;
  }
}
.event-card__info dt {
  display: inline;
  vertical-align: middle;
}
.event-card__info dt::before {
  content: "\A";
  white-space: pre;
}
@media (max-width: 768px) {
  .event-card__info dt {
    display: none;
  }
}
.event-card__info dt:first-child::before {
  display: none;
}
.event-card__info dd {
  display: inline;
  margin: 0;
}
@media (max-width: 768px) {
  .event-card__info dd {
    display: block;
  }
}

/* ========================================
Land Grid
======================================== */
@media (max-width: 768px) {
  .land-section .section__container {
    padding: 0 11px;
  }
}
.land-section .pc-blind {
  display: none;
}
@media (max-width: 768px) {
  .land-section .pc-blind {
    display: flex;
    justify-content: center;
  }
}

.land-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 14px;
}
@media (max-width: 960px) {
  .land-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .land-grid {
    margin: 0 auto 42px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

.land-card {
  background: #f1efe6;
}
@media (max-width: 768px) {
  .land-card {
    flex: 0 0 48.5%;
    border-bottom: 1px solid var(--color-border);
  }
}
.land-card__link {
  display: flex;
  gap: 15px;
  padding: 20px;
  height: 100%;
}
@media (max-width: 768px) {
  .land-card__link {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }
}
.land-card__image {
  flex-shrink: 0;
  width: 270px;
  aspect-ratio: 4 / 3;
}
@media (max-width: 768px) {
  .land-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 160 / 110;
  }
}
.land-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.land-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (max-width: 768px) {
  .land-card__content {
    gap: 7px;
  }
}
.land-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .land-card__title {
    font-size: 15px;
  }
}
.land-card__address {
  border-bottom: 2px solid var(--color-gray);
  padding-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .land-card__address {
    font-size: 13px;
    border-bottom: 1px solid var(--color-gray);
    padding-bottom: 9px;
  }
}
.land-card__description {
  font-size: 15px;
  line-height: 1.4;
  flex: 1;
}
@media (max-width: 768px) {
  .land-card__description {
    font-size: 13px;
    line-height: 1.5;
    height: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
.land-card__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 5px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .land-card__more {
    margin-top: 2px;
    justify-content: center;
    font-size: 12px;
  }
}
.land-card__more img {
  width: 6px;
  height: 10px;
}

/* ========================================
Works Grid
======================================== */
@media (max-width: 768px) {
  .works-section {
    padding: 35px 0 40px;
  }
  .works-section .section__container {
    padding: 0 7px;
  }
  .works-section .section__title {
    gap: 18px;
    margin-bottom: 34px;
  }
  .works-section .section__button {
    margin-top: 41px;
  }
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 33px;
  max-width: 1220px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .works-grid {
    gap: 16px 10px;
    padding: 0;
  }
}

.works-card__link {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@media (max-width: 768px) {
  .works-card__link {
    gap: 7px;
  }
}
.works-card__image {
  width: 100%;
}
@media (max-width: 768px) {
  .works-card__image {
    height: 139px;
  }
}
.works-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.works-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .works-card__title {
    font-size: 14px;
    line-height: 1.3;
  }
}

/* ========================================
Voice Grid
======================================== */
@media (max-width: 768px) {
  .voice-section {
    padding: 36px 0 41px;
  }
  .voice-section .section__container {
    padding: 0 15px;
  }
  .voice-section .section__title {
    gap: 20px;
    margin-bottom: 33px;
  }
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 33px;
  max-width: 1220px;
  margin: 0 auto;
  padding-bottom: 3px;
}
@media (max-width: 960px) {
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .voice-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
  }
}

.voice-card__link {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@media (max-width: 768px) {
  .voice-card__link {
    flex-direction: row;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .voice-card__image {
    max-width: 150px;
    height: auto;
  }
}
.voice-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.voice-card__content {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@media (max-width: 768px) {
  .voice-card__content {
    gap: 12px;
    justify-content: flex-start;
    padding-right: 15px;
  }
}
.voice-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .voice-card__title {
    font-size: 14px;
  }
}
.voice-card__name {
  font-size: 15px;
  line-height: 1;
  color: #333;
}
@media (max-width: 768px) {
  .voice-card__name {
    font-size: 13px;
  }
}

/* ========================================
Model House
======================================== */
@media (max-width: 768px) {
  .modelhouse-section {
    padding: 25px 0 20px;
  }
  .modelhouse-section .section__title {
    margin-bottom: 24px;
  }
}

.modelhouse-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 20px;
  padding-top: 8px;
}
@media (max-width: 768px) {
  .modelhouse-list {
    gap: 29px;
    max-width: 280px;
  }
}
.modelhouse-list .ready p {
  text-align: center;
  font-size: 13px;
  color: #555;
}

.modelhouse-card {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .modelhouse-card {
    flex-direction: column;
    gap: 10px;
  }
}
.modelhouse-card__image {
  margin-top: 2px;
  flex-shrink: 0;
  width: 250px;
  aspect-ratio: 4 / 3;
}
@media (max-width: 768px) {
  .modelhouse-card__image {
    width: 100%;
    height: 210px;
  }
}
.modelhouse-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modelhouse-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modelhouse-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .modelhouse-card__title {
    font-size: 16px;
  }
}
.modelhouse-card__info {
  font-size: 13px;
}
@media (max-width: 768px) {
  .modelhouse-card__info {
    line-height: 1.4;
  }
}
.modelhouse-card__buttons {
  display: flex;
  gap: 5px;
}
@media (max-width: 768px) {
  .modelhouse-card__buttons {
    justify-content: center;
  }
}
.modelhouse-card__btn a {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  padding: 2px 15px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .modelhouse-card__btn a {
    padding: 2px 14px;
    border-radius: 4px;
  }
}
.modelhouse-card__btn a img {
  width: 12px;
  height: 12px;
}
@media (max-width: 768px) {
  .modelhouse-card__btn:last-child img {
    width: 16px;
    height: 16px;
  }
}

/* ========================================
SNS Section
======================================== */
.sns-section {
  padding: 30px 0 50px;
}
@media (max-width: 768px) {
  .sns-section {
    padding: 20px 0 50px;
  }
  .sns-section .section__container {
    padding: 0 20px;
  }
}
.sns-section .section__container .section__title {
  margin-top: 5px;
  margin-bottom: 24px;
  gap: 24px;
}

.sns-box-wrapper {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .sns-box {
    flex-direction: column;
    align-items: flex-start;
    max-width: none;
    padding: 0 20px;
  }
}
.sns-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  padding: 19px 40px;
  border: 1px solid #c2c2c2;
  border-radius: 5px;
  margin: 0 auto;
}

.sns-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
}

/* ========================================
Information Table
======================================== */
.info-section {
  padding: 35px 0 49px;
}
@media (max-width: 768px) {
  .info-section {
    padding: 35px 0 50px;
  }
  .info-section .section__title {
    gap: 18px;
    margin-bottom: 33px;
  }
}

.info-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 10px;
}

.info-row a, .info-row .a {
  display: flex;
  width: 100%;
  height: 40px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .info-row a, .info-row .a {
    flex-direction: row;
    gap: 1px;
  }
}
.info-row a .info-row__date, .info-row .a .info-row__date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  padding: 10px 15px 10px 5px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
@media (max-width: 768px) {
  .info-row a .info-row__date, .info-row .a .info-row__date {
    width: 95px;
    padding: 10px 13px 10px 10px;
    font-size: 14px;
    text-align: center;
    justify-content: flex-end;
  }
}
.info-row a .info-row__text, .info-row .a .info-row__text {
  display: flex;
  align-items: center;
  width: 80%;
  flex: 1;
  padding: 10px 24px 10px 12px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
@media (max-width: 768px) {
  .info-row a .info-row__text, .info-row .a .info-row__text {
    width: calc(100% - 95px);
    padding: 10px 25px 10px 10px;
    font-size: 14px;
  }
}
.info-row a .info-row__text span, .info-row .a .info-row__text span {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}
.info-row a .arrow, .info-row .a .arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translatey(-50%);
}

/* ========================================
Link Buttons
======================================== */
.link-buttons ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .link-buttons ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.link-buttons ul .link-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 50px;
  padding: 13px 15px;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
}
.link-buttons ul .link-button::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translatey(-50%);
  display: block;
  content: '';
  background: transparent url(../assets/common/arrow-right.svg) no-repeat center;
  width: 8px;
  height: 13px;
}

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