html {
  overflow-y: scroll;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "futura-pt", yu-gothic-pr6n, sans-serif;
  color: #606463;
  font-weight: 400;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #606463;
}

* {
  box-sizing: border-box;
}

/* ヘッダーは背景グラデーションだけ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, #fff 40%, rgba(255, 255, 255, 0));
  z-index: 900;
}

.logo-img {
  position: absolute;
  top: 26%;
  left: 16%;
  width: 100%;
  max-width: 200px;
  z-index: 1000;
  margin-top: 0;
}

.menu-toggle {
  position: fixed;
  top: 80px;
  right: 3%;
  z-index: 1100;
  width: 100px;
  height: 34px;
  border: 0;
  cursor: pointer;
  background: url("https://10eyevan.com/new/wp-content/themes/lightning-pro/inc/vk-mobile-nav/package/images/vk-menu-btn-black.svg") center center no-repeat;
  background-size: 64px 24px;
  text-indent: -9999px;
  border-radius: 2px;
}

.menu-toggle.is-open {
  background: url("https://10eyevan.com/new/wp-content/themes/lightning-pro/inc/vk-mobile-nav/package/images/vk-menu-close-black.svg") center center no-repeat;
  background-size: 100px 34px;
}

/* 横並びメニュー */
.menu-inline {
  position: fixed;
  top: 90px;
  right: calc(7% + 52px);
  display: none;
  align-items: center;
  gap: 33px;
  z-index: 1099;
}

.menu-inline a {
  color: #606463;
  border-bottom: 0;
  letter-spacing: 1.62px;
  font-size: 13px;
}

.menu-ig{
  display:flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  background:url('https://10eyevan.com/new/assets/img/modal/menu/menu_ig-logo.svg') center center no-repeat;
  background-size:contain;
  text-indent:-9999px;
}

.menu-lang{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.menu-lang a{
  display:inline-block;
  line-height:1;
}

body.is-jp .menu-lang .jp,
body.is-en .menu-lang .en{
  border-bottom:1px solid #606463;
  padding-bottom:2px;
}
.menu-lang a{
  font-size:13px;
  letter-spacing:1.62px;
}


.menu-inline.show {
  display: flex;
  animation: fade .2s ease both;
}

/* 右下固定アイコン */
.fixed-icons {
  position: fixed;
  right: 5%;
  bottom: 4%;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 1100;
}

.fixed-icons.show {
  display: flex;
  animation: fade .2s ease both;
}

.fixed-icons a {
  width: 23px;
  height: 23px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
}

.fixed-icons a.jp {
  width: 20px;
  height: auto;
}

.fixed-icons a.en {
  width: 20px;
  height: auto;
  margin-bottom: 8px;
}

.fixed-icons a.ig {
  margin-bottom: 46px;
}

.fixed-icons a.jp {
  margin-bottom: 12px;
}

.ig {
  background-image: url('https://10eyevan.com/new/assets/img/modal/menu/menu_ig-logo.svg');
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 767px) {
  .logo-img {
    top: 27.5vh;
    left: 33%;
    max-width: 140px;
  }

  .menu-toggle {
    position: fixed;
    top: 2%;
    left: 0;
    z-index: 1100;
    width: 100px;
    height: 24px;
    border: 0;
    cursor: pointer;
    background: url("https://10eyevan.com/new/wp-content/themes/lightning-pro/inc/vk-mobile-nav/package/images/vk-menu-btn-black.svg") center center no-repeat;
    background-size: 44px 24px;
    text-indent: -9999px;
    border-radius: 2px;
  }
}

/* SP用オーバーレイはデフォで非表示 */
.menu-overlay {
  display: none;
}

/* ===== SP only ===== */
@media (max-width: 767px) {
  #inlineMenuPc,
  #fixedIconsPc {
    display: none !important;
  }

  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 1085;
  }

  .menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 54px 0 22px;
  }

  .menu-close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 28px;
    height: 28px;
    border: 0;
    background: url("https://10eyevan.com/new/wp-content/themes/lightning-pro/inc/vk-mobile-nav/package/images/vk-menu-close-black.svg") center/24px 24px no-repeat;
    text-indent: -9999px;
    cursor: pointer;
  }

  #inlineMenuSp {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: unset;
    gap: 27px;
    margin-top: 12px;
    left: 44px;
  }

  #fixedIconsSp {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 0 40px 8px;
    margin-top: auto;
    gap: 0;
  }

  .menu-inline a {
    color: #606463;
    border-bottom: 0;
    letter-spacing: 1.62px;
    font-size: 11px;
  }

  .fixed-icons a {
    width: 15px;
    height: 15px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
  }

  .fixed-icons a.jp {
    width: 17px;
    height: auto;
  }

  .fixed-icons a.en {
    width: 17px;
    height: auto;
    margin-bottom: 8px;
  }

  #fixedIconsSp a {
    margin: 0;
  }

  #fixedIconsSp .lang {
    display: flex;
    gap: 14px;
  }

  html.is-menu-open,
  html.is-menu-open body {
    overflow: hidden;
  }
}

