@charset "UTF-8" ;

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 40px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 100;
  color: #fff;
}
.nav-flex {
  display: flex;
  flex-direction: column;
  justify-content:space-between;
  align-items: flex-end;
  float: right;
  gap: 15px;
    }

    /* ===== header-logo ===== */
    .header-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .header-logo img {
      height: 60px;
    }



/* ==================================
ナビ全体ラッパー
================================== */
.pc-nav-wrapper {
display: flex;
align-items: center;
gap: 40px;
}



.header-contact {
display: flex;
justify-content: right;
gap: 25px;
align-items: center;
}
.header-contact img {
width: 18px;
}
.tel {
  display: flex;
  align-items: baseline;
  gap: 5px;
}


/* ==================================
LANGUAGE ドロップメニュー
================================== */
#langNav {
margin: 0;
padding: 0;
display: flex;
}
#langNav li {
list-style: none;
width: 150px;
text-align: center;
font-size: 12px;
line-height: 2;
border: 0.5px solid #fff;
box-sizing: border-box;
letter-spacing: 1px;
position: relative;
height: 35px;
line-height: 35px;
}
#langNav li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
#langNav li ul {
display: none;
position: absolute;
top: 100%;
left: -0.5px;
width: 150px;
}
.lang-bg {
background: #000;
}
.lang-bg a:hover {
color: #ffd700;
}
.language_ttl {
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
}
.language_ttl img {
width: 18px;
}
.language_ttl p {
  font-size: 14px;
}



/* ==================================
ナビメニュー
================================== */
.nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.nav-menu a:hover {
  color: #c39953;
}

/* ===== 電話番号・言語 ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}
/* ===== ハンバーガーメニューの線 ===== */
.sp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-logo img {
   width: 100px;
}
.hamburger span {
  position: absolute;
  width: 80%;
  height: 1px;
  background-color: #fff;
  transition: ease .4s;
}

/* 通常表示 */
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 24px; }
.hamburger span:nth-child(3) { top: 34px; }


/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ハンバーガーメニュークリック後のスタイル */
.nav-menu.active {
  transform: translateX(0);
}
/* 変形（×） */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 22px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 22px;
}


/* ==================================
safari
================================== */
/* @supports (-webkit-appearance: none) { 
.language_ttl p {
  padding-top: 4px;
}
} */
 /* _::-webkit-full-page-media, _:future, :root .modalPrev:before {
  .language_ttl p {
    padding-top: 4px;
  }
} */


/* ==================================
レスポンシブ
================================== */
@media (min-width: 769px) {
.sp-nav-wrapper {
  display: none;
}
}

@media (max-width: 768px) {
.pc-nav-wrapper {
  display: none;
}
.header-bg-wrap {
  margin-bottom: 60px;
}
.header {
  padding: 10px;
}
.header-logo img {
  height: 35px;
}
.separator {
  display: none;
}

  

.sp-nav-wrapper a {
  color:#fff;
  font-size: 14px;
}
.sp-nav-wrapper ul {
  display: grid;
  justify-content: center;
  gap: 20px;
}



.pc-nav-wrapper {
 display: none;
  position: absolute;
  top: 60px;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  padding: 20px 0;
}
.nav-wrapper.active {
display: flex;
}


.nav-flex {
width: 100%;
text-align: center;
align-items: center;
}


.header-contact {
justify-content: center;
padding-bottom: 15px;
}

.nav-menu {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #333;
    transition: ease .4s;
    display: grid;
    align-items: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}
.fv-buttons {
  display: none;
}
}
/* -----------------------------------
スマートフォン 【468】
-------------------------------------- */
@media (max-width: 480px) {

}