@charset "utf-8";
/* common
-------------------------------------------------------------- */

/* mv
-------------------------------------------------------------- */
#mv {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#mv h1 {
  flex-wrap: nowrap;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 90%;
  max-width: 1100px;
  margin: auto;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 10px;
  z-index: 3;
}
#mv.real-estate h1 {
  bottom: 35%;
  max-width: 100%;
  color: var(--white);
}
#mv h1 span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black);
}
#mv.real-estate h1 span {
  border-bottom: 1px solid var(--white);
}
#mv h1 span:first-child {
  padding-left: 30px;
}
#mv h1 span:last-child {
  padding-right: 30px;
}
#mv .overlay {
  position: absolute;
  inset: 0;
  /*background: rgba(0,0,0,.4);*/
}
#mv img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1130px) {
  #mv h1 {
    font-size: 3.8rem;
  }
}
@media (max-width: 1000px) {
  #mv.real-estate h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  #mv h1 {
    gap: 10px 0;
    bottom: 10px;
    flex-wrap: wrap;
    font-size: 1.6rem;
    letter-spacing: 3px;
  }
  #mv.real-estate h1 {
    bottom: 30%;
  }
  #mv h1 span {
    padding-bottom: 5px;
  }
  #mv h1 span:first-child {
    padding-left: 10px;
  }
  #mv h1 span:last-child {
    padding-right: 10px;
  }
  #mv .overlay {
    background: rgba(255,255,255,.3);
  }
  #mv.real-estate .overlay {
     background: none;
  }
}
/* about
-------------------------------------------------------------- */
#about {
  position: relative;
  padding: 100px 0;
  background: var(--lightgray);
  overflow: hidden;
}
#about h2 {
  margin-bottom: 90px;
  color: var(--white);
}
#about .txtArea {
  margin: auto;
  max-width: 800px;
  text-align: center;
}
#about .txtArea p {
  padding-bottom: 30px;
}
#about .btn a {
  margin: 100px auto 0;
  max-width: 300px;
}
@media (max-width: 767px) {
  #about {
    padding: 50px 0;
  }
  #about h2 {
    margin-bottom: 40px;
  }
  #about .txtArea {
    margin: auto;
    max-width: 680px;
    text-align: center;
  }
  #about .txtArea p {
    padding-bottom: 20px;
  }
  #about .btn a {
    margin: 30px auto 0;
  }
}
/* link
-------------------------------------------------------------- */
#link {
  padding: 150px 0 60px;
  background: var(--black);
  color: var(--white);
}
#link ul {
  margin: 60px 10px;
  gap: 20px 40px;
}
#link li {
  width: calc((100% - 80px) / 3);
  display: flex;
}
#link li a {
  position: relative;
  width: 100%;
  min-height: 100%;
  border-bottom: 1px solid var(--brown);
  align-items: center;
}
#link li a:hover {
  background: var(--gray);
}
#link li a span {
  display: block;
  width: 100%;
  padding: 10px 20px 10px 20px;
  font-size: 1.7rem;
  line-height: 1.6;
}
#link li a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 20px;
  background: var(--brown);
  content: "";
}
#link li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  background: url(../img/common/ico_window.png) no-repeat center / contain;
  content: "";
}

@media (max-width: 767px) {
  #link {
    padding: 70px 0 30px;
  }
  #link ul {
    margin: 30px 0;
    gap: 10px 20px;
  }
  #link li {
    width: 100%;
  }
  #link li a span {
    padding: 10px 25px 10px 20px;
    font-size: 1.5rem;
  }
  #link li a::after {
    width: 10px;
    height: 10px;
  }
}

/* news
-------------------------------------------------------------- */
#news .container {
  padding-bottom: 60px;
  margin-bottom: 100px;
  justify-content: space-between;
  border-bottom: 1px solid var(--brown);
}
#news .ttlArea {
  width: 280px;
}
#news .ttlArea h2 {
  padding-bottom: 50px;
}
#news .postArea {
  width: calc(100% - 340px);
}
#news .postArea > li {
  border-bottom: 1px solid var(--lightgray);
}
#news .postArea li a {
  padding: 10px 0;
  align-items: center;
  gap: 10px;
}
#news .postArea li .cat {
  gap: 5px;
}
#news .postArea li .cat li {
  padding: 6px 10px;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
#news .postArea li .date {
  color: var(--brown);
  font-weight: 700;
}
#news .postArea li .ttl {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  #news .container {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  #news .ttlArea {
    width: 100%;
    text-align: center;
  }
  #news .ttlArea h2 {
    padding-bottom: 30px;
  }
  #news .btn {
    width: 100%;
  }
  #news .btn a {
    margin: 30px auto 0;
  }
  #news .postArea {
    width: 100%;
  }
}

