@charset "utf-8";
/* CSS Document */

/* ===============================================
   スマホ表示 (768px以下)
   =============================================== */
@media screen and (max-width: 768px) {

  /* --- ヘッダー全体（２つのバーをまとめる） --- */
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

	.site-header{
	display: none;
	}
	
	
  /* --- 上段：ロゴとバーガーメニューのバー --- */
	
	
 .mobile-header .top-bar {
	height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 2px 15px; 
    border-bottom: 1px solid #eee; /* バーの間の薄い境界線 */
  }
	
 .mobile-header .top-bar p img{
	width: 30%!important;
	}
	
 .mobile-header .top-bar p span{
	margin-left: 5px;
	font-size: 13px;
	}

/*  .logo {
	  width: 60px;
  }*/

  /* --- 下段：電話番号バー --- */
  .phone-bar {
    background-color: #00e600;
    padding: 12px 10px;
    text-align: center;
  }

  .phone-bar a {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
  }

  .phone-bar img {
    height: 24px;
    margin-right: 10px;
  }

  /* --- ハンバーガーメニュー --- */
  .burger-menu {
    cursor: pointer;
  }

  /* ハンバーガーメニューの線（緑色に変更） */
  .burger-menu .line1,
  .burger-menu .line2,
  .burger-menu .line3 {
    width: 28px;
    height: 3px;
    background-color: #00e600; /* 画像に合わせて緑色に */
    margin: 5px 0;
    transition: all 0.3s ease;
  }
	
	
	

	

 /* ===========================================
   スライドメニューのスタイル
   =========================================== */

/* --- スライドメニュー本体 --- */
.nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:100%;
 /* ★ 変更：背景を少し透けた白に（0.95の部分で透明度を調整） */
  background-color: rgba(255, 255, 255, 0.80);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
 box-sizing: border-box; /* ★ 追加：paddingを含めて横幅100%に計算 */
	}
	

.nav-links li img {
	/*width: 100px;*/
}
	
	
/* --- メニュー内に追加したロゴのスタイル --- */
.nav-links li.menu-logo-item {
  border-bottom: none;
  text-align: center; /* ★修正： leftからcenterに変更 */
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* ロゴの文字スタイル */
.nav-links li.menu-logo-item a {
  display: inline-block;
  padding: 0;
  color: #707070;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

/* --- スライドメニュー内のリスト項目 --- */
.nav-links li {
  list-style: none;
  opacity: 0;
  width: 100%;
  border-bottom: 1px solid #eee;
  text-align: center; /* ★修正： 中央揃えを徹底 */
}

.nav-links li:last-of-type {
  border-bottom: none;
}

/* --- メニュー内のリンクテキスト --- */
.nav-links li a {
  display: block;
  padding: 18px 0;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

/* --- お問い合わせボタンのスタイル --- */
.nav-links li.navi_contact-btn {
  border-bottom: none;
  margin: 20px auto 0 auto;
}

.nav-links li.navi_contact-btn a {
  background-color: #00e600;
  color: #fff;
  border-radius: 50px;
  padding: 15px 50px;
  transition: opacity 0.3s ease;
  display: inline-flex; /* ★修正： ボタンをコンテンツ幅にし、中央揃えを有効にする */
  justify-content: center;
  align-items: center;
box-shadow: 3px 3px 6px rgba(112, 112, 112, 0.3);

}

.nav-links li.navi_contact-btn .btn-icon {
  height: 16px;
  margin-right: 8px;
}

.nav-links li.navi_contact-btn a:hover {
  opacity: 0.8;
}


/* ===========================================
   メニュー表示時のアニメーションなど
   =========================================== */

.nav-links.nav-active {
  transform: translateX(0%);
}

.nav-links.nav-active li {
  opacity: 1;
  transition: opacity 0.5s ease-in forwards;
}

.burger-menu {
  cursor: pointer;
  z-index: 1001;
}

.toggle .line1 {
  background-color: #00e600;
  transform: rotate(-45deg) translate(-6px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  background-color: #00e600;
  transform: rotate(45deg) translate(-7px, -7px);
}
	
	
	
	/* --- メニュー内に追加したロゴのスタイル --- */
.nav-links li.menu-logo-item {
  border-bottom: none; /* ロゴには区切り線不要 */
  text-align: left; /* 左揃えにする */
  padding-bottom: 10px; /* ロゴとメニュー項目の間の余白 */
  margin-bottom: 10px; /* 区切り線代わりの余白 */
  border-bottom: 1px solid #eee; /* ロゴの下に区切り線を入れる */
}

/* ロゴの文字スタイル */
.nav-links li.menu-logo-item a {
  display: inline-block;
  padding: 0; /* 他のメニュー項目と違うpaddingにリセット */
  color: #707070;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}
	

	
	
}