/* =========================================
   メニュー本体（最初は右に隠しておく）
========================================= */
.slide-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px; /* メニューの幅 */
  height: 100vh;
background-color: #ffff00;
  color: #222;
  padding: 80px 30px;
  max-width: 70%;
  /* 初期状態：右に100%ずらして画面外に隠す */
  transform: translateX(100%);
  
  /* 滑らかなスライド（cubic-bezierで少しリッチな動きに） */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 100;
}

/* メニューが開いた状態（jsでクラスを付与） */
.slide-nav.is-active {
  transform: translateX(0); /* 元の位置に戻す = 表示される */
}

.slide-nav-list {
  list-style: none;
  padding: 0;
}

.slide-nav-list li {
  margin-bottom: 20px;
}

.slide-nav-list a {
color:rgba(34, 34, 34, 0.8);;
  text-decoration: none;
font-size: 1rem;
  display: block;
font-weight:bold;
}

/* =========================================
   オーバーレイ（背景の暗転）
========================================= */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 90;
}

.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* =========================================
   ハンバーガーボタン（参考用のスタイル）
========================================= */
.hamburger-btn {
position: relative;
z-index:200;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background-color:transparent;
}

.hamburger-btn span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff; /* ボタンの線の色 */
  left: 10px;
  transition: 0.3s ease-in-out;
}

.hamburger-btn span:nth-child(1) { top: 15px; }
.hamburger-btn span:nth-child(2) { top: 24px; }
.hamburger-btn span:nth-child(3) { top: 33px; }

/* ボタンが押された時（×印になるアニメーション） */
.hamburger-btn.is-active span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}
.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

.hamburger-btn.is-active span{
background-color:rgba(34, 34, 34, 0.8);
}

.hd-w{
background-color: #009fe5;
position: fixed !important; /* 強制適用 */
width:100%;
z-index: 100;
top: 0;
}

.box-hd{
display: flex;
justify-content: space-between;
flex-wrap: wrap; 
padding: 10px;
width:1200px;
max-width:100%;
margin:0 auto;
}

.hd1{
position:relative;
width: 50%;
}

.type{
position: absolute;
width: 200px;
top: 10px;
}

.type img {
filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.17));
}

.box0{
display: flex;
justify-content: space-between;
flex-wrap: wrap; 
}

.box0-1{
width:45%;
}

.box0-2{
width:45%;
}

.slide-nav-list a:hover{
opacity:0.7;
}















/* 画面幅1024以下 PC*/
@media screen and (max-width: 1024px) {

}


/* 画面幅768px以下 タブレット*/
@media screen and (max-width: 768px) {











}

/* 画面幅375px以下　モバイル*/
@media screen and (max-width: 375px) {



}

