@charset "utf-8";

/*========= ナビゲーションのためのCSS ===============*/

#sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f15a24;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.4s;
}

#sp-nav.panelactive {
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
}



/*ナビゲーションの縦スクロール*/
#sp-nav.panelactive #sp-nav-list {
/*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
    -webkit-overflow-scrolling: touch;
  padding: 80px 20px;
}

#sp-nav a {
  pointer-events: auto;
}
.sp-nav_title {
  text-align: left;
  width: 420px;
  margin: 0 auto;
  font-size: clamp(40px, 7vw, 80px);
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
    -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #fff 5%, #ffd700 60%);
}
/*ナビゲーション*/
.nav_btn_wrap {
  text-align: left;
  width: 420px;
  margin: 0 auto;
}

#sp-nav ul {
  display: none;
  margin: 15px auto 0 auto;
  /*ナビゲーション天地中央揃え*/
}
#sp-nav.panelactive ul {
  display: block;
  font-weight: bold;
}

/*リストのレイアウト設定*/
#sp-nav li {
  list-style: none;
  text-align: left; 
  padding: 5px 0;
}


#sp-nav li a {
  display: block;
  position: relative;
  width: 100%;
  color: #f15a24;
  background-color: #ffe9a6;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: bold;
}
#sp-nav ul li a:after {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid #f15a24;
  border-right: 2px solid #f15a24;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 49%;
  right: 35px;
}

.nav_link_wrap {
  width: 420px;
  margin: 40px auto 0;
  text-align: center;
}
.nav_link_wrap a {
  color: #fff;
}
.nav_link_wrap a:first-child {
  border-right: 1px solid #fff;
  padding-right: 20px;
}
.nav_link_wrap a:last-child {
  padding-left: 20px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 99999;/*ボタンを最前面に*/
  top: 10px;
  right: 20px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  pointer-events: auto;
}
.openbtn1.active {
  right: 15px;
  border: none;
  background-color: #f15a24;
} 
/*×に変化*/  
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background-color: #f15a24;
  width: 100%;
  }
.openbtn1 span {
  transition: transform 0.4s,background-color 0.4s, opacity 0.4s;
}
.openbtn1 span:nth-of-type(1) {
  top: 12px; 
}
.openbtn1 span:nth-of-type(2) {
  top: 22px;
}
.openbtn1 span:nth-of-type(3) {
  top: 32px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 13px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 70%;
  background-color: #fff;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 25px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 70%;
  background-color: #fff;
}


@media only screen and (max-width: 580px) {
  .sp-nav_title,
  .nav_btn_wrap,
  .nav_link_wrap {
    width: 300px;
  }
}
@media only screen and (max-width: 480px) {


}