/* column
-------------------------------------------------------------- */
#column .container {
  padding-bottom: 60px;
  margin: 150px auto 100px;
  justify-content: space-between;
  border-bottom: 1px solid var(--brown);
}
#column .ttlArea {
  width: 350px;
}
#column .ttlArea h2 {
  padding-bottom: 50px;
}
#column .postArea {
  width: calc(100% - 410px);
}
#column .postArea > li {
  border-bottom: 1px solid var(--lightgray);
}
#column .postArea li a {
  padding: 20px 0;
  justify-content: space-between;
  align-items: flex-start;
}
#column .postArea li .eyecatch {
  width: 32%;
  background-color: var(--lightgray);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 22 / 15;
}
#column .postArea li .txtArea {
  align-items: center;
  gap: 10px;
  width: 65%;
}
#column .postArea li .cat {
  gap: 5px;
}
#column .postArea li .cat li {
  padding: 6px 10px;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
#column .postArea li .date {
  color: var(--brown);
  font-weight: 700;
}
#column .postArea li .ttl {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 700;
}
#column .postArea li .txt {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  #column .container {
    padding-bottom: 50px;
    margin: 50px auto;
  }
  #column .ttlArea {
    width: 100%;
    text-align: center;
  }
  #column .ttlArea h2 {
    padding-bottom: 10px;
  }
  #column .btn {
    width: 100%;
  }
  #column .btn a {
    margin: 30px auto 0;
  }
  #column .postArea {
    width: 100%;
  }
  #column .postArea li .eyecatch {
    margin-bottom: 10px;
    width: 100%;
  }
  #column .postArea li .txtArea {
    width: 100%;
  }
  #column .postArea li .ttl {
    font-size: 1.6rem;
  }
}

/* igArea
-------------------------------------------------------------- */
.igArea {
  padding: 60px 0;
  background: var(--brown);
  text-align: center;
}
.igArea .ico {
  margin-bottom: 50px;
}
.igArea .igWrap {
  overflow: hidden;
}
.igArea .btn a {
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  .igArea {
    padding: 30px 0;
  }
  .igArea .ico {
    margin-bottom: 30px;
  }
  .igArea .btn a {
    margin: 20px auto 0;
  }
}
/* works
-------------------------------------------------------------- */
#works {
  padding: 150px 0;
}
#works .postArea {
  margin-top: 60px;
  gap: 20px;
}
#works .postArea > li {
  width: calc((100% - 60px) / 4);
}
#works .postArea li a {
  display: block;
}
#works .postArea li .eyecatch {
  margin-bottom: 30px;
  width: 100%;
  background-color: var(--lightgray);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 26 / 18;
}
#works .postArea li .cat {
  margin-bottom: 20px;
  gap: 5px;
}
#works .postArea li .cat li {
  padding: 6px 10px;
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
}
#works .postArea li .cat li.cat__type {
  padding: 6px 0;
  background: var(--white);
  width: 120px;
  border: 1px solid var(--brown);
  color: var(--black);
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
}
#works .postArea li .location {
  padding-bottom: 10px;
  color: var(--brown);
  font-size: 1.5rem;
  font-weight: 700;
}
#works .postArea li .ttl {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
#works .btn a {
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  #works {
    padding: 70px 0;
  }
  #works .postArea {
    margin-top: 30px;
  }
  #works .postArea > li {
    width: calc(50% - 10px);
  }
  #works .postArea li .eyecatch {
    margin-bottom: 20px;
  }
  #works .postArea li .cat {
    margin-bottom: 10px;
    gap: 5px;
  }
  #works .postArea li .cat li {
    font-size: 1.3rem;
  }
  #works .postArea li .cat li.cat__type {
    font-size: 1.3rem;
    width: 110px;
  }
  #works .btn a {
    margin: 30px auto 0;
  }
}
/* form
-------------------------------------------------------------- */
#form {
  padding: 120px 0;
  background: url(../img/reform/form_bg.jpg) no-repeat center / cover;
  text-align: center;
}
#form h2 {
  color: var(--white);
}
#form p {
  padding-top: 50px;
  color: var(--white);
}
#form .btn a {
  margin: 80px auto 0;
}
@media (max-width: 767px) {
  #form {
    padding: 60px 0;
  }
  #form p {
    padding-top: 30px
  }
  #form .btn a {
    margin: 40px auto 0;
  }
}

