@charset "UTF-8";
/* ========================================
   Hero
   ======================================== */
.hero {
  background: #f2f2f2;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-slider {
  width: 1160px;
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: #000;
}
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
  font-size: 28px;
}

.hero__img {
  width: 100%;
  height: 459px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ========================================
   Section Commons
   ======================================== */
.section {
  padding: 80px 40px 100px;
}

.section__title {
  font-family: "M PLUS 2", sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #404040;
  text-align: center;
  margin-bottom: 10px;
}

.section__title--white {
  color: #fff;
}

.section__title--left {
  text-align: left;
}

.section__subtitle-bar {
  display: block;
  margin: 0 auto 40px;
  padding: 4px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.section__subtitle-bar--red {
  background: #e70012;
}

.section__subtitle-bar--blue {
  background: #0071bf;
}

.section__subtitle-bar--green {
  background: #009943;
}

.section__subtitle-bar--black {
  background: #000;
  border: 1px solid #6e6e6e;
}

.section__subtitle-bar--navy {
  background: #345769;
}

.section__subtitle-bar--brown {
  background: #693439;
}

.section__subtitle-bar--orange {
  background: #da8d07;
}

.section__subtitle {
  font-family: "M PLUS 2", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

/* More Buttons */
.section__more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  width: 342px;
  height: 46px;
  margin: 40px auto 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border: 1px solid;
  cursor: pointer;
}
.section__more-btn:hover {
  background-color: #FFF;
}

.section__more-btn--red {
  background: #e9535f;
  border-color: #e70012;
}
.section__more-btn--red:hover {
  color: #e70012;
}
.section__more-btn--red:hover .section__more-circle {
  background: #e70012;
}
.section__more-btn--red:hover .section__more-circle::after {
  border-color: #fff;
}

.section__more-btn--blue {
  background: #2f8ecf;
  border-color: #0071bf;
}
.section__more-btn--blue:hover {
  color: #0071bf;
}
.section__more-btn--blue:hover .section__more-circle {
  background: #0071bf;
}
.section__more-btn--blue:hover .section__more-circle::after {
  border-color: #fff;
}

.section__more-btn--green {
  background: #27ac61;
  border-color: #009943;
}
.section__more-btn--green:hover {
  color: #009943;
}
.section__more-btn--green:hover .section__more-circle {
  background: #009943;
}
.section__more-btn--green:hover .section__more-circle::after {
  border-color: #fff;
}

.section__more-btn--black {
  background: #000;
  border-color: #6e6e6e;
}
.section__more-btn--black:hover {
  color: #000;
}
.section__more-btn--black:hover .section__more-circle {
  background: #000;
}
.section__more-btn--black:hover .section__more-circle::after {
  border-color: #fff;
}

.section__more-btn--navy {
  background: #285d79;
  border-color: #285d79;
}
.section__more-btn--navy:hover {
  color: #285d79;
}
.section__more-btn--navy:hover .section__more-circle {
  background: #285d79;
}
.section__more-btn--navy:hover .section__more-circle::after {
  border-color: #fff;
}

.section__more-btn--brown-outline {
  background: #fff;
  border-color: #693439;
  color: #693439;
  width: 342px;
  margin: 0;
}
.section__more-btn--brown-outline:hover {
  background: #693439;
  color: #fff;
}
.section__more-btn--brown-outline:hover .section__more-circle {
  background: #fff;
}
.section__more-btn--brown-outline:hover .section__more-circle::after {
  border-color: #693439;
}

.section__more-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
}

.section__more-circle::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid #e70012;
  border-right: 2.5px solid #e70012;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -3px;
}

/* Arrow color variants per button */
.section__more-btn--red .section__more-circle::after {
  border-color: #e70012;
}

.section__more-circle::after {
  border-color: #e70012;
}

.section__more-btn--blue .section__more-circle::after {
  border-color: #0071bf;
}

.section__more-btn--green .section__more-circle::after {
  border-color: #009943;
}

.section__more-btn--black .section__more-circle::after {
  border-color: #000;
}

.section__more-btn--navy .section__more-circle::after {
  border-color: #285d79;
}

.section__more-btn--brown-outline .section__more-circle {
  background: #693439;
}

.section__more-btn--brown-outline .section__more-circle::after {
  border-color: #fff;
}

/* ========================================
   Card Grid
   ======================================== */
.card-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ========================================
   Cards - Common
   ======================================== */
