body * {
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff !important;
  margin-bottom: 200px;
  z-index: 9999;
  overflow: visible;
}

.inner {
  width: 1280px;
  height: auto;
  margin: 0 auto;
}

.landingmenu{
    max-width: 100%;
    padding: 0;
}

.logo {
  float: left;
  padding: 20px 0 20px 40px;
}

.logo img {
  width: 136px;
  height: 60px;
}

.menu_txt {
  float: right;
  display: flex;
  flex-wrap: wrap;
}

.menu_txt .beta_apply p,
.menu_txt .login p {
  font-size: 18px;
  font-weight: bold;
  color: #2b5762;
  padding: 40px 70px 40px 0;
}

.menu_txt .contact p {
  font-size: 18px;
  color: #ffffff;
  background-color: #009eaa;
  padding: 41px 45px;
}
.login_btn{
    cursor: pointer;
}
/*space name*/
/*.login_btn{
  position: relative;
  cursor: pointer;
}

.login_btn .search_acc{
    position: absolute;
    width: 317px;
    top: 115px;
    left: -173px;
    right: 20px;
    background: #fdfdfd;
    border: 1px solid;
    border-color: #cbcfe2 #c8cee7 #c4c7d7;
    border-radius: 3px;
    background-image: linear-gradient(to bottom, #fdfdfd, #eceef4);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 15px 10px;
    display: none;
}

.search_acc.show{
    display: block;
}

.search_ttl{
    font-size: 16px;
}

.search_ttl:before{
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 90%;
    margin-left: -5px;
    border: 5px outset transparent;
    border-bottom: 5px solid #c4c7d7;
    top: -11px;
}

.link{
    font-size: 14px;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 20px 0;
}

.login_enter{
    width: 150px;
    color: #2b5762;
    background-color: #fff;
    min-width: 150px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    margin: 0 8px;
}

.login_next{
    width: 150px;
    padding: 10px;
    font-size: 14px;
    color: #ffffff;
    background-color: #009eaa;
}*/
/*space name*/

/*space*/
.dialog_sec{
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    z-index: 99999;
}
.dialog_sec.show{
    display: block;
}
.dialog{
    display: block;
    width: 450px;
    min-width: 450px;
    margin: 0 auto;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    z-index: 999;
}
.dialog_content{
    width: 100%;
    position: relative;
    top: 100px;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: 0;
    z-index: 99999;
}

.dialog_header{
    display: block;
    padding: 15px 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: #009eaa;
}

.dialog_header p{
    font-size: 18px;
    color: #FFF;
    text-align: left;
}
.dialog_header .cross{
    width: 47px;
    height: 47px;
    position: absolute;
    top: -25px;
    right: -15px;
    cursor: pointer;
}

.cross img{
    width: 100%;
    height: auto;
}

.dialog_body{
    padding: 40px 20px;
}

.dialog_body .space_name{
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.space_name p{
    font-size: 18px;
}
.dialog_body input{
    width: 200px;
    min-width: 200px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #2b5762;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px 0;
    margin: 0 15px;
}

.dialog_body .error{
    font-size: 14px;
    color: #ff0000;
    margin: 5px auto 0;
}

.dialog_footer{
    padding: 15px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.dialog_footer .cancel_btn{
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    background-color: #68a1ff;
    padding: 10px 30px;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    
}

/*space*/

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .inner {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  header {
    height: 1rem;
    margin-bottom: 0;
  }

  header .menu_btn {
    position: fixed;
    top: 0.38rem;
    right: 0.3rem;
    text-align: center;
    cursor: pointer;
    z-index: 10000;
  }

  header .menu_btn .menu_icon {
    position: relative;
    width: 0.56rem;
    height: 0.3rem;
  }

  header .menu_btn .menu_icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.55rem;
    height: 0.05rem;
    border-radius: 0.025rem;
    background: #049ea7;
  }

  header .menu_btn .menu_icon::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.31rem;
    height: 0.05rem;
    border-radius: 0.025rem;
    background: #049ea7;
  }

  header .menu_btn .menu_icon span {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.44rem;
    height: 0.05rem;
    border-radius: 0.025rem;
    background: #049ea7;
  }

  header .menu_btn.active .menu_icon span {
    background-color: transparent;
  }

  header .menu_btn.active .menu_icon::before {
    top: 0.12rem;
    transform: rotate(45deg);
  }

  header .menu_btn.active .menu_icon::after {
    bottom: 0.13rem;
    width: 0.55rem;
    transform: rotate(-45deg);
  }

  header .menu_open {
    display: none;
    position: relative;
  }

  header .menu_open .menu_conent {
    position: absolute;
    top: 1rem;
    left: 0;
    width: 100%;
    background-color: #049ea7;
    opacity: 0.9;
  }

  header .menu_open .menu_conent li {
    font-size: 0.25rem;
    color: #ffffff;
    text-align: left;
    padding: 0.35rem;
    margin-bottom: 0;
    border-bottom: 0.02rem solid #ffffff;
  }

  /*space*/
.dialog{
    width: 4.5rem;
    min-width: 4.5rem;
    top: 20%;
    left: 0;
    right: 0;
    z-index: 999;
}
.dialog_content{
    top: 1rem;
    box-shadow: 0 .05rem .15rem rgba(0, 0, 0, 0.5);
    border: .01rem solid #999;
    border: .01rem solid rgba(0, 0, 0, 0.2);
}

.dialog_header{
    padding: .15rem .10rem;
    border-top-left-radius: .04rem;
    border-top-right-radius: .04rem;
}

.dialog_header p{
    font-size: .2rem;
}
.dialog_header .cross{
    width: .47rem;
    height: .47rem;
    top: -.25rem;
    right: -.15rem;
}

.cross img{
    width: 100%;
    height: auto;
}

.dialog_body{
    padding: .40rem .20rem;
}

.space_name p{
    font-size: .2rem;
}

.dialog_body input{
    width: 2rem;
    min-width: 2rem;
    font-size: .16rem;
    border: .01rem solid #ccc;
    padding: .05rem 0;
    margin: 0 .15rem;
}

.dialog_body .error{
    font-size: .16rem;
    margin: .05rem auto 0;
}

.dialog_footer{
    padding: .15rem;
    border-top: .01rem solid #e5e5e5;
}

.dialog_footer .cancel_btn{
    font-size: .18rem;
    padding: .10rem .30rem;
    -webkit-border-radius: .02rem;
            border-radius: .02rem;
    
}

/*space*/

}

