@charset "utf-8";

header{
	position: static;
	z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  background-color: transparent;
  pointer-events: none;
}
header .area{
  width: 100%;
  box-sizing: border-box;
  padding-left: 3vw;
}
@media screen and (max-width: 520px){
	header{
    padding: 1em 1em;
	}
  header .area{
    width: 100%;
    box-sizing: border-box;
    justify-content: center !important;
    padding-left: 0;
    padding-top: 1em;
  }
  header .area .logo{
    max-width: 35vw;
    line-height: 1;
  }
}

/*--------------------------------------------------------------------*/

@media screen and (min-width: 521px){
  header .menu{
    display: none;
  }
}
@media screen and (max-width: 520px){
  header .menu{
    position: relative;
    align-items: stretch;
    border-radius: 3px;
    display: inline-block;
    z-index: 3;
    margin-left: auto;
    display: none;
  }
  header .menu .button{
    position: relative;
    z-index: 1100;
    width: 14px;
    height: 14px;
    margin: 10px;
  }
  header .menu .button .line{
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    transition: all .3s;
  }
  header .menu .button .line:nth-of-type(1){
    top:0;
  }
  header .menu .button .line:nth-of-type(2){
    top: 0;
    bottom: 0;
  }
  header .menu .button .line:nth-of-type(3){
    bottom: 0;
  }
  header.active .menu .button .line:nth-of-type(1){
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header.active .menu .button .line:nth-of-type(2){
    opacity: 0;
  }
  header.active .menu .button .line:nth-of-type(3){
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/*--------------------------------------------------------------------*/

.global_navigation a .icon_arrow{
  padding-right: 0;
}
.global_navigation a .icon_arrow::before{
  width: .35em;
  height: .35em;
  top: -.15em;
  border-width: 1px;
  border-color: #fff;
  display: none;
}
@media screen and (max-width: 520px){
  .global_navigation a .icon_arrow{
    padding-right: 0;
  }
  .global_navigation a .icon_arrow::before{
    border-color: #fff;
    border-width: 1px;
    display: none;
  }
}

/*--------------------------------------------------------------------*/

.global_navigation[data-navigation-type="heading"]{
  pointer-events: auto;
  background-color: var(--c_darkblue);
  color: #fff;
  padding: .7em;
  border-radius: 0 0 0 1.8em;
  position: relative;
}
.global_navigation[data-navigation-type="heading"]::before,
.global_navigation[data-navigation-type="heading"]::after{
  display: block;
  content: "";
  width: 1.5em;
  height: 1.5em;
  background-image: url("../img/image_header_cover.svg");
	background-repeat: no-repeat;
	background-position: right top;
	background-size: auto;
  position: absolute;
}
.global_navigation[data-navigation-type="heading"]::before{
  left: 0;
  top: 0;
  transform: translate(-100%, 0);
}
.global_navigation[data-navigation-type="heading"]::after{
  right: 0;
  bottom: 0;
  transform: translate(0, 100%);
}
.global_navigation[data-navigation-type="heading"] nav{
  display: inline-flex;
  align-items: stretch;
}
.global_navigation[data-navigation-type="heading"] li{
  padding: 0;
  margin: 0 .5em;
}
.global_navigation[data-navigation-type="heading"] li a{
  padding: 3.5em 0 1em 0;
  font-size: 1.2rem;
  line-height: 1.5;
  width: 6em;
  height: 6em;
  box-sizing: border-box;
  text-align: center;
	background-repeat: no-repeat;
	background-position: center top .5em;
	background-size: 3em auto;
  border-radius: 1.2em;
  background-color: rgba(255,255,255,0);
  transition: background-color .3s;
}
.global_navigation[data-navigation-type="heading"] li a:hover{
  background-color: rgba(255,255,255,.1);
  opacity: 1;
}
.global_navigation[data-navigation-type="heading"] li[data-link="demo"] a{
  background-image: url("../img/icon_cursor.svg");
}
.global_navigation[data-navigation-type="heading"] li[data-link="quickstart"] a{
  background-image: url("../img/icon_rocket.svg");
}
.global_navigation[data-navigation-type="heading"] li[data-link="pricing"] a{
  background-image: url("../img/icon_tag.svg");
}
.global_navigation[data-navigation-type="heading"] li[data-link="x"] a{
  background-image: url("../img/icon_x.svg");
	background-position: center center;
}
.global_navigation[data-navigation-type="heading"] li[data-link="x"] a .text{
  opacity: 0;
}
@media screen and (max-width: 520px){
  .global_navigation[data-navigation-type="heading"]{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1.5rem;
    box-shadow: 0 0 2em rgba(0,0,0,.1);
    z-index: 10001;
    border-radius: 1em 1em 0 0;
    padding: .5em;
  }
  .global_navigation[data-navigation-type="heading"]::before,
  .global_navigation[data-navigation-type="heading"]::after{
    display: none;
  }
  .global_navigation[data-navigation-type="heading"] nav{
    display: flex;
  }
  .global_navigation[data-navigation-type="heading"] ul{
    flex: 1;
  }
  .global_navigation[data-navigation-type="heading"] li{
    margin: 0;
    line-height: 1;
    flex: 1;
  }
  .global_navigation[data-navigation-type="heading"] li a{
    padding: 2.2em 0 0 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-size: 2.2em;
    background-position: center top;
    font-size: 3.2vw;
    min-width: 3em;
  }
  .global_navigation[data-navigation-type="heading"] li a:hover{
    background-color: transparent;
    opacity: 1;
  }
  .global_navigation[data-navigation-type="heading"] li[data-link="x"]{
    flex: .6;
  }
}

/*--------------------------------------------------------------------*/

.global_navigation[data-navigation-type="heading"] .purchase{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 1em;
  margin-left: 1em;
}
.global_navigation[data-navigation-type="heading"] .purchase::before{
  content: "";
  display: block;
  width: 1px;
  height: 90%;
  background-color: rgba(255,255,255,.1);
  position: absolute;
  left: 0;
  top: 0;
}
.global_navigation[data-navigation-type="heading"] .purchase a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8em;
  height: 100%;
  box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 1em;
  background-color: rgba(255,255,255,.1);
}
@media screen and (max-width: 520px){
  .global_navigation[data-navigation-type="heading"] .purchase{
    padding-left: 3vw;
    margin-left: 3vw;
  }
  .global_navigation[data-navigation-type="heading"] .purchase a{
    width: auto;
    padding: 0 1.5em;
    font-size: 3.5vw;
  }
}

/*--------------------------------------------------------------------*/

.global_navigation[data-navigation-type="heading"] li.label a{
  border: 1px solid var(--c_border_gray);
  font-size: 90%;
  padding: .25em 1em .25em 3em;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20.502" height="20.952" fill="%23000" viewBox="0 0 20.502 20.952">  <path id="icon_sns_x" d="M12.2,8.872,19.834,0H18.025L11.4,7.7,6.1,0H0L8,11.649l-8,9.3H1.809l7-8.135,5.59,8.135h6.1L12.2,8.872Zm-2.477,2.88-.811-1.16L2.46,1.362H5.239L10.446,8.81l.811,1.16,6.769,9.682H15.248l-5.524-7.9Z"/></svg>');
	  background-position: center center;
	background-repeat: no-repeat;
	background-position: left 1em center;
	background-size: auto 1em;
  display: block;
}
@media screen and (max-width: 520px){
  .global_navigation[data-navigation-type="heading"] li.label{
    line-height: 1;
  }
  .global_navigation[data-navigation-type="heading"] li.label a{
    border: 0;
    padding: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20.502" height="20.952" fill="%23fff" viewBox="0 0 20.502 20.952">  <path id="icon_sns_x" d="M12.2,8.872,19.834,0H18.025L11.4,7.7,6.1,0H0L8,11.649l-8,9.3H1.809l7-8.135,5.59,8.135h6.1L12.2,8.872Zm-2.477,2.88-.811-1.16L2.46,1.362H5.239L10.446,8.81l.811,1.16,6.769,9.682H15.248l-5.524-7.9Z"/></svg>');
	  background-position: center center;
    line-height: 1;
  }
  .global_navigation[data-navigation-type="heading"] li.label a .text{
    display: none;
  }
}

/*--------------------------------------------------------------------*/

@media screen and (max-width: 520px){
  .global_navigation[data-navigation-type="heading"] li.sns_x{
    
  }
}

/*--------------------------------------------------------------------*/

.global_navigation[data-navigation-type="overlay"]{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 999;
}
header.active + .global_navigation[data-navigation-type="overlay"]{
  display: block;
}
.global_navigation[data-navigation-type="overlay"] .bg_button{
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
