@charset "UTF-8";

/* TOP */
.top-event.v2 {
  & .top-articles {
    grid-template-columns: repeat(4, 1fr);
  }
  & .top-article--img {
    aspect-ratio: 1/1;
  }
  & .top-article--short {
    font-size: 12px;
  }
  & .top-article--title {
    font-size: 16px;
    min-height: 52px;
  }
  & .top-article--short {
    margin: 0;
  }
  & .top-article--short.date {
    background: #fff;
    text-align: center;
    padding: 2px 4px;
    margin: 2px 0;
  }
  & .top-article--btn {
    width: 100%;
    max-width: 250px;
    font-family: var(--tinos);
    font-size: 12px;
    color: #000;
    text-align: center;
    padding: .8em;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 2em;
    white-space: nowrap;
    line-height: 1;
    margin: 10px auto 0;
    transition: .3s ease-in-out;
  }
  & .top-article a:hover .top-article--btn {
    color: #fff;
    background: #000;
  }
  & .top-article--tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 5px 0;
  }
  & .top-article--tag {
    font-size: 14px;
    color: #fff;
    padding: .4em .6em;
    line-height: 1;
    text-align: center;
  }
}
.top-article--short {
  font-size: 12px;
}
.top-works--tags {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.top-works--tag {
  font-size: 14px;
  line-height: 1;
}

/* OWNER'S VOICE */
.top-owners_voice-sec {
  padding: 50px 0;
}
.top-owners_voice-content {
  width: 100%;
  height: 400px;
  border-radius: 2px;
  overflow: hidden;
}
.top-owners_voice-content a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
  padding: 0 100px;
  background: url(./img/top/owners_voice-img.webp?2) no-repeat center / cover;
}
.top-owners_voice-content a:hover {

  &::after {
    opacity: .3;
  }
}
.top-owners_voice-content a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  opacity: 1;
  transition: .3s ease-in-out;
}
.top-owners_voice-content .text-box {
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translateY(-50%);
  z-index: 3;
}
.top-owners_voice-content .text-box h3 {
  font-family: var(--tinos);
  font-size: 100px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  line-height: 1;
}
.top-owners_voice-content .text-box span {
  font-family: var(--gothic);
  font-size: 18px;
  position: relative;
  bottom: -10px;
}
.top-owners_voice-content .text-box p {
  font-size: 18px;
}

/* BLOG */
.top-blog-item {
  border-bottom: 1px solid #9E9E9E;
}
.top-blog-item__link {
  display: flex;
  align-items: center;
  color: #241913;
  font-size: 16px;
  padding: 1.5em 1em;
  position: relative;
}
.top-blog-item__link:hover {
  background: rgba(0, 0, 0, .3);
}
.top-blog-item__date {
  width: 80px;
  font-size: 14px;
  font-weight: bold;
}
.top-blog-item__title {
  width: calc(100% - 80px);
  padding-left: 20px;
}

/* FOOTER */
.footer-flex__right-content {
  width: calc(100% - 520px);
}
.footer-flex__menu.v2 {
  width: 100%;
}

.btn-recruit {
  max-width: 550px;
  border-radius: 65px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: #3E3A39;
  border: 1px solid #3E3A39;
  margin-left: auto;
  position: relative;
}
.btn-recruit:hover {
  background: #000;
}
.btn-recruit .text-box {

}
.btn-recruit .text-box h5 {
  font-family: var(--tinos);
  font-size: 50px;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 10px;
}
.btn-recruit .text-box h5 span {
  font-family: var(--gothic);
  font-size: 14px;
  position: relative;
  top: -2px;
}
.btn-recruit .text-box p {

}
.btn-recruit .arrow-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
}
/* Coming soon対応 */
.btn-recruit {
  pointer-events: none;
}
.btn-recruit::after {
  content: "Coming soon";
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  font-size: 20px;
  background: rgba(0, 0, 0, .8);
}
/* ここまで */


/* RESPONSIVE */
@media screen and (max-width:1440px) {
  .footer-flex__right-content {
    width: calc(100% - 420px);
  }
}

