@charset "UTF-8";


/* ==========================================================================
   Global Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
	font-family: "Noto Serif JP", "Yu Mincho", "MS Mincho", serif;
  font-size: 16px;
  line-height: 1.8;
  color: #4a3f35;
  background-color: #fdfcfb;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pc_only{
	display:block;
}

.tab_only{
	display:none;
}
.sp_only{
	display:none;
}

@media screen and (max-width: 767px){
.pc_only{
	display:none;
}

.tab_only{
	display:none;
}
.sp_only{
	display:block;
}
}

.space {margin-top:60px;}


/* ==========================================================================
   Header Style (ヘッダー専用完全版：2段レイアウト・ナビメニュー拡張)
   ========================================================================== */

/* --- 1. 全画面共通・スマホデフォルトスタイル --- */
.lp-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #f0edea;
  position: relative;
  z-index: 100;
}

.lp-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.lp-header__logo img {
  display: block;
  height: auto;
  max-width: 100%;
}


/* --- 2. PC用レイアウト (1024px以上：完全に独立した2段構成) --- */
@media screen and (min-width: 1024px) {

  .lp-header__top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 15px 4% 10px !important;
  }

  .lp-header__logo img {
    width: 220px !important; 
    height: auto !important;
  }

  /* 右側：お電話・LINE・CTAボタンのラッパー */
  .lp-header__info {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
  }

  /* お電話番号ボックス */
  .lp-header__tel-box {
    text-align: right !important;
    line-height: 1.3 !important;
  }
  .lp-header__tel-label {
    display: block !important;
	font-size: 14px !important;
    color: #7a6f66 !important;
  }

	
  .lp-header__tel-time {
    display: block !important;
    font-size: 14px !important;
    color: #998f86 !important;
  }
	
/* 電話番号リンク */
.lp-header__tel-num {
  display: inline-flex !important;
  align-items: center !important;
	font-size: 32px !important;
  font-weight: bold !important;
  color: #332a24 !important;
  text-decoration: none !important;
  letter-spacing: 0.05em !important;
}

/* 電話アイコン専用のスタイリング */
.lp-header__tel-icon {
  font-size: 16px !important;
  color: #8c3b2b !important;
  margin-right: 8px !important;
}

  /* LINE案内 */
  .lp-header__sns {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 11px !important;
    color: #332a24 !important;
    line-height: 1.3 !important;
  }

  /* 右端：資料請求・見学予約ボタン */
  .lp-header__cta-btn {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #8c3b2b !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    transition: background-color 0.3s !important;
  }
  .lp-header__cta-btn:hover {
    background-color: #702e21 !important;
  }
  .lp-header__cta-btn strong {
    font-size: 14px !important;
    letter-spacing: 0.05em !important;
  }
  .lp-header__cta-btn span {
    font-size: 9px !important;
    opacity: 0.8 !important;
  }

  /* 【下段】独立したナビゲーション */
  .lp-header__nav {
    width: 100% !important;
    background-color: #faf8f6 !important;
    border-top: 1px solid #f5f2ef !important;
    padding: 12px 0 !important;
  }

  /* メニューリスト*/
  .lp-header__nav-list {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 35px !important;
  }

  /* 各メニューリンクのテキスト */
  .lp-header__nav-item a {
    display: block !important;
	font-size: 16px !important;
    font-weight: 600 !important;
    color: #4a3f35 !important;
    text-decoration: none !important;
    letter-spacing: 0.05em !important;
    position: relative !important;
    transition: color 0.3s !important;
  }
  
  /* 上品に下に伸びるホバー用アンダーライン */
  .lp-header__nav-item a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -4px !important;
    left: 0 !important;
    width: 0 !important;
    height: 1px !important;
    background-color: #8c3b2b !important;
    transition: width 0.3s !important;
  }
  .lp-header__nav-item a:hover {
    color: #8c3b2b !important;
  }
  .lp-header__nav-item a:hover::after {
    width: 100% !important;
  }
}

/* モニター横幅が1440px以上の大画面環境 */
@media screen and (min-width: 1440px) {
  .lp-header__top {
    max-width: 1500px !important;
  }
  .lp-header__nav-list {
    gap: 40px !important;
  }
}


@charset "UTF-8";

