.l-page {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

[class*="section_content--"]:not(:last-child) {
  padding-bottom: 80px;
}

/*---------
メイン
----------*/
.mv {
  width: 100%;
  height: 375px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.main_catch {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  line-height: calc(48 / 24);
  font-family: var(--sub-font);
  text-align: center;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
}

/*---------
ページ見出し
----------*/

.intro-title {
  font-size: 20px;
  font-weight: bold;
  line-height: calc(32 / 20);
  font-family: var(--sub-font);
  text-align: center;
  margin-bottom: 25px;
}

.intro-text {
  font-size: 16px;
  line-height: calc(32 / 16);
  font-family: var(--sub-font);
}

/*---------
下層用タイトル
----------*/

.heading-group {
  margin-bottom: 40px;
}

.ja-title {
  font-size: 20px;
  font-weight: bold;
  line-height: calc(28 / 20);
  text-align: center;
  font-family: var(--sub-font);
}

.en-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  font-family: var(--sub-font);
  margin-bottom: 25px;
}

.en-title:has(+ .ja-title) {
  margin-bottom: 10px;
}

.en-title span {
  font-weight: 300;
}

/*---------
h2非表示用
----------*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*---------
注釈
----------*/
.note-image {
  position: relative;
}

.note-image::before {
  content: "※イメージ(当社の取り扱い物件ではありません)";
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  height: auto;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  z-index: 1;
}

/*---------
異なる色、調整用
----------*/
.is_white {
  color: #fff;
}

/*---------
下層用カテゴリボタン
----------*/

.category-nav {
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 256px);
  justify-content: center;
  gap: 20px;
}

.category-link {
  display: block;
  border: 1px solid #64512b;
  border-radius: 8px;
  width: 256px;
  min-height: 91px;
  max-width: 100%;
  text-align: center;
  padding: 10px 0;
  color: #000000;
}

/* 「全域」ボタンのみテキストを上下左右中央に配置 */
.category-link--all {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*---------
ホバーしたときの動き（少し透明にするなど）
----------*/
.category-link:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.category-link.is-active:hover {
  opacity: 1;
  cursor: default;
}

.is-active {
  background: #64512b;
  color: #fff;
}

.category-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(20 / 16);
  margin-bottom: 5px;
}

.category-areas {
  font-size: 10px;
  line-height: calc(14 / 10);
}

@media (min-width: 768px) {
  .mv {
    margin-bottom: 60px;
  }

  .main_catch {
    font-size: 36px;
    line-height: calc(48 / 36);
  }

  [class*="section_content--"]:not(:last-child) {
    padding-bottom: 160px;
  }

  .intro-title {
    font-size: clamp(28px, calc(32px + 50vw - 570px), 32px);
    line-height: calc(48 / 32);
    margin-bottom: 40px;
  }

  .intro-text {
    text-align: center;
  }

  .heading-group {
    margin-bottom: 60px;
  }

  .ja-title {
    font-size: 24px;
    font-weight: bold;
    line-height: calc(48 / 24);
  }

  .en-title {
    font-size: clamp(48px, calc(56px + 50vw - 570px), 56px);
    margin-bottom: 0;
  }

  .en-title span {
    margin-left: 20px;
  }

  .l-page .section_content--intro {
    padding-bottom: 100px;
    padding-inline: 20px;
  }

  .note-image::before {
    position: absolute;
    top: auto;
    bottom: 8px;
    right: 8px;
    font-size: 14px;
  }

  /*---------
    下層用カテゴリボタン
    ----------*/

  .category-nav {
    margin-bottom: 80px;
    padding: 0 20px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 256px);
  }
}

/*---------
concept
----------*/

.section_content--concept {
  position: relative;
  padding: 80px 0 50px;
}

.section_content--concept::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #7e7e7e;
  mix-blend-mode: multiply;
}

.section_content--concept .content_box {
  position: relative;
  z-index: 1;
}

.concept-heading {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  line-height: calc(28 / 18);
  text-align: center;
  font-family: var(--sub-font);
  margin-bottom: 40px;
}

.concept-text {
  font-size: 16px;
  font-weight: 500;
  line-height: calc(32 / 16);
  color: #fff;
  text-align: center;
  font-family: var(--sub-font);
}

@media (min-width: 768px) {
  .section_content--concept {
    padding: 132px 20px 50px;
  }

  .concept-heading {
    font-size: 24px;
    line-height: calc(48 / 24);
    margin-bottom: 20px;
  }
}

/*---------
カードスライダー
----------*/

.swiper-wrapper {
  margin-bottom: 40px;
}

.card {
  transition: opacity 0.3s ease;
}

.card-img {
  position: relative;
  margin-bottom: 10px;
}

.card-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000000;
  border-radius: 4px;
  width: fit-content;
  padding: 2px 7px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: calc(20 / 14);
  font-family: var(--sub-font);
}

.card-name {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  line-height: calc(36 / 16);
  letter-spacing: 0.1em;
  font-family: var(--sub-font);
}

/*---------
スライダーページャー
----------*/

.card-slider-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-inline: 20px;
}

.card-slider-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.card-slider-prev {
  order: 1;
  margin-right: auto;
}

.card-slider-next {
  order: 2;
}

.card-slider-prev,
.card-slider-next {
  max-width: 120px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #111111;
  padding: 0 0 2px;
  font-family: var(--point-font);
  border-bottom: 1px solid #111111;
  position: relative;
}

.card-slider-prev::before,
.card-slider-next::after {
  content: "";
  display: block;
  position: absolute;
  background: #111111;
  width: 20px;
  height: 1px;
  bottom: 6px;
}

/*---------
左側：右上がりの斜め線
----------*/
.card-slider-prev::before {
  left: -5px;
  transform: rotate(-50deg);
}

/*---------
右側：左上がりの斜め線
----------*/
.card-slider-next::after {
  right: -5px;
  transform: rotate(50deg);
}

.card-slider-control .btn-wrap {
  order: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .swiper-wrapper {
    margin-bottom: 60px;
  }

  .card-name {
    font-size: 20px;
    line-height: calc(36 / 20);
  }

  .card-slider-control {
    max-width: 530px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding-inline: 20px;
    margin: 0 auto;
  }

  .card-slider-next {
    order: 3;
  }

  .card-slider-control .btn-wrap {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
  }

  .card:hover {
    opacity: 0.7;
  }
}
