.floating-banner {
  position: fixed;
  top: 10px;
  right: 12px;
  background: #4a90e2;
  color: #fff;
  padding: 4px 8px;
  border-radius: 15px;
  font-size: 11.5px;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
  z-index: 9999;
}
.floating-banner:hover {
  opacity: 1;
  transform: scale(1.02);
}



/* ボタンの見た目 */
.menu-button {
  position: fixed;
  top: 0;     /* ← 上端に配置 */
  left: 0;    /* ← 左端に配置 */
  background: rgba(255, 255, 255, 0.3);
  color: #005bac;
  padding: 8px 10px;
  border-radius: 0 0 6px 0; /* ← 左上角に自然に沿う形 */
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  z-index: 10001;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.03);
}

/* メニューの開閉設定 */
.menu-checkbox {
  display: none;
}

/* サイドメニューの基本デザイン */
.side-menu {
  position: fixed;
  top: 60px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  padding: 15px;
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateX(-220px);
  transition: transform 0.3s ease;
  z-index: 9999; /* ← リンクを最前面に */
}

/* チェック時にメニューを表示 */
.menu-checkbox:checked ~ .side-menu {
  transform: translateX(0);
}

/* メニュー内リンク */
.side-menu a {
  text-decoration: none;
  color: #005bac;
  font-weight: 600;
  pointer-events: auto; /* ← クリック有効化 */
}

.side-menu a:hover {
  color: #007aff;
}


.page .entry-title {
  display: none;
}

.faq-wrap {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #005bac;
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  font-weight: 700;
  color: #005bac;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* ＋ → × に変化 */
}

.faq-answer {
  display: none;
  padding: 0 0 15px 0;
  color: #333;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* フッターロゴを小さくする */
.footer-logo img {
  width: 120px;     /* ←サイズ調整（お好みで80〜150px） */
  height: auto;
  transition: opacity 0.3s ease;
}

.footer-logo img:hover {
  opacity: 0.8;
  cursor: pointer;
}

/* スマホでもヘッダー右上のお問い合わせボタンを表示 */
@media screen and (max-width: 768px) {
  .vk_header_btn {
    display: block !important;
  }
}

/* VKカード画像だけ統一 */
.vk_card .vk_card-media img {
  object-fit: cover;
  width: 100%;
  height: 220px;
}

.left-fixed-menu{
  position: fixed;
  top: 100px;
  left: 16px;
  z-index: 9999;
  width: 180px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  overflow: hidden;
}

.lfm-title{
  padding: 12px;
  font-weight: 700;
  color: #005bac;
  border-bottom: 1px solid #eee;
  background: #f7f9fb;
}

.left-fixed-menu a{
  display:block;
  padding:10px 12px;
  font-size:14px;
  text-decoration:none;
  color:#0b2f4a;
  border-bottom:1px solid #f0f0f0;
}

.left-fixed-menu a:hover{
  background:#f5fbff;
}

/* スマホでは非表示 */
@media(max-width:900px){
  .left-fixed-menu{display:none;}
}