@media screen and (max-width:991px) {
  .footer-flex__info {
    width: fit-content;
  }
  .footer-flex.v2 {
    flex-direction: column;
    gap: 20px;
  }
  .footer-flex__right-content {
    width: 100%;
  }
  .btn-recruit {
    margin: 0 auto;
    max-width: 250px;
    padding: 10px 30px;
    border-radius: 40px;
  }
  .btn-recruit .text-box h5 {
    font-size: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .btn-recruit .text-box h5 span {
    font-size: 10px;
    position: initial;
  }
  .btn-recruit .text-box p {
    display: none;
  }
  .btn-recruit .arrow-box {
    width: 40px;
    height: 40px;
  }
  .btn-recruit .arrow-box img {
    max-width: 8px;
  }
  .btn-recruit::after {
    font-size: 16px;
  }

  .top-owners_voice-content {
    height: 250px;
  }
  .top-owners_voice-content .text-box h3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-size: 54px;
    margin-bottom: 20px;
  }
  .top-owners_voice-content .text-box span {
    font-size: 16px;
    position: initial;
  }
  .top-owners_voice-content .text-box p {
    font-size: 16px;
  }
}

@media screen and (max-width:767px) {
  #drawer {
    padding-top: 60px;
  }

  /* TOP */
  .top-kv {
    height: 55dvh;
    min-height: initial;
  }
  .top-kv__scroll {
    bottom: 50px;
    padding-bottom: 30px;
  }
  .top-kv__scroll::before {
    height: 30px;
  }
  .top-kv__event {
    bottom: 0;
  }
  .top-kv__banner {
    max-width: 250px;
    bottom: 50px;
  }
  .top-h1 {
    font-size: 20px !important;
  }
  .top-articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .top-article--title {
    font-size: 14px;
  }
  .top_faq_wrap .accordion-header {
    padding: 15px 0;
  }
  .top_faq_wrap .accordion-body {
    padding: 15px 0;
  }
  .top_faq_wrap .icon-circle {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .top-modelhouses {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .top-modelhouse--title--text {
    font-size: 14px;
  }
  .top-works--bg {
    display: none;
  }
  .top-event.v2 {
    & .top-articles {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    & .top-article--short {
      font-size: 11px;
      display: none;
    }
    & .top-article--title {
      font-size: 14px;
      min-height: 45px;
    }
    & .top-article--btn {
      font-size: 11px;
      padding: .4em;
      margin-top: 5px;
    }
    & .top-article--tag {
      font-size: 11px;
    }
  }
  .top-article--short {
    font-size: 10px;
  }
  .top-works--tag {
    display: none;
  }

  /* 下層ページ KV削除 */
  .common-kv {
    display: none;
  }
  main.archive,
  main.single,
  main.concept01,
  main.concept02,
  main.company {
    padding-top: 50px;
  }
  #header {
    background: rgba(0,0,0,.8);
  }

  /* イベントアーカイブ */
  .lh-archive-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .lh-archive-article--meta--add {
    font-size: 10px;
  }
  .lh-archive-article--title {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .archive-article--vm--text {
    font-size: 11px;
    padding: .1em 1em;
  }

  /* 土地・建売情報アーカイブ */
  .lh-archive-article--excerpt {
    display: none;
  }
  .lh-archive-article--price {
    font-size: 14px;
    padding: 0 10px 10px;
  }
  .mh-maintitle--text {
    font-size: 20px;
  }
  .lh-archive--mapsec {
    margin-top: 30px;
    padding: 30px 0;
  }

  /* モデルハウスアーカイブ */
  .mh-bannersec {
    margin: 20px 0;
  }
  .mh-archive-articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .mh-archive-article--title--num {
    font-size: 28px;
  }
  .mh-archive-article--title--text {
    font-size: 14px;
  }

  /* OWNER'S VOICE */
  .top-owners_voice-content {
    height: 200px;
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3);
  }
  .top-owners_voice-content .text-box h3 {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .top-owners_voice-content .text-box span {
    font-size: 14px;
  }
  .top-owners_voice-content .text-box p {
    font-size: 12px;
  }
  .top-owners_voice-content .text-box {
    left: initial;
  }
  .top-owners_voice-content a {
    padding: 0 20px;
  }

  /* BLOG */
  .top-blog-item__link {
    font-size: 14px;
    padding: 1em .5em;
    flex-direction: column;
  }
  .top-blog-item__date {
    width: 100%;
    font-size: 12px;
  }
  .top-blog-item__title {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width:540px) {
  .top-event.v2 {
    & .top-article--title {
      min-height: 68px;
    }
  }
}