
	
/* -------------------------------
   ヘッダー全体
-------------------------------- */
.site-header {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;  /* 縦並び */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 上段（ロゴとボタン） */
.header-inner {
  width: 80%;
  max-width: 1200px;
  margin: 10px auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.site-logo img {
  height: 50px;
  display: block;
  margin: 0;
}

/* テキストエリア */
.site-info {
  flex: 1;
  margin-left: 20px;
}
.site-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.site-subtitle {
  font-size: 13px;
  margin: 3px 0 0;
}

/* ボタン */
.site-buttons {
  display: flex;
  gap: 10px;
}
.site-buttons .btn {
	padding: 12px 33px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    background: #003366;
}
	
.site-buttons .btn:hover {
    background: #0075c4;
}

/* 下段（ナビ） */
.global-nav {
  background: #FFF;
  width: 100%;

}
.global-nav ul {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
}
.global-nav li {
  flex: 1;
  text-align: center;
  list-style: none;
}
.global-nav a {
  display: block;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.global-nav a:hover {
  opacity: 0.5;
}

.global-nav li {
  position: relative; /* ::before の基準にする */
}

.global-nav li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;           /* li 内の左端に配置 */
  top: 50%;          /* 縦中央 */
  transform: translateX(-50%) translateY(-50%); /* 左に少しずらして縦中央 */
  width: 1px;        /* 縦線の太さ */
  height: 1.2em;     /* 縦線の長さ */
  background-color: #ccc; /* 線の色 */
}
	
	
	
  #spMenuBtn {
    display: none;
  }

/* -------------------------------
   スマホ用
	
-------------------------------- */
@media screen and (max-width: 1024px) {
  .header-inner {
    width: 88%;
    flex-wrap: nowrap;
  }

  .site-logo img {
    height: 44px;  
  }

  .site-buttons {
    display: none;
  }

  /* ハンバーガーボタン */
  #spMenuBtn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    //height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1100; /* ナビより上に */
  }

  #spMenuBtn span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 3px 0;
  }

  /* 変形アニメーション */
  #spMenuBtn.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  #spMenuBtn.open span:nth-child(2) {
    opacity: 0;
  }
  #spMenuBtn.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-48deg);
  }

  /* ナビ初期は非表示 */
  .global-nav {
    display: none;
    width: 100%;
    background: #fff;
  }
  .global-nav.open {
    display: block;
  }
  .global-nav ul {
    flex-direction: column;
  }
  .global-nav li {
    border-bottom: 1px solid #ccc;
    margin: 0 20px;
  }
  .global-nav a {
    padding: 16px 10px;
    text-align: left;
  }
 
  .global-nav li::before {
    content: none !important;
  }
}	











/* -------------------------------
   画面下部に表示されるボタン３つ
	
-------------------------------- */




/*メニューをページ下部に固定*/
#sp-fixed-menu {
    position: fixed;
    width: 100%;
    bottom: 0px;
    font-size: 0;
    //opacity: 0.9;
    z-index: 99;
}
 
#sp-fixed-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
 
#sp-fixed-menu li {
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 0;
    margin: 0 3px;
    font-size: 15px;
	font-weight: bold;
	letter-spacing: 1px;
    //border-right: 1px solid #fff;
	border-radius: 10px 10px 0 0;
}
 
#sp-fixed-menu li:first-child {
    background: #339966;
}
#sp-fixed-menu li:nth-child(2) {
    background: #0066cc;
}
#sp-fixed-menu li:last-child{
   background: #ff6600;
}
 
#sp-fixed-menu li a {
   color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    //width: 100%; /* ← ずれるのでけしてみた */
    padding: 10px 5px;
    font-size: 14px;
    line-height: 1.2;

}
	

#sp-fixed-menu li a .iconn {
    display: block;
    width: 27px;   /* アイコンサイズ（調整可） */
    height: auto;
    margin-bottom: 10px; /* テキストとの余白 */
}	
	
#sp-fixed-menu li {
    list-style: none !important; /* 確実にリストマーカー消す */
}

#sp-fixed-menu li::marker {
    content: "" !important;      /* 念押しで marker 非表示 */
}
 
/* spのみ表示 */
@media (min-width: 1024px){
    .for-sp {
        display: none;
    }
}




	