@charset 'UTF-8';

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

html {
  scroll-behavior: smooth;
}
body{
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: #282828;
  font-size: 14px;
  animation: fade 2s forwards;
}

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

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

p{
  line-height: 1.7;
  color: #333;
}
.white{
  color: #fff;
}
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;
  /* letter-spacing: 0.06rem; */
}

/* ヘッダー */
.header .logo{
  max-height: 50px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  }
.header{
  background: #ffffffe5;
  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;
  }

/* ハンバーガーメニュー */
.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);
  }
.btn.open span::after{
  top: 0;
  transform: rotate(-225deg);
  }
  
/* ハンバーガーメニュー開いた時 */
.gnav{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #f7f7f7;
  display: none;
  z-index: 2;
  }
.gnav a{
  font-size: 20px;
  font-weight: 400;
  }
.gnav-ul{
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  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: #9D8543;
  }
  
 /* Coming soon用 */
.coming-sp{
  color: #999; /* グレー色 */
  font-size: 16px;
    }

/* 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: background-color 0.3s ease;
  }

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

  /* Coming soon用 */
  .pc-nav a.coming {
    pointer-events: none; /* クリック無効にする */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pc-nav a.coming span {
    display: block;
    font-size: 0.7em;
    color: #999; 
    margin-top: 2px; 
  }

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

  .header.scrolled .accordion-btn {
    color: #282828;
  }
  .pc-nav .submenu a{
    color: #282828;
  }
  .pc-nav .submenu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 0 25px 0 rgba(35, 24, 22, .2);
    border-radius: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    padding: 15px;
    min-width: 100px;
    z-index: 100;
  }

/* ホバー時に表示 */
  .pc-nav .accordion-item:hover .submenu {
    opacity: 1;
  pointer-events: auto;
  }
  .btn{
    display: none;
  }
  .contact-ham{
    display: none;
    }
  .contact-btn2{
    display: block;
    font-size: 14px;
    padding: 10px 20px;
    }
  .contact-btn2:hover {
    background-color: #9D8543;
    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 a:hover {
    color: #9D8543;
    }
  .header.scrolled a:hover {
    color: #9D8543; /* スクロール後もhover効かせたい */
    }
  .header.scrolled .contact-btn2 a:hover {
    color: #fff;
    }
  }
  
/* 各セクションタイトル */
.section-title{
  font-size: 36px;
  }
.subtitle{
  font-size: 12px;
  }
.subtitle2{
  margin-bottom: 30px;
  font-size: 12px;
  }

@media (min-width:768px) {
  .section-title{
    font-size: 48px;
    }
  .subtitle{
    font-size: 16px;
    }
  .subtitle2{
    font-size: 16px;
    }
  }

/* 下層ページ共通 */
.page-title{
  margin: 90px auto 8px;
  font-size: 40px;
  padding: 0 4%;
  }
.title-sub{
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  }

@media (min-width:768px) {
  .page-title{
    font-size: 72px;
    padding: 0 10%;
    }
  .title-sub{
    font-size: 21px;
    }
  }

/* セクション余白 */
.top,
.landmap{
  margin: 60px auto 50px;
  }

.house{
  background: #f7f7f7;
  padding: 50px 0 60px;
  }

@media (min-width:768px) {
  .top,
  .landmap{
    margin: 120px 0 100px;
    }
  .house{
    padding: 100px 0 100px;
    }
  }

/* top---------------------------------------- */
.sub-visual{
  background: url('../img/quality_top.webp')no-repeat center center / cover;
  height: 35vh;
  position: relative
}

@media (min-width:768px) {
  .sub-visual{
      height: 60svh;
      min-height: 400px;
  }
}
@media (min-width:1200px) {
  .sub-visual{
      height: 72svh;
      min-height: 400px;
  }
}
.top-msg{
  font-size: 20px;
  line-height: 1.4;
}
 .text-group{
  position: relative;
  margin: 10px auto 30px;
 }
.about-text{
  line-height: 2;
  z-index: 1;
}
.bg-text {
  position: absolute;
  top: 350px;
  right: 0;
  transform: translateY(-50%);
  font-family: 'Marcellus SC', serif;
  font-size: 100px;
  color: #F7F7F7;
  pointer-events: none; /* 背景装飾だからクリック無効 */
  z-index: -1;
  transform: translateY(-50%) rotate(90deg);
  right: 0;
  transform-origin: top right;
}

@media (min-width:768px) {
  .top-msg{
    font-size: 32px;
  }
  .top-text{
    line-height: 2;
    font-size: 18px;
  }
  .bg-text{
    font-size: 150px;
    top: 550px;
  }
}

.spec-item{
  margin: 40px auto 50px;
}
.spec-number{
  font-size: 24px;
  color:#9D8543;
  border-bottom: 1px solid #9D8543;
  padding-bottom:10px ;
}
.spec-title{
  margin-top: 10px;
  color: #282828;
}
.spec-name{
  font-size: 20px;
  font-weight: 500;
  color: #282828;
}
.spec-text{
  margin: 10px auto 20px;
}

.spec-img{
  position: relative;
}
.img-note{
  color: #fff;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

@media (min-width:768px) {
  .spec-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
  .spec-box{
    width: 50%;
  }
  .spec-img{
    width: 45%;
  }
  .spec-item{
  margin: 40px auto 90px;
}
}

/* Contact-------------------- */
.contact{
    background: url('../img/park_footer.webp')no-repeat center / cover;
    height: auto;
    position: relative;
    color: #fff;
    z-index: 0;
    padding: 40px 0 50px;
  }
  .contact-inner {
    position: relative;
    z-index: 1;
  }
  .contact::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .contact-box{
    margin: 0 auto;
    max-width: 400px;
  }
  .contact-logo{
    width: 180px;
    height: auto;
    text-align: center;
  }

.footer-container{
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  }
.btn-hp{
  border: 1px solid #fff;
  padding: 5px 20px;
  }
.copyright{
  font-size: 10px;
  }

@media(min-width:768px){
  .copyright,.hours{
    font-size: 14px;
    }
}

/* 画像注釈 */
.small1{
  color: #fff;
  position: absolute;
  bottom: 5px;
  right: 10px;
  }

@media(min-width:768px){
  .small1{
    bottom: 10px;
  }
}

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