/*
Theme Name:kyoukabu
Author: kan
*/


@charset "UTF-8";
html {
  font-size: 16px;
}
.hamburger {
    display: none;
    width:12vw;
	height:auto;
	cursor: pointer;
    z-index: 1000;
}

/* サイドバーのスタイル */
.sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;/* ✅ 背景色を強制的に適用 */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
}
.menu-item {
    background-color: #E6F2FF; 
	width:100%;
	border-bottom: 2px solid white;
    color: #2C3E91;;
    cursor: pointer;
    font-weight: bold;
}
/* ホバー時のエフェクト */
.menu-item:hover {
    background-color: #bbb;
}
@media (max-width: 1440px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}
header{
	position: relative;
	max-height:10vw;
}
.fixed-contact-link {
	position: absolute;
    top: 2.78vw;
    right: 5.20vw;
    text-decoration: none;
	 color:black;
  transition: text-decoration-color 0.2s ease;
}
.fixed-contact-link:hover {
  text-decoration: underline;
}
.logo{width:14.02vw;
      height: auto;
}
@media (max-width: 900px) {
  .logo{width:40vw;
      height: auto;
}
	#contact23{
		display:none;
	}
	.hamburger {
        display: block; /* スマホで表示 */
		position: absolute;
    top: 1.2vw;
    right: 5.20vw;
		color:blue;
    }
	.sidebar.active {
    display: block;
	text-align: center;
}
}