/* ===== PC only ===== */
@media (min-width: 768px) {
  #menuOverlay {
    display: none !important;
  }

  #inlineMenuPc.show {
    display: flex;
  }

  #fixedIconsPc.show {
    display: flex;
  }
}

/* ==========================
   Language Active
========================== */

/* JPページ */
body.is-jp .menu-lang .jp{
  border-bottom: 1px solid #606463;
  padding-bottom: 2px;
}

/* ENページ */
body.is-en .menu-lang .en{
  border-bottom: 1px solid #606463;
  padding-bottom: 2px;
}



.menu-lang a {
  text-decoration: none !important;
  border-bottom: none !important;
}

.menu-lang a.is-active {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.fixed-icons--sp .lang a {
  text-decoration: none !important;
  border-bottom: none !important;
}

.fixed-icons--sp .lang a.is-active {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}



@media (max-width: 767px){

  .menu-overlay .lang{
    display: flex !important;
    right: 32px;
    bottom: 32px;
    z-index: 10000;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .12em;
  }

  .menu-overlay .lang a{
    display: inline-block !important;
    color: #606463;
    text-decoration: none;
  }

  .menu-overlay .lang a.is-active{
    text-decoration: underline;
    text-underline-offset: 4px;
  }

}



@media (max-width: 767px){



  #menuOverlay .fixed-icons .lang{
    display: flex !important;
    gap: 10px;
  }

}


@media (max-width:767px){

  #inlineMenuSp{
    position: static !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
    margin-top: 60px;
    margin-left: 0;
    width: calc(100% - 88px);
  }

  #fixedIconsSp{
    position: static !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 88px);
    padding: 0 !important;
    margin: 27px 0 0 0 !important;
    gap: 18px;
  }

  #fixedIconsSp .ig{
    width: 15px;
    height: 15px;
    display: block;
    background-image: url('https://10eyevan.com/new/assets/img/modal/menu/menu_ig-logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
  }

  #fixedIconsSp .lang{
    display: flex !important;
    gap: 14px;
  }

  #fixedIconsSp .lang a{
    width: auto !important;
    height: auto !important;
    text-indent: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    font-size: 11px;
    letter-spacing: 1.62px;
    line-height: 1;
  }

}


/* TOPページでもJP/ENのactive下線を出す */
body.home:not(.is-en) .menu-lang .jp,
body.home:not(.is-en) #fixedIconsSp .lang .jp{
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

body.home.is-en .menu-lang .en,
body.home.is-en #fixedIconsSp .lang .en{
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

html[lang="en-US"] .menu-lang .en,
html[lang="en-US"] #fixedIconsSp .lang .en{
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

html[lang="ja"] .menu-lang .jp,
html[lang="ja"] #fixedIconsSp .lang .jp{
  text-decoration: underline !important;
  text-underline-offset: 4px;
}


/* 英語ページのEN下線 */
html[lang="en-US"] .menu-lang .en,
html[lang="en-US"] #fixedIconsSp .lang .en,
body[class*="en"] .menu-lang .en,
body[class*="en"] #fixedIconsSp .lang .en{
  text-decoration: underline !important;
  text-underline-offset: 4px;
}


/* ======================================
   上部固定グラデーション
====================================== */
body::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:170px;
  background:linear-gradient(
    to bottom,
    #fff 40%,
    rgba(255,255,255,0)
  );
  pointer-events:none;
  z-index:999;
}

.hero-logo-block,
.site-nav{
  z-index:1000;
}


@media (min-width: 767px) {
.menu-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 30px;
}

.menu-lang{
    display:flex;
    gap:6px;       /* JP と EN の間 */
}
.sp{display: none;}
.pc{display: block;}
}

@media (max-width: 767px) {
.pc{display: none;}
.sp{display: block;}
}


/* =========================================================
   PCメニュー：ロゴと重なる場合は全体を2行にする
========================================================= */
@media screen and (min-width: 768px) {

  /*
   show と is-two-line の両方がある場合だけ表示する。
   is-two-lineだけでは表示しない。
  */
  #inlineMenuPc.show.is-two-line {
    left: var(--pc-menu-left);
    right: var(--pc-menu-right);
    width: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;

    column-gap: 33px;
    row-gap: 12px;

    height: auto;
    overflow: visible;
  }

  #inlineMenuPc.show.is-two-line > a {
    flex: 0 0 auto;
  }

  #inlineMenuPc.show.is-two-line .menu-right {
    flex: 0 0 auto;
    width: auto;
    margin-left: 0;

    display: flex;
    align-items: center;
    gap: 12px;
  }
}