/* ==========================================================================
   Header Base & PC Layout (共通ベース ＆ PC用2段レイアウト：1024px以上)
   ========================================================================== */

/* ヘッダー全体のベース */
.lp-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #f0edea;
  position: relative;
  z-index: 100;
}

/* 1024px以上のPC環境での表示スタイル */
@media screen and (min-width: 1024px) {

  /* 【上段】ロゴ ＆ 右側コンタクトエリア*/
  .lp-header__top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 15px 4% 10px !important;
  }

  .lp-header__logo img {
    width: 220px !important;
    height: auto !important;
    display: block !important;
  }

  /* 右側コンタクト一式（PC時はflex） */
  .lp-header__info {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* お電話番号ボックス（Font Awesomeアイコン対応） */
  .lp-header__tel-box {
    text-align: right !important;
    line-height: 1.3 !important;
    display: block !important;
  }
  .lp-header__tel-label {
    display: block !important;
    font-size: 14px !important;
    color: #7a6f66 !important;
  }
  .lp-header__tel-num {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 32px !important;
    font-weight: bold !important;
    color: #332a24 !important;
    text-decoration: none !important;
    letter-spacing: 0.05em !important;
  }
  .lp-header__tel-icon {
    display: inline-block !important;
    font-size: 16px !important;
    color: #8c3b2b !important;
    margin-right: 8px !important;
  }
  .lp-header__tel-time {
    display: block !important;
    font-size:14px !important;
    color: #998f86 !important;
  }

  /* LINE予約 */
  .lp-header__sns {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 12px !important;
    color: #332a24 !important;
    line-height: 1.3 !important;
  }

  /* 資料請求・見学予約ボタン */
  .lp-header__cta {
    display: block !important;
  }
  .lp-header__cta-btn {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #8c3b2b !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    transition: background-color 0.3s !important;
  }
  .lp-header__cta-btn:hover {
    background-color: #702e21 !important;
  }
  .lp-header__cta-btn strong {
    font-size: 14px !important;
    letter-spacing: 0.05em !important;
  }
  .lp-header__cta-btn span {
    font-size: 9px !important;
    opacity: 0.8 !important;
  }

  /* PC時はハンバーガーボタンを完全に非表示 */
  .lp-header__hamburger {
    display: none !important;
  }

  /* 【下段】独立したナビゲーション */
  .lp-header__nav {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    background-color: #faf8f6 !important; 
    border-top: 1px solid #f5f2ef !important;
    padding: 12px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .lp-header__nav-list {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 35px !important;
  }

  .lp-header__nav-item {
    width: auto !important;
    text-align: left !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .lp-header__nav-item a {
    display: block !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #4a3f35 !important;
    text-decoration: none !important;
    letter-spacing: 0.05em !important;
    padding: 0 !important;
    border-bottom: none !important;
    width: auto !important;
    max-width: none !important;
    position: relative !important;
    transition: color 0.3s !important;
  }
  
  /* ホバー用アンダーライン */
  .lp-header__nav-item a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -4px !important;
    left: 0 !important;
    width: 0 !important;
    height: 1px !important;
    background-color: #8c3b2b !important;
    transition: width 0.3s !important;
  }
  .lp-header__nav-item a:hover {
    color: #8c3b2b !important;
  }
  .lp-header__nav-item a:hover::after {
    width: 100% !important;
  }
}

/* 横幅が1440px以上の大画面環境での微調整 */
@media screen and (min-width: 1440px) {
  .lp-header__top { max-width: 1500px !important; }
  .lp-header__nav-list { gap: 40px !important; }
}


/* ==========================================================================
   Header Hamburger & Drawer Menu (スマホ・タブレット用：1023px以下)
   ========================================================================== */

/* メニューが開いているときは背後のボディスクロールを固定 */
body.is-drawer-active {
  overflow: hidden;
}

/* 1. ハンバーガーボタン本体 */
.lp-header__hamburger {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  width: 44px !important;
  height: 44px !important;
  padding: 13px 11px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  z-index: 120 !important;
  position: relative !important;
}

/* 三本線 */
.lp-header__hamburger-bar {
  display: block !important;
  width: 100% !important;
  height: 2px !important;
  background-color: #4a3f35 !important;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* 【アニメーション】 */
.is-drawer-active .lp-header__hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg) !important;
  background-color: #8c3b2b !important;
}
.is-drawer-active .lp-header__hamburger-bar:nth-child(2) {
  opacity: 0 !important;
}
.is-drawer-active .lp-header__hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) !important;
  background-color: #8c3b2b !important;
}

