@charset "utf-8";
/* CSS Document */
/* 左からフェードイン */
.slideinLeft.active {
  animation: slideIn01 0.6s ease-out forwards;
  line-height: 1.5;
}
@keyframes slideIn01 {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* 下からフェードイン　*/
.slideinBottom.active {
  animation: slideinBottom 0.6s ease-out forwards;
}
@keyframes slideinBottom {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.container {
  width: min(90%, 1440px);
  margin: clamp(40px, 8vw, 110px) auto clamp(80px, 8vw, 100px);
  container: bukken-container / inline-size;
}
/* ============== 物件名・価格 ============== */
.sec-bukken_name {
  margin-bottom: clamp(20px, 3.2vw, 40px);
}
.bukken_name {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: clamp(6px, 1.2vw, 10px);
}
.bukken_name .name {
  font-size: clamp(2.0rem, 2.4vw, 3.2rem);
  letter-spacing: .1rem;
  text-align: left;
}
.bukken_name .tag {
  font-size: 1.2rem;
  border: solid #999 1px;
  display: inline-block;
  width: max-content;
  letter-spacing: .3rem;
  color: #777;
  padding: 4px 8px 4px 14px;
  text-box: trim-both cap alphabetic;
}
/*
.bukken-grid {
  width: auto;
  min-height: 30vh;
}
*/
.sec-bukken_pic {
  margin-bottom: 20px;
}
.splide__slide img {
  aspect-ratio: 4 / 3;
  display: block;
}
/* ======= 物件情報 ======= */
.table dl {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  border-bottom: solid 0.3px #999;
  padding: 10px 0;
  text-align: left;
  min-height: 50px;
}
.table dl dt {
  width: min(100%, 90px);
  color: #777;
}
.table dl:not(.long) dd {
  width: min(100%, 100px);
}
.bukkendata-inner .table dl dd,
.table dl.long dd {
  width: min(100%, 360px);
}
.table dl.long02 dd {
  width: min(100%, 180px);
}
.table dl dd span:not(:last-child) {
  display: block;
  margin-bottom: 4px;
  white-space: normal;
}
.bukken_LinkBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 0.8vw, 20px);
  margin-top: 20px;
}
.linkform-btn>a::before {
  content: ' ';
  display: inline-block;
  background: url("../img/common/icon-mail.svg") no-repeat center / contain;
  margin-right: 8px;
  width: 25px;
  height: 25px;
}
.btn02>a::before {
  background: url("../img/common/icon-line.svg") no-repeat center / contain;
}
.linkform-btn>a {
  font-size: clamp(1.6rem, 4vw, 2.0rem);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 20px 2rem;
  background-color: #4C5E71;
  text-box: trim-both cap alphabetic;
}
.btn02>a:last-child {
  background-color: #555E68;
}
@container bukken-container (min-width: 760px) {
  /* 物件写真・物件情報 */
  .bukken-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 2rem;
  }
  .sec-bukken_pic {
    grid-area: 1 / 1 / 2 / 8;
    margin-bottom: 0;
    padding: 2rem;
  }
  .sec-bukkendata {
    grid-area: 1 / 8 / 2 / 13;
  }
  .bukken_LinkBtn {
    grid-area: 2 / 1 / 3 / 13;
    flex-direction: row;
    justify-content: center;
    column-gap: 40px;
  }
  .linkform-btn {
    width: 100%;
  }
  /* 物件写真・物件情報 */
  .sec-detail {
    width: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: clamp(30px, 4.8vw, 100px);
  }
  .detail_left {
    grid-area: 1 / 1 / 2 / 8;
  }
  .detail_right {
    grid-area: 1 / 8 / 2 / 13;
  }
}

