
/* ==================================================== */	
.crosshair-h,
.crosshair-v {
    display: none;
    position: fixed;
    pointer-events: none;
    background-color: rgba(68, 31, 94, 0.5);
    transition: opacity 0.2s ease;
}

/* 横線 */
.crosshair-h {
    height: 1px;
    width: 100vw;
	z-index: 999;
}

/* 縦線 */
.crosshair-v {
    width: 1px;
    height: 100vh;
	z-index: 999;
}

/* aタグにマウスオーバーしたときに、ボディのカーソルを非表示にする */
/* a:hover {
    cursor: none;
}

.panel-header:hover{
  cursor: none;
} */

/* ==================================================== */	

/*sp nav----------------------------*/
.sp2{
	padding-left: 10px;
	font-size: 14px;
	font-family: "IBM Plex Sans JP", sans-serif;
	position: absolute;
	z-index: 1000;
	color: rgb(63, 39, 79); 
}

.hamburger {
  position: absolute;
  display: block;
  width: 32px;
  height: 20px;
  right: 20px;
  top:20px;
  z-index: 99999;
  box-sizing: border-box;
}
.hamburger  span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(63, 39, 79);
  margin: 0 auto;
}
.hamburger  span:nth-of-type(1) {
  top: 0;
}
.hamburger  span:nth-of-type(2) {
  top: 9px;
}
.hamburger  span:nth-of-type(3) {
  bottom: 0;
}


.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-of-type(1) {
  top: 5px;
  transform: rotate(-315deg);
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;

}

.hamburger.active span:nth-of-type(3) {
  top: 5px;
  transform: rotate(315deg);
}
/*----------navigation----------*/
#navigation{
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99998;
}
#navigation .navigation_inner{
  display: table;
  width: 100%;
  height: 100%;
}
#navigation .navigation_inner .navigation_menu{
  display: table-cell;
  vertical-align: middle;
  padding-left: 0;
}
#navigation .navigation_inner .navigation_menu .navigation_item{
  width: 80px;
  height: 40px;
  margin: 16px auto 0 auto;
  list-style: none;
}
#navigation .navigation_inner .navigation_menu .navigation_item:first-child{
  margin-top: 0;
}
#navigation .navigation_inner .navigation_menu .navigation_item a{
  display: block;
  position: relative;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: #f9d8ae;
  line-height: 40px;
  text-align: center;
}
#navigation .navigation_inner .navigation_menu .navigation_item a::before{
  content: "";
  position: absolute;
  top: 80%;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#navigation .navigation_inner .navigation_menu .navigation_item a:hover::before{
  width: 60%;
}

@media only screen and (min-width: 1281px){
  .sp { 
    display: none !important; 
  }

}


@media only screen and (max-width: 1281px) {
  header { 
    display: none !important; 
    background-color: rgba(229, 229, 234, 0);
    border-bottom: 0; 
    backdrop-filter: blur(0);
  }

  .sp { 
    display: block !important;
   }

  }

  @media only screen and (max-width: 1081px){
    .sp2{
      display: none;
    }

  }


@media screen and (orientation: landscape) and (max-width: 933px){
  #navigation .navigation_inner .navigation_menu .navigation_item{
    height: 35px;
    margin: 10px auto 0 auto;
  }
}

@media screen and (orientation: landscape) and (max-width: 568px){
  #navigation .navigation_inner .navigation_menu .navigation_item{
    height: 28px;
  }
}

