/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 10 2025 | 10:22:47 */
/* 基本レイアウト */
.header {
  position: relative;
  width: 100%;
  height: 70px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
	.header .logo img{
		padding-top: 10px;
		padding-left:20px;
}



/* ハンバーガーの丸ボタン */
.hamburger {
  width: 45px;
  height: 45px;
  background: #ff7676;
  border-radius: 50%;
  position: fixed;
      top: 50px;
    right: 50px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.hamburger span {
     width: 18px;
    height: 2px;
    background: #fff;
    margin: 2.5px 0;
    border-radius: 2px;
}

/* メニュー */
.nav {
   position: fixed;
 top: 0;
 right: -100%;
 width: 70%;
 max-width: 440px;
 height: 100%;
 background-color:#FFF;
 box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
 padding-top: 80px;
 transition: right 0.4s ease;
 z-index: 1000;
	padding-left: 90px;
	    background-image: url(http://tanomate.com/wp-content/uploads/2025/12/menu_bg.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.nav.active {
  right: 0;
}

/* メニュー内リンク（大→小）*/
  .menu-list { margin-top: 64px; }
  .menu-list a { display:block; text-decoration:none; margin-bottom:30px; }
  .menu-list .jp {
    display:block;
    font-size: 26px;
    font-weight: 500;
    color: #55A8F3;
    line-height: 1.3;
	  font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .menu-list .en {
    display:block;
    margin-top:6px;
    font-size:13px;
    color:#FF6369;
	font-family: "Roboto", sans-serif;
	  font-weight: 400;
  }

  /* 下部リンク群 */
  .footer-links { margin-top: 48px; padding-bottom: 40px; }
  .footer-links a { display:block; margin-bottom: 16px; color: #55A8F3; text-decoration:none; font-size:15px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight:500; }


/* 閉じるボタン（×） */
.close-btn {
  width: 45px;
  height: 45px;
  background: #ff7676;
  border-radius: 50%;
  position: fixed;
    top: 50px;
    right: 50px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1002;
	font-size: 40px;
    color: #FFF;
}

.hamburger.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}





@media (max-width: 833px) {
.nav {
    width: 100%;
    max-width: 440px;
    height: 100%;
    padding-top: 20px;
	padding-left:70px;
}
	.menu-list a {
    margin-bottom: 20px;
}
	.footer-links {
    margin-top: 40px;
}
	.hamburger {
      top: 25px;
    right: 25px;
}
	.close-btn {
  top: 25px;
    right: 25px;
}
	
	.header .logo img{
	width:180px;
		padding-top: 10px;
		padding-left: 0px;
}
	
}