/* 2. スマホ用ドロワーナビゲーション */
@media screen and (max-width: 1023px) {
  
  .lp-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    background-color: #ffffff !important;
    width: 100% !important;
  }

  /* スマホ表示時、PC用の情報 */
  .lp-header__info {
    display: none !important;
  }

  .lp-header__top {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 15px !important;
    background-color: #ffffff !important;
    position: relative !important;
    z-index: 115 !important;
    width: 100% !important;
    height: 64px !important;
    box-sizing: border-box !important;
  }

  .lp-header__logo {
    display: flex !important;
    align-items: center !important;
  }

  .lp-header__logo img {
    display: block !important;
    height: 32px !important; 
    width: auto !important;
  }

  .lp-header__mobile-controls {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    margin-left: auto !important;
  }

  .lp-header__mobile-tel {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 40px !important;
    height: 40px !important;
    background-color: rgba(234, 221, 207, 0.3) !important;
    color: #8c3b2b !important;
    border-radius: 50% !important;
    font-size: 16px !important;
    text-decoration: none !important;
    transition: background-color 0.3s !important;
  }
  .lp-header__mobile-tel:active {
    background-color: rgba(234, 221, 207, 0.6) !important;
  }

  .lp-header__nav {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: rgba(253, 252, 251, 0.98) !important;
    z-index: 110 !important;
    padding: 100px 30px 40px !important;
    box-sizing: border-box !important;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                visibility 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* 【アニメーション】アクティブ時の表示状態 */
  .is-drawer-active .lp-header__nav {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  /* メニュー内の縦並びリスト */
  .lp-header__nav-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    height: auto !important;
    margin-top: 40px !important;
  }

  .lp-header__nav-item {
    width: 100% !important;
    text-align: center !important;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .is-drawer-active .lp-header__nav-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .is-drawer-active .lp-header__nav-item:nth-child(1) { transition-delay: 0.1s !important; }
  .is-drawer-active .lp-header__nav-item:nth-child(2) { transition-delay: 0.14s !important; }
  .is-drawer-active .lp-header__nav-item:nth-child(3) { transition-delay: 0.18s !important; }
  .is-drawer-active .lp-header__nav-item:nth-child(4) { transition-delay: 0.22s !important; }
  .is-drawer-active .lp-header__nav-item:nth-child(5) { transition-delay: 0.26s !important; }
  .is-drawer-active .lp-header__nav-item:nth-child(6) { transition-delay: 0.3s !important; }
  .is-drawer-active .lp-header__nav-item:nth-child(7) { transition-delay: 0.34s !important; }

  .lp-header__nav-item a {
    display: inline-block !important;
    font-size: 18px !important; 
    font-weight: 600 !important;
    color: #4a3f35 !important;
    padding: 8px 20px !important;
    letter-spacing: 0.05em !important;
    border-bottom: 1px solid rgba(234, 221, 207, 0.4) !important;
    width: 80% !important;
    max-width: 300px !important;
  }
  
  .lp-header__nav-item a:active {
    color: #8c3b2b !important;
    background-color: rgba(234, 221, 207, 0.2) !important;
    border-radius: 4px !important;
  }
}


/* ==========================================================================
   PC Layout Reset (1024px以上ではハンバーガー関連を完全無効化)
   ========================================================================== */
@media screen and (min-width: 1024px) {
  .lp-header__mobile-controls {
    display: none;
  }
}




/* ==========================================================================
   7. Access Section
   ========================================================================== */
.lp-access {
  padding: 100px 20px 80px;
  background-color: #fcfbfa;
  color: #4a3f35;
}

.lp-access__inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* セクションヘッダー */
.lp-access__header {
  text-align: center;
  margin-bottom: 40px;
}
.lp-access__title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
}
.lp-access__subtitle {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: #8c3b2b;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.1em;
}