.card {
  width: 340px;
  border: 1px solid;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card--land {
  background: #fff7f5;
  border-color: #ff7979;
}

.card--tatemono {
  background: #f7fcff;
  border-color: #0071bf;
}

.card--works {
  background: #fff;
  border-color: #009943;
}

.card--blog {
  background: #fff;
  border: none;
  width: 340px;
}

.card__img-wrap {
  position: relative;
  padding: 10px 10px 0;
}

.card__img {
  width: 320px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card--blog .card__img {
  height: 211px;
}

.card__badge {
  position: absolute;
  top: 20px;
  right: 0;
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
}

.card__badge--red {
  background: #e70012;
}

.card__badge--blue {
  background: #0045e7;
}

.card__date {
  position: absolute;
  bottom: 0;
  right: 10px;
  background: #345769;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 2px 16px;
  line-height: 26px;
}

.card__body {
  padding: 14px 16px 18px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card__body .card__detail-btn {
  margin-top: auto;
}

.card__name {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #0071bf;
  text-decoration: underline;
  margin-bottom: 10px;
}

.card__name--blog {
  font-size: 16px;
  font-weight: 700;
  color: #426ac0;
}

.card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  margin-bottom: 14px;
}

.card__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.card__cat-tag {
  display: inline-block;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 0;
  letter-spacing: 0.5px;
  text-decoration: none;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.card__cat-tag:hover {
  background: var(--secondary-color);
  color: #fff;
}

.card__detail-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 300px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid;
  font-size: 16px;
  font-weight: normal;
  margin: 0 auto;
  text-decoration: none;
}
.card__detail-btn::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent currentColor;
}

.card__detail-btn--red {
  background: #fff;
  border-color: #e70012;
  color: #e70012;
}
.card__detail-btn--red:hover {
  background: #e70012;
  color: #fff;
}

.card__detail-btn--blue {
  background: #fff;
  border-color: #0071bf;
  color: #0071bf;
}
.card__detail-btn--blue:hover {
  background: #0071bf;
  color: #fff;
}

.card__detail-btn--navy {
  background: #fff;
  border-color: #345769;
  color: #345769;
}
.card__detail-btn--navy:hover {
  background: #345769;
  color: #fff;
}

/* ========================================
   Section - Land / Tatemono
   ======================================== */
.section--tatemono {
  background: #fffbf5;
}

/* ========================================
   Section - Event
   ======================================== */
.section--event {
  padding-bottom: 100px;
}

.event-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  background: #f7f7f7;
  padding: 35px 24px;
  margin-bottom: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.event-item__flyer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.event-item__flyer-placeholder {
  width: 440px;
  height: 314px;
  background: #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #a5a5a5;
  overflow: hidden;
}
.event-item__flyer-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-item__flyer-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 440px;
  height: 40px;
  border: 1px solid #009943;
  border-radius: 10px;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  color: #009943;
  text-decoration: none;
  margin-top: 14px;
}
.event-item__flyer-btn::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #009943;
}
.event-item__flyer-btn:hover {
  background: #009943;
  color: #fff;
}
.event-item__flyer-btn:hover::after {
  border-color: transparent transparent transparent #fff;
}

.event-item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.event-item__campaign {
  font-size: 22px;
  font-weight: 700;
  color: #e75c00;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}

.event-item__table {
  width: 100%;
  border-collapse: collapse;
}

.event-item__table tr {
  border-top: 1px solid #000;
}

.event-item__table th {
  font-size: 16px;
  font-weight: 700;
  color: #606060;
  padding: 12px 8px;
  vertical-align: top;
  white-space: nowrap;
  width: 84px;
  border-right: none;
}
.event-item__table th span {
  border: 1px solid #000;
  padding: 2px 8px;
  display: inline-block;
}

.event-item__table td {
  font-size: 16px;
  font-weight: 400;
  color: #404040;
  padding: 12px 8px;
  line-height: 26px;
}

/* ========================================
   Section - Works
   ======================================== */
.section--works {
  position: relative;
  padding: 90px 40px 90px;
}

.section--works__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section--works__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section--works__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.section--works__inner {
  position: relative;
  z-index: 1;
}

.section--works .card--works .card__img {
  height: 240px;
}

/* ========================================
   Section - Blog
   ======================================== */
.section--blog {
  background: #fff;
  padding: 100px 0;
}

/* ========================================
   Section - News
   ======================================== */
.section--news {
  background: #fffbf5;
  padding: 100px 90px 80px;
}

.news-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.news-heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 180px;
  padding-top: 10px;
}

.news-heading .section__title {
  margin-bottom: 8px;
}

.news-heading .section__subtitle-bar {
  margin: 0;
}

.news-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news-list {
  border-top: 2px solid #404040;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
}

