@charset 'UTF-8';

/* 共通----------------------------------- */

html {
  scroll-behavior: smooth;
}

body{
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  font-size: 14px;
  animation: fade 2s forwards;
}

html, body {
  overflow-x: hidden;
}

@media (min-width:768px) {
  body{
    font-size: 16px;
  }
}

@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

p{
  line-height: 1.7;
  color: #333;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
a{
  text-decoration: none;
  /* color: #fff; */
}
ul{
  list-style: none;
}
.wrapper{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}

/* 英語フォント */
.en{
  font-family: "Marcellus SC", "Times New Roman",serif;
  font-style: normal;
}


/* ヘッダー--------------------------------------------------------- */
.header .logo{
  max-height: 50px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.header{
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 0 4%;
  z-index: 2;
  transition: all 0.6s;
}

@media (min-width:768px) {

/* スクロールしたらヘッダー背景色追加 */
.header.scrolled {
  background-color: #ffffffe5;
}

/* PC版のメニューは黒文字 */
.header .pc-nav a{
  color: #282828;
  font-weight: 500;
}
}


/* ハンバーガーメニューの三本線 */
.btn{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 3;
}
.btn span,
.btn span::before,
.btn span::after{
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background-color: #282828;
  position: absolute;
  transition: all 0.4s ease-out;
}
.btn span::before{
  bottom: 8px;
}
.btn span::after{
  top: 8px;
}

/* ハンバーガークリックした時のアニメーション */
.btn.open span{
  background-color: transparent !important;
}
.btn.open span::before{
  bottom: 0;
  transform: rotate(225deg);
  background-color: #282828 !important;
}
.btn.open span::after{
  top: 0;
  transform: rotate(-225deg);
  background-color: #282828 !important;
}

/* ハンバーガーメニュー開いた時のナビ */
.gnav.open{
  opacity: 1;
  pointer-events: auto;  
}
.gnav{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #f7f7f7;
  z-index: 2;
  opacity: 0;                  /* 透明 */
  pointer-events: none;        /* 開いてない時はクリック不可 */
  transition: opacity 0.6s ease;
}
.gnav a{
  font-size: 20px;
  font-weight: 400;
}
.gnav-ul{
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; Androidで見たとき下すぎた*/
  justify-content: center;
  font-size: 1.5rem;
  padding: 20px;
}
.gnav-li{
  /* line-height: 80px; */
  padding-left: 20px;
}
.nav-list{
  display: flex;
  flex-direction: column;
  color: #282828; /* 色はお好みで */
  padding-bottom:24px;
}
.nav-list span:nth-of-type(1){
  font-size: 20px;
  margin-bottom: 5px;
}
.nav-list .brown{
  font-size: 16px;
  color: #5e7652;
}

/* SP版ではPC版用ナビとお問い合わせボタン非表示 */
.pc-nav{
  display: none;
}
.contact-btn2{
  display: none;
}

/* お問い合わせボタンあたり */
.contact-ham{
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-btn,.contact-btn2{
  background: #282828;
  color: white;
  padding: 10px 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

@media (min-width:1260px) {
  .gnav{
    display: none;
  }
  .pc-nav{
    display: flex;
  }
  .pc-nav ul {
    display: flex;
    gap: 50px;
    /* align-items: center; Comingsoon全部取れたらコメントアウト解除！*/
    list-style: none;
    margin: 0;
    padding: 0;
  }

/* PCナビのアコーディオン用スタイル */
  .pc-nav .accordion-item{
    position: relative;
    color: #fff;
    cursor: pointer;
}

  .btn{
  display: none;
}
  .contact-ham{
    display: none;
}
  .contact-btn2{
    display: block;
    font-size: 14px;
    padding: 10px 20px;
}
  .contact-btn2:hover {
    background-color: #5e7652;
    color: #fff;
}
  .header{
    /* height: 64px; Comingsoon全部とれたらこっちにする*/
    height: 70px;
  }
  .header .logo{
    max-width: 180px;
    object-fit: contain;
}
  .pc-nav a{
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}
  .pc-nav li a:hover {
    color: #5e7652;
}
  .header.scrolled li a:hover {
    color: #5e7652; /* スクロール後もhover効かせたい */
}
}

/* HOME------------------------------------------------- */
/* メインビジュアル */
.main-visual{
  background: url('../img/mainvisual.webp')no-repeat center top / cover;
  height: 100svh;
  position: relative;
  z-index: 1;
}

/* メインビジュアル上のテキスト */
.top-text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #fff;
  z-index: 0;
}
.top-text .maintitle1 {
  font-size: 28px;
  font-weight: 500;
  color: #282828;
  margin-bottom: 20px;
  line-height: 1.5;
}
.top-text .maintitle2 {
  font-size:20px;
  text-transform: uppercase;
  color: #fff;
  background: #282828;
  display: inline-block;
  padding: 8px 20px;
}

/* スマホでは改行、PCでは改行しない */
.sp-br{
  display: inline;
}
@media (min-width:768px) {
  .sp-br{
    display: none;
  }
}


@media (min-width:768px) {
  .top-text {
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .top-text .maintitle1 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .top-text .maintitle2 {
    font-size:36px;
    display: inline-block;
    padding: 4px 30px;
  }
  .top-text p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .top-text .top-logo {
    width: 150px;
    margin-top: 10px;
  }
}

/* 各セクションタイトル */
.section-title{
  font-size: 36px;
  position: relative;
  color: #637B61;
  text-transform: uppercase;
}
.subtitle{
  font-size: 16px;
  margin-bottom: 40px;
}

.title-position{
  text-align: center;
}

@media (min-width:768px) {
  .section-title{
    font-size: 64px;
  }
  .subtitle{
    font-size: 20px;
    margin-bottom: 64px;
  }
}

/* 宅地を見るボタン */

.view-btn {
  display: inline-block;
  margin: 20px auto;
  padding: 16px 24px;
  background-color: #637B61;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: background-color 0.4s ease, transform 0.3s ease !important;
}

.btn-position{
  text-align: center;
  
}

@media (min-width:768px) {
  .view-btn{
  font-size: 18px;
  
  }
.view-btn:hover {
  background-color: #282828 !important;
}
}


/* ABOUT -------------------------------- */
.about{
  margin: 50px 0 40px;
}
.about-title{
  font-size: 20px;
  margin-bottom: 20px;
}
.text-group{
  text-align: left;
}
.about-text{
  line-height: 2;
}

@media (min-width:768px) {
  .about-title{
    font-size: 32px;
  }
  .text-group{
    display: inline-block;
  }
  .pc-abouttext{
    text-align: center;
  }
  .about-text{
    margin-bottom: 10px;
  }
  .about{
    margin: 90px 0 90px;
  }
}


/* REASON -------------------------------- */
.reason .section-title::before {
  content: "REASON"; /* 背景に出す文字 */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 90px; /* 背景文字を大きく */
  color: #F2F2F2;
  z-index: -1; /* タイトルの後ろに */
  white-space: nowrap;
  pointer-events: none; /* クリックを邪魔しない */
}

@media (min-width:768px) {
  .reason .section-title::before {
  font-size: 150px; /* 背景文字を大きく */
}
}

.reason {
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #f7f7f7;
  position: relative;
  z-index: 0; /* ← stacking contextの基準になる */
}
.reason-item{
  margin: 20px auto 50px;
}
.reason-item:last-child{
  margin-bottom: 10px;
}
.reason-title{
  font-size: 20px;
  background: #fff;
  padding: 8px 12px;
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: -4%;
}
.reason-text{
  margin-top: 32px;
}

.reason-image{
  position: relative;
  display: inline-block;
}

.num-position{
  position: relative;
}
.reason-num{
  font-size: 40px;
  color: #282828;
  z-index: 1;
  position: absolute;
  top: -20px;
  left: 5px;
}

@media (min-width:768px) {
  .reason {
    padding-top: 130px;
    padding-bottom: 90px;
  }
  .reason-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .reason-title{
    left: 0
  }
  .reason-num{
    font-size: 48px;
    top: -25px;
  }
  .reason-item{
    margin: 20px auto 10px;
}
}

/* PROCESS -------------------------------- */
.process .section-title::before {
  content: "PROCESS"; /* 背景に出す文字 */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 90px; /* 背景文字を大きく */
  color: #F2F2F2;
  z-index: -1; /* タイトルの後ろに */
  white-space: nowrap;
  pointer-events: none; /* クリックを邪魔しない */
}

.process{
  padding: 80px 4% 30px;
}
.process-box{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.process-step{
  width: 25%;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
}
.process-step:before{
  content: '';
  position: absolute;
  left: 35%; /* 中央からスタート */
  bottom: -10px; /* 文字の下に */
  transform: translateX(-50%); /* 中央揃え */
  width: 1px; /* 線の太さ */
  height: 80px; /* 線の長さ */
  background-color: #888; /* 線の色 */
}
.process-step p{
  color: #637B61;
}
.process-text{
  width: 78%;
}
.process-title{
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #282828;
}

/* 画像注釈 */
.small1{
  color: #fff;
  position: absolute;
  bottom: 10px;
  right: 5px;
}
.small2{
  color: #282828;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.kome{
  margin: 30px auto 0;
}

@media (min-width:768px) {
  .process {
    padding: 130px 4% 90px;
  }
  .process .section-title::before {
    font-size: 150px;
  }
  .process-step:before{
    left: 17%; /* 中央からスタート */
    bottom: -30px; /* 文字の下に */
    transform: translateX(-50%); /* 中央揃え */
  }
  .process-list{
    max-width: 800px;
    margin: 0 auto;
  }
  .process-box{
    margin-bottom: 70px;
    max-width: 800px;
  }
  .process-step{
    width: 20%;
  }
  .process-text{
    width: 80%;
  }
  .process-title{
    font-size: 20px;
  }
  .process-step p{
    font-size: 20px;
}
  }

/* FAQ------------------------------ */
.faq .section-title::before {
  content: "FAQ"; /* 背景に出す文字 */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 90px; /* 背景文字を大きく */
  color: #F2F2F2;
  z-index: -1; /* タイトルの後ろに */
  white-space: nowrap;
  pointer-events: none; /* クリックを邪魔しない */
}
 .faq{
  padding: 80px 4% 60px;
 }
.qa-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
  background: #637B61;
}

.faq-title{
  color: #282828;
}
.faq-item {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #999;
}

.faq-item2 {
  padding-bottom: 20px;
  border-bottom: 1px dotted #999;
}

.faq-text{
  font-size: 12px;
  margin-top: 12px;
}

@media (min-width:768px) {
  .faq .section-title::before {
    font-size: 150px;
  }
   .faq{
    padding: 80px 4% 100px;
  }
  .faq-list{
    max-width: 900px;
    margin: 0 auto;
  }
  .faq-title{
    font-size: 20px;
  }
  .qa-icon {
    margin-right: 16px;
  }
  .faq-text{
    font-size: 16px;
    margin-top: 20px;
  }
  .faq-item {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Forsale------------------------------ */
.forsale .section-title::before {
  content: "FOR SALE"; /* 背景に出す文字 */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 90px; /* 背景文字を大きく */
  color: #F2F2F2;
  z-index: -1; /* タイトルの後ろに */
  white-space: nowrap;
  pointer-events: none; /* クリックを邪魔しない */
}
 .forsale{
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #f7f7f7;
  position: relative;
  z-index: 0; /* ← stacking contextの基準になる */
 }

@media (min-width:768px) {
 .forsale .section-title::before {
    font-size: 150px;
  }
   .forsale{
    padding: 130px 4% 100px;
  }
}

.property-nav {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 40px;
}

.property-btn {
  position: relative;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.property-btn i {
  position: absolute;
  font-size: 14px;
  color: #282828;
  bottom: -22px;
  left: 18px;
}

.property-title {
  font-size: 20px;
  margin-top:40px;
  background: #282828;
  color: #fff;
  padding: 8px;
  text-align: center;
  
}
.property-subtitle {
  font-size: 20px;
  padding: 8px 0;
  position: relative;
  margin: 14px 0 14px 18px;
}
.property-subtitle::before{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #282828;
  top: 36%;
  left: -16px;
}

.card-title{
  font-size: 20px;
  margin-bottom: 6px;
  color: #282828;
  line-height: 1.4;
}

.card-box{
  background: #fff;
  padding: 12px;
}
.card-container{
  margin-bottom: 30px;
}

.morebtn-position {
  text-align: center;
}
.morebtn {
  display: inline-block;
  margin:16px auto 16px;
  padding: 12px 20px;
  background: #637B61;
  color: #fff;
  /* border-radius: 8px; */
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

@media (min-width:768px) {
  .property-btn {
    font-size: 24px;
  }
  .property-btn i {
    font-size: 20px;
    bottom: -28px;
    left: 28px;
  }
  .property-title {
    font-size: 24px;
    padding: 10px;
    margin-top:60px;
    margin-bottom: 40px;
  }
  .property-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .property-subtitle {
    font-size: 24px;
    margin: 14px 0 14px 20px;
  }
  .property-subtitle::before{
    width: 14px;
    height: 14px;
    left: -20px;
  }
  .card-box p{
    font-size: 14px;
  }
  .property-item .morebtn{
    transition: all 0.3s ease;
  }
  /* .property-item:hover img{
    opacity: .6;
  } */
  .property-item:hover .morebtn{
    background: #282828;
  }
}
@media (min-width:1000px) {
  .property-container{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Contact----------------------- */
.contact .section-title::before {
  content: "CONTACT"; /* 背景に出す文字 */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 90px; /* 背景文字を大きく */
  color: #F2F2F2;
  z-index: -1; /* タイトルの後ろに */
  white-space: nowrap;
  pointer-events: none; /* クリックを邪魔しない */
}
 .contact{
  padding-top: 80px;
  padding-bottom: 100px;
 }

 .contact-text{
  margin-bottom: 30px;
 }

 .contact-phone{
  text-align: center;
  background: #f7f7f7;
  padding: 16px 0 20px;
  }

 .contact-title {
  font-size: 16px;
  margin-bottom: 10px;
  color: #282828;
  font-weight: 500;
}

.contact-tel {
  font-size: 16px;
}

.tel-number {
  font-size: 24px;
  letter-spacing: 0.05em;
}

.contact-hours {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.contact-btn3{
  display: inline-block;
  padding: 12px 20px;
  background: #5e7652;  /* 緑のボタン色 */
  color: #fff;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

@media (min-width:768px) {
  .contact .section-title::before {
    font-size: 150px;
  }
   .contact{
    padding-top: 130px;
    padding-bottom: 110px;
 }
  .tel-number {
    font-size: 32px;
    color: #282828 !important;
  }
   .contact-phone{
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-text{
    max-width: 700px;   /* 横幅を制限して読みやすく */
    margin-left: auto;  /* 左右の余白を自動で調整して中央寄せ */
    margin-right: auto;
    text-align: left;
    margin-bottom: 50px;
  }
  .contact-container{
    margin: 0 auto;
  }
  .contact-btn3{
    transition: all 0.3s ease;
  }
  .contact-btn3:hover{
    background: #282828;
  }

}

/* 追従フッター------------------------ */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: #4d4d4d;
  color: #fff;
  
  z-index: 9999;
}

.footer-item {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}
.footer-tel{
  background: #282828;
  flex: 6;
  font-size: 12px;
  border-right: 1px solid #fff;
}
.footer-tel p{
  color: #fff ;
}
.footer-contact {
  background: #444;
  flex: 4;
}
.footer-tel i {
  font-size: 24px;
  margin-right: 10px;
}
.footer-text {
  line-height: 1.2;
  text-align: left;
}

/* PCでは非表示 */
@media (min-width: 768px) {
  .fixed-footer {
    display: none;
  }
}


/* Jquery */
.fadein{
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s 0.2s;
}
.fadein.loaded{
  opacity: 1;
}
.slidein{
  opacity: 0;
  transform: translateY(10px);
  transition: all 1.0s 0.2s;
}
.slidein.scrollin{
  opacity: 1;
  transform: translateY(0);
}