/* ========== ヘッダー上部メニュー ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* MENU・ロゴ・アイコンエリア */
.menu_back {
  width: 100%;
  height: 60px;
 
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  color:#fff;
}

/* 3分割の並び */
.menu_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.menu-left,
.menu-center,
.menu-right {
  display: flex;
  align-items: center;
}

/* ロゴを中央に固定 */
.menu-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ハンバーガーメニュー */
.menu {
  position: relative;
  width: 30px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.vegas-content-scrollable{
  z-index: 0;
}
.menu__line {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease;
}

/* 上線・下線の通常位置 */
.menu__line--top {
  top: 8px;
}
.menu__line--bottom {
  bottom: 8px;
}

/* 開いたとき（バツにする） */
.menu__line--top.active {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu__line--bottom.active {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* MENU文字 */
.menu__title {
  font-size: 10px;
  margin-top: 5px;
  color: #333;
}
.menu__title.active {
  color: #999;
}

/* ロゴ画像サイズ */
.site-logo .logo-img {
  height: 30px;
}

/* 右のインスタ・問い合わせボタン */
.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-icons a img {
  width: 24px;
  height: auto;
}

/* ========== ナビゲーションメニュー（開いたとき） ========== */
.gnav {
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.gnav__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.gnav__menu {
  margin: 2rem 0;
}
.gnav__menu__item,
.gnav__menu__item_sub {
  margin: 1rem 0;
}
.gnav__menu__item a,
.gnav__menu__item_sub a {
  color: #f4f6f7;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.gnav__menu__item a:hover,
.gnav__menu__item_sub a:hover {
  color: #ffdd40;
}

/* ロゴテキスト（メニュー下のロゴ） */
.gnav_logo {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2rem;
}

/* ========== メインビジュアルテキスト ========== */
.mainvisual-text {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 10;
  color: #fff;
}

/* ========== 追従ボタン（スマホ用） ========== */
.contact-fixed-btn {
  position: fixed;
  display: flex;
  bottom: 0 !important;
  width: 100%;
  height: 52px;
  align-items: center;
  z-index: 99999 !important;
  pointer-events: auto;
}
.contact-fix-btn-inner {
  background-color: #b20000;
  color: #fff;
  width: calc(100% - 52px);
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  height: 52px;
  line-height: 52px;
  display: block;
}
a.contact-fix-btn-inner:active{
    width: calc(100% - 52px);
}
.contact-fix-btn-inner:visited{
  color: #fff;
}

.contact-fix-btn-inner-sns{
  width: 52px;
  height: 52px;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-fixed-btn:hover {
  background-color: #000;
  border-color: #333;
  color: #fff;
  
}
.contact-fixed-btn p{
  width: 80%;
  height: 60%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* PCでは追従ボタンを非表示 */
@media screen and (min-width: 769px) {
  .contact-fixed-btn {
    display: none;
  }
}

/* ========== スマホ対応 ========== */
@media screen and (max-width: 650px) {
  .header-icons a img {
    width: 20px; /* スマホはアイコンを小さめに */
  }
  .site-logo .logo-img {
    height: 26px; /* スマホでロゴを少し小さく */
  }
  .footer_sns{
    width: 48px;
    height: 48px;
    background-color: #333;
  }
}