@container bukken-container (min-width: 1100px) {
 .sec-bukken_pic {
    grid-area: 1 / 1 / 3 / 8;
  }
  .bukken_LinkBtn {
    grid-area: 2 / 8 / 3 / 13;
    flex-flow: column nowrap;
  }
}
@container bukken-container (min-width: 1440px) {
  .sec-bukken_pic {
    grid-area: 1 / 1 / 3 / 7;
  }
}
/* ============== お客様の声 ============== */
.sec-voice {
  margin-bottom: clamp(80px, 18vw, 180px);
  padding-bottom: 80px;
  border-bottom: solid 1px #333;
  container: voice-container / inline-size;
}
.voice-tit-wrap {
  position: relative;
  padding: clamp(20px, 4.5vw, 40px) 0 clamp(22px, 4.5vw, 42px);
}
.voice-tit-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: width 0.8s;
}
.voice-tit-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: width 0.8s;
}
.voice-tit-inner {
  width: min(90%, 1440px);
  margin-inline: auto;
  text-align: left;
}
.sec-tit_h2_ja {
  font-weight: normal;
  font-size: clamp(2.0rem, 4.5vw, 4.8rem);
  display: block;
  letter-spacing: 4px;
  word-break: keep-all;
}
.sec-tit_h2_en {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.0rem, 2.4vw, 1.6rem);
  font-weight: normal;
  letter-spacing: .5rem;
  display: block;
  text-transform: uppercase;
}
.tit_illust {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 3vw, 40px);
}
.tit_illust p {
  max-width: 230px;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
}
.tit_illust img {
  width: min(30%, 120px);
}
.voice-list {
  margin: clamp(60px, 6vw, 80px) auto clamp(80px, 8vw, 100px);
  width: min(90%, 1200px);
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4.5vw, 60px);
}
.voice-list dl {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.0vw, 20px);
  text-align: left;
}
.voice-q::before {
  content: ' ';
  display: inline-block;
  background: url(../img/common/Q.webp) no-repeat center / contain;
  width: 24px;
  height: 24px;
  margin: 3px 8px auto 0;
}
.voice-q {
  display: flex;
  align-items: center;
}
.voice-q>span, .voice-a {
  display: block;
  width: fit-content;
  font-size: clamp(1.6rem, 1.3vw, 2.0rem);
}
.voice-q>span {
  font-weight: bold;
}
/*　もっと見るボタン　共通　*/
.moreBtn {
  width: min(100%, 380px);
  border: solid 1px #333;
  padding: 18px 0;
  display: block;
  outline: none;
	font-size: clamp(1.6rem, 2vw, 1.8rem);
  text-align: center;
  margin: 0 auto;
}

@container voice-container (min-width: 600px) {
  .voice-tit-inner {
    display: flex;
    gap: 6rem;
    justify-content: space-between;
    align-items: center;
  }
  .tit_illust p {
    max-width: 300px;
  }
  .tit_illust img {
    width: min(35%, 180px);
  }
  .voice-q::before {
    margin: 0 12px 0 0;
  }
}
/* ========= 会社紹介 ここから ========= */
.sec-company {
  max-width: 2000px;
  margin-inline: auto;
  container: company-container / inline-size;
}
.company-inner {
   background: url("../img/company_sp.webp")center center/cover no-repeat;
  padding: clamp(50px, 8.2vw, 80px) 5%;
  color: #fff;
  text-align: left;
}
.company-tit, .company-txt {
  margin-bottom: clamp(40px, 8.2vw, 60px);
  max-width: 670px;
}
.company-tit .sec-tit_h2_en
{
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  letter-spacing: .5rem;
  display: block;
  text-transform: uppercase;
}
.company-tit .sec-tit_h2_ja
{
  font-weight: normal;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  display: block;
  letter-spacing: 4px;
}
.company-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 800px;
}
.company-link_btn {
  width: min(100%, 360px);
  border: solid 1px #fff;
  padding: 18px 1rem;
  display: block;
  outline: none;
  color: #fff;
	font-size: clamp(1.6rem, 2vw, 1.8rem);
  text-align: center;
}
/*　バナー画像　*/
.banner-wrap {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 40px 40px;
  background-repeat: repeat;
  background-position: center center;
  padding-top: clamp(60px, 20vw, 240px);
  padding-bottom: clamp(80px, 18vw, 180px);
}
.banner-list {
  width: min(90%, 1440px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.8vw, 30px);
}