/* コンテンツ配置（スマホ：縦一列） */
.lp-access__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* アクセス情報 */
.lp-access__info {
  width: 100%;
}
.lp-access__info-name {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px;
  border-bottom: 1px solid #eaddcf;
  padding-bottom: 12px;
}
.lp-access__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-access__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-access__item dt {
  font-weight: bold;
  font-size: 14px;
  color: #8c3b2b;
}
.lp-access__item dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #665e57;
}

/* Googleマップコンテナ（縦横比を維持してレスポンシブ化） */
.lp-access__map {
  width: 100%;
}
.lp-access__map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.66%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(74, 63, 53, 0.06);
  border: 1px solid #eaddcf;
}
.lp-access__map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* PC用メディアクエリ（左右2分割） */
@media screen and (min-width: 1024px) {
  .lp-access {
    padding: 120px 20px 100px;
  }
  
  .lp-access__header {
    margin-bottom: 60px;
  }

  /* テキストとマップ */
  .lp-access__content {
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
  }

  .lp-access__info {
    flex: 0 1 450px;
  }
  
}



/* ==========================================================================
   3. Footer Component & ToTop
   ========================================================================== */
.lp-footer {
  background-color: #4a3f35;
  color: #ffffff;
  padding: 40px 20px;
}
/* ── SNS案内エリア（スマホ時：縦並び、中央揃え） ── */
.lp-footer__sns-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
.lp-footer__sns-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  border: 1px solid #eaddcf;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.lp-footer__sns-text {
  text-align: center;
}
.lp-footer__sns-title {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #4a3f35;
  margin: 0 0 8px 0;
}
.lp-footer__sns-desc {
  font-size: 13px;
  color: #665e57;
  line-height: 1.5;
  margin: 0;
}
.lp-footer__sns-qr {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.lp-footer__sns-qr img {
  width: 100% !important;
  height: auto !important;
  display: block;
}
/* ------------------------------------------------ */

.lp-footer__brand {
  margin-bottom: 25px;
}
.lp-footer__logo-text {
  display: block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.lp-footer__logo-sub {
  display: block;
  font-size: 10px;
  opacity: 0.7;
}
.lp-footer__nav {
  display: none;
}
.lp-footer__cta {
  margin-bottom: 30px;
}
.lp-footer__cta-btn {
  display: block;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 12px;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
}
.lp-footer__copyright {
  font-size: 11px;
  opacity: 0.5;
  text-align: center;
}
.lp-footer__totop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: rgba(74, 63, 53, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
}
.lp-footer__totop::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-top: 4px;
}

/* ==========================================================================
   4. Media Queries for Global Components (PC)
   ========================================================================== */
@media screen and (min-width: 768px) {
  .lp-header__inner {
    padding: 15px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .lp-header__nav {
    display: block;
  }
  .lp-header__nav-list {
    display: flex;
    gap: 24px;
    font-size: 13px;
    font-weight: 500;
  }
  .lp-header__cta-btn {
    padding: 10px 20px;
  }
  .lp-header__cta-main {
    font-size: 13px;
  }
  
  .lp-footer {
    padding: 60px 40px;
  }
}



/* ==========================================================================
   4. Media Queries for Global Components (PC用調整)
   ========================================================================== */
@media screen and (min-width: 768px) {
.lp-footer__sns-wrapper {
    flex-direction: row;
    gap: 24px;
    max-width: 1140px;
	width:80%;
    margin: 0 auto;
	padding-bottom:40px;
  }
  
  /* ボックス自体のPCレイアウト（横並び・左右反転配置） */
  .lp-footer__sns-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1; /* 2つのボックスを同じ幅で引き伸ばす */
    max-width: 480px;
    margin: 0;
    padding: 24px 30px;
    gap: 20px;
  }
  .lp-footer__sns-text {
    text-align: left;
  }
  .lp-footer__sns-title {
    font-size: 17px;
  }
  /* --------------------------------------------------------- */

  .lp-footer__row {
    max-width: 1140px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .lp-footer__brand, .lp-footer__cta {
    margin-bottom: 0;
  }
  .lp-footer__nav {
    display: block;
  }
  .lp-footer__nav-list {
    display: flex;
    gap: 20px;
    font-size: 13px;
  }
}

/* ==========================================================================
   スクロールアニメーション（ふわっと浮き上がる上品なエフェクト）
   ========================================================================== */

.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform; 
}

.js-fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

