@charset "UTF-8";
/* ヘッダー全体 */
.site-header {
  width: 100%;
  padding: 10px 40px;
  background: #FFE5A2;
  position: fixed;
  z-index: 10000;
}

/* ロゴ＋ナビの横並び */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.site-logo img {
  height: 120px;
}

/* メニュー全体 */
.rolling-menu {
  display: flex;
  gap: 35px;
  list-style: none;
  padding: 10px 0 10px 30px;
  border-radius: 16px;
  overflow: hidden;
  font-weight: bold;
}

/* 各メニュー */
.rolling-menu li {
  height: 50px;
  width: 80px;
  overflow: hidden;
}

.rolling-menu li a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  line-height: 50px;
  letter-spacing: -1px;
  text-transform: uppercase;
  /* 回転アニメーション準備 */
  transform: translateY(-50px);
  transition: 0.3s cubic-bezier(0.1, 0.1, 0.5, 1.4);
}

.rolling-menu li:last-child { 
  width: 100px;
}


/* ホバー時に下へロール */
.rolling-menu li a:hover {
  transform: translateY(0);
}

/* 上に来る文字（黄緑） */
.rolling-menu li a::before {
  content: attr(data-text);
  display: block;
  color: #DA7400;
}

/* スマホ用ナビはデフォルト非表示 */
.sp-nav {
  display: none;
}

/* 768px以下で有効化 */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 10px;
  }
  .site-logo img {
    width: 14vw;
    height: auto;
  }
  /* PCメニューを消す */
  .header-nav {
    display: none;
  }
  /* SPナビを表示 */
  .sp-nav {
    margin-right: 12px;
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 10001;
  }
  #nav-toggle {
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: relative;
    z-index: 10002;
  }
  #nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: #da7400;
    border-radius: 2px;
    transition: 0.5s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 4px;
  }
  #nav-toggle span:nth-child(2) {
    top: 14px;
  }
  #nav-toggle span:nth-child(3) {
    top: 24px;
  }
  #nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
    left: 4px;
  }
  #nav-toggle.open span:nth-child(2) {
    width: 0;
    opacity: 0;
  }
  #nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 22px;
    left: 4px;
  }
  #nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    transform: scale(0);
    transition: transform 0.6s;
    border-radius: 50%;
    z-index: 10000;
  }
  #nav-overlay.open {
    transform: scale(3);
  }
  #nav-fullscreen {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 10001;
  }
  #nav-fullscreen.open {
    visibility: visible;
    opacity: 1;
  }
  #nav-fullscreen ul {
    list-style: none;
    text-align: center;
  }
  #nav-fullscreen li {
    margin: 20px 0;
  }
  #nav-fullscreen a {
    font-size: 8vw;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
}
@media (max-width: 500px) {
  .fv {
    min-height: 50vh;
  }
}/*# sourceMappingURL=header.css.map */