.news-item__date {
  font-weight: 400;
  color: #404040;
  white-space: nowrap;
}

.news-item__badge {
  display: inline-block;
  padding: 3px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  min-width: 88px;
  text-align: center;
}

.news-item__badge--info {
  background: #693439;
}

.news-item__badge--blog {
  background: #345769;
}

.news-item__text {
  color: #404040;
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 30px;
}

/* ========================================
   Responsive - Tablet (1024px以下)
   ======================================== */
@media (max-width: 1024px) {
  /* Hero */
  .hero {
    padding: 0 20px;
  }
  .hero-slider {
    width: 100%;
  }
  .hero__img {
    width: 100%;
    height: auto;
  }
  /* Sections */
  .section {
    padding: 40px 20px;
  }
  .section__title {
    font-size: 26px;
  }
  .section__subtitle-bar {
    margin-bottom: 24px;
  }
  /* Cards */
  .card-grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .card {
    width: calc(50% - 10px);
    min-width: 280px;
  }
  .card--blog {
    width: calc(50% - 10px);
    min-width: 280px;
  }
  .card__img {
    width: 100%;
  }
  .card__detail-btn {
    width: 100%;
  }
  /* More Buttons */
  .section__more-btn {
    width: 300px;
  }
  .section__more-btn--brown-outline {
    width: 300px;
  }
  /* Event */
  .event-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
  }
  .event-item__flyer {
    width: 100%;
  }
  .event-item__flyer-placeholder {
    width: 100%;
    height: 240px;
  }
  .event-item__flyer-btn {
    width: 100%;
  }
  .event-item__campaign {
    font-size: 18px;
  }
  /* Works */
  .section--works {
    padding: 60px 20px;
  }
  /* News */
  .section--news {
    padding: 40px 20px 60px;
  }
  .news-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .news-heading {
    width: 100%;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  .news-body {
    width: 100%;
  }
  .news-heading .section__title {
    margin-bottom: 0;
  }
  .news-item {
    gap: 12px;
    font-size: 14px;
  }
  .news-more {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ========================================
   Responsive - Mobile (768px以下)
   ======================================== */
@media (max-width: 768px) {
  /* Hero */
  .hero {
    padding: 0 10px;
  }
  /* Sections */
  .section {
    padding: 50px 16px;
  }
  .section__title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .section__subtitle {
    font-size: 12px;
    line-height: 1;
  }
  .section__subtitle-bar {
    margin-bottom: 20px;
    padding: 0px 16px 3px;
  }
  /* Cards - single column */
  .card-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  .card {
    width: 100%;
    max-width: 400px;
    min-width: 0;
  }
  .card--blog {
    width: 100%;
    max-width: 400px;
    min-width: 0;
  }
  .card__img {
    width: 100%;
    height: 200px;
  }
  .card--blog .card__img {
    height: 180px;
  }
  .card__name {
    font-size: 16px;
  }
  .card__desc {
    font-size: 14px;
    line-height: 22px;
  }
  .card__badge {
    font-size: 13px;
    padding: 4px 12px;
    letter-spacing: 2px;
  }
  /* More Buttons */
  .section__more-btn {
    width: 100%;
    max-width: 320px;
    font-size: 16px;
    height: 42px;
    margin-top: 24px;
  }
  .section__more-btn--brown-outline {
    width: 100%;
    max-width: 320px;
  }
  /* Event */
  .event-item {
    padding: 16px 12px;
    gap: 16px;
  }
  .event-item__flyer-placeholder {
    height: 200px;
    font-size: 16px;
  }
  .event-item__flyer-btn {
    font-size: 15px;
    height: 36px;
  }
  .event-item__campaign {
    font-size: 16px;
    line-height: 1.4;
  }
  .event-item__table th {
    font-size: 14px;
    padding: 10px 4px;
    width: 70px;
  }
  .event-item__table td {
    font-size: 14px;
    padding: 10px 4px;
    line-height: 22px;
  }
  /* Works */
  .section--works {
    padding: 40px 16px;
  }
  .section--works .card--works .card__img {
    height: 200px;
  }
  /* News */
  .section--news {
    padding: 30px 16px 50px;
  }
  .news-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  .news-heading .section__title {
    font-size: 22px;
  }
  .news-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px 8px;
    padding: 12px 0;
    font-size: 14px;
  }
  .news-item__date {
    width: 100%;
    font-size: 13px;
  }
  .news-item__badge {
    font-size: 12px;
    padding: 2px 10px;
  }
  .news-item__text {
    font-size: 14px;
  }
  .news-more {
    margin-top: 20px;
  }
}