/* staff
-------------------------------------------------------------- */
#staff {
  padding: 120px 0;
  background: var(--lightgray);
}
#staff h2 {
  color: var(--brown);
}
#staff .btn a {
  margin: auto;
}
#staff .sliderWrap {
  position: relative;
  padding: 100px 0;
  padding-left: calc((100% - 1100px) / 2);
  overflow: hidden;
}
#staff .staffSwiper {
  overflow: visible;
}
#staff .swiper-slide {
  width: 340px;
  overflow: hidden;
  border-radius: 30px;
}
.card {
  position: relative;
}
.card a:hover {
  opacity: 1;
}
.card .eyecatch {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 350 / 307;
}
.card .eyecatch.no-image {
  background: var(--lightyellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.card a:hover .eyecatch {
  opacity: 0.7;
}
.card .info {
  padding: 30px;
  background: var(--white);
}
.card a:hover .info {
  background: var(--white);
}
.card .role {
  position: relative;
  padding-bottom: 5px;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
}
.card .title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#staff .swiper-controller {
  padding-top: 100px;
  width: min(1100px, calc(100% - 40px));
}
#staff .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}
#staff .swiper-pagination-bullet {
  flex: 1;
  min-width: 28px;
  max-width: 30px;
  height: 5px;
  margin: 0 !important;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}
#staff .swiper-pagination-bullet-active {
  background: var(--gold);
  max-width: 60px;
}
@media (max-width: 1200px) {
  #staff .sliderWrap {
    padding-left: 5%;
  }
}
@media (max-width: 767px) {
  #staff {
    padding: 60px 0;
  }
  #staff .btn {
    padding-top: 40px;
  }
  #staff .sliderWrap {
    padding: 30px 0 0 0;
  }
  #staff .sliderWrap::after {
    width: 45%;
    height: 75%;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
  }
  #staff .swiper-slide {
    width: 250px;
    border-radius: 15px;
  }
  .card .info {
    padding: 20px 30px 40px;
  }
  .card .role {
    font-size: 1.3rem;
  }
  .card .title {
    font-size: 1.6rem;
  }
  #staff .swiper-controller {
    padding-top: 40px;
  }
  #staff .swiper-pagination {
    left: 5%;
  }
}

/* recruit
-------------------------------------------------------------- */
#recruit {
  margin-bottom: 150px;
  background: url(../img/index/recruit_bg.jpg) no-repeat center / cover;
}
#recruit .container {
  position: relative;
  align-items: center;
  aspect-ratio: 1366 / 450;
  min-height: 450px;
}
#recruit .txtArea {
  width: 50%;
}
#recruit .txtArea p {
  padding: 40px 12% 40px 0;
  line-height: 2;
}
#recruit figure {
  position: absolute;
  top: 30px;
  right: 0;
  width: 50%;
  text-align: center;
}
@media (max-width: 767px) {
  #recruit {
    margin-bottom: 70px;
  }
  #recruit .container {
    aspect-ratio: auto;
    min-height: auto;
  }
  #recruit .txtArea {
    padding: 40px 0 70%;
    width: 100%;
    text-align: center;
  }
  #recruit .txtArea p {
    padding: 20px 0;
    text-align: left;
  }
  #recruit .txtArea .btn a {
    margin: auto;
  }
  #recruit figure {
    top: auto;
    bottom: -50px;
    padding: 0 10%;
    width: 100%;
  }
}

/* contact
-------------------------------------------------------------- */
#contact {
  position: relative;
}
#contact::after {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(1100px + ((100% - 1100px) / 2));
  height: 100%;
  background: var(--gold);
  border-radius: 0 90px 0 0;
  content: "";
}
#contact .container {
  position: relative;
  color: var(--white);
  z-index: 1;
}
#contact .txtArea {
  padding: 100px 0;
  max-width: 520px;
}
#contact .txtArea p {
  padding: 30px 0 40px;
}
#contact ul {
  gap: 40px;
}
#contact li {
  width: calc(50% - 20px);
}
#contact li a {
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 50px;
  border-radius: 25px;
  font-weight: 700;
  line-height: 1;
}
#contact li:first-child a {
  background: var(--white);
  color: var(--gold)
}
#contact li:last-child a {
  background: var(--black);
  color: var(--white)
}
@media (max-width: 1200px) {
  #contact::after {
    width: 90%;
  }
}
@media (max-width: 767px) {
  #contact .txtArea {
    padding: 50px 5%;
    max-width: 80%;
  }
  #contact .txtArea p {
    padding: 20px 0 30px;
  }
  #contact ul {
    gap: 15px;
  }
  #contact li {
    width: 100%;
  }
  #contact li a {
    width: 220px;
    height: 46px;
  }
}