@container company-container (min-width:600px) {
  .company-wrap {
    position: relative;
    min-height: 660px;
  }
  .company-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: min(80%, 800px);
    height: 100%;
    background: url("../img/company.webp")center center/cover no-repeat;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* 左からフェードイン PCのみ */
  .slideinLeft01.active {
    animation: slideIn01 0.6s ease-out forwards;
    line-height: 1.5;
  }
  @keyframes slideIn01 {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  .company-pic_sp {
    position: absolute;
    top: 6vw;
    right: 0;
    width: 55%;
    height: 100%;
    display: block;
    background: url("../img/company02.webp")center center/cover no-repeat;
    z-index: 1;
  } 
  .banner-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .banner-list a:hover {
    opacity: 0.8;
    transition: 0.6s;
  }
}
@container company-container (min-width:1000px) {
  .company-inner {
    width: min(80%, 1200px);
    padding-left: 10vw;
  }
  .company-link {
    align-items: flex-start;
  }
  .company-link_btn {
	  position: relative;
    transition: all .2s linear;
  }
  .company-link_btn::before{
    content:"";
    position: absolute;
    top:50%;
    right:-74px;
    width:90px;
    height:0.5px;
    background-color:#fff;
    transition: all .2s linear;
  } 
  .company-link_btn:hover {
    background-color:#000;
    color:#fff;
    opacity: 1;
  }
  .company-link_btn:hover::before{
    right: -90px;
  }
  .banner-list {
    gap: clamp(40px, 3.8vw, 60px);
  }
} 
/* ============== CONTACT ここから ============== */ 
.sec-contact {
  max-width: 2000px;
  margin-inline: auto;
  background: url("../img/common/contact_bg.webp") no-repeat 85% center / cover;
  padding: clamp(60px, 6vw, 100px) 0 clamp(80px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  container: contact-container / inline-size;
}
.contact-tit {
  width: min(86% ,600px);
  color: #fff;
}
.contact-tit h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: normal;
  letter-spacing: .5rem;
}
.contact-tit p {
  margin: 2rem auto 0;
  word-break: auto-phrase;
}
.sec-contact ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 2rem; 
  width: min(80%, 360px);
}
.sec-contact ul li {
  border: 1px solid #fff;
  background-color: #373737;
  padding: clamp(8px, 5vw, 40px);
  width: 100%;
}
.sec-contact ul li a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
  align-items: center;
}
/*　テキスト　フェードイン ここから　*/
.fadeUpTrigger{
  opacity: 0;
}
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.time05{
  animation-duration: 0.5s;
}

.time1{
  animation-duration: 1s;
}

.time15{
  animation-duration: 1.5s;
}
@container contact-container (min-width:600px) {
  .sec-contact ul {
    width: min(80%, 1200px);
    flex-direction: row;
    column-gap: 0;
    justify-content: center;
  } 
  .sec-contact ul li:hover {
    background-color: #666;
    transition: 0.3s;
  }
  .sec-contact ul li:first-child a {
    pointer-events: none;
  }
  .sec-contact ul li:first-child a::after {
    content: "06-6910-7500";
    font-size: clamp(2.0rem, 2vw, 3.8rem);
    letter-spacing: 2px;
    margin-top: 10px;
  }
  .sec-contact ul li:not(.time05) a::after {
    content: " ";
    background: url("../img/column/arrow.svg") center no-repeat;
    width: clamp(28px, 5vw, 40px);
    height: clamp(28px, 5vw, 40px);
    margin-top: 20px;
  }
} 
/* ============== TAB(768px)レスポンシブ ============== */
@media (min-width:767px) {
  /*　もっと見るボタン　共通　*/
  .moreBtn {
	  position: relative;
    transition: all .2s linear;
  }
  .moreBtn:hover{
    background-color:#333;
    color:#fff;
    opacity: 1;
  }
  .moreBtn::before{
    content:"";
    position: absolute;
    top:50%;
    right:-52px;
    width:74px;
    height:0.5px;
    background-color:#333;
    transition: all .2s linear;
  }
  .moreBtn:hover::before{
    right:-73px;
  }
}
  

