/*--------------------------------------------------
  base styles
--------------------------------------------------*/
html, body{
  height:100%;
}
* {
    margin: 0;
    padding: 0;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family:"helvetica", arial, 'hiragino kaku gothic pro', meiryo, 'ms pgothic', sans-serif;
}

li {
    list-style: none;
}

a:focus, *:focus {
  outline:none;
}


/*--------------------------------------------------
  common styles
--------------------------------------------------*/
/* modal */
.modal {
  top: 100px;
}

/* width 100% */
.w100pct{
  width:100%;
}
/* background-colors */
/*.bg-lgray{
  background-color: #f5f3ee;
}*/
.bg-gray{
  background-color:#c9caca;
}
.bg-black{
  background-color:#727171;
}
.bg-white{
  background-color:#fff;
}
.bg-orange{
 background-color:#daa520;
}

.radius-default{
  border-radius:18px;
}

/* buttons */
.btn-yellow{
  color:#fff;
  background-color:#fbc644;
  border-color: #fbc644;
}
.btn-gray{
  color:#fff;
  background-color:#c9caca;
  border-color:#c9caca;
}
.btn-black{
  color:#fff;
  background-color:#727171;
  border-color:#727171;
}

/* 2行のボタン */
.two-btns {
  display: flex;
  justify-content: space-between;
  width: 550px;
  margin: 40px auto 0;
}
.two-btns .save-btn {
  -webkit-appearance: none;
  background-color: #fbc644;
  position: relative;
  border: none;
  border-radius: 4px;
  color: #fff;
  display: block;
  line-height: 35px;
  max-width: 300px;
  /*padding-right: 35px;*/
  text-align: center;
  width: 250px;
}
/*.two-btns .save-btn:before {*/
  /*content: '';*/
  /*position: absolute;*/
  /*right: 0;*/
  /*border-left: 1px solid #fff;*/
  /*width: 35px;*/
  /*height: 35px;*/
/*}*/
/*.two-btns .save-btn:after {*/
  /*content: '';*/
  /*position: absolute;*/
  /*top: 0;*/
  /*right: 12px;*/
  /*bottom: 0;*/
  /*margin: auto;*/
  /*border-top: 5px solid #fff;*/
  /*border-left: 5px solid transparent;*/
  /*border-right: 5px solid transparent;*/
  /*border-radius: 2px;*/
  /*width: 10px;*/
  /*height: 5px;*/
/*}*/
.two-btns .save-btn:hover {
  opacity: 0.8;
}
.two-btns .cancel-btn {
  background-color: #fff;
  border: 1px solid #979797;
  border-radius: 4px;
  color: #333;
  display: block;
  line-height: 33px;
  text-align: center;
  width: 250px;
}
.two-btns .cancel-btn:hover {
  background-color: #f3f3f3;
  opacity: 0.8;
  text-decoration: none;
}

/* リストタイプのボタン（黄色） */
.select-btn {
  position: relative;
}
.select-btn-list {
  display: none;
  position: absolute;
  z-index: 1100;
  top: 34px;
  right: 0;
  background-color: #F5F3EE;
  text-align: left;
  width: 100%;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.select-btn .select-btn-list li {
  background-color: #F5F3EE;
}
.select-btn .select-btn-list  li a {
  display: block;
  padding: 0 12px;
}
.select-btn .select-btn-list  li:nth-child(even) {
  background-color: #EAEAEA;
}
.select-btn .select-btn-list  li a {
  display: block;
  color: #4d4d49;
  padding: 10px 15px;
  line-height: 20px;
}
.select-btn.active .select-btn-list {
  display: block;
}
.select-btn.active .select-btn-btn:after {
  border-top: none;
  border-bottom: 5px solid #fff;
}

@media (max-width: 767px){
  .two-btns {
    display: block;
    width: 100%;
    margin-top: 0;
  }
  .two-btns .save-btn {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .two-btns .cancel-btn {
    width: 100%;
    margin-bottom: 32px;
  }
}

.page-title-container .form-group{
  width:200px;
  margin:0 auto;
}

.page-title{
  font-size:16px;
}
.page-title2{
  margin-top:10px;
  color:#979797;
}

/* 検索 フォーム ヘッダメニュー以外 */
.search-block{
  /* margin:0 auto; */
  width:300px;
  max-width: 300px;
}
.fix .search-block {
  background: none;
  width: 300px;
  margin: inherit;
}
@media (max-width: 767px){
  .fix .search-block {
    background-color: #f5f3ee;
    height: 44px;
    margin: auto;
    max-width: inherit;
    padding: 4px 12px;
    top: 42px;
    width: 100%;
    z-index: 9100;
    position: fixed;
  }
}
.search-block .search-block-input {
  border: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.search-block .search-block-btn {
  background-color: #e6b336;
  border: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #fff;
  height: 34px;
}
.search-block .search-block-btn:hover {
  opacity: 0.8;
}
.search-toggle-btn {
  background: url(/static/images/icon_GPS_1.svg) no-repeat #fff 6px 50% / 12px;
  bottom: -12px;
  border: 1px solid #fbc644;
  border-radius: 25px;
  color: #846506;
  cursor: pointer;
  display: block;
  font-size: 12px;
  height: 25px;
  left: 0;
  line-height: 25px;
  margin: auto;
  padding: 0 22px;
  position: absolute;
  right: 0;
  width: 245px;
}
.search-toggle-btn.btn.active, .search-toggle-btn.btn:active {
  background: url(/static/images/icon_GPS_1.svg) no-repeat #fff 6px 50% / 12px;
}
.search-toggle-btn:hover {
  opacity: 0.8;
  text-decoration: none;
}
.fix .search-block-inner {
  width: 266px;
  float: right;
}
@media (max-width: 767px){
  .fix .search-block-inner {
    width: calc(100% - 34px);
  }
}
.fix .search-block .search-block-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  outline: 0;
}
.fix .search-block .form-group {
  position: relative;
}
.fix .search-block .form-group {
  margin-bottom: 0;
}
.fix .search-toggle-btn {
  float: left;
  position: relative;
  right: inherit;
  bottom: inherit;
  margin: auto;
  width: 34px;
  height: 34px;
  text-indent: -9999px;
  padding: 0;
  border-radius: 8px 0 0 8px;
  border: none;
  background-position: 50%;
  background-size: 15px;
}
.fix.under-pages {
  border: none;
  background-color: transparent;
  box-shadow: none;
  margin: 0;
  padding: 4px 0;
  left: inherit;
  right: 80px;
  top: 0;
  width: 300px;
}
@media (max-width: 767px){
  .fix.under-pages {
    float: none;
    height: 44px;
    padding: 0;
    width: 100%;
    position: fixed;
    top:42px;
    left: 0;
  }
}
@media (min-width: 768px) {
  #searchArea {
    display: block;
  }
}


/* サムネイル(30px,75px,100px,) */
.profile-thumb--30 {
  position: relative;
  overflow: hidden;
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  display: block;
  min-width: 30px;
  width: 30px;
  height: 30px;
}



/* footer上部のedit history */
.under_bar {
  padding: 20px 0;
  width: 100%;
}
.under_bar .under_bar-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}
.under_bar .under_bar-btns {
  display: flex;
  justify-content: flex-end;
  margin: 20px auto 40px;
}
@media (max-width: 767px){
  .under_bar {
    background-color: #f5f3ee;
  }
  .under_bar .under_bar-btns {
    display: block;
  }
}
.under_bar .under_bar-btns > * {
  text-align: center;
  width: 220px;
}
.under_bar .under_bar-btns > *:not(:last-child) {
  margin-right: 20px;
}
.under_bar .under_bar-btns > *:hover {
  /* background-color: #f3f3f3; */
  opacity: 0.8;
  text-decoration: none;
}
@media (max-width: 767px){
  .under_bar .under_bar-btns > *{
    width: 100%;
  }
  .under_bar .under_bar-btns > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.under_bar .under_bar-btns .save-btn {
  -webkit-appearance: none;
  background-color: #fbc644;
  border: none;
  color: #fff;
  border-radius: 4px;
  line-height: 35px;
}
.under_bar .under_bar-btns .cancel-btn {
  background-color: #fff;
  border: 1px solid #979797;
  border-radius: 4px;
  color: #333;
  display: block;
  line-height: 33px;
}

.under_bar .edit-history {
  margin-bottom: 0;
  min-height: 30px;
  box-sizing: border-box;
}
.under_bar .edit-history li {
  color: #999;
  line-height: 1.6;
  padding: 4px 0;
}
@media (max-width: 767px){
  .under_bar {
    padding: 20px 15px 10px;
  }
  .under_bar .under_bar-btns {
    width: 100%;
    margin-top: 0;
  }
  .under_bar .edit-history {
    float: none;
    font-size: 12px;
  }
}

.deactivate_bar {
  padding: 20px 0;
  background-color: #F5F3EE;
}
.deactivate_bar-inner {
  display: flex;
  justify-content: flex-end;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}
.deactivate_bar .deactivate-btn {
  display: block;
  width: 220px;
  color: #d43f3a;
  background-color: #fff;
  border: 1px solid #d43f3a;
  border-radius: 3px;
  font-size: 14px;
  line-height: 33px;
  padding: 0;
  text-align: center;
}
@media (max-width: 768px){
  .deactivate_bar {
    padding: 40px 15px 20px;
  }
  .deactivate_bar-inner {
    display: block;
  }
  .deactivate_bar .deactivate-btn {
    width: 100%;
  }
}


/* ナビゲーション */

.navbar-toggle .icon-bar {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: transparent;
}

.navbar-default,
.navbar-default .navbar-collapse {
  background-color: #f5f3ee;
  border:none;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 3px;
}

.navbar-default .navbar-toggle.chizuburari:focus {
  background-color: none;
}

.collapse.in {
   display: block;
   margin-top: 0px;
   background-color: #fff;
   transition: 0.6s;
   opacity: 1.0;
   box-shadow: 0 2px 4px 0 rgba(0,0,0,0.26);
   width: 100%;
 }
 .nav {
   margin: 0;
 }

 @media (min-width: 768px){
   .navbar-default .navbar-nav > li > a {
     color: #999;
   }
   .navbar-default .navbar-nav > li > a:hover,
   .navbar-default .navbar-nav > li > a:focus {
     color: #555;
     background-color: #e7e7e7;
   }
   .navbar-default .navbar-nav > .active > a,
   .navbar-default .navbar-nav > .active > a:hover,
   .navbar-default .navbar-nav > .active > a:focus{
     color: #000;
     background-color: transparent;
     text-decoration: underline;
   }
   .navbar-default .navbar-nav > li > a {
     color: #424242;
     padding-top: 11px;
     padding-bottom: 11px;
   }
}

#MainHeader .header-upper{
  position: relative;
  height:42px;
}
@media (max-width: 767px){
  #MainHeader .header-upper{
    padding: 0;
  }
}
#MainHeader .header-lower{
  clear: both;
  height:42px;
  padding-top:10px;
  font-size:16px;
}
#MainHeader .header-logo{
  padding: 5px 0 2px 12px;
  /*padding: 5px 0 2px 12px;*/ /* αが無いロゴの時はこちら適用 */
  padding: 8px 0 2px 12px; /* αがついているロゴの時はこちら適用 */
  height: 35px;
  overflow: hidden;
}

#MainHeader .header-logo img{
  /*height: 38px;*/ /* αが無いロゴの時はこちら適用 */
  height: 29px; /* αがついているロゴの時はこちら適用 */
}

#MainHeader .right {
    display: flex;
    float: right;
    justify-content: flex-end;
    margin-left: 20px;
  }
@media (max-width: 767px){
  #MainHeader .right {
    margin-right: 8px;
  }
}

#MainHeader .btn.search{
  height:38px;
}

#MainHeader .global_header-link_bell {
  margin-top: 6px;
  margin-right: 2px;
  padding-right: 14px;
  position: relative;
}

#MainHeader .global_header-link_bell-num {
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  font-family: sans-serif;
  padding: 3px 6px;
  color: #fff;
  font-size: 10px;
  max-width: 32px;
  text-align: center;
  background-color: #fe3824;
  border-radius: 10px;
}

#MainHeader .btn_account{
  position: relative;
  margin-top: 5px;
  margin-right: 5px;
  font-size: 24px;
  padding: 6px 0;
  min-width: 30px;
  width: 30px;
  height: 30px;
}
#MainHeader .btn_account.isLogin {
  overflow: hidden;
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  display: block;
}
#MainHeader .btn_account.isNotLogin span {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 4px;
  background-color: #9B9B9B;
  text-indent: -9999px
}
#MainHeader .btn_account.isNotLogin span:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #9B9B9B;
}
#MainHeader .btn_account.isNotLogin span:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #9B9B9B;
}
#MainHeader .btn_account:hover {
  opacity: 0.8;
}
@media (max-width: 767px){
  #MainHeader {
    display: block;
  }
  #MainHeader .btn_account{
    margin-right: 0;
  }
}

#MainHeader .btn_account img {
  position: absolute;
  max-height: 30px;
  top: 50%;
  left: 50%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
}

#MainHeader .sp-search-btn {
  display: none;
}
@media (max-width: 767px){
  #MainHeader .sp-search-btn {
    display: block;
    margin-top: 5px;
    margin-right: 10px;
    padding: 4px;
    position: absolute;
    right: 40px;
    text-align: center;
    width: 30px;
  }
}

#MainHeader .personal-menu {
  position: absolute;
  top: 50px;
  right: 8px;
  left: auto;
  background-color: #f5f3ee;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.25);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.25);
  width: 70%;
  max-width: 280px;
  border: 0px;
  margin-top: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: 6px solid #fbc644;

}
@media (max-height: 450px) and (orientation: landscape) {
  #MainHeader .personal-menu {
    height: 340px;
    overflow-y: scroll;
  }
}
@media (max-height: 390px) and (orientation: landscape) {
  #MainHeader .personal-menu {
    height: 300px;
  }
}
@media (max-height: 340px) and (orientation: landscape) {
  #MainHeader .personal-menu {
    height: 260px;
  }
}
#MainHeader .personal-menu.active {
  display: block;
}

#MainHeader .personal-menu:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 20px;
  top: 0;
  right: 15px;
  transform: rotate(-45deg) skew(-20deg,-20deg);
  box-shadow: 0 0 10px 0 rgba(163,163,163,0.50);
}
@media (max-width: 767px){
  #MainHeader .personal-menu:before {
    right: 3px;
  }
}
#MainHeader .personal-menu:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
#MainHeader .personal-menu>* {
  position: relative;
  z-index: 3;
}
#MainHeader .personal-menu:before,
#MainHeader .personal-menu:after {
  background: #f5f3ee;
}

#MainHeader .personal-menu-upper {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
}
#MainHeader .personal-menu-thumb a {
  display: block;
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  height: 75px;
  overflow: hidden;
  position: relative;
  width: 75px;
  min-width: 75px;
  margin-right: 12px;
}
#MainHeader .personal-menu-thumb a:hover {
  opacity: 0.8;
}
@media (max-width: 767px){
  #MainHeader .personal-menu-thumb a {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    min-width: 50px;
  }
}
#MainHeader .personal-menu-right {
  flex: 1;
  position: relative;
  max-width: 160px;
  padding-bottom: 30px;
}
#MainHeader .personal-menu-right p {
  word-break: break-all;
}
#MainHeader .personal-menu-right .personal-menu-name {
  margin-bottom: 12px;
  font-size: 20px;
  line-height:  26px;
}
#MainHeader .personal-menu-right .personal-menu-name a {
  color: #333;
  text-decoration: none;
}
#MainHeader .personal-menu-right .personal-menu-name a:hover {
  text-decoration: underline;
}
#MainHeader .personal-menu-list a:hover,
#MainHeader .personal-menu-list a:focus {
  background-color: #dcdcdc;
  text-decoration: none;
}
#MainHeader .personal-menu-right .personal-menu-btn_logout {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 28px;
  text-align: center;
  background: none;
  border: 1px solid #979797;
  border-radius: 4px;
  color: #333;
}
#MainHeader .personal-menu-right .personal-menu-btn_logout:hover,
#MainHeader .personal-menu-right .personal-menu-btn_logout:focus {
  background-color: #dcdcdc;
  text-decoration: none;
}

#MainHeader .personal-menu-username span {
  margin-right: 8px;
}
#MainHeader .personal-menu-list {
  clear: both;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  margin: 0;
  padding: 16px 0;
}
#MainHeader .personal-menu-list a {
  color: #333;
  display: inline-block;
  line-height: 34px;
  padding: 0 20px;
  width: 100%;
}
#MainHeader .personal-menu-btn_login {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  line-height: 30px;
  text-align: center;
  background-color: #fbc644;
  border: none;
  border-radius: 4px;
  color: #fff;
}
#MainHeader .personal-menu-btn_login:hover {
  opacity: 0.8;
  text-decoration: none;
}
#MainHeader .personal-menu-btn_signup {
  display: block;
  width: 100%;
  line-height: 30px;
  text-align: center;
  background: none;
  border: 1px solid #979797;
  border-radius: 4px;
  color: #333;
}
#MainHeader .personal-menu-btn_signup:hover,
#MainHeader .personal-menu-btn_signup:focus {
  background-color: #dcdcdc;
  text-decoration: none;
}
#MainHeader .personal-menu-bottom {
  padding: 15px;
}

/* ナビゲーション 中川*/
#MainHeader {
  margin-bottom: 20px;
}
#MainHeader:not(.index){
  position: fixed;
  width: 100%;
  min-height:42px;
  max-height:42px;
  height:42px;
  z-index:9000;
}


.header-logo {
  padding-bottom: 20px;
  position: relative;
}
.header-logo.fix {
  padding-bottom: 0;
}

@media (max-width: 479px) {
  #MainHeader:not(.index){
    min-height:42px;
    height:40px;
  }
  .has-menu-above-large{
    padding-top:62px;
  }

  .navbar-toggle.chizuburari {
      margin-top: 0px;
  }

  .navbar-toggle {
      margin-right:8px;
  }
}



#Main {
  margin-top:42px;
  color: #4d4d49;
}
@media (max-width: 767px){
  #Main {
    margin-bottom: 40px;
  }
}

/*フッダー*/
footer {
  padding: 30px 0;
  background: #3C3C39;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 820px;
  width: 100%;
  margin: 0 auto 20px;
}

.footer-logo {
  width: 120px;
  margin: 0 12px 10px;
  text-align: center;
}

.footer-logo img {
  height: 46px;
}

.footer-inner > ul > li > a {
  color: #B4B4B4;
}

.links-list-wrapper {
  max-width: 460px;
  width: 100%;
  border-right: solid 1px #FFF;
}

.links-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 460px;
  width: 100%;
  margin: 0 20px 0 0;
}

.sns-list {
  display: flex;
  align-items: center;
  max-width: 180px;
  width: 100%;
  margin: 0;
}

.links-list li,
.sns-list li {
  text-align: center;
}

.links-list li {
  padding: 8px;
}

.links-list li a {
  color: #B4B4B4;
}

.sns-list li {
  padding: 12px;
}

.footer-logo-SP {
  display: none;
}

.copyright {
  color: #B4B4B4;
  font-size: 10px;
  margin: 0;
  text-align: center;
}

@media (max-width: 600px) {
  footer {
    padding-top: 30px;
  }
  .footer-inner {
    display: block;
    width:100%;
  }

  .footer-logo {
    display: none;
  }

  .links-list-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .links-list {
    display: block;
    margin:  0 0 50px;
    padding: 0 4%;
  }

  .links-list li {
    text-align: left;
  }

  .sns-list li {
    width: 50%;
    text-align: left;
    padding: 6px 12px;
  }

  .sns-list {
    margin: 0 auto 50px;
  }

  .footer-logo-SP {
    display: block;
    margin: 50px 0;
    text-align: center;
  }

  .footer-logo-SP img{
    height: 36px;
  }

  .copyright {

  }
}

@media (max-width: 479px) {
  footer{
    position:static;
  }
}

/* 地図、ボードの管理ページのヘッダー */
.edit-header {
  background-color: #f5f3ee;
  border-bottom: 1px solid #c9caca;
  border-top: 1px solid #c9caca;
  margin-top: 42px;
}
.edit-header-innerBox {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}
.edit-header a {
  position: absolute;
  left: 0;
  color: #000;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
}
.edit-header-title {
  font-size: 20px;
  font-weight: 300;
  line-height: 45px;
  margin: auto;
  text-align: center;
}

/* 地図、ボードの管理ページの地図下編集パネル */
.editPanel .map-controls-btn {
  color: #fff;
  border-color: #000;
}
.editPanel .map-controls-btn:hover {
  opacity: 0.8;
}

.editPanel .dropdown-menu{
  position:absolute;
  margin-top: 0;
}

.editPanel .highlight{
  position:absolute;
  top:0px;
  background-color:rgba(256,256,256,0.5);
  width:100%;
  height:100%;
}

.editPanel .drop-down,
.editPanel .drop-down ul,
.editPanel .drop-down ul li,
.editPanel .drop-down ul li a
{
  width:100%;
}
.editPanel .select-status-toggle,
.editPanel .select-board-toggle
{
  width:100%;
  background-color: #3c3c39;
  border-radius: 0;
  line-height: 33px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .editPanel .select-status-toggle,
  .editPanel .select-board-toggle {
    font-size: 12px;
    line-height: 24px;
  }
}
.editPanel-link {
  display: flex;
}
.editPanel-link a {
  background-color: #3c3c39;
  border-radius: 0;
  color: #fff;
  line-height: 32px;
  padding: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .editPanel-link a {
    line-height: 24px;
  }
}
.editPanel-link a:hover {
  color: #fff;
  opacity: 0.8;
}
.editPanel-link--edit {
  border-right: 1px solid #000;
}
.editPanel-link a span {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .editPanel-link a span {
    font-size: 12px;
  }
}
.editPanel-link a span:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.editPanel-link--edit span:before {
  background: url(/static/images/icon_pencil.svg) no-repeat left 2px/14px;
}
.editPanel-link--analysis span:before {
  background: url(/static/images/icon_analysis.svg) no-repeat left 1px/14px;
}
.editPanel .select-status-toggle {
  /* 角丸非対応 border-radius: 0 0 5px 5px;*/
}
.editPanel .dropdown.open>.dropdown-toggle.btn-default:focus,
.editPanel .dropdown.open>.dropdown-toggle.btn-default:hover {
  background-color: #3c3c39;
  color: #fff;
}
.editPanel .select-status-toggle {
  border-top: none;
  line-height: 34px;
}
@media screen and (max-width: 767px) {
  .editPanel .select-status-toggle {
    line-height: 24px;
  }
}
.editPanel .select-status-toggle span.status {
  display: inline-block;
  height: 24px;
  width: 24px;
  vertical-align: middle;
}
.editPanel .select-status-toggle span.status.public {
  background: url(/static/images/icon_status_published.svg) no-repeat 50% 1px/14px;
}
.editPanel .select-status-toggle span.status.private {
  background: url(/static/images/icon_status_limited.svg) no-repeat 50% 1px/14px;
}
.editPanel .select-status-toggle span.status.unpublished {
  background: url(/static/images/icon_status_unpublished.svg) no-repeat 50% 5px/12px;
}
.editPanel .select-status-toggle span.status.draft {
  background: url(/static/images/icon_status_draft.svg) no-repeat 50% 5px/12px;
}
.editPanel .dropdown .caret {
  border-radius: 2px;
  border-top-width: 5px;
  border-right-width: 5px;
  border-left-width: 5px;
}

.editPanel .tour-setting-btn {
  /**margin-top: 10px;**/
}
.editPanel .tour-setting-btn span.flag {
  display: inline-block;
  height: 24px;
  width: 24px;
  vertical-align: middle;
  margin-right: 5px;
  background: url(/static/images/icon_tour_flag.svg) no-repeat 50%;
}
.editPanel .contents {
  display:flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 1px 0px;
}
.editPanel .item {
  text-align: center;
}
.editPanel .contents label {
  color: #fff;
  font-weight: 400;
  margin: 3px;
  line-height: 33px;
}

.editPanel .contents span {
  color: #fff;
  font-weight: 400;
  margin: 3px;
}
/** switch frame design **/
.editPanel input.switch {
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 35px !important;
  height: 20px;
  border-radius: 30px;
  cursor: pointer;
  background: #ccc;
  transition: box-shadow 0.3s ease-in-out, padding 0.25s ease-in-out;
  transition-delay: 0.1s, 0s;
  vertical-align: sub;

}
.editPanel input.switch:focus {
  border: 0;
  outline: 0;
}
.editPanel input.switch:checked {
  transition-delay: 0s, 0s;
  box-shadow: inset 0 0 0 2.62857em #00c169 !important;
  padding-left: 15px;
}
/** boll design **/
.editPanel input.switch:before {
  display: inline-block;
  height: 14px;
  width: 14px;
  margin: 3px;
  background-color: #fff;
  border-radius: 2.1em;
  transition: all 0.1s ease 0.1s;
}

.editPanel input.switch:before, input.switch:after {
  content: "";
  display: block;
}
.editPanel input.switch:active::before {
  transition: all 0.1s ease 0.05s;
  transform: translateX(100%);

}

.editPanel .cannot_change {
  background-color: #727272;
}
.editPanel .cannot_use {
  background-color: #b0b0b0;
}
/*--------------------------------------------------
 for login.html
 for signup.html
 --ログイン周りのスタイル
--------------------------------------------------*/

.singup-done.container {
  min-height: calc(100% - 50px);
  height: auto;
}

.activated.container {
  min-height: calc(100% - 50px);
  height: auto;
}

.login#Main {
  margin: 0;
  padding-top: 0;
}
/* @media (max-width: 767px){
  .login#Main {
    overflow-y: scroll;
  }
} */
.login-title {
  font-size: 18px;
  margin: 10px 0 36px;
  text-align: center;
}
.login-read {
  margin-bottom: 16px;
}

.login .login-alert_messages {
  background-color: rgba(255, 255, 255, 0.5);
  margin: 30px auto 30px;
  padding: 12px 8px;
  width: 400px;
}
.login .login-alert_messages li {
  color: #ff3300;
  font-size: 18px;
  line-height: 1.5;
}

a.login-text-link {
  color: #836405;
  text-decoration: underline;
}

.login-login-link {
  width: 400px;
  margin: 20px auto;
  text-align: center;
}

.signup#Main {
  margin: 0;
  padding-top: 0;
}

.email#Main {
  margin: 0;
  padding-top: 0;
}


/* ログイン、新規登録 周り*/
.button-login,
a.button-login {
  display: block;
  background-color:#E6B336;
  color:#fff;
  font-size: 16px;
  width: 400px;
  height: 36px;
  line-height: 24px;
  margin: 0 auto;
}
.button-login:hover{
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
@media (max-width: 767px){
  .button-login,
  a.button-login{
    width:100%;
  }
  .login-login-link {
    width: 100%;
  }
}
/* .button-signup{
  width: 400px;
  background-color:#E6B336;
  border: none;
  box-shadow:0 2px 3px 0 #999;
  -moz-box-shadow:0 2px 3px 0 #999;
  -webkit-box-shadow:0 2px 3px 0 #999;
  color: #fff;
  font-size: 16px;
  font-weight: 300;;
  height: 36px;
}
@media (max-width: 767px){
  .button-signup {
    width:100%;
  }
} */


.login-signup-wrapper {
  width: 400px;
  margin: 0 auto 8px;
}
@media (max-width: 767px){
  .login-signup-wrapper {
    width: 100%;
  }
}
.login-resitsMail-wrapper {
  width: 400px;
  margin: 0 auto 8px;
}
@media (max-width: 767px){
  .login-resitsMail-wrapper {
    width: 100%;
  }
}

.login-list {
  margin: 0 0 0 12px;
}
.login-list li {
  position: relative;
  padding-left: 20px;
}
.login-list li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 6px;
  border-bottom: 3px solid #FFDD53;
  border-left: 3px solid #FFDD53;
  transform: rotate(-45deg);
}

.login-sns-wrapper {
    width: 300px;
    margin: 0 auto 8px;
}
@media (max-width: 767px){
  .login-sns-wrapper {
    width: 220px;
  }
}
.login-sns-wrapper a.button-twitter,
.login-sns-wrapper a.button-facebook,
.login-sns-wrapper a.button-google {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 38px;
  padding: 0;
}

.login-sns-wrapper a.button-twitter,
.login-sns-wrapper a.button-twitter:hover{
    background-color:#1da1f2;
    color:#fff;
}
.login-sns-wrapper a.button-twitter img{
    height:32px;
}

.login-sns-wrapper a.button-facebook,
.login-sns-wrapper a.button-facebook:hover{
    position: relative;
    background-color:#315096;
    color:#fff;
}
.login-sns-wrapper a.button-facebook img{
    position: absolute;
    top: 7px;
    width: 25px;
    height:25px;
}
.login-sns-wrapper a.button-facebook span{
    margin-left: 36px;
}
.login-sns-wrapper a.button-google,
.login-sns-wrapper a.button-google:hover{
    position: relative;
    background-color:#fff;
}
.login-sns-wrapper a.button-google img{
    position: absolute;
    top: 6px;
    width: 24px;
    height: 24px;
}
.login-sns-wrapper a.button-google span{
    margin-left: 34px;
}


.login-hr-container{
  position:relative;
  height:50px;
  margin: 20px 0;
}
.login-hr-container .line{
  background-color:#979797;
  border: none;
  width:100%;
  height: 1px;
  position:absolute;
  top:0;
  bottom:0;
  margin: auto;
}
.login-hr-container .text{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  height:20px;
  margin:auto;
  text-align:center;
  background-color: #fff;
}
.login-hr-container .text.colGray{
  background-color: #fafafa;
}
.login-hr-container .text.size50{
  width: 50px;
}
.login-hr-container .text.size250{
  width: 250px;
}

.login-input-group {
  width: 400px;
  margin: 0 auto 20px;
}
.login-input-group.login-forgot {
  text-align: center;
}
@media (max-width: 767px){
  .login-input-group {
    width: 220px;
  }
}

.login-agree {
  display: flex;
  align-items: center;
  width: 400px;
  margin: 0 auto 30px;
  padding: 12px 24px;
  background-color: #F5F3EE;
  border-radius: 8px;
}
.login-agree-check input {
  display: none;
}
.login-agree-check label {
  position: relative;
  border: 1px solid #979797;
  background-color: #fff;
  width: 24px;
  height: 24px;
}
.login-agree-check label:before {
  content: '';
  display: none;
  position: absolute;
  border-left: 3px solid #E6B336;
  border-bottom: 3px solid #E6B336;
  transform: rotate(-45deg);
  width: 16px;
  height: 8px;
  top: 4px;
  left: 3px;
}
.login-agree-check input:checked + label:before {
  display: block;
}
.login-agree-text {
  margin-left: 20px;
  font-weight: 300;
}
@media (max-width: 767px){
  .login-agree {
    width: 100%;
  }
}

.login-learn-more {
  display: block;
  margin: 20px 0 40px;
  text-align: center;
}
.signup .login-learn-more {
  margin-bottom: 0;
}



.login-warning {
  width: 400px;
  padding: 12px 20px;
  margin: 16px auto;
  color: #ff3300;
  background-color: #eeeeee;
}
@media (max-width: 767px){
  .login-warning {
    width: 100%;
  }
}

/* signup done */
.signup-done {
  width: 410px;
  margin: 0 auto;
}
.signup-done-img {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.signup-done-title {
  margin: 0 0 50px;
  text-align: center;
}
.signup-done-desc {
  margin-bottom: 32px;
}
.signup-done-note {
  background-color: #F5F3EE;
  border-radius: 5px;
  padding: 12px 16px;
}
.signup-done-note strong {
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 767px){
  .signup-done {
    width: 100%;
  }
  .signup-done-title {
    background-position: 60% 30px;
  }
}
@media (max-width: 320px){
  .signup-done-title {
    background-position: 64% 30px;
  }
}


/* signup done */
.footer-fixed {
  height: calc(100% - 50px);
}
@media (max-width: 767px){
  .footer-fixed {
    /* height: calc(100% - 45px); */
    height: 100%;
  }
}
.activated-wrapper {
  width: 410px;
  margin: 0 auto 50px;
  text-align: center;
}
@media (max-width: 767px){
  .activated-wrapper {
    width:  100%;
  }
}

.activated-wrapper img {
  width: 100%;
  width: 80%;
}
.activated-title {
  margin: 0 0 50px;
  padding-top: 50px;
}
@media (max-width: 767px){
  .activated-title {
    padding-top: 0;
  }
}
.activated-desc {
  margin-bottom: 32px;
}
.activated-btn {
  background-color: #fbc644;
  border: none;
  border-radius: 4px;
  color: #fff;
  display: block;
  line-height: 35px;
  max-width: 200px;
  margin: 0 auto;
  width: 100%;
}
.activated-btn:hover,
.activated-btn:focus {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
@media (max-width: 767px){
  .activated {
    width: 100%;
  }
  .activated-title {
    background-position: 60% 30px;
  }
}
@media (max-width: 320px){
  .activated-title {
    background-position: 64% 30px;
  }
}




/*--------------------------------------------------
 for search.html
--------------------------------------------------*/
#MainHeader .header-logo.top {
  display: none;
}
#MainHeader.fix .header-logo.top {
  display: block;
}

.search .search-top {
  position: relative;
  padding-bottom: 20px;
  background-color: #f5f3ee;
}
.search .search-top .search-top__logo {
  padding: 10px 0;
  text-align: center;
}
.search .search-top .search-top__logo img{
  width:250px;
  height: 110px;
}
@media (max-width: 600px) {
  .search .search-top .search-top__logo img{
    width:120px;
    height: 53px;
  }
}
.search .search-top .search-top__input {
  width: 300px;
  max-width: 300px;
  margin: 0 auto;
}
.search .search-top .search-top__input__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.search .search-top .search-top__input__flex input {
  border: none;
  display: block;
  width: 100%;
  height: 34px;
  margin-bottom: 15px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  border-radius: 8px 0 0 8px;
}
.search .search-top .search-top__input__flex button {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  position: relative;
  background-color: #e6b336;
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  height: 34px;
}

.search .search-top .search-top__input__toggle-btn {
  background: url(/static/images/icon_GPS_1.svg) no-repeat #fff 6px 50% / 12px;
  bottom: -12px;
  border: 1px solid #fbc644;
  border-radius: 25px;
  color: #846506;
  cursor: pointer;
  display: block;
  font-size: 12px;
  height: 25px;
  left: 0;
  line-height: 25px;
  margin: auto;
  padding: 0 22px;
  position: absolute;
  right: 0;
  width: 245px;
}
.search .search-top .search-top__input__toggle-btn.active,
.search .search-top .search-top__input__toggle-btn:active {
  background: url(/static/images/icon_GPS_1.svg) no-repeat #fff 6px 50% / 12px;
}
.search .search-top .search-top__input__toggle-btn:hover {
  opacity: 0.8;
  text-decoration: none;
}
.search .search-top .search-top__input__toggle-btn.active{
  border-color:#daa520;
  background-color:#fff;
}



.search .search-bottom {
  padding-top:55px;
}
.search .search-block .search-block-btn {
  background-color: #e6b336;
  border: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #fff;
  height: 34px;
}
.search .search-block .search-block-btn:hover {
  opacity: 0.8;
}
.search .search-bottom .search__isNotLogin {
  margin: 0 0 20px;
  text-align: center;
}
.search .search-bottom .search__isNotLogin a {
  color: #333;
}
.search .search-bottom .search__isNotLogin a:hover {
text-decoration: underline
}
.search .search-bottom .container {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .search .search-bottom .container {
    padding-top: 0;
  }
}
/* .end for search.html　------------------------------*/


/*--------------------------------------------------
 for map.html
--------------------------------------------------*/
#Main.map-detail {
  margin-top:50px;
  height:100%;
}

@media screen and (max-width: 767px) {
  #Main.map-detail {
    margin-top: 0;
  }
  #Main.map-detail .container {
    padding: 0;
  }
}

.embedmap-map {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.embedmap-map-image {
  position: relative;
  width: 100%;
  padding-top: 66%;
  overflow: hidden;
  border: 1px solid #F5F3EE;
}
/*@media screen and (max-width: 767px) {*/
  /*.embedmap-map-image {*/
    /*padding-top: 100%;*/
  /*}*/
/*}*/
.embedmap-map-image .embedmap-map-image-thumbnail {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
}
.embedmap-map-viewerLink {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 10;
  margin: auto;
  background: url(../images/icon_switch_viewer.png) #FBC644 no-repeat 12px 50%;
  border-radius: 21px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  width: 220px;
  line-height: 28px;
  padding-left: 38px;
}
.embedmap-map-viewerLink:hover {
  color: #fff;
  opacity: 0.9;
  text-decoration: none
}

.embedmap-map-image #map-container{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #F5F3EE;
  cursor:pointer;
}

iframe.embedmap{
  border:none;
}

.embedmap-link {
  display: flex;
  position: relative;
  z-index: 1;
  margin-top: -1px;
  border-top: 1px solid #000;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.embedmap-link a {
  border-radius: 0;
  color: #fff;
  line-height: 34px;
  padding: 0;
  text-align: center;
  width: 50%;
}
.embedmap-link a:hover {
  color: #fff;
  opacity: 0.8;
}
.embedmap-link--edit, .embedmap-link--analysis {
  background-color: #3c3c39;
}
.embedmap-link--edit span, .embedmap-link--analysis span {
  display: inline-block;
  vertical-align: middle;
}
.embedmap-link--edit span:before, .embedmap-link--analysis span:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.embedmap-link--edit {
  border-right: 1px solid #000; }
.embedmap-link--edit span:before {
  background: url(../images/icon_pencil.svg) no-repeat left 2px/14px;
}
.embedmap-link--analysis span:before {
  background: url(../images/icon_analysis.svg) no-repeat left 1px/14px;
}
.embedmap-published {
  position: relative;
}
.embedmap-published-btn {
  background-color: #3c3c39;
  border: 1px solid #000;
  border-radius: 0 0 5px 5px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 34px;
  min-height: 36px;
  padding: 0;
  text-align: center;
  width: 100%;
}
.embedmap-published-btn:hover {
  opacity: 0.8;
}
.embedmap-published ul {
  margin: 0;
  padding-left: 0;
  background-color: #727171;
  margin-top: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 160px;
  padding: 5px 0;
  text-align: left;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  width: 350px; }
.embedmap-published ul li {
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .embedmap-published ul {
    width: 100%;
  }
}
.embedmap-published ul.open {
  display: block;
}
.embedmap-published ul a {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 400;
  line-height: 20px;
  padding: 3px 20px;
  white-space: nowrap;
}
.embedmap-published ul a.active {
  background-color: #fff;
  color: #000;
  padding-left: 38px;
}
.embedmap-published ul a.active:before {
  position: absolute;
  top: 5px;
  left: 24px;
  content: '';
  border-right: 4px solid #000;
  border-bottom: 4px solid #000;
  box-sizing: content-box;
  transform: rotate(45deg);
  width: 3px;
  height: 10px;
  box-sizing: content-box;
}
.embedmap-published ul a:hover {
  background-color: #F3F3F3;
  color: #4a4a4a;
}
.embedmap-published span.status {
  display: inline-block;
  height: 24px;
  width: 24px;
  vertical-align: middle;
}
.embedmap-published span.status.public {
  background: url(../images/icon_status_published.svg) no-repeat 50% 1px/14px;
}
.embedmap-published span.status.private {
  background: url(../images/icon_status_limited.svg) no-repeat 50% 1px/14px;
}
.embedmap-published span.status.unpublished {
  background: url(../images/icon_status_unpublished.svg) no-repeat 50% 5px/12px;
}
.embedmap-published span.status.draft {
  background: url(../images/icon_status_draft.svg) no-repeat 50% 5px/12px;
}
.embedmap-published span.status.public.cannot_change {
  background-color: #727272;
}
.embedmap-published span.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-radius: 2px;
  border-top-width: 5px;
  border-right-width: 5px;
  border-left-width: 5px;
}



.map-detail-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.map-detail-head-title {
  flex: 1;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  margin: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.map-detail-head-title.inline_ellipsis {
  cursor: auto;
}
.map-detail-head-title span {
  display: inline-block;
  vertical-align: bottom;
}
/*.map-detail-head-title span:hover {
  text-decoration: underline;
}*/
.map-detail-head-right {
  position: relative;
  display: flex;
  padding-right: 65px;
}
.map-detail-head-snsBtns {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 30px;
}
.map-detail-head-snsBtns .map-detail-sns-btn {
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/icon_sns_more.svg) no-repeat 50%;
  text-indent: -9999px;
}
.map-detail-head-snsBtns .map-detail-sns-list {
  display: none;
  position: absolute;
  right: 0;
  min-width: 120px;
  padding: 16px 10px;
  margin: 40px 0 0;
  background-color: #F4F3ED;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.map-detail-head-snsBtns .map-detail-sns-list:before {
  content: '';
  display: block;
  position: absolute;
  right: 8px;
  top: -8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid #F4F3ED;
}
.map-detail-head-snsBtns .map-detail-sns-list.active {
  display: block;
}
.map-detail-head-snsBtns .map-detail-sns-list li > * {
  display: block;
  padding-left: 20px;
  line-height: 30px;
  background: no-repeat left 50%;
}
.map-detail-head-snsBtns .map-detail-sns-list li a {
  color: #4d4d49;
}
.map-detail-head-snsBtns #MapShareShowBtn {
  background-image: url(../images/icon_share_b.svg);
}
.map-detail-head-snsBtns #LikeBtn {
  cursor: pointer;
  background-image: url(../images/icon_like_off.svg);
}
.map-detail-head-snsBtns #DownloadBtn {
  background-image: url(../images/icon_download_b.svg);
}

@media screen and (max-width: 767px) {
  .map-detail-head {
    margin-bottom: 30px;
  }
  .map-detail-head-right {
    padding-right: 36px;
  }
  .map-detail-head-snsBtns {
    right: 0;
  }
}


.map-detail-texts {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .map-detail-texts {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.map-detail-texts-groupLink a {
  margin-bottom: 24px;
  color:#000;
}
.map-detail-texts-groupLink a:hover {
  text-decoration: underline;
}

.map-detail-upper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  /*margin-bottom: 20px;*/
}
.map-detail-upper-profile {
  display: flex;
  justify-content: space-between;
}
/* サムネイル(30px,75px,100px,) */
.map-detail-upper-thumb--30 {
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  display:inline-block;
  min-width: 30px;
  width: 30px;
  height: 30px;
}
.map-detail-upper-thumb--30:hover {
  opacity: 0.8;
}
.map-detail-upper-user-info {
  color: #979797;
  padding-top: 2px;
  margin-left: 5px;
  font-size: 10px;
  display: inline-block;
  line-height: 1.2;
  vertical-align: top;
}
.map-detail-upper-person-name {
  color: #4d4d49;
  font-size: 13px;
  line-height: 1.2;
}
.map-detail-upper-postDate {
  font-size: 0.75rem;
  margin: 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .map-detail-postDate {
    position: absolute;
    top: -40px;
    right: 0;
  }
}

.map-detail-under-license {
  float: right;
  display: flex;
  align-items: center;
  margin: 0;
  max-width: 400px;
}
.map-detail-under-license .license-icon {
  min-width: 36px;
  padding-right: 12px;
}
@media screen and (max-width: 767px) {
  .map-detail-under-license {
    float: none;
    margin-bottom: 20px;
  }
}

.map-detail-desc {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
}

.map-detail-tags {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}
.map-detail-tags li {
  display: inline-block;
}
.map-detail-tags li a {
  color: #FBC644;
}

.embedmap-desc a img {
  width: auto;
  height: 27px;
}

.map-detail-datum {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .map-detail-datum {
    margin: 50px 0;
  }
}
.map-detail-datum-btn {
  cursor: pointer;
  margin: 0 auto 60px;
  width: 300px;
  background-color: #f5f3ee;
  border: 1px solid #979797;
  border-radius: 4px;
  color: #4d4d49;
  display: block;
  line-height: 33px;
  text-align: center;
}
.map-detail-datum-btn:hover {
  opacity: 0.8;
  color: #4d4d49;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .map-detail-datum-btn {
    width: 100%;
    margin-bottom: 50px;
  }
  .map-detail-datum-btn:hover {
    text-decoration: none;
  }
}
.map-detail-datum-btn span {
  position: relative;
}
.map-detail-datum-btn span:before {
  content: '';
  display: block;
  background: url(../images/icon_plus.png) no-repeat 50%;
  position: absolute;
  left: -22px;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
}
.map-detail-datum-btn.view span:before {
  background: url(../images/icon_minus.png) no-repeat 50%;
}
.map-detail-datum-list {
  border-radius: 5px;
  border: 1px solid #F3F3F3;
  display: none;
}
.map-detail-datum-list.active {
  display: block;
}
.map-detail-datum .data-item-container {
  display: flex;
}
.map-detail-datum .data-item-container .data-item-name {
  background-color: #F5F3EE;
  border-left: 1px solid #F5F3EE;
  border-bottom: 1px solid #fff;
  min-height: 70px;
  padding: 25px;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .map-detail-datum .data-item-container .data-item-name {
    width: 20%;
    padding: 25px 8px;
    min-width: 110px;
  }
}
.map-detail-datum .data-item-container .data-item-data,
.map-detail-datum .data-item-container .dc_reference {
  -webkit-flex: 1;
  flex: 1;
  min-height: 70px;
  padding: 25px;
}
@media screen and (max-width: 767px) {
  .map-detail-datum .data-item-container .data-item-data,
  .map-detail-datum .data-item-container .dc_reference {
    padding: 25px 18px;
  }
}
.map-detail-datum .data-item-container .dc_reference a {
  color:#fbc644;
}

.map-detail-datum .data-item-container:not(:last-child) .data-item-data,
.map-detail-datum .data-item-container .dc_reference {
  border-bottom: 1px solid #F3F3F3;
}
.map-detail-datum .data-item-container:last-child .data-item-name {
  border-bottom: none;
}

.embedmap-recommended {
  background-color: #F5F3EE;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .embedmap-recommended {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.embedmap-recommended-thumb {
  width: 100%;
}
.embedmap-recommended-title {
  font-size: 18px;
  font-weight: 600;
  margin: 26px auto 46px;
  max-width: 900px;
}
.embedmap-recommended ul {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .embedmap-recommended ul {
    display: block;
  }
}
.embedmap-recommended ul li {
  list-style-type: none;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .embedmap-recommended ul li {
    width: 100%;
    margin-bottom: 50px;
  }
}
.embedmap-recommended-list-title {
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin: 14px 0 5px;
  color: #4A4A4A;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.embedmap-recommended-list-groupName {
  display: block;
  margin: 0 0 24px;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.embedmap-profile {
  display: flex;
  margin-bottom: 20px;
}
.map-detail-profile-thumb--30 {
    background-color: #FAFAFA;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 50%;
    min-width: 30px;
    width: 30px;
    height: 30px;
}
.map-detail-user-info {
    color: #979797;
    margin-left: 5px;
    font-size: 10px;
    line-height: 1.2;
    vertical-align: top;
}
.map-detail-desc-person-name {
    display: block;
    color: #4d4d49;
    font-size: 13px;
    line-height: 1.2;
    margin-top: 4px;
}

.embedmap-share {
  display: none;
}
.embedmap-share.view {
  display: block;
}
.embedmap-share-input {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 5px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 30px;
  padding: 0 8px;
  width: 100%;
  -ms-user-select: none; /* IE 10+ */
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.copy-box {
  position: relative;
  max-width: 400px;
  margin: 0 auto 30px;
}
.copy-box .indicate-copied {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 8px;
  font-size: 12px;
  line-height: 30px;
  background-color: #666;
  color: #fff;
  border-radius: 0 5px 5px 0;
}
.embedmap-share-checkbox {
  width: 90%;
  margin: 10px auto;
}
.embedmap-share-checkbox input[type="checkbox"] {
  display: none;
}
.embedmap-share-checkbox label {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  padding-left: 30px;
  position: relative;
}
.embedmap-share-checkbox label:before {
  content: '';
  position: absolute;
  left: 0;
  z-index: 1;
  color: #ccc;
  background-color: #3AAFDA;
  width: 20px;
  height: 20px;
}
.embedmap-share-checkbox input[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  z-index: 2;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
  width: 4px;
  height: 12px;
  box-sizing: content-box;
}
.embedmap-share-list {
  display: flex;
  justify-content: space-between;
  width: 360px;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  /* border-bottom: 1px solid #F5F3EE; */
  list-style-type: none;
}
.embedmap-share-list li {
  text-align: center;
}
.embedmap-share-list li a {
  display: inline-block;
  border-radius: 0;
  color: #70706b;
  font-size: 14px;
  line-height: 50px;
  padding: 0;
}
.embedmap-share-list li.active a {
  color: #000;
}
@media screen and (max-width: 767px) {
  .embedmap-share-list li a {
    padding: 0 6px;
  }
}
.embedmap-share-list li.active a,
.embedmap-share-list li a:focus,
.embedmap-share-list li a:hover {
  background-color: transparent;
  border-bottom: 2px solid #FBC644;
  color: #4a4a4a;
  text-decoration: none;
}
/* .embedmap-share button.close {
  margin-top: -2px;
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
}
.embedmap-share button.close img {
  width: 24px;
  height: auto;
}
.embedmap-share-header {
  display: block; }
.embedmap-share .jsShareBody {
  display: block;
}
.embedmap-share .jsShareBody.hide {
  display: none;
}
.embedmap-share .jsShareBodyShare .sns-list {
  display: flex;
  justify-content: space-around;
  max-width: 300px;
  margin: 0 auto 20px;
}
.embedmap-share .jsShareBodyShare .sns-list img:not(:last-child) {
  margin-right: 10px;
}
.embedmap-share .jsShareBodyShare .sns-list a {
  display: block;
  min-width: 20%;
}
.embedmap-share .jsShareBodyEmbed {
  padding-top: 20px;
}
.embedmap-share .jsShareBodyEmbed-formGroup {
  margin-bottom: 8px;
}
.embedmap-share .jsShareBodyEmbed-formGroup input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 0;
  vertical-align: middle;
}
.embedmap-share .jsShareBodyEmbed-formGroup label {
  margin-bottom: 0;
  font-weight: normal;
  color: #5c5c5c;
  vertical-align: middle;
}
.embedmap-share .jsShareBodyQR {
  text-align: center;
}
.embedmap-share .jsShareBodyQR .ShareBodyQR-QRimg img {
  margin-bottom: 15px;
  min-width: 150px;
  width: 100%;
  max-width: 230px;
  text-align: center;
}
.embedmap-share .jsShareMapID {
  padding-top: 20px;
} */

.panel {
  color: #4A494A;
}

.md-modal {
  position: fixed;
  z-index: 9001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.md-modal-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 500px;
  max-height: 80%;
  height: 300px;
}
@media (max-width: 767px) {
  .md-modal-inner {
    width: 92%;
  }
}
.md-modal-inner button.close {
  width: 20px;
}
.md-modal-head {
  margin-bottom: 30px;
  text-align: center;
}
.md-modal-head h1 {
  font-size: 22px;
  font-weight: 600;
}
.md-modal-head p {
  font-size: 18px;
  font-weight: 600;
}
.md-modal .panel {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  overflow: hidden;
}
.md-modal .panel-heading {
  position: absolute;
  top: 0;
  z-index: 10;
  background-color: #fff;
  border-bottom: 2px solid #cccccc;
  font-size: 18px;
  font-weight: 300;
  padding: 15px;
  width: 100%;
  text-align: center;
}

.md-modal .panel-body {
  background-color: #fff;
  height: 100%;
  padding: 60px 15px;
}
.md-modal .panel-footer {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 100%;
  background-color: #F5F3EE;
  border-top: none;
}
.md-modal .panel-footer .btn-ok {
  background-color: #E6B336;
  border-color: #E6B336;
  color: #fff;
  display: block;
  line-height: 33px;
  max-width: 300px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.md-modal .panel-footer .btn-ok:hover {
  background-color: #fff;
  color: #E6B336;
}
.md-modal .panel-footer .btn-add {
  display: block;
  border: 1px solid #979797;
  border-radius: 5px;
  cursor: pointer;
  line-height: 33px;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
.md-modal .panel-footer .btn-add:hover {
  background-color: #f3f3f3;
  opacity: 0.8;
}
.md-modal .panel-footer .btn-add > span:before {
  content: '';
  display: inline-block;
  background: url(../images/icon_plus.png) no-repeat 50%;
  width: 10px;
  height: 10px;
  margin-right: 16px;
}
.md-modal .panel-footer.has-add-btn {
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.md-modal .map-share-modal-header {
  border-bottom: 2px solid #cccccc;
}
.md-modal .map-share-modal button img {
  width: 24px;
  height: auto;
}
.md-modal .map-share-modal-body {
  min-height: 200px;
}
.md-modal .map-share-modal-shareBtns {
  display: flex;
  justify-content: space-around;
  max-width: 170px;
  margin: 0 auto;
  padding: 5px 0 20px;
}
.md-modal .map-share-modal-shareBtns a {
  display: block;
}
.md-modal .map-share-modal-shareBtns img {
  width: 50px;
  height: auto;
}
.md-modal-buttons {
  display: flex;
  justify-content: space-between;
  width: 400px;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .md-modal-buttons {
    display: block;
    width: 100%;
  }
}
.md-modal-buttons-open,
.md-modal-buttons-continue {
  display: block;
  width: 48%;
  text-align: center;
}
@media (max-width: 767px) {
  .md-modal-buttons-open,
  .md-modal-buttons-continue {
    width: 100%;
  }
}
.md-modal-buttons-open:hover,
.md-modal-buttons-continue:hover {
  opacity: 0.8;
  text-decoration: none;
}
.md-modal-buttons-open {
  background-color: #fbc644;
  color: #fff;
  border-radius: 4px;
  line-height: 35px;
}
@media (max-width: 767px) {
  .md-modal-buttons-open {
    margin-bottom: 20px;
  }
}
.md-modal-buttons-continue {
  background-color: #fff;
  border: 1px solid #979797;
  border-radius: 4px;
  color: #333;
  line-height: 33px;
}
.md-modal-buttons-open:hover {
  color: #fff;
}
.md-modal-buttons-continue:hover {
  color: #333;
}
#MapShare.modal {
  top: 0;
}
#MapShare .md-modal-inner {
  height: 520px;
}
@media (max-width: 767px) {
  #MapShare .md-modal-inner {
    height: 520px;
  }
}



.inline_ellipsis{
    cursor:pointer;
}
.tags a{
    color:#fbc644;
}

.map-share-modal-header {
  border-bottom: 2px solid #cccccc;
}
.map-share-modal-header button img {
  width: 24px;
  height: auto;
}
.map-share-modal-header .nav-pills.map-share-list > li > a {
  color: #40403d;
  font-size: 14px;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
}
.map-share-modal-header .nav-pills.map-share-list > li.active > a {
  background-color: #e6b336;
  color: #fff;
}
.map-share-modal-body {
  min-height: 200px;
}
.map-share-modal-body .jsShareBody {
  margin-bottom: 30px;
}
@media (max-width: 767px){
  .map-share-modal-body .jsShareBody {
    margin-bottom: 50px;
  }
}
.map-share-modal-body .jsShareBody.jsShareBodyQR {
  margin-bottom: 60px;
}
@media (max-width: 767px){
  .map-share-modal-body .jsShareBody.jsShareBodyQR {
    margin-bottom: 80px;
  }
}
.map-share-modal-body .sns-list {
  display: flex;
  justify-content: space-around;
  width: 320px;
  max-width: 100%;
  margin: 0 auto 30px;
}
.map-share-modal-body .sns-list img {
  width:  50px;
  height: auto;
  margin: 0 6px;
}

.jsShareBodyShare .map-share-modal-shareBtns {
  display: flex;
  justify-content: space-around;
  max-width: 170px;
  margin: 0 auto;
  padding: 5px 0 20px;
}
.jsShareBodyShare .map-share-modal-shareBtns a {
  display: block;
}
.jsShareBodyShare .map-share-modal-shareBtns img {
  width: 50px;
  height: auto;
}
.jsShareBodyEmbed-formGroup {
  margin-bottom: 8px;
}
.jsShareBodyEmbed-formGroup input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 0;
  vertical-align: middle;
}
.jsShareBodyEmbed-formGroup label {
  margin-bottom: 0;
  font-weight: normal;
  color: #5c5c5c;
  vertical-align: middle;
}
.jsShareBodyQR .ShareBodyQR-QRimg {
  text-align: center;
}
.jsShareBodyQR .ShareBodyQR-QRimg img {
  width: 100%;
  max-width: 250px;
}
.jsShareBodyQR .qr-btn {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 30px;
  background-color: #fbc644;
  color: #fff;
  border-radius: 4px;
  line-height: 35px;
  text-align: center;
}
.jsShareBodyQR .qr-btn:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* .end for map.html　------------------------------*/

.map-sort-type {
  margin: 0 15px 20px 0;
  text-align: right;
}
.map-sort-type-body {
  float: right;
  width: 300px;
  position: relative;
}
.map-sort-type-selected {
  color: #979797;
  font-size: 13px;
  vertical-align: middle;
}
.map-sort-type-btn {
  cursor: pointer;
  padding: 8px 6px;
  vertical-align: middle;
}
.map-sort-type-list.active {
  display: block;
}
.map-sort-type-list {
  /* display: none; */
  position: absolute;
  z-index: 1100;
  top: 34px;
  background-color: #F5F3EE;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  text-align: left;
}
.map-sort-type-list li {
  background-color: #F5F3EE;
}
.map-sort-type-list li:nth-child(even) {
    background-color: #EAEAEA;
}
.map-sort-type-list li a {
  display: block;
  color: #4d4d49;
  cursor: pointer;
  padding: 10px 15px;
  line-height: 20px;
}
.map-sort-type-list li a:hover {
  background: none;
  text-decoration: underline;
}


#MapList{
  width:100%;
  margin: auto;
}
#YourMapList {
  display: flex;
  flex-wrap: wrap;
}
.map-list {
  display: flex;
  flex-wrap: wrap;
}
.map-list .zero {
  display: inline-block;
  margin: 50px auto;
}
.map-list .zero > p {
  font-size: 18px;
  color: #E6B336;
  font-weight: 600;
}

.map-list-ttl {
  margin: 24px 0 30px;
}
.map-list-item {
  width: 30%;
  min-height:80px;
  margin-bottom: 40px;
}
.map-list-item:not(:nth-child(3n+3)) {
  margin-right: 5%;
}
@media (max-width: 960px){
  .map-list-item {
    width: 25%;
    min-width: 205px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px){
  .map-list-item {
    width: 48%;
    padding: 0;
  }
  .map-list-item:not(:nth-child(3n+3)) {
    margin-right: 0;
  }
  .map-list-item:not(:nth-child(2n+2)) {
    margin-right: 4%;
  }
}
@media (max-width: 481px){
  .map-list-item {
    width: 100%;
    padding: 0;
  }
  .map-list-item:not(:nth-child(2n+2)) {
    margin-right: 0;
  }
}

.map-list-item .map-upper {
  cursor: pointer;
  position: relative;
  border: 1px solid #979797
}
.map-list-item .map-upper:hover {
  opacity: 0.8;
}
.map-list-item .map-upper img.map-image{
  position: relative;
  z-index: 0;
  max-width: 100%;
}
.map-list-item .map-upper .map-image img {
  width:100%;
}
.map-list-item .map-upper.unpublished:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  cursor: pointer;
}
.map-list-item .map-upper.unpublished:hover {
  opacity: 0.8;
}

.map-list-item .map-info .title a {
  color: #4d4d49;
}

.map-list-item .select-status-item,
.map-list-item .select-board-item
{
  color:#fff;
}
.map-list-item .select-status-item.active,
.map-list-item .select-board-item.active
{
  background-color: #fff;
  color:#000;
}

.map-list-item .map-desc {
  margin-top: 14px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .map-list-item .map-desc {
    margin-top: 14px;
  }
}
.map-list-item .map-desc-title {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .map-list-item .map-desc-title {
    margin-bottom: 5px;
  }
}
.map-list-item .map-desc-title a {
  color:#4A4A4A;
  font-weight: 600;
}
.map-list-item .map-desc-board {
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .map-list-item .map-desc-board {
    margin-bottom: 14px;
  }
}
.map-list-item .map-desc-board:hover {
  text-decoration: underline;
}
.map-list-item .no-board {
  cursor: default;
}
.map-list-item .no-board:hover {
  text-decoration: none;
}
.map-list-item .map-desc-person {
  display: flex;
  position: relative;
  margin-bottom: 8px;
}
.map-list-item .map-desc-person-thumb {
  position: relative;
  line-height: 1;
  margin-right: 8px;
}
.map-list-item .map-desc-person-thumb:hover {
  opacity: 0.8;
}
.map-list-item .map-desc-person-right {
  display: flex;
  justify-content: space-between;
  -webkit-flex: 1;
  flex: 1;
}
.map-list-item .map-desc-author {
  color: #979797;
  font-size: 12px;;
  line-height: 1.2;
}
.map-list-item .map-desc-author-label {
  color: #979797;
  display: flex;
  font-size: 12px;;
  justify-content: space-between;
  line-height: 1.2;
}
.map-list-item .map-desc-author-name a {
  color: #4d4d49;
  font-size: 12px;;
  line-height: 1.2;
  margin-top: 4px;
}
.map-list-item .map-desc-lastModified {
  color: #979797;
  font-size: 12px;
  line-height: 1.2;
}
.map-list-item .map-desc-lastModified-label {
  display: block;
}
.map-list-item .map-desc-lastModified-date {
  color: #979797;
  font-size: 12px;
  line-height: 1.2;
}
.map-list-item .map-desc-like,
.map-detail-texts .map-desc-like {
  background: url(/static/images/icon_follow_like.svg) no-repeat left 50%/14px;
  color: #9B9B9B;
  margin-top: 5px;
  padding-left: 20px;
  display: inline-block;
}
.map-detail-texts .map-desc-like {
  margin-bottom: 20px;
}

/* lab button */
.map-list-item .map-desc-lab {
  display: inline-block;
  height: 20px;
  margin-left: 12px;
  vertical-align: top;
}
.map-list-item .map-desc-lab a {
  display:block;
  height: 100%;
  text-align:center;
  text-decoration:none;
}
.map-list-item .map-desc-lab a:hover {
  opacity: 0.8;
}
.map-list-item .map-desc-lab a img {
  width: auto;
  height: 100%;
  vertical-align: top;
  background-color:#dddddd;
}

/* preview viewer button */
.map-list-item .map-desc-try {
  display: inline-block;
  margin-left: 12px;
}

.map-list-item .map-desc-try a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: linear-gradient(to top, #e9e9e9 0%, #f2f2f2 40%, #ffffff 100%);
  font-size: 12px;
  color: #4A4A4A;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border: 1px solid #cccccc;
}

.map-list-item .map-desc-try a:hover,
.map-list-item .map-desc-try a:active {
  opacity: 0.75;
  text-decoration: none;
}

.map-list-item .overlay-topleft{
  position: absolute;
  top: 9px;
  left: 5px;
  z-index: 1;
}

.map-list-item .overlay-topright{
  position:absolute;
  top:5px;
  right:5px;
  min-height:200px;
  max-height:200px;
}

.map-list-item span.plan_pr {
  display: inline-block;
  height: 24px;
  width: 20%;
  vertical-align: middle;
  background: url(/static/images/mypage/premium.svg) no-repeat 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.map-list-item span.plan_bs {
  display: inline-block;
  height: 24px;
  width: 20%;
  vertical-align: middle;
  background: url(/static/images/mypage/basic.svg) no-repeat 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.map-list-item span.plan_fr {
  display: inline-block;
  height: 24px;
  width: 20%;
  vertical-align: middle;
  background: url(/static/images/mypage/free.svg) no-repeat 100%;
  position: absolute;
  top: 0;
  left: 0;
}


.has-no-map {
  max-width: 440px;
  margin: 30px 0;
  text-align: center;
}

.has-no-map.zero p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .has-no-map.zero p {
    font-size: 16px;
  }
}
.has-no-map-img {
  width: 80%;
  max-width: 200px;
  margin: 0 auto 30px;
}

.has-no-map-img img {
  width: 100%;
  height: auto;
}

.has-no-map-btn {
  -webkit-appearance: none;
  display: block;
  position: relative;
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
  border: 2px solid #FFE39F;
  border-radius: 4px;
  color: #E6B336;
  line-height: 44px;
  text-align: center;
}


.mapInfoIcon{
  padding:10px 2px 0px 2px;
}
.mapInfoIcon > div{
  display:inline-block;
  padding:0;
  width:20px;
  height:20px;
  overflow: hidden;
  color:rgba(0,0,0,0);
}

.mapInfoIcon .lock{
  background: url(/static/images/lock.svg) no-repeat 50%;

}
.mapInfoIcon .wrench{
  background: url(/static/images/wrench.svg) no-repeat 50%;
}

.mapOppIcon *{
  background-color:#fff;
  margin:0;
  font-size:40px;
  color:#3394d2;
}


table.mapPageMetaData tr th,
table.mapPageMetaData tr td{
  border:none;
}
table.mapPageMetaData tr th{
  font-weight:normal;
}

table.mapPageMetaData tr td{
  font-weight:bold;
}


.map-list-item .overlay-bottomright{
  position:absolute;
  bottom:5px;
  right:5px;
}


.map-list-item .highlight .overlay-middle{
  position:absolute;
  top:45%;
  margin-left:10px;
}

.flex-layout-loadmore-container{
  text-align:center;
}

.st-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 34px;
  padding-bottom: 40px;
}
.st-pager > * {
  min-width: 20px;
  font-size: 16px;
  text-align: center;
}
.st-pager a {
  cursor: pointer;
  display: block;
  color: #E6B336;
}
.st-pager .st-pager-prev,
.st-pager .st-pager-next {
  position: absolute;
}
.st-pager .st-pager-prev {
  left: 0;
}
.st-pager .st-pager-next {
  right: 0;
}
.st-pager .st-pager-prev:before,
.st-pager .st-pager-prev:after,
.st-pager .st-pager-next:before,
.st-pager .st-pager-next:after {
  content: '';
  position: absolute;
  top: 10px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #B4B4B4;
}
.st-pager .st-pager-prev:before,
.st-pager .st-pager-prev:after {
  border-left: 1px solid #B4B4B4;
  transform: rotate(-45deg);
}
.st-pager .st-pager-prev:before {
  left: 8px;
}
.st-pager .st-pager-prev:after {
  left: 13px;
}
.st-pager .st-pager-next:before,
.st-pager .st-pager-next:after {
  border-right: 1px solid #B4B4B4;
  transform: rotate(45deg);
}
.st-pager .st-pager-next:before {
  right: 8px;
}
.st-pager .st-pager-next:after {
  right: 13px;
}
.st-pager a.st-pager-prev:before,
.st-pager a.st-pager-prev:after,
.st-pager a.st-pager-next:before,
.st-pager a.st-pager-next:after {
  border-color: #ccc;
}
.st-pager .st-pager-prev span,
.st-pager .st-pager-next span {
  display: block;
  color: #B4B4B4;
  border: 1px solid #F4F3ED;
  border-radius: 4px;
  line-height: 1.42857143;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.st-pager .st-pager-prev span {
  padding: 6px 12px 6px 24px;
}
.st-pager .st-pager-next span {
  padding: 6px 24px 6px 12px;
}
.st-pager a.st-pager-prev span,
.st-pager a.st-pager-next span {
  color: #333;
  border-color: #ccc;
}
.st-pager a.st-pager-prev:hover,
.st-pager a.st-pager-next:hover {
  cursor: pointer;
  text-decoration: none;
}
.st-pager a.st-pager-prev:before:hover,
.st-pager a.st-pager-prev:after:hover,
.st-pager a.st-pager-next:before:hover,
.st-pager a.st-pager-next:after:hover {
  border-color: #E6B336;
}
.st-pager a.st-pager-prev.active span,
.st-pager a.st-pager-next.active span,
.st-pager a.st-pager-prev.active:hover span,
.st-pager a.st-pager-next.active:hover span {
  color: #E6B336;
  border-color: #E6B336;
}
.st-pager a.st-pager-prev.active:hover:before,
.st-pager a.st-pager-prev.active:hover:after,
.st-pager a.st-pager-prev.active:before,
.st-pager a.st-pager-prev.active:after,
.st-pager a.st-pager-next.active:hover:before,
.st-pager a.st-pager-next.active:hover:after,
.st-pager a.st-pager-next.active:before,
.st-pager a.st-pager-next.active:after {
  border-color: #E6B336;
}

.has-menu-above{
  padding-top:40px;
}
.has-menu-above-large{
  padding-top:72px;
}
.has-footer-fixed{
  padding-bottom:200px;
}
@media (max-width: 767px){
  .has-footer-fixed{
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 896px) and (orientation: landscape) {
  .has-footer-fixed {
    height: auto;
    padding-bottom: 50px;
  }
}

.main-with-space-above{
  padding-top:50px;
}

img.fbLogo {
  width:20px;
  height:20px;
}

.btn_upload_map{
  border-color:#50acb1;
  color:#50acb1;
  background-color:#fff;
}


.inline_ellipsis{
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow:ellipsis;
  text-overflow:ellipsis;
}


#underTop {
  position: fixed;
  z-index: 9100;
  top: 40px;
  width: 100%;
  padding: 8px 0;
  background-color: #f5f3ee;
}

#underTop .search-block{
  margin:0 auto;
  width:300px;
}
#underTop .search-block .form-group {
  position: relative;
  margin-bottom: 0;
}
#underTop .search-block .search-block-inner {
  width: 266px;
  float: right;
}
#underTop .search-block .search-block-input {
  border: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#underTop .search-block .search-block-btn {
  background-color: #e6b336;
  border: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #fff;
  height: 34px;
}
#underTop .search-block .search-block-btn:hover {
  opacity: 0.8;
}
#underTop .search-block .search-toggle-btn {
  background: url(/static/images/icon_map_gps.png) no-repeat #fff 6px 50%;
  color: #846506;
  cursor: pointer;
  display: block;
  font-size: 12px;
  left: 0;
  line-height: 25px;
  float: left;
  position: relative;
  right: inherit;
  bottom: inherit;
  margin: auto;
  width: 34px;
  height: 34px;
  text-indent: -9999px;
  padding: 0;
  border-radius: 8px 0 0 8px;
  border: none;
  background-position: 50%;
}
#underTop .search-toggle-btn.btn.active, .search-toggle-btn.btn:active {
  background: url(/static/images/icon_map_gps.png) no-repeat #fff 6px 50%;
}
#underTop .search-toggle-btn:hover {
  text-decoration: none;
}



/*--------------------------------------------------
 for email-registration
 -------------------------------------------------*/
.email-registration {
  min-height: calc(100vh - 202px);
  padding: 20px 0 0;
  margin-top: 42px;
}
.email-registration .login {
  padding-top: 20px;
}
@media (max-width: 767px){
  .email-registration .login {
    padding: 20px;
  }
}


/*--------------------------------------------------
 for mypage.html
--------------------------------------------------*/
.mypage {
  padding: 0;
  min-height: 100%;
}
.mypage #Main {
  position: relative;
  min-height: 100%;
}
.mypage .mypage-mv {
  position: relative;
  /* overflow: hidden;
  background-repeat: no-repeat;
  background-color: #000;
  background-position: 50%;
  background-size: cover; */
  min-height: 230px;
}
@media (max-width: 767px){
  .mypage .mypage-mv {
    min-height: 220px;
  }
}
/* .mypage .profile {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
} */

.mypage-mv-overlay {
  position: absolute;
  z-index: 1;
  width:  100%;
  min-height: 230px;
  background-color: rgba(0,0,0,0.4);
}
.mypage-mv-bk {
  position: relative;
  /* max-width: 900px; */
  min-height: 230px;
  margin: 0 auto;
  overflow: hidden;
  background-repeat: no-repeat;
  background-color: #000;
  background-position: 50%;
  background-size: cover;
}
.mypage-mv-bk a {
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
  z-index: 2;
  width: 60px;
  height: 60px;
  margin: auto;
  background: url(/static/images/icon_camera.svg) no-repeat;
  cursor: pointer;
  text-indent: -9999px;
}

.mypage .profile-upper {
  position: relative;
  margin-bottom:  24px;
  padding: 60px 0 0;
}
@media (max-width: 767px){
  .mypage .profile-upper {
    padding-top: 74px;
  }
}
.mypage .profile-thumb {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  z-index: 2;
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
}
.mypage .profile-body-plan-title {
  text-align: center;
}
.mypage .profile-body-title {
  font-size: 20px;
  max-width: 640px;
  margin: 0 auto 30px;
  text-align: center;
  word-break: break-all;
}
.mypage .profile-body-right {
  width: 400px;
}
@media (max-width: 767px){
  .mypage .profile-body-right {
    width: 100%;
  }
}
.mypage .profile-body-management {
  position: relative;
}
.mypage .profile-body-management-head {
  cursor: pointer;
  position: relative;
  background: url(/static/images/icon_settings.svg) no-repeat 10px 50%;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  display: block;
  line-height: 33px;
  text-indent: -9999px;
  width: 60px;
}
.mypage .profile-body-management-head:hover {
  opacity: 0.8;
}
@media (max-width: 767px){
  .mypage .profile-body-management-head {
  }
}
.mypage .profile-body-management-head:after {
  content: '';
  position: absolute;
  display: block;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #9B9B9B;
}
.mypage .profile-body-management.active .profile-body-management-head:after {
  border-top: none;
  border-bottom: 5px solid #9B9B9B;
}
.mypage .profile-body-management-body {
  display: none;
  position: absolute;
  z-index: 1100;
  top: 35px;
  right: 0;
  background-color: #F5F3EE;
  width: 200px;
  -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.75);
  box-shadow: 0 2px 2px rgba(0,0,0,.75);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.mypage .profile-body-management.active .profile-body-management-body {
  display: block;
}
.mypage .profile-body-management-body li {
  background-color: #F5F3EE;
}
.mypage .profile-body-management-body li:hover {
  background-color: #EAEAEA;
}
.mypage .profile-body-management-body a {
  display: block;
  color: #4d4d49;
  padding: 10px 15px;
  line-height: 20px;
}
.mypage .profile-body-management.active .profile-body-management-body a {
  text-decoration: none;
}
.mypage .profile-body-management {
  position: absolute;
  right: 20px;
  top: 20px;
}
.mypage .profile-body-management.on:after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 6px;
  top: 38%;
  left: 140px;
  border-left: 2px solid #e6b336;
  border-bottom: 2px solid #e6b336;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mypage .profile-description {
  line-height: 1.66;
  max-width: 640px;
  margin:  0 auto 24px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px){
  .mypage .profile-description {
    margin-bottom: 30px;
  }
}

.mypage .mypage-innerBox {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.mypage .mypage-head-title {
  position: relative;
  border-top: 1px solid #F5F3EE;
  border-bottom: 1px solid #F5F3EE;
}
.mypage .mypage-head-title .mypage-innerBox {
  position: relative;
  height: 45px;
  max-width: 940px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right:  15px;
}
.mypage .mypage-head-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 300px;
  text-align: center;
}
.mypage .mypage-head-nav li {
  display: inline-block;
}
.mypage .mypage-head-nav li:not(:last-child) {
  margin-right: 32px;
}
@media (max-width: 767px){
  .mypage .mypage-head-nav li:not(:last-child) {
    margin-right: 12px;
  }
}
.mypage .mypage-head-nav li a {
  display: block;
  color: #3c3c39;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  padding: 9px 0.2em;
}
@media (max-width: 767px){
  .mypage .mypage-head-nav li a {
    font-size: 12px;
    padding: 10px 0.2em;
  }
}
.mypage .mypage-head-nav li.active a {
  border-bottom: 2px solid #E6B336;
  padding-bottom: 6px;
}
@media (max-width: 767px){
  .mypage .mypage-head-nav li.active a {
    padding-bottom: 7px;
  }
}
.mypage .mypage-head-nav li a:hover {
  /* background-color: #dcdcdc;
  border-bottom: 2px solid #E6B336;
  padding-bottom: 6px; */
  opacity: 0.6;
  text-decoration: none;
}
.mypage .mypage-head-nav li a.singular {
  padding: 16px 0.2em;
}
.mypage .mypage-head-nav li a.singular:hover {
  padding-bottom: 13px;
}
.mypage .mypage-head-nav li.active a.singular {
  padding-bottom: 13px;
}
.mypage .mypage-head-nav li a.singular span {
  font-size: 14px;
}
.mypage .mypage-head-nav-big {
  display: block;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 767px){
  .mypage .mypage-head-nav-big {
    font-size: 14px;
  }
}
.mypage .mypage-head-title h3 {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  text-align: center;
}
.mypage .mypage-head-title-open-icon,
.mypage .mypage-head-title-search-icon {
  background: url(/static/images/icon_search.svg) no-repeat 50%;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  width: 28px;
  height: 28px;
  padding: 4px;
  text-indent: -9999px;
}
.mypage .mypage-head-title-open-icon:hover,
.mypage .mypage-head-title-search-icon:hover {
  background: url(/static/images/icon_search_yellow.svg) no-repeat 50%;
  background-size: 20px;
}
.mypage .mypage-head-title-search {
  display: none;
  position: absolute;
  top: 0;
  background-color: #F3F3F3;
  width: 100%;
}
.mypage .mypage-head-title-search.active {
  display: block;
}
.mypage .mypage-head-title-search .container {
  padding: 0 20px;
}
.mypage .mypage-head-title-search-close {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 38px;
  height: 38px;
  margin: auto;
  padding: 10px;
}
.mypage .mypage-head-title-search-close img {
  display: block;
  width: 100%;
  height: auto;
}
.mypage .mypage-head-title-search-input {
  background-color: #F3F3F3;
  border: none;
  width: 100%;
  padding: 13px 38px;
}

.mypage .mypage-head-results {
  position: relative;
  display: flex;
  max-width: 940px;
  margin: 0 auto;
  padding: 16px 20px;
}
.mypage .mypage-head-results-count span {
  margin-right: 8px;
}
.mypage .mypage-head-results-btn {
  position: relative;
  background: url(/static/images/icon_order.svg) no-repeat right 12px;
  cursor: pointer;
  display: block;
  font-size: 12px;
  position: absolute;
  right: 20px;
  line-height: 37px;
  margin-right: 10px;
  padding-right: 28px;
}
.mypage .mypage-head-results-btn:hover {
  opacity: 0.8;
}
.mypage .mypage-head-results-btn:after {
  content: '';
  position: absolute;
  right: -10px;
  bottom: 13px;
  border-top: 3px solid #9B9B9B;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.mypage .mypage-body {
  padding-top: 0;
}

.mypage .add-btn {
  display: block;
  position: relative;
  background-color: #f5f3ee;
  border: 1px solid #979797;
  border-radius: 4px;
  color: #4d4d49;
  margin-right: 20px;
}
.mypage .add-btn:before {
  content: '';
  color: #9b9b9b;
  background: url(/static/images/icon_plus2.svg) no-repeat 50%/20px;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto;
}
.mypage .add-btn:hover,
.mypage .add-btn:active {
  opacity: 0.8;
  text-decoration: none;
}
.mypage .add-btn span {
  display: inline-block;
  height: 35px;
  margin-left: 36px;
  padding-top: 8px;
  padding-right: 12px;
}

@media (max-width: 767px){
  .mypage .under_bar {
    padding-bottom: 0;
  }
  .mypage .under_bar-btns {
    margin-bottom: 0;
  }
}
/* My Maps Management */
.mypage-management {
  background-color: #f5f3ee;
}
.mypage-management .map-desc {
  position: relative;
}
.mypage-management .mypage-head-title {
  border-bottom: 1px solid #fff;
  border-top: none;
}
.mypage-management .mypage-head-nav-big {
  font-weight: 300;
}
.mypage-management .map-desc-lastModified {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 20px;
}
.mypage-management .map-desc-person {
  position: absolute;
  right: 0;
}


/* My Boards */
.mypage .board-item {
  width: 30%;
  margin-bottom: 50px;
}
.mypage .board-item:not(:nth-child(3n+3)) {
  margin-right: 5%;
}
@media (max-width: 960px){
  .mypage .board-item {
    width: 25%;
    min-width: 205px;
  }
}
@media (max-width: 767px){
  .mypage .board-item {
    width: 48%;
    padding: 0;
  }
  .mypage .board-item:not(:nth-child(3n+3)) {
    margin-right: 0;
  }
  .mypage .board-item:not(:nth-child(2n+2)) {
    margin-right: 4%;
  }
}
@media (max-width: 481px){
  .mypage .board-item {
    width: 100%;
    padding: 0;
  }
  .mypage .board-item:not(:nth-child(2n+2)) {
    margin-right: 0;
  }
}

.mypage .map-list-item.board .map-image {
  margin-bottom: 16px;
}

.map-list-item.board .map-upper {
  border: none;
}
.map-list-item.board .map-image {
  border-radius: 8px;
  box-shadow:0 2px 3px 0 #999;
  -moz-box-shadow:0 2px 3px 0 #999;
  -webkit-box-shadow:0 2px 3px 0 #999;
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
}
.map-list-item.board .map-image img {
  width: 100%;
}
.mypage .board-item-name {
  color: #4d4d49;
  display: block;
  font-weight: 300;
  margin-bottom: 12px;
}
.mypage .board-item-description {
  margin-bottom: 20px;
}
.mypage .board-item-follows {
  display: flex;
  margin-bottom: 0;
}
.mypage .board-item-follows li {
  background-repeat: no-repeat;
  background-position: left 50%;
  padding-left: 20px;
}
.mypage .board-item-follows-pins {
  background-image: url(/static/images/icon_follow_pin.svg);
  color: #9B9B9B;
  margin-right: 12px;
}
.mypage .board-item-follows-users {
  background: url(/static/images/icon_follow_user.svg) no-repeat left 50%/14px;
  color: #9B9B9B;
  padding-left: 20px;
  margin-right: 12px;
}
.mypage .board-item-follows-comments {
  background-image: url(/static/images/icon_comment.svg);
}

/* My Boards Management */
.mypage-management .board-item-thumb {
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}
.mypage-management .board-item-thumb img {
  width: 100%;
  height: auto;
}
.mypage-management .board-item-desc {
  margin-top: 24px;
}
/* .mypage-management .map-desc-comments {
  margin-bottom: 12px;
} */
.mypage-management .map-list-item.board .map-image {
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}
.mypage-management .editPanel{
  position: relative;
  z-index: 1;
}
.mypage-management .board-item-name {
  margin-top:  20px;
}


/*--------------------------------------------------
 for maps.html
 ---------------------------------------------------
 - My Page > My Boards > ボードを選択した、ボード一覧画面
--------------------------------------------------*/
.myboards #Main {
  min-height: 100%;
}
.myboards#Main {
  /* height: calc(100vh - 42px); */
  margin-top:  0;
}
@media (max-width: 767px) {
  .myboards#Main {
    height: auto;
    margin-bottom: 0;
  }
}
.myboards .myboards-innerBox {
  position: relative;
  /* height: 52px; */
  max-width: 940px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.myboards .myboards-mv {
  position: relative;
}
.myboards .myboards-mv-upper {
  position: relative;
  height: 165px;
  max-width: 900px;
  margin: 0 auto 12px;
  padding: 60px 0 0;
}
@media (max-width: 767px) {
  .myboards .myboards-mv-upper {
    height: 200px;
    margin-bottom: 0;
    padding: 30px 0 24px;
    text-align: center;
  }
}
.myboards .myboards-thumb {
  overflow: hidden;
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
  border-radius: 15px;
  border: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 100px;
  height: 100px;
  margin: auto;
}
@media (max-width: 767px) {
  .myboards .myboards-thumb {
    margin-top: 40px;
  }
}
.myboards .myboards-thumb img {
  position: absolute;
  max-height: 100px;
  top: 50%;
  left: 50%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
}
.myboards .myboards-thumb .bkBtn {
  background: url(/static/images/icon_plus.svg) rgba(0,0,0,0.6) no-repeat;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
}
.joinboards .joinboards-join_btn {
  background-color: #fbc644;
  border: none;
  border-radius: 4px;
  color: #fff;
  display: block;
  line-height: 35px;
  max-width: 200px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.myboards .myboards-management {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .myboards .myboards-management {
    right: 20px;
  }
}
.myboards .myboards-management-head {
  cursor: pointer;
  position: relative;
  background: url(/static/images/icon_settings.svg) no-repeat 10px 50%;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  display: block;
  line-height: 33px;
  text-indent: -9999px;
  width: 60px;
}
.myboards .myboards-management-head:after {
  content: '';
  position: absolute;
  display: block;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #9B9B9B;
}
.myboards .myboards-management-body {
  display: none;
  position: absolute;
  z-index: 1100;
  top: 35px;
  right: 0;
  background-color: #F5F3EE;
  width: 200px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.myboards .myboards-management.active .myboards-management-body {
  display: block;
}
.myboards .myboards-management-body li {
  background-color: #F5F3EE;
}
.myboards .myboards-management-body li:nth-child(even) {
    background-color: #EAEAEA;
}
.myboards .myboards-management-body a {
  display: block;
  color: #4d4d49;
  padding: 10px 15px;
  line-height: 20px;
}
.myboards .myboards-management.on:after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 6px;
  top: 38%;
  left: 140px;
  border-left: 2px solid #e6b336;
  border-bottom: 2px solid #e6b336;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.myboards .myboards-texts {
  line-height: 1.66;
  max-width: 680px;
  margin: 0 auto 30px;
  padding: 0 20px;
}
.myboards .myboards-title {
  font-size: 20px;
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
  word-break: break-all;
}
.myboards .myboards-texts .myboards-description {
  font-size: 12px;
  margin: 0;
}
.myboards .myboards-login {
  max-width: 400px;
  margin: 40px auto 0;
  text-align: center;
}
.myboards a.myboards-join_btn {
  display: block;
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  background-color: #fbc644;
  border: none;
  border-radius: 4px;
  color: #fff;
}


.myboards .myboards-head-title {
  position: relative;
  border-top: 1px solid #F5F3EE;
  border-bottom: 1px solid #F5F3EE;
}
.myboards .myboards-head-title .myboards-innerBox {
  min-height: 52px;
}
.myboards .myboards-head-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 300px;
  height: 51px;
  text-align: center;
}
.myboards .myboards-head-nav li {
  display: inline-block;
  color: #3c3c39;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}
.myboards .myboards-head-nav li:not(:last-child) {
  margin-right: 24px;
}
.myboards .myboards-head-nav li a {
  display: block;
  color: #3c3c39;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  padding: 12px 0.2em;
}
.myboards .myboards-head-nav li a:hover {
  background-color: #dcdcdc;
  border-bottom: 2px solid #E6B336;
  padding-bottom: 10px;
  text-decoration: none;
}
.myboards .myboards-head-nav li span {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.myboards .myboards-head-title p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  margin: 0;
  text-align: center;
}
.myboards .myboards-head-title-open-icon,
.myboards .myboards-head-title-search-icon {
  background: url(/static/images/icon_search.svg) no-repeat 50%;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 28px;
  height: 28px;
  padding: 4px;
  text-indent: -9999px;
}
.myboards .myboards-head-title-open-icon:hover,
.myboards .myboards-head-title-search-icon:hover {
  background-image: url(/static/images/icon_search_yellow.svg);
  background-size: 20px;
}
.myboards .myboards-head-title-search {
  display: none;
  position: absolute;
  top: 0;
  background-color: #F3F3F3;
  width: 100%;
}
.myboards .myboards-head-title-search.active {
  display: block;
}
.myboards .myboards-head-title-search .container {
  padding: 0 20px;
}
.myboards .myboards-head-title-search-close {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 38px;
  height: 38px;
  margin: auto;
  padding: 10px;
}
.myboards .myboards-head-title-search-close img {
  display: block;
  width: 100%;
  height: auto;
}
.myboards .myboards-head-title-search-input {
  -webkit-appearance: none;
  background-color: #F3F3F3;
  border: none;
  line-height: 52px;
  width: 100%;
  padding: 0 32px 0 34px;
}

.myboards .myboards-head-results{
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 940px;
  margin: 0 auto;
  padding: 16px 15px;
}
.myboards .myboards-head-results-count span {
  margin-right: 8px;
}
.myboards .myboards-head-results-btn {
  background: url(/static/images/icon_order.svg) no-repeat right 50%;
  cursor: pointer;
  display: block;
  position: absolute;
  right: 20px;
  margin-right: 10px;
  height: 20px;
  padding-right: 28px;
}
.myboards .myboards-edit-item {
  display: flex;
}
@media (max-width: 767px) {
  .myboards .myboards-edit-item {
    margin-bottom: 16px;
  }
}
.myboards .edit-label {
  width: 250px;
  max-width: 30%;
}
.myboards .edit-input {
  -webkit-flex: 1;
  flex: 1;
  word-break: break-all;
}


/*--------------------------------------------------
 for boads/edit/  ボード編集画面
 -------------------------------------------------*/
.myboards-edit {
  padding: 0;
  min-height: 100%;
}
.myboards label {
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding: 10px 0;
}
.myboards label.status {
    /* margin-right: 30px; */
  padding-left: 20px;
}
.myboards label.status input {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.myboards-edit .under_bar {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .myboards-edit .under_bar {
    margin-bottom: 0;
  }
}

.myboards-edit .mapeditor-btns.bottom {
  display: block;
}

.myboards-edit .mapeditor-btns .two-btns {
  margin-top:  0;
}

.myboards-edit .mapeditor-btns .save-btn {
  cursor: pointer;
  position:relative;
  z-index: 2;
  background-color: #e6b336;
  border-color: #e6b336;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 33px;
  padding-right: 0;
  margin-right: 10px;
  width: 180px;
}
.myboards-edit .mapeditor-btns .save-btn:before,
.myboards-edit .mapeditor-btns .save-btn:after {
  content: none;
}


/*--------------------------------------------------
 for mapeditor.html
 -------------------------------------------------*/
#Main.mapeditor {
  background-color: #f5f3ee;
  position: relative;
  margin: 0 auto;
  padding-top: 42px;
  margin-top: 0;
}
@media (min-width: 1200px) {
  #Main.mapeditor {
      width: 1170px;
  }
}
@media (min-width: 992px) {
  #Main.mapeditor {
      width: 970px;
  }
}
@media (min-width: 768px) {
  #Main.mapeditor {
      width: 100%;
  }
}
.mapeditor .map-page-btn img {
  margin-right: 12px;
}
.mapeditor-thumb {
  border-radius: 8px;
  height: 100px;
  margin-right: 16px;
  overflow: hidden;
  position: relative;
  width: 100px;
  min-width: 100px;
}
.mapeditor-thumb img {
  background-color: #fff;
  position: absolute;
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.mapeditor-texts h2 {
  font-size: 18px;
  margin: 4px 0 12px;
}
@media (max-width: 767px){
  .mapeditor-texts {
    width: 100%;
  }
  .mapeditor-texts h2 {
    margin-top: 0;
  }
  #proModeBtn {
    line-height: 22px;
    width: 100%;
  }
}

/* 上部のボタン・地図情報掲載のバー */
.main-button-bar .mapeditor-upper {
  position: relative;
  width: 1170px;
}
@media (max-width: 1170px) {
  .main-button-bar .mapeditor-upper {
    width: 100%;
  }
}
.main-button-bar .mapeditor-desc {
  display: flex;
  padding: 20px 20px 50px 20px;
}
@media (max-width: 767px){
  .main-button-bar .mapeditor-desc {
    padding: 20px 0 12px;
  }
}
.main-button-bar .mapeditor-texts-states {
  display: flex;
  margin-bottom: 12px;
}
@media (max-width: 767px){
  .main-button-bar .mapeditor-texts-states {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.main-button-bar .mapeditor-texts-states .state-range {
  position: relative;
  margin: 0 10px 0 0;
  background-color: #3c3c39;
  background-size: 22px;
  background-position: left 50%;
  background-repeat: no-repeat;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  line-height: 33px;
}
@media (max-width: 767px){
  .main-button-bar .mapeditor-texts-states .state-range {
    margin-bottom: 15px;
  }
}
.main-button-bar .mapeditor-texts-states .state-range:after {
    content: '';
    position: absolute;
    display: block;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
}
.main-button-bar .mapeditor-texts-states .state-range select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #3c3c39;
  background-position: 10px 7px;
  background-repeat: no-repeat;
  background-size: 12px;
  border: none;
  color: #fff;
  font-size: 12px;
  padding: 2px 50px;
  width: 140px;
  height: 33px;
}
.main-button-bar .mapeditor-texts-states .state-range.publish:hover {
  opacity: 0.8;
}
.main-button-bar .mapeditor-texts-states .state-range select {
  background-image: url(/static/images/icon_status_limited.svg);
}
@media (max-width: 767px){
  .main-button-bar .mapeditor-texts-states .state-range select {
    padding: 2px 25px 2px 35px;
    width: 100px;
  }
}
.main-button-bar .mapeditor-texts-states .state-range.publish select {
  background-repeat: no-repeat;
  background-image: url(/static/images/icon_status_published.svg);
}

.main-button-bar .mapeditor-texts-states .state-release {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  color: #333;
  display: block;
  line-height: 35px;
  padding: 0 12px;
  text-align: center;
}
@media (max-width: 767px){
  .main-button-bar .mapeditor-texts-states .state-release {
    margin-bottom: 15px;
  }
}
.main-button-bar .mapeditor-texts-url {
  color: #333;
  text-decoration: underline;
}

/* 上部のボタン・地図情報掲載のバー内 -> 戻るボタン(DONEボタン) */
.map-page-btn {
  border-top: 1px solid #B6B6B6;
  border-bottom: 1px solid #c9caca;
}
.map-page-btn a {
  color:#000;
  display: inline-block;
  height: 48px;
  line-height: 48px;
  padding: 0 15px;
}
.map-page-btn a:hover {
  background-color: #dcdcdc;
  text-decoration: none;
}
.map-page-btn a .glyphicon {
  color: #e6b336;
}

/* タブ */
.step-selector {
  border: none;
  margin: 0;
  padding: 0 20px;
}
.step-selector .step {
  float: left;
  margin-bottom: -2px;
  margin-top: 2px;
  min-width: 160px;
  text-align: center;
  position: relative;
  display: block;
}
.step-selector .step:not(:last-child) {
  margin-right: 8px;
}
.step-selector .step a {
  color: #333;
  background-color: #f3f3f3;
  border: none;
  box-shadow: 1px 1px 3px 0 #999;
  -moz-box-shadow: 1px 1px 3px 0 #999;
  -webkit-box-shadow: 1px 1px 3px 0 #999;
  margin-right: 0;
  padding: 10px 8px;
  text-align: center;
}
.step-selector .step.active a {
  background-color: #fff;
}

.step-selector .step.disabled {
  position: relative;
  cursor: not-allowed;
}

.step-selector .step.disabled a {
  color: #aaa;
  background-color: #f9f9f9;
}

.step-selector .step.disabled a:hover {
  color: #aaa;
  background-color: #f9f9f9;
}

.step-selector .step .caption {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #000;
  white-space: nowrap;
  opacity: 1;
}

.step-selector .step.disabled:hover .caption{
  display: inline-block;
}

.step-cover {
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: -1px;
  background-color: #fff;
}

@media (max-width: 767px){
  #stepSelector .step {
    min-width: inherit;
    width: 32%;
  }
  #stepSelector .step:not(:last-child) {
    margin-right: 2%;
  }
  #stepSelector .step a {
    font-size: 12px;
  }
  .step-selector .step .caption {
    right: 0;
    left: unset;
  }
}

#fileUploadFormContainer{
    z-index:99999;
    display:none;
}

/* LANDMARKタブのcontainer */
.LandmarkEditor .landmarkListContainer {
  overflow-y: scroll;
  position: relative;
  z-index: 1;
  height:0px;
  padding-top: 20px;
  margin-bottom: 20px;
}

/* Map editor  INFOタブのdescription*/
.mapeditor-info-description {
  min-height: 150px;
}

/* Default Styleのパネル */
#landmarkDefaultStyleForm{
    position:absolute;
    z-index:9001;
}

/* INFO -> published完了後のインフォメーションパネル */
.savingDialog.commonModal .panel-heading {
  border-bottom: none;
  height: 40px;
}
.savingDialog.commonModal .panel-heading .close {
  position: absolute;
  right: 15px;
  top: 10px;
}
.savingDialog.commonModal .savingDialog-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding: 0 15px;
  text-align: center;
}
.savingDialog.commonModal .panel-body {
  padding: 40px 0 65px
}
.savingDialog.commonModal .commonModal-inner {
  height: 320px;
}
.savingDialog.commonModal .panel-footer.has-add-btn {
  border-top: 0;
  padding: 20px 15px 5px;
}
.savingDialog.commonModal .savingDialog-columns {
  display: flex;
  justify-content: space-between;
}
.savingDialog.commonModal .savingDialog-columns-left {
  padding: 30px 0 0 24px;
}
.savingDialog.commonModal .savingDialog-columns-right {
  width: 34%;
  margin-left: 2%;
}
.savingDialog.commonModal .savingDialog-columns-right img {
  width:  100%;
}
.savingDialog.commonModal .savingDialog-list {
  margin-bottom: 0;
}
.savingDialog.commonModal .savingDialog-list li:before {
  content: '-';
  display: inline-block;
}
.savingDialog.commonModal .savingDialog-btns {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 400px;
}
.savingDialog.commonModal .savingDialog-btns .savingDialog-btn {
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 2;
  background-color: #e6b336;
  border-color: #e6b336;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 33px;
  margin-bottom: 15px;
  text-align: center;
  text-decoration: none;
  width: 180px;
}
.savingDialog.commonModal .savingDialog-btns .savingDialog-btn:not(:last-child) {
  margin-right: 10px;
}
.savingDialog.commonModal .savingDialog-btns .savingDialog-btn:hover {
  opacity: 0.8;
}
@media (max-width: 767px){
  .savingDialog.commonModal .commonModal-inner {
    height: 90%;
    max-height: 90%;
  }
  .savingDialog.commonModal .savingDialog-columns {
    display: block;
  }
  .savingDialog.commonModal .savingDialog-columns-left {
    padding: 24px 15px 0;
  }
  .savingDialog.commonModal .savingDialog-columns-right {
    width: 60%;
    margin: 0 auto;
  }
  .savingDialog.commonModal .savingDialog-btns .savingDialog-btn {
    width: 45%;
  }
  .savingDialog.commonModal .savingDialog-btns {
    display: block;
    width: 100%;
  }
  .savingDialog.commonModal .savingDialog-btns .savingDialog-btn {
    width: 100%;
  }
}



/* SETTING -> ロケーターアイコン追加パネル */
.locatorSelect.commonModal .commonModal-inner {
  height: 800px;
}
.locatorSelect.commonModal .panel-body {
  overflow-y: scroll;
  height: 100%;
}
@media (max-width: 767px){
  .locatorSelect.commonModal .commonModal-inner {
    max-height: 90%;
  }
}


/* レイヤー追加パネル */
.layerAdd .commonModal-inner {
  height: 300px;
}
.layerAdd .panel-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* レイヤー編集パネル */
.layerListToManage .commonModal-inner {
  height: 300px;
}
.layerListToManage .panel-body {
  overflow-y: scroll;
  padding: 43px 0 51px;
}
.layerListToManage .panel-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.layerListToManage .commonModal-inner {
  height: 300px;
}
.layerListToManage .panel-body {
  overflow: scroll;
  padding: 43px 0 51px;
}
.layerListToManage .manage-selector-list li {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
}
.layerListToManage .manage-selector-list li:nth-child(even) {
  background-color: #eaeaea;
}
.layerListToManage .manage-selector-list li img {
  width: 18px;
  height: 19px;
  margin: 5px 15px 0;
}
.layerListToManage .manage-selector-list-name {
  cursor: pointer;
  display: inline-block;
  padding-left: 20px;
  width: 66%;
}
.layerListToManage .manage-selector-list-controls {
  cursor: pointer;
  color: #9B9B9B;
  display: inline-block;
  font-size: 12px;
  line-height: 30px;
  padding: 0 15px;
}
@media (max-width: 767px){
  .layerListToManage .manage-selector-list li img {
    margin: 5px 2% 0;
  }
  .layerListToManage .manage-selector-list-controls {
    padding: 0 2%;
  }
}






/* カテゴリー追加パネル */
.landmarkCategory {
  z-index:9002!important;
}
.landmarkCategory .commonModal-inner {
  height: 660px;
}
.landmarkCategory .panel-body {
  min-height: 390px;
  overflow: scroll;
}
.landmarkCategory .panel-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.landmarkCategory .landmarkCategory-catname label {
  position: relative;
  display: block;
}
.landmarkCategory .landmarkCategory-catname-chars {
  position: absolute;
  top: 4px;
  right: 0;
  color: #9B9B9B;
  font-size: 10px;
}
.landmarkCategory .landmarkCategory-add_icon {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.landmarkCategory .landmarkCategory-add_icon label {
  display: block;
  width: 100%;
}
.landmarkCategory .landmarkCategory-add_icon .landmarkCategory-add_icon-title {
  font-weight: 300;
  margin-right: 8px;
}
.landmarkCategory .landmarkCategory-add_icon .select-cont {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: calc(100% - 88px);
}
.landmarkCategory .landmarkCategory-add_icon .select-cont .selected_img {
  cursor: pointer;
  position: relative;
  width: 30px;
}
.landmarkCategory .landmarkCategory-add_icon .select-cont .selected_img:after {
  content: '';
  display: block;
  border-top: 5px solid #9B9B9B;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  bottom: 2px;
  left: 20px;
}
.commonModal .landmarkCategory-add_icon .select-cont .selected_img img {
  width:  18px;
}
.landmarkCategory .cats-selector {
  display: none;
  background-color: #f5f3ee;
  box-shadow: 0 2px 3px 0 #999;
  -moz-box-shadow: 0 2px 3px 0 #999;
  -webkit-box-shadow: 0 2px 3px 0 #999;
  min-width: 180px;
  position: absolute;
  top: 40px;
  left: 23px;
  z-index: 9000;
}
.landmarkCategory .cats-selector.active {
  display: block;
}
.landmarkCategory .cats-selector:before {
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: 0;
  background-color: #F5F3EE;
  box-shadow: 0 2px 3px 0 #999;
  -moz-box-shadow: 0 2px 3px 0 #999;
  -webkit-box-shadow: 0 2px 3px 0 #999;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  transform: translateX(-50%) rotate(45deg) skew(20deg,20deg); /* 傾斜角(skew) */
}
.landmarkCategory .cats-selector ul {
  position: relative;
  z-index: 1;
  background-color: #f5f3ee;
}
.landmarkCategory .cats-selector-list {
  margin-bottom: 0;
}
.landmarkCategory .cats-selector-list li {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
}
.landmarkCategory .cats-selector-list li:nth-child(even) {
  background-color: #eaeaea;
}
.landmarkCategory .cats-selector-list li img {
  width: auto;
  height: 19px;
  margin: 5px 8px 0;
}
.landmarkCategory .cats-selector-list-name {
  cursor: pointer;
  display: inline-block;
  margin-right: 12px;
  width: 66%;
}
.landmarkCategory .cats-selector-list-controls {
  cursor: pointer;
  color: #9B9B9B;
  display: inline-block;
  font-size: 12px;
  line-height: 30px;
  padding: 0 8px;
}
.landmarkCategory .cats-selector-add {
  border-top: 2px solid #e9e7e5;
  cursor: pointer;
  display: block;
  line-height: 28px;
  padding: 0 12px;
}
.landmarkCategory .cats-selector-add > span:before {
  content: '';
  display: inline-block;
  background: url(/static/images/icon_plus.png) no-repeat 50%;
  width: 10px;
  height: 10px;
  margin-right: 6px;
}
@media (max-width: 767px){
  .landmarkCategory .commonModal-inner {
    max-height:  90%;
  }
  .landmarkCategory .panel-body {
    min-height: 410px;
  }
  .landmarkCategory .cats-selector-list-controls {
    padding: 0 2%;
  }
}

/* カテゴリー編集パネル */
.manageCat .commonModal-inner {
  height: 300px;
}
.manageCat .panel-body {
  overflow: scroll;
  padding: 43px 0 51px;
}
.manageCat .manage-selector-list li {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
}
.manageCat .manage-selector-list li:nth-child(even) {
  background-color: #eaeaea;
}
.manageCat .manage-selector-list li img {
  width: 18px;
  height: 19px;
  margin: 5px 15px 0;
}
.manageCat .manage-selector-list-name {
  cursor: pointer;
  display: inline-block;
  width: 66%;
}
.manageCat .manage-selector-list-controls {
  cursor: pointer;
  color: #9B9B9B;
  display: inline-block;
  font-size: 12px;
  line-height: 30px;
  min-width: 40px;
  padding: 0 8px;
}
@media (max-width: 767px){
  .manageCat .manage-selector-list li img {
    margin: 5px 2% 0;
  }
  .manageCat .manage-selector-list-controls {
    padding: 0 2%;
  }
}

/* POI設定パネル */
.landmarkForm .commonModal-inner {
  height: 760px;
  min-width:500px;
}
@media (max-width: 767px){
  .landmarkForm .commonModal-inner {
    min-width: inherit;
  }
}
.landmarkForm .panel-body {
  overflow: scroll;
  padding-bottom: 170px;
}
@media (max-width: 767px){
  .landmarkForm .panel-body {
    padding-bottom: 190px;
  }
}
.landmarkForm .landmark-cat {
  margin-top:10px;
  margin-bottom:10px;
}
.landmarkForm .landmark-cat label {
  float:left;
  font-weight: 300;
  padding-top:5px
}
.landmarkForm .landmark-title {
  margin-bottom: 20px;
}
.landmarkForm .landmark-title-label {
  position: relative;
  display: block;
  font-weight: 300;
}
.landmarkForm .landmark-title-chars {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #9B9B9B;
  font-size: 10px;
}
.landmarkForm .landmark-title input {
  display: block;
  width: 100%;
}
.landmarkForm .landmark-desc label {
  display: block;
  font-weight: 300;
}
.landmarkForm .landmark-media-selector {
  cursor: pointer;
  position: relative;
  width: 300px;
  height: 35px;
  margin-bottom: 15px;
  background-color: #3C3C39;
  border: 1px solid #ccc;
  border-radius: 4px;
}
@media (max-width: 767px){
  .landmarkForm .landmark-media-selector {
    width: 100%;
  }
}
.landmarkForm .landmark-media-selector:after {
  content: '';
  position: absolute;
  display: block;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  border-radius: 3px;
}
.landmarkForm .landmark-media-selector .select-media {
  display: block;
  color: #fff;
  line-height: 35px;
  padding-left: 20px;
  width: 100%;
}
.landmarkForm .landmark-media-selector.active ul {
  display: block;
}
.landmarkForm .landmark-media-selector ul {
  display: none;
  position: absolute;
  z-index: 1100;
  top: 32px;
  background-color: #F5F3EE;
  width: 100%;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.landmarkForm .landmark-media-selector ul li {
  float: none;
  border: none;
}
.landmarkForm .landmark-media-selector ul li button {
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  line-height: 30px;
  text-align: left;
  padding-left: 20px;
  width: 100%;
}
.landmarkForm .landmark-media-selector ul li:nth-child(even) {
  background-color: #EAEAEA;
}
.landmarkForm .landmark-media-selector ul a,
.landmarkForm .landmark-media-selector ul a:focus,
.landmarkForm .landmark-media-selector ul a:hover,
.landmarkForm .landmark-media-selector ul li.active a,
.landmarkForm .landmark-media-selector ul li.active a:focus,
.landmarkForm .landmark-media-selector ul li.active a:hover {
  background: none;
  border: none;
  margin-right: 0;
}
.landmarkForm .landmark-desc-text {
  position: relative;
}
.landmarkForm .landmark-desc-text .landmark-use-html input[type=checkbox] {
  display: none;
}
.landmarkForm .landmark-desc-text .landmark-use-html label {
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  padding: 0 0 0 24px;
  vertical-align: middle;
  cursor: pointer;
}
.landmarkForm .landmark-desc-text .landmark-use-html label:hover:after {
  border-color: #3AAFDA;
}
.landmarkForm .landmark-desc-text .landmark-use-html label:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  border: 2px solid #3AAFDA;
  content: '';
}
.landmarkForm .landmark-desc-text .landmark-use-html label:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  margin-top: -6px;
  width: 6px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.landmarkForm .landmark-desc-text .landmark-edit-link {
  margin-top: 15px;
  text-align: right;
}
.landmarkForm .landmark-body-text {
  margin-bottom: 15px;
}
.landmarkForm .landmark-func-desc-container {
  margin: 20px 0 10px;
}
.landmarkForm .landmark-func-desc {
  font-size: 12px;
  padding: 0 15px;
}
.landmarkForm .landmark-use-html {
  text-align: right;
}
.landmarkForm .html-landmark-desc {
  height: 400px;
}
.landmarkForm .html-landmark-desc-pc {
  height: 650px;
}
.landmarkForm .landmark-desc-textarea {
  height: 200px;
  width: 100%;
  padding: 5px 10px;
  border: solid 1px lightgray;
  border-radius: 3px;
  overflow: scroll;
}

.landmarkForm .landmark-desc-text .landmark-use-html input[type=checkbox]:checked + .landmarkForm .landmark-desc-text .landmark-use-html label:before {
  opacity: 1;
}
.landmarkForm .landmark-add-image {
  display: flex;
  margin: 0px 5px 12px;
}
.landmarkForm .landmark-add-image-btn {
  overflow: hidden;
  position: relative;
  border: 1px dashed #9B9B9B;
  border-radius: 5px;
  width: 60px;
}
.landmarkForm .landmark-add-image-btn:not(:last-child) {
  margin-right: 10px;
}
.landmarkForm .landmark-add-image-btn button {
  -webkit-appearance: none;
  border: none;
  width: 100%;
  height: 50px;
  text-indent: -9999px;
  background: url(/static/images/icon_camera.svg) no-repeat #FFFFFF;
}
.landmarkForm .landmark-add-image-btn svg {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
}
.landmarkForm .panel-footer {
  padding: 20px 20px 8px;
}
.landmarkForm .panel-footer button {
  display: block;
  line-height: 33px;
  max-width: 300px;
  margin: 0 auto 12px;
  padding: 0;
  width: 100%;
}
.landmarkForm .panel-footer #lmFormOKBtn {
  background-color: #E6B336;
  border-color: #E6B336;
  color: #fff;
}
.landmarkForm .panel-footer #lmFormOKBtn:hover {
  background-color: #fff;
  color: #E6B336;
}
.landmarkForm .panel-footer #lmFormDeleteBtn {
  color: #D0021B;
  border-color: #D0021B;
}
.landmarkForm .panel-footer #lmFormDeleteBtn:hover {
  background-color: #D0021B;
  color: #fff;
}
@media (max-width: 767px){
  .landmarkForm {
    font-size: 12px;
  }
  .landmarkForm .landmark-media-selector {
    margin: 0 auto;
  }
}


/*-- モーダル内パーツの共通スタイル --*/
.commonModal .modal-part {
  margin-bottom: 20px;
}
.commonModal .modal-part a {
  text-decoration: underline;
}
.commonModal .modal-part label {
  display: block;
  font-weight: 300;
  margin-bottom: 0;
  width: 100%;
}
.commonModal .modal-part-title {
  display: block;
  font-weight: 300;
  margin-bottom: 8px;
}
.commonModal .modal-part-icon_type {
  display: flex;
}
.commonModal .modal-part-icon_type input[type="radio"] {
  display: none;
}
.commonModal .modal-part-icon_type span {
  padding-left: 24px;
  position: relative;
}
.commonModal .modal-part-icon_type span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #D8D8D8;
  border: 1px solid #D8D8D8;
  border-radius: 50%;
}
.commonModal .modal-part-icon_type input[type="radio"]:checked + span:before {
  background-color: #F3F3F3;
  border-color: #979797;
}
.commonModal .modal-part-icon_type input[type="radio"]:checked + span:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #FFDD53;
  border-radius: 50%;
}
.commonModal .modal-part-switch_link {
  color: #E6B336;
  cursor: pointer;
  font-size: 12px;
  font-weight: 300;
}
.commonModal .modal-part-icon-name {
  margin-bottom: 20px;
  position: relative;
}
.commonModal .modal-part-icon-name .modal-part-switch_link {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.commonModal .modal-part-icon-name input[type="text"] {
  font-weight: 300;
}

/* カテゴリー追加パネル--デフォルトアイコンから選択 */
.commonModal .add-cat-select .add-cat-icon-title {
  width: 80px;
}
.commonModal .modal-part-icon-name .set-original-icon label {
  position: relative;
  display: block;
}
.commonModal .modal-part-icon-name .set-original-icon .set-original-icon-link {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #E6B336;
}
.commonModal .modal-part-icon-name .set-original-icon .set-original-icon-link:hover {
  color: #337ab7;
}
.commonModal .modal-part-icon-name .set-usual-image label {
  font-size: 12px;
}

.commonModal .modal-part .modal-part-fileUp {
  display: none;
  border: 1px dashed #9B9B9B;
  border-radius: 5px;
  cursor: pointer;
  padding: 25px;
}
.commonModal .modal-part .modal-part-fileUp.view {
  display: block;
}
.commonModal .modal-part .modal-part-fileUp .file_name {
  display: none;
  margin-top: 12px;
}
.commonModal .modal-part .modal-part-fileUp .file_name.active {
  display: block;
}
.commonModal .modal-part .modal-part-fileUp .file_link {
  text-decoration: underline;
}
.commonModal .modal-part .modal-part-fileUp > * {
  color: #9B9B9B;
  display: block;
  text-align: center;
}
.commonModal .modal-part .modal-part-fileUp input[type="File"] {
  display: none;
}

.commonModal .modal-part .modal-part-posFix {
  display: none;
  align-items: center;
  position: relative;
}
.commonModal .modal-part .modal-part-posFix.view {
  display: flex;
}
.commonModal .modal-part .modal-part-posFix .position-area {
  background: url(/static/images/bk_locator.png) no-repeat;
  border: 1px solid #9B9B9B;
  border-radius: 5px;
  width: 85px;
  height: 85px;
  position: relative;
}
.commonModal .modal-part .modal-part-posFix .position-area img {
  position: absolute;
  cursor: pointer;
  margin: auto;
}
.commonModal .modal-part .modal-part-posFix .position-desc {
  color: #9B9B9B;
  font-size: 10px;
  padding-left: 12px;
  position: relative;
}
.commonModal .modal-part .modal-part-posFix .position-desc dl {
  display: flex;
  font-weight: 300;
  margin-bottom: 0;
}
.commonModal .modal-part .modal-part-posFix .position-desc-trash {
  position: absolute;
  bottom: 0;
  left: 98px;
}


.selectOriginalIcon {
  display: none;
}
.selectOriginalIcon.view {
  display: block;
}

.setLatLng {
  display: none;
}
.setLatLng.view {
  display: block;
}

.selectExistingIcon{
  display: none;
}
.selectExistingIcon.view {
  display: block;
}


/*--------------------------------------------------
end-----mapeditorのモーダルモックアップのスタイル
--------------------------------------------------*/



/* 地図編集画面 */
#editorMain{
  background-color: #fff;
}
.protool_bar{
  padding: 15px 0;
}
@media (max-width: 767px){
  .protool_bar {
    border-bottom: 1px solid #f5f3ee;
    margin-bottom: 10px;
    padding: 0 0 10px;
  }
}
.protool_bar-body {
  background-color: #f5f3ee;
  border-radius: 5px;
  display: flex;
  /* padding: 4px 0; */
}
.protool_bar-body.pc {
  display: flex;
}
.protool_bar-body.sp {
  display: none;
}
@media (max-width: 767px){
  .protool_bar-body.pc {
    display: none;
  }
  .protool_bar-body.sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.protool_bar-body form {
  margin-right:  6px;
}
.protool_bar-body-list {
  display: flex;
  margin-bottom: 0;
  padding: 0 10px;
}
@media (max-width: 767px){
  .protool_bar-body-list {
    padding: 0;
  }
}
.protool_bar-body-list:not(:last-child) {
  border-right: 1px solid #979797;
}
.protool_bar-body-list li {
  background-position: 50% 6px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding: 30px 6px 4px;
  display: block;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.protool_bar-body-list li:hover {
  background-color: #dcdcdc;
}
.protool_bar-body-list li.place,
.protool_bar-body-nav-list li.place {
  background-image: url(/static/images/icon_editor_place_off.svg)
}
.protool_bar-body-list li.input,
.protool_bar-body-nav-list li.input {
  background-image: url(/static/images/icon_editor_input_off.svg)
}
.protool_bar-body-list li.remove,
.protool_bar-body-nav-list li.remove {
  background-image: url(/static/images/icon_editor_remove_off.svg)
}
.protool_bar-body-list li.boundary,
.protool_bar-body-nav-list li.boundary {
  background-image: url(/static/images/icon_editor_boundary_off.svg)
}
.protool_bar-body-list li.check01,
.protool_bar-body-nav-list li.check01 {
  background-image: url(/static/images/icon_editor_check01_off.svg)
}
.protool_bar-body-list li.check02,
.protool_bar-body-nav-list li.check02 {
  background-image: url(/static/images/icon_editor_check02_off.svg)
}
.protool_bar-body-list li.import,
.protool_bar-body-nav-list li.import {
  background-image: url(/static/images/icon_editor_import_off.svg)
}
.protool_bar-body-list li.export,
.protool_bar-body-nav-list li.export {
  background-image: url(/static/images/icon_editor_export_off.svg)
}
.protool_bar-body-list li.order,
.protool_bar-body-nav-list li.order {
  background-image: url(/static/images/icon_editor_order_off.svg)
}
.protool_bar-body-list li.active.place,
.protool_bar-body-nav-list li.active.place {
  background-image: url(/static/images/icon_editor_place_on.svg)
}
.protool_bar-body-list li.active.input,
.protool_bar-body-nav-list li.active.input {
  background-image: url(/static/images/icon_editor_input_on.svg)
}
.protool_bar-body-list li.active.remove,
.protool_bar-body-nav-list li.active.remove {
  background-image: url(/static/images/icon_editor_remove_on.svg)
}
.protool_bar-body-list li.active.boundary,
.protool_bar-body-nav-list li.active.boundary {
  background-image: url(/static/images/icon_editor_boundary_on.svg)
}
.protool_bar-body-list li.active.order,
.protool_bar-body-nav-list li.active.order {
  background-image: url(/static/images/icon_editor_order_on.svg)
}
.protool_bar-body-list li.active.check01,
.protool_bar-body-nav-list li.active.check01 {
  background-image: url(/static/images/icon_editor_check01_on.svg)
}
.protool_bar-body-list li.active.check02,
.protool_bar-body-nav-list li.active.check02 {
  background-image: url(/static/images/icon_editor_check02_on.svg)
}
.protool_bar-body-list li.active.import,
.protool_bar-body-nav-list li.active.import {
  background-image: url(/static/images/icon_editor_import_on.svg)
}
.protool_bar-body-list li.active.export,
.protool_bar-body-nav-list li.active.export {
  background-image: url(/static/images/icon_editor_export_on.svg)
}
@media (max-width: 767px){
  .protool_bar-body-list li {
    word-break: break-all;
  }
  .protool_bar-body-list li span {
    bottom: 10px;
  }
}
@media (max-width: 413px){
  .protool_bar-body-list li {
    width: 50px;
  }
}
@media (max-width: 320px){
  .protool_bar-body-list li {
    width: 42px;
  }
}
@media (max-width: 767px){
  .protool_bar-body-nav {
    position: relative;
  }
  .protool_bar-body-nav-btn {
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 40px;
  }
  .protool_bar-body-nav-btn span {
    background-color: #4A4A4A;
    color: #fff;
    width: 25px;
    height: 4px;
    position: absolute;
    top: 48%;
    left: 6px;
  }
  .protool_bar-body-nav-btn span:before,
  .protool_bar-body-nav-btn span:after {
    background-color: #4A4A4A;
    content: '';
    display: block;
    height: 4px;
    position: absolute;
    width: 100%;
  }
  .protool_bar-body-nav-btn span:before {
    top: -9px;
  }
  .protool_bar-body-nav-btn span:after {
    bottom: -9px;
  }
  .protool_bar-body-nav-list {
    display: none;
    position: absolute;
    right: -4px;
    z-index: 9999;
    background-color: #F5F3EE;
    width: 200px;
    margin-top: 8px;
  }
  .protool_bar-body-nav.active .protool_bar-body-nav-list {
    display: block;
  }
  .protool_bar-body-nav-list li {
    background-position: 8px 50%;
    background-repeat: no-repeat;
    font-size: 12px;
    line-height: 12px;
    padding: 8px 8px 8px 40px;
  }
  .protool_bar-body-nav-list li:nth-child(even) {
    background-color: #EAEAEA;
  }
  .protool_bar-body-nav .protool_bar-body-nav-img {
    display: inline-block;
    margin-right: 8px;
    width: 20px;
    text-align: center;
  }
  .protool_bar-body-nav .protool_bar-body-nav-img img {
    height: 16px;
  }
}
.protool_bar-body-list img {
  width: auto;
  max-height: 20px;
}

.protool_bar-body-selector {
  position: relative;
}
@media (max-width: 767px){
  .protool_bar-body-selector {
    min-width: 30%;
  }
}
.protool_bar-body-selector .selector-title {
  cursor: pointer;
  display: block;
  font-size: 12px;
  width: auto;
  height: 100%;
  line-height: 38px;
  padding: 4px 6px;
}
.protool_bar-body-selector .selector-title:hover {
  background-color: #dcdcdc;
}
.protool_bar-body-selector .selector-title span {
  display: inline-block;
  max-width: 200px;
  width: auto;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: middle;
}
@media (max-width: 767px){
  .protool_bar-body-selector .selector-title span {
    max-width: 200px;
  }
}
@media (max-width: 539px){
  .protool_bar-body-selector .selector-title span {
    max-width: 90px;
  }
}
@media (max-width: 413px){
  .protool_bar-body-selector .selector-title span {
    max-width: 74px;
  }
}
@media (max-width: 375px){
  .protool_bar-body-selector .selector-title span {
    max-width: 45px;
  }
}
.protool_bar-body-selector .selector-title:after {
  content: '';
  display: inline-block;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid #9b9b9b;
  border-bottom: 0 solid transparent;
  margin-top: -2px;
  margin-left: 6px;
  vertical-align: middle;
}
@media (max-width: 767px){
  .protool_bar-body-selector .selector-title:after {
    margin-left: 0;
  }
}
.protool_bar-body-selector img {
  width: auto;
  height: 20px;
  margin-right: 4px;
}
.protool_bar-body-selector .selector-list {
  display: none;
  background-color: #f5f3ee;
  border-radius: 5px 5px 0 0;
  box-shadow:0 2px 3px 0 #999;
  -moz-box-shadow:0 2px 3px 0 #999;
  -webkit-box-shadow:0 2px 3px 0 #999;
  min-width: 160px;
  position: absolute;
  top: 42px;
  z-index: 9000;
}
.protool_bar-body-selector .selector-list.active {
  display: block;
}
.protool_bar-body-selector .selector-list ul {
  margin-bottom: 0;
}
.protool_bar-body-selector .selector-list li {
  cursor: pointer;
  line-height: 28px;
  padding: 0 15px;
}
.protool_bar-body-selector .selector-list li:hover {
  background-color: #dcdcdc;
}
.protool_bar-body-selector .selector-list li:nth-child(even) {
  background-color: #eaeaea;
}
.protool_bar-body-selector .selector-list .selector-add {
  border-top: 2px solid #e9e7e5;
  border-bottom: 2px solid #e9e7e5;
  cursor: pointer;
  display: block;
  line-height: 28px;
  padding: 0 12px;
}
.protool_bar-body-selector .selector-list .selector-add:hover {
  background-color: #dcdcdc;
}
.protool_bar-body-selector .selector-list .selector-add > span:before {
  content: '';
  display: inline-block;
  background: url(/static/images/icon_plus.png) no-repeat 50%;
  width: 10px;
  height: 10px;
  margin-right: 8px;
}


.protool_bar-body-selector .selector-list .selector-manage {
  display: block;
  border: 1px solid #979797;
  border-radius: 5px;
  cursor: pointer;
  line-height: 20px;
  margin: 8px;
  text-align: center;
}
.protool_bar-body-selector .selector-list .selector-manage:hover {
  opacity: 0.8;
}

.protool_bar-body-selector.active .selector-title:after {
  border-bottom: 6px solid #9b9b9b;
  border-top: 0 solid transparent;
}
.protool_bar-body-selector.active .selector-list {
  display: block;
}

.mapeditor-body {
  position: relative;
  padding: 10px 20px 15px;
  min-height: calc(100vh - 350px);
}
.mapeditor-body-inner {
  display: flex;
}
.mapeditor-body-inner > * {
  width: 50%;
}
.mapeditor-body-inner > *:first-child {
  padding-right: 8px;
}
.mapeditor-body-inner > *:last-child {
  padding-left: 8px;
}
@media (max-width: 767px){
  .mapeditor-body {
    padding: 10px;
  }
  .mapeditor-body-inner > *:first-child {
    padding-right: 5px;
  }
  .mapeditor-body-inner > *:last-child {
    padding-left: 5px;
  }
}


.mapeditor-under_bar {
  position: relative;
  padding: 10px 0;
}

.mapeditor-under_bar .edit-history {
  float: left;
  margin-bottom: 0;
  min-height: 30px;
  box-sizing: border-box;
}
.mapeditor-under_bar .edit-history li {
  color: #999;
  line-height: 1.6;
  padding: 4px 0;
}

.mapeditor-btns.top {
  display: flex;
  position: absolute;
  top: 130px;
  right: 20px;
  gap: 10px;
}
@media (max-width: 767px){
  .mapeditor-btns.top {
    display: none;
  }
}

.mapeditor-btns.bottom {
  display: none;
}
@media (max-width: 767px){
  .mapeditor-btns.bottom {
    display: flex;
    gap: 4px;
  }
}

.mapeditor-btns .mapeditor-preview {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  display: block;
  line-height: 33px;
  text-align: center;
  width: 200px;
}
@media (max-width: 767px){
  .mapeditor-btns .mapeditor-preview {
    width: auto;
    padding-inline: 4px;
    flex-grow: 1;
    flex-shrink: 0;
  }
}
.mapeditor-btns .mapeditor-preview:hover {
  opacity: 0.8;
}

.mapeditor-btns .save-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 120px;
  cursor: pointer;
  background-color: #e6b336;
  border-color: #e6b336;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 33px;
  flex-grow: 1;
  flex-shrink: 0;
}
@media (max-width: 767px){
  .mapeditor-btns .save-btns {
    min-width: 104px;
  }
}
.mapeditor-btns .save-btns .save-btns-label {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.mapeditor-btns .save-btns .save-btns-label > span {
  margin-inline-start: 8px;
}
.mapeditor-btns .save-btns .save-btns-label:after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
}
.mapeditor-btns .save-btns .save-btns-label:hover {
  opacity: 0.8;
}
.mapeditor-btns .save-btns.active .save-btns-label:after {
  border-top: transparent;
  border-bottom: 5px solid #fff;
}
.mapeditor-btns .save-btns ul {
  display: none;
  position: absolute;
  z-index: 1100;
  top: 34px;
  background-color: #F5F3EE;
  width: 100%;
  -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.75);
  box-shadow: 0 2px 2px rgba(0,0,0,.75);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.mapeditor-btns .save-btns ul li {
  float: none;
  background-color: #F5F3EE;
  border: none;
}
.mapeditor-btns .save-btns ul li:hover {
  background-color: #EAEAEA;
}
.mapeditor-btns .save-btns ul li button {
  display: block;
  border: none;
  background: none;
  padding: 11px 18px;
  text-align: left;
  width: 100%;
}
@media (max-width: 767px){
  .mapeditor-btns .save-btns ul li button {
    padding: 11px 8px;
  }
}
.mapeditor-btns .save-btns ul li:hover {
  opacity: 0.8;
}

.mapeditor-btns .save-btns.active ul {
  display: block;
}

.mapeditor-btns .mapeditor-btns-upload-map {
  font-size: 14px;
  color: #fff;
  background-color: #e6b336;
  border: none;
  border-radius: 4px;
  line-height: 33px;
  padding-inline: 16px;
  cursor: pointer;
  flex-grow: 1;
}
@media (max-width: 767px){
  .mapeditor-btns .mapeditor-btns-upload-map {
    padding-inline: 4px;
  }
}

.mapeditor-settings {
  position: relative;
}
.mapeditor-settings-btn {
  cursor: pointer;
  position: relative;
  background: url(/static/images/icon_settings.svg) #fff no-repeat 10px 50%;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  display: block;
  height: 35px;
  text-indent: -9999px;
  width: 60px;
}
.mapeditor-settings-btn:after {
  content: '';
  position: absolute;
  display: block;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #9B9B9B;
}
.mapeditor-settings.active .mapeditor-settings-btn:after {
  border-top: none;
  border-bottom: 5px solid #9B9B9B;
}
.mapeditor-settings-list {
  display: none;
  position: absolute;
  z-index: 1100;
  top: 35px;
  right: 0;
  background-color: #F5F3EE;
  width: 200px;
  -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.75);
  box-shadow: 0 2px 2px rgba(0,0,0,.75);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  background-color: white;
}
.mapeditor-settings.active .mapeditor-settings-list {
  display: block;
}
.mapeditor-settings-list li {
  background-color: #F5F3EE;
}
.mapeditor-settings-list li:hover {
  background-color: #EAEAEA;
}
.mapeditor-settings-list li button {
  -webkit-appearance: none;
  border: none;
  display: block;
  width: 100%;
  padding: 10px 15px;
  line-height: 20px;
  text-align: left;
  color: #4d4d49;
  background-color: transparent;
}

/* デバイスサイズによるsave系ボタンの表示位置調整 */
@media (max-width: 767px){
  .mapeditor-under_bar {
    padding: 20px 0 10px;
  }
  .mapeditor-under_bar .edit-history {
    float: none;
  }
  .mapeditor-btns .delete-btn {
    width: 100%;
  }
  .mapeditor-btns.bottom .delete-btn {
    margin-bottom: 32px;
  }
  .mapeditor-under_bar .edit-history {
    font-size: 12px;
  }
}


.mapeditor-body-inner .leaflet-control-rotate {
  display: none;
}

.mapeditor-body-inner .leaflet-bottom .leaflet-control-layers {
  margin-bottom: 32px;
}

/*--------------------------------------------------
  地図アップロード
--------------------------------------------------*/
#MapUploadForm .container {
  max-width:  800px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.mapUpload-head-inner {
  position: relative;
  max-width: 940px;
  min-height: 100px;
  margin: 0 auto;
  padding: 36px 20px;
}
.mapUpload-head-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
.mapUpload-head-helpLink {
  position: absolute;
  right: 0;
  top: 40px;
  font-size: 12px;
  line-height: 20px;
}

.mapUpload-list {
  margin: 20px 0;
  padding-left: 24px;
}

.mapUpload-list li {
  list-style-type: disc;
}

.mapUpload-desc {
  margin-bottom: 24px;
}

.mapUpload-desc p {
  font-weight: 300;
}

.mapUpload-columns {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 24px;
}

.mapUpload-select-file {
  display: block;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  margin-bottom: 0;
  line-height: 34px;
  color: #fff;
  background-color: #E6B336;
  border-radius: 4px;
  font-weight: 300;
  text-align: center;
}
.mapUpload-select-file ~ input[type="file"] {
  display: none;
}

.mapUpload-selected-file {
  display: block;
  max-width: 300px;
  width: 100%;
  margin-left: 24px;
}

.mapUpload-notice-list {
  padding-left: 24px;
  margin-bottom: 22px;
}
.mapUpload-notice-list li {
  list-style-type: disc;
}

.mapUpload-separator {
  position: relative;
  height: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.mapUpload-separator:before,
.mapUpload-separator:after {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  width: calc(50% - 30px);
  height: 1px;
  background-color: #979797;
}
.mapUpload-separator:before {
  left: 0;
}
.mapUpload-separator:after {
  right: 0;
}
.mapUpload-mappalisto-description {
  margin-top: 20px;
}
#auto_mapping_enable {
  margin-left: 10px;
}
#auto_mapping_disable {
  margin-left: 10px;
}

.mapUpload-freeImage-list .bx-wrapper .bx-viewport {
  box-shadow: none;
  border: none;
  margin: 0;
}

.mapUpload-freeImage-img {
  cursor: pointer;
  border: 2px solid transparent;
  margin-bottom: 8px;
}
.mapUpload-freeImage-img img{
  width: 80px;
  height: 80px;
}
.mapUpload-freeImage-img.active {
  border: 2px solid #ff3300;
}
.mapUpload-freeImage-list a {
  cursor: pointer;
  display: block;
  color: #4d4d49;
  text-align: center;
}

.mapUpload-location-desc {
  margin-bottom: 8px;
  font-weight: 300;
}
.mapUpload-location-desc ~ input[type="text"] {
  margin-bottom: 10px;
}
.mapUpload-location-sup {
  margin-bottom: 50px;
  font-size: 12px;
}
.mapUpload-checkbox input[type="checkbox"] {
  display: none;
}
.mapUpload-checkbox-label {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 300;
}
.mapUpload-checkbox-label:before {
  content: '';
  display: none;
  position: absolute;
  top: 6px;
  left: 3px;
  z-index: 1;
  width: 14px;
  height: 7px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-45deg);
}
.mapUpload-checkbox-label:after {
  content: '';
  position: absolute;
  left: 0;
  z-index: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #3AAFDA;
  background-color: #3AAFDA;
}
.mapUpload-checkbox input[type="checkbox"]:checked ~ .mapUpload-checkbox-label:before {
  display: block;
}
.mapUpload-checkbox-caution {
  margin-bottom: 40px;
  font-size: 12px;
}
.mapUpload-checkbox-caution a {
  text-decoration: underline;
}.mapUpload-board-desc {
  margin-bottom: 8px;
  font-weight: 300;
}
.mapUpload-submit {
  margin: 60px 0;
}
.mapUpload-submit button {
  -webkit-appearance: none;
  display: block;
  position: relative;
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
  background-color: #E6B336;
  border: none;
  border-radius: 4px;
  color: #fff;
  line-height: 35px;
  text-align: center;
}
.mapUpload-submit button:disabled {
  background-color: #f5f5f5;
  border: 1px solid #aaa;
  color: #aaa;
  cursor: not-allowed;
}
.mapupload-modal img {
  width: 100%;
}

.confirm_image.stModal .stModal-cont {
  height: 400px;
}
.confirm_image.stModal .stModal-desc {
  text-align: left;
}

@media (max-width: 767px){
  #MapUploadForm .container {
    max-width: 330px;
  }
  .mapUpload-head-helpLink {
    right: 10px;
  }
  .mapUpload-columns {
    display: block;
  }
  .mapUpload-select-file {
    max-width: 100%;
  }
  .mapUpload-selected-file {
    margin: 12px 0;
  }
  .mapUpload-notice-list {
    margin-bottom: 24px;
  }
  .mapUpload-separator {
    margin-bottom: 24px;
  }
  .mapUpload-freeImage-list {
    margin-bottom: 16px;
    padding-bottom: 8px;
    overflow-y: scroll;
  }
  .mapUpload-freeImage-list li {
    width: 80px;
  }
  .mapUpload-location-sup {
    margin-bottom: 30px;
  }
  .mapUpload-checkbox-caution {
    margin-bottom: 40px;
  }
  .mapUpload-submit {
    margin-top: 50px;
  }
  .confirm_image.stModal .stModal-cont {
    height: 500px;
  }
}


/*--------------------------------------------------
  mapeditor用
--------------------------------------------------*/
.metaDataEditor-body .editor-box {
  display: flex;
  margin-bottom: 15px;
}
.metaDataEditor-body .editor-box .form-control:focus::placeholder {
  color: transparent;
  transition: .1s;
}
.metaDataEditor-body .editor-box .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  transition: .1s;
}
.metaDataEditor-body .editor-box .form-control:focus:-moz-placeholder {
  color: transparent;
  transition: .1s;
}
.metaDataEditor-body .editor-box .form-control:focus::-moz-placeholder {
  color: transparent;
  transition: .1s;
}
.metaDataEditor-body .editor-box .editor-box-left {
  font-weight: 300;
  margin-bottom: 0;
  padding: 7px 30px 0 0;
  position: relative;
  text-align: left;
  width: 16.66666667%;
}
.metaDataEditor-body .editor-box .editor-box-left a {
  display: block;
  margin-left: 1em;
  font-size: 12px;
  text-decoration: underline;
}
.metaDataEditor-body .editor-box .editor-box-right {
  position: relative;
  padding: 0;
  width: 83.33333333%;
}
.metaDataEditor-body .editor-box.select-lang {
  margin: 15px 0 30px;
}
.metaDataEditor-body .editor-box.select-lang select {
  width: 300px;
  margin: 0 auto;
  background-color: #F5F3EE;
}
.metaDataEditor-body .editor-box.tags .sup {
  display: inline-block;
  margin-left: 12px;
  font-size: 12px;
  color: #555;
}
.metaDataEditor-body .editor-box.more-info {
  margin: 30px 0;
}
.metaDataEditor-body .editor-box.more-info:hover {
  opacity: 0.8;
}
.metaDataEditor-body .editor-box.more-info .add-btn {
  margin-left: 16.66666667%;
  width: 300px;
  background-color: #f5f3ee;
  border: 1px solid #979797;
  border-radius: 4px;
  color: #4d4d49;
  display: block;
  line-height: 33px;
  text-align: center;
}
@media (max-width: 767px){
  .metaDataEditor-body .editor-box.more-info .add-btn {
    margin-left: 0;
    width: 100%;
  }
}
.metaDataEditor-body .editor-box.more-info .add-btn span {
  position: relative;
  display: inline-block;
}
.metaDataEditor-body .editor-box.more-info .add-btn span:before {
  content: '+';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  line-height: 1;
  font-size: 16px;
  color: #9B9B9B;
  margin: auto;
  width: 16px;
  height: 16px;
}
.metaDataEditor-body .editor-box.more-info.active .add-btn span:before {
  content: '-';
}
.metaDataEditor-body .editor-box.tags input.form-control {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
.metaDataEditor-body .mapeditor-options {
  display: none;
}
.metaDataEditor-body .mapeditor-options.active {
  display: block;
}

@media (max-width: 767px){
  .metaDataEditor-body .container {
    width: 100%;
    padding: 0;
  }
  .metaDataEditor-body .editor-box .editor-box-left {
    width: 100px;
  }
  .metaDataEditor-body .editor-box .editor-box-right {
    width: calc(100% - 100px);
  }
  .metaDataEditor-body .editor-box.tags .jsTags{
    display: block;
    margin-bottom: 8px;
  }
  .metaDataEditor-body .editor-box.tags input.form-control {
    max-width: 120px;
  }
}
@media (min-width: 992px) {
  .metaDataEditor-body .container {
    width: 900px;
  }
}

.metaDataEditor-body .locator-wrap {
  display: flex;
  justify-content: space-between;
}
.metaDataEditor-body .locator {
  position: relative;
}
.metaDataEditor-body .locator .selected_img {
  cursor: pointer;
  position: relative;
  width: 100px;
}
.metaDataEditor-body .locator .selected_img:after {
  content: '';
  display: block;
  border-top: 5px solid #9B9B9B;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  bottom: 20px;
  left: 70px;
}
.metaDataEditor-body .locator .selected_img img {
  width:  58px;
}
.metaDataEditor-body .locator .locator-selector {
  display: none;
  background-color: #f5f3ee;
  box-shadow: 0 2px 3px 0 #999;
  -moz-box-shadow: 0 2px 3px 0 #999;
  -webkit-box-shadow: 0 2px 3px 0 #999;
  min-width: 180px;
  position: absolute;
  top: 60px;
  left: -15px;
  z-index: 1;
}
.metaDataEditor-body .locator .locator-selector.active {
  display: block;
}
.metaDataEditor-body .locator .locator-selector:before {
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: 0;
  background-color: #F5F3EE;
  box-shadow: 0 2px 3px 0 #999;
  -moz-box-shadow: 0 2px 3px 0 #999;
  -webkit-box-shadow: 0 2px 3px 0 #999;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  transform: translateX(-50%) rotate(45deg) skew(20deg,20deg); /* 傾斜角(skew) */
}
.metaDataEditor-body .locator .locator-selector ul {
  position: relative;
  z-index: 1;
  background-color: #f5f3ee;
}
.metaDataEditor-body .locator .locator-selector-list {
  margin-bottom: 0;
}
.metaDataEditor-body .locator .locator-selector-list li {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
}
.metaDataEditor-body .locator .locator-selector-list li:nth-child(even) {
  background-color: #eaeaea;
}
.metaDataEditor-body .locator .locator-selector-list li img {
  width: auto;
  height: 19px;
  margin: 5px 8px 0;
}
.metaDataEditor-body .locator .locator-selector-list-name {
  cursor: pointer;
  display: inline-block;
  margin-right: 12px;
  width: 66%;
}
.metaDataEditor-body .locator .locator-selector-list-controls {
  cursor: pointer;
  color: #9B9B9B;
  display: inline-block;
  font-size: 12px;
  line-height: 30px;
  padding: 0 8px;
}
@media (max-width: 767px){
  .metaDataEditor-body .locator .locator-selector-list-controls {
    padding: 0 2%;
  }
}
.metaDataEditor-body .locator .locator-selector-add {
  border-top: 2px solid #e9e7e5;
  cursor: pointer;
  display: block;
  line-height: 28px;
  padding: 0 12px;
}
.metaDataEditor-body .locator .locator-selector-add > span:before {
  content: '';
  display: inline-block;
  background: url(/static/images/icon_plus.png) no-repeat 50%;
  width: 10px;
  height: 10px;
  margin-right: 6px;
}
.metaDataEditor-body .locator-wrap a {
  color: #E6B336;
  cursor: pointer;
  font-size: 12px;
  font-weight: 300;
  text-decoration: underline;
}





.layerList{
    background-color:#e2e2e2;
}

.fill{
    height:100%;
    min-height:100%;
}

.hidden{
    display:none;
}

.leaflet-marker-icon-myMapping{
    background:#fff;
    background-image:url("/static/img/corner_top_left_red.png");
    background-repeat: no-repeat;
    color:#000;
}

.leaflet-marker-icon-myMapping-selected{
    background:#f00;
    background-image:url("/static/img/corner_top_left_white.png");
    background-repeat: no-repeat;
    color:#fff;
}
.tag-close:hover,
.tag-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}

.mapeditor-info-short {
  width: 500px;
}
@media (max-width: 767px){
  .mapeditor-info-short {
    width: 100%;
  }
}
.map-tag {
  display: inline-block;
  line-height: 1.4em;
  margin-top: 4px;
  margin-right: 5px;
  padding: 6px;
}

.select-license {
  width: 300px;
}
@media (max-width: 767px){
  .select-license {
    width: 100%;
  }
}

.landmark-search-input {
  display: inline-block;
  width: 200px;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  vertical-align: middle;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.landmark-search-btn {
  cursor: pointer;
  position: relative;
  background-color: #e6b336;
  border-color: #e6b336;
  border-radius: 0 4px 4px 0;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  width: 60px;
}
.landmark-list:hover {
  color: #e6b336;
}


/* common .lang-selector */
.lang-selector {
  cursor: pointer;
  position: relative;
  width: 300px;
  height: 35px;
  margin: 0 0 15px 0;
  background-color: #F5F3EE;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.metaDataEditor-body .lang-selector {
  margin-left: 16.66666667%;
}
@media (max-width: 767px){
  .lang-selector {
    width: 100%;
  }
  .metaDataEditor-body .lang-selector {
    margin-left: 0;
    width: 100%;
  }
}
.lang-selector .select-lang {
  display: block;
  cursor: pointer;
  position: relative;
  line-height: 1;
  padding: 10px 15px;
  width: 100%;
}
.lang-selector .select-lang:after {
  content: '';
  position: absolute;
  display: block;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #9B9B9B;
}
.lang-selector .select-lang:hover {
  opacity: 0.8;
}
.lang-selector.active .select-lang:after {
  border-top: none;
  border-bottom: 5px solid #9B9B9B;
}
.lang-selector.active ul {
  display: block;
}
.lang-selector ul {
  display: none;
  position: absolute;
  z-index: 1100;
  top: 32px;
  background-color: #F5F3EE;
  width: 100%;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.lang-selector ul li {
  float: none;
}
.lang-selector ul li:hover {
  background-color: #dcdcdc;
}
.lang-selector ul li:not(last-child) {
  border-bottom: 1px solid #ddd;
}
.lang-selector ul a,
.lang-selector ul a:focus,
.lang-selector ul a:hover,
.lang-selector ul li.active a,
.lang-selector ul li.active a:focus,
.lang-selector ul li.active a:hover {
  background: none;
  border: none;
  margin-right: 0;
}


/*--------------------------------------------------
 for edit_profile.html
 -------------------------------------------------*/
.edit_profile#Main {
  position: relative;
  height: 100%;
  margin-top: 42px;
}
.edit_profile .edit_profile-innerBox {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}
.edit_profile .mypage-mv {
  padding-bottom: 0;
}
/* .edit_profile .edit_profile-thumb {
  position: relative;
} */
.edit_profile .edit_profile-thumb-circle {
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  cursor: pointer;
  height: 100px;
  margin-right: 16px;
  min-width: 100px;
  overflow: hidden;
  position: relative;
  width: 100px;
}

.edit_profile .edit_profile-thumb-icon {
  background: url(/static/images/icon_plus.svg) no-repeat;
  border: 0;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 767px){
  .edit_profile .profile-body {
    max-width: inherit;
    width: 100%;
  }
}
.edit_profile .edit_profile-body {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 32px 20px 20px;
}
@media (max-width: 767px){
  .edit_profile .edit_profile-body {
    max-width: 100%;
  }
}
.edit_profile .edit_profile-body > div {
  display: flex;
}
.edit_profile .edit_profile-body > div:not(:last-child) {
  margin-bottom: 20px;
}
.edit_profile label {
  font-weight: 300;
  line-height: 36px;
  margin-bottom: 0;
  max-width: 120px;
  width: 40%;
}
@media (max-width: 767px){
  .edit_profile .edit_profile-body label {
    max-width: inherit;
  }
}
.edit_profile input[type="text"] {
  -webkit-appearance: none;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.75) inset;
  border-radius: 5px;
  padding: 8px;
  width: 100%;
}
.edit_profile textarea {
  -webkit-appearance: none;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.75) inset;
  border-radius: 5px;
  padding: 8px;
  width: 100%;
  height: 160px;
}
.edit_profile .withdraw {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px 20px;
  text-align: right;
}
.edit_profile-under_bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  min-height: 30px;
  box-sizing: border-box;
  background-color: #f5f3ee;
  position: relative;
  padding: 30px 0;
}
@media (max-width: 767px){
  .edit_profile-under_bar {
    position: relative;
  }
}
.edit_profile-under_bar li {
  color: #999;
  line-height: 1.6;
}

.edit_profile #panelWrap {
  display: none;
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: rgba(0,0,0,0.8);
  width: 100%;
  height: 100%;
}
.edit_profile #panelWrap.view {
  display: block;
}
.edit_profile .panel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  height: 400px;
}
.edit_profile .panel-heading {
  text-align: center;
}
.edit_profile .panel-body {
  min-height: 310px;
}
.edit_profile .panel-body .slider img {
  max-width: 100%;
}
.edit_profile .panel-footer {
  text-align: center;
}
.edit_profile-ok_btn {
  -webkit-appearance: none;
  background-color: #fbc644;
  border: none;
  border-radius: 4px;
  color: #fff;
  line-height: 28px;
  width: 100%;
  max-width: 300px;
}


/*--------------------------------------------------
 for withdraw.html
 -------------------------------------------------*/
.withdraw .withdraw-cont {
  padding: 20px 0;
}
.withdraw .withdraw-footer {
  text-align: center;
}
.withdraw .button-withdraw {
  border-radius: 3px;
  font-size: 12px;
  line-height: 27px;
  padding: 1px 5px;
  width: 170px;
}
.withdraw .button-withdraw.cancel {
  background-color: #fff;
  border-color: #ccc;
  color: #333;
}
.withdraw .button-withdraw.ok {
  background-color: #e6b336;
  border-color: #e6b336;
  color: #fff;
}
@media (max-width: 767px) {
  .withdraw .button-withdraw {
    display: block;
    width: 100%;
  }
  .withdraw .button-withdraw.cancel {
    margin-bottom: 16px;
  }
}



/*--------------------------------------------------
 modal layout
 -------------------------------------------------*/
.useStModal {
  position: relative;
}
.useStModal .stModal {
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}
.useStModal .stModal-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 500px;
  height: 280px;
  background-color: #fff;
  border-radius: 3px;
  padding: 20px;
}
.useStModal .stModal-head {
  position: relative;
  color: #333;
  background-color: transparent;
  border-color: #ddd;
  border-bottom: 1px solid transparent;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}
.useStModal .stModal-title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
.useStModal .stModal-close {
  position: absolute;
  right: 0;
  top: 0;
}
.useStModal .stModal-desc {
  text-align: center;
}
.useStModal .stModal-desc a {
  color: #836405;
  text-decoration: underline;
}
.useStModal .stModal-body {
  margin-bottom: 30px;
}
.useStModal .stModal-footer {
  margin-bottom: 20px;
  text-align: center;
}
.useStModal .stModal-footer.two-columns {
  max-width: 100%;
  width: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.useStModal .stModal-btn {
  border-radius: 3px;
  font-size: 12px;
  line-height: 38px;
  padding: 0 5px;
  width: 170px;
}
.useStModal .stModal-btn.ok {
  background-color: #e6b336;
  border-color: #e6b336;
  color: #fff;
}
.useStModal .stModal-btn.cancel {
  background-color: #fff;
  border-color: #E6B336;
  color: #E6B336;
}
.useStModal .confirm_image.stModal .stModal-footer.two-columns .stModal-btn.ok {
  float: right;
}
.useStModal .confirm_image.stModal .stModal-footer.two-columns .stModal-btn.cancel {
  float: left;
}
.stModal {
  display: none;
}
.stModal.view {
  display: block;
}

@media (max-width: 767px){
  .useStModal .stModal-cont {
    max-width: 92%;
    height: 260px;
  }
  .useStModal .confirm_image.stModal .stModal-footer.two-columns {
    display: block;
  }
  .useStModal .confirm_image.stModal .stModal-footer.two-columns > * {
    width: 100%;
  }
  .useStModal .confirm_image.stModal .stModal-footer.two-columns .stModal-btn.ok {
    float: none;
    margin-bottom: 20px;
  }
  .useStModal .confirm_image.stModal .stModal-footer.two-columns .stModal-btn.cancel {
    float: none;
  }
  .useStModal .stModal-footer.two-columns {
    display: block;
  }
  .useStModal .stModal-btn {
    width: 100%;
  }
  .useStModal .stModal-btn.ok {
    margin-bottom: 20px;
  }
}


/*-- 位置情報取得許諾ダイアログ --*/
body.dialogFixed {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}

.dialog {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}

.dialog.active {
  display: block;
}

.dialog__box {
  position: fixed;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  color: #fff;
  background-color: #4A4A4B;
}

.dialog__box__inner {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 28px;
}

.dialog__box__inner .dialog__text .text-title {
  margin: 0 0 20px;
  line-height: 1.714;
  font-size: 14px;
}

.dialo__box__inner .dialog__text p {
  margin: 0 0 24px;
}

.dialog__box__inner .dialog__text .text-list {
  margin: 0;
  padding-left: 1em;
  margin-bottom: 20px;
}

.dialog__box__inner .dialog__text li {
  font-size: 13px;
  line-height: 1.8;
  list-style-type: disc;
}

.dialog__box__inner .dialog__text .text-accept {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.dialog__buttons {
  display: flex;
  justify-content: space-between;
}

.dialog__buttons > * {
  cursor: pointer;
  max-width: 300px;
  width: 48%;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  border: 2px solid #E6B336;
  border-radius: 4px;
  box-shadow: none;
}

.dialog__buttons .progress {
  color: #fff;
  background-color: #E6B336;
}

.dialog__buttons .un-progress {
  color: #E6B336;
  background-color: transparent;
}


.dialog.cookie-accept .dialog__text {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.dialog.cookie-accept .dialog__text .text {
  flex: 1;
  margin-right: 20px;
  line-height: 1.75;
}

.dialog.cookie-accept .dialog__text .text a {
  color: #337ab7;
}

.dialog.cookie-accept .dialog__text .close {
  position: relative;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
}

.dialog.cookie-accept .dialog__text .close:before,
.dialog.cookie-accept .dialog__text .close:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background-color: #fff;
}

.dialog.cookie-accept .dialog__text .close:before {
  transform: rotate(-45deg);
}

.dialog.cookie-accept .dialog__text .close:after {
  transform: rotate(45deg);
}


/* styles for '...' */
.multiline_ellipsis {
  /* hide text if it more than N lines  */
  overflow: hidden;
  /* for set '...' in absolute position */
  position: relative;
  /* fix problem when last visible word doesn't adjoin right side  */
  text-align: justify;
  /* place for '...' */
  /*margin-right: -1em;*/
  /*padding-right: 1em;*/
}
/* create the ... */
.multiline_ellipsis:before {
  /* points in the end */
  content: '';
  /* absolute position */
  position: absolute;
  /* set position to right bottom corner of block */
  right: 0;
  bottom: 0;
}
/* hide ... if we have text, which is less than or equal to max lines */
.multiline_ellipsis:after {
  /* points in the end */
  content: '';
  /* absolute position */
  position: absolute;
  /* set position to right bottom corner of text */
  right: 0;
  /* set width and height */
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  /* bg color = bg color under block */
  background: white;
}

/* over riding leaflet style */
.leaflet-left{
  z-index:1001;
}







/*--------------------------------------------------
  共通modal(旧mapeditorModal)
--------------------------------------------------*/
.commonModal {
  position:fixed;
  z-index:9001;
  top: 0;
  left: 0;
  width:  100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}
.commonModal-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 500px;
  max-height: 80%;
}
.commonModal-inner-pc{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80%;
}
.commonModal .panel {
  position: relative;
  width: 100%;
  height: 100%;
}
.commonModal .panel-heading {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  border-color: #707070;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.commonModal .panel-heading .panel-close {
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 20px;
  height: 20px;
  margin: auto;
  text-indent: -9999px;
}
.commonModal .panel-heading .panel-close:before,
.commonModal .panel-heading .panel-close:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background-color: #4A4A4B;
}
.commonModal .panel-heading .panel-close:before {
  transform: rotate(-45deg);
}
.commonModal .panel-heading .panel-close:after {
  transform: rotate(45deg);
}
.commonModal .panel-body {
  background-color: #fff;
  height: 100%;
  padding: 60px 15px;
}
.commonModal .panel-footer {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 100%;
  background-color: #F5F3EE;
  border-top: none;
}
.commonModal .panel-footer .btn-ok {
  background-color: #E6B336;
  border-color: #E6B336;
  color: #fff;
  display: block;
  line-height: 33px;
  max-width: 300px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.commonModal .panel-footer .btn-ok:hover {
  background-color: #fff;
  color: #E6B336;
}
.commonModal .panel-footer .btn-add {
  display: block;
  border: 1px solid #979797;
  border-radius: 5px;
  cursor: pointer;
  line-height: 33px;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
.commonModal .panel-footer .btn-add:hover {
  background-color: #f3f3f3;
  opacity: 0.8;
}
.commonModal .panel-footer .btn-add > span:before {
  content: '';
  display: inline-block;
  background: url(/static/images/icon_plus.png) no-repeat 50%;
  width: 10px;
  height: 10px;
  margin-right: 16px;
}
.commonModal .panel-footer.has-add-btn {
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  position: absolute;
  width: 100%;
  bottom: 0;
}

@media (max-width: 767px){
  .commonModal .panel-heading {
    padding: 10px 18px;
  }
  .commonModal .panel-heading .panel-close {
    width: 16px;
    height: 16px;
  }
  .commonModal .panel-body.firstStep {
    padding-bottom: 55px;
  }
  .commonModal .commonModal-inner {
    width: 89%;
  }
}


/*--------------------------------------------------
 ファーストステップガイド
--------------------------------------------------*/
.commonModal .firstStep .panel-body {
  padding: 46px 0 76px;
}

.commonModal .firstStep .panel-footer {
  height: 76px;
  border-top: 1px solid #707070;
}

.commonModal .firstStep .panel-footer {
  background-color: transparent;
}

.commonModal .firstStep .bx-wrapper,
.commonModal .firstStep .bx-viewport,
.commonModal .firstStep .bx-wrapper .slider,
.commonModal .firstStep .firstStepGuide-panel {
  height: 100%
}
.commonModal .firstStep .bx-viewport {
  min-height: 100%;
}

.commonModal .firstStep .firstStepGuide-panel-cont {
  padding: 0 15px;
}

/* sliderのスタイルを変更 */
.fsg-dotPager .bx-pager.bx-default-pager {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.fsg-dotPager .bx-pager-item {
  margin: 0 4px;
}
.fsg-dotPager .bx-pager-link {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #9B9B9B;
  border-radius: 50%;
  text-indent: -9999px;
}
.fsg-dotPager .bx-pager-link.active {
  background-color: #FFE263;
}

.commonModal .firstStepGuide-panel-cont {
  overflow-y: auto;
  max-height: 100%;
}
.commonModal .firstStepGuide-panel-cont .firstStepGuide-title {
  margin: 0;
  padding: 20px 0;
  font-size: 16px;
  text-align: center;
}
.commonModal .firstStepGuide-panel-cont .firstStepGuide-img {
  position: relative;
  overflow: hidden;
  width: 50%;
  padding-top: 50%;
  margin: 0 auto 20px;
  text-align: center;
}
.commonModal .firstStepGuide-panel-cont .firstStepGuide-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: auto;
  width: 100%;
  height: auto;
}
.commonModal .firstStepGuide-panel-cont .firstStepGuide-texts {
  margin-bottom: 30px;
}
.commonModal .firstStepGuide-panel-cont .firstStepGuide-texts ul {
  padding-left: 24px;
}
.commonModal .firstStepGuide-panel-cont .firstStepGuide-texts ul li {
  list-style-type: disc;
}
.commonModal .firstStepGuide-panel-cont a.firstStepGuide-link {
  display: block;
  width: 98%;
  margin: 0 auto;
  line-height: 33px;
  color: #4A4A4A;
  border: 1px solid #9B9B9B;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
}
.commonModal .firstStepGuide-panel-cont a.firstStepGuide-link:hover {
  color: #4A4A4A;
  opacity: 0.8;
}

.commonModal .firstStepGuide-controls {
  position: absolute;
  left: 15px;
  bottom: 14px;
  width: calc(100% - 30px);
  height: 48px;
  line-height: 48px;
  background-color: #F5F3EE;
  border-radius: 5px;
  box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.commonModal .firstStepGuide-controls .goPrevSlide,
.commonModal .firstStepGuide-controls .goNextSlide {
  position: absolute;
  max-width: 230px;
}
.commonModal .firstStepGuide-controls .goPrevSlide {
  left: 0;
}
.commonModal .firstStepGuide-controls .goNextSlide {
  right: 0;
}
.commonModal .firstStepGuide-controls .goPrevSlide a,
.commonModal .firstStepGuide-controls .goNextSlide a {
  display: block;
  position: relative;
  line-height: 48px;
  color: #4A4A4A;
  text-decoration: none;
  padding: 0 34px;
}
.commonModal .firstStepGuide-controls .goPrevSlide a {
  text-align: left;
}
.commonModal .firstStepGuide-controls .goNextSlide a {
  text-align: right;
}
.commonModal .firstStepGuide-controls .goPrevSlide a:before,
.commonModal .firstStepGuide-controls .goNextSlide a:before,
.commonModal .firstStepGuide-controls .goPrevSlide a:after,
.commonModal .firstStepGuide-controls .goNextSlide a:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 1px solid #E6B336;
}
.commonModal .firstStepGuide-controls .goPrevSlide a:before,
.commonModal .firstStepGuide-controls .goPrevSlide a:after {
  border-left: 1px solid #E6B336;
  transform: rotate(-45deg);
}
.commonModal .firstStepGuide-controls .goNextSlide a:before,
.commonModal .firstStepGuide-controls .goNextSlide a:after {
  border-right: 1px solid #E6B336;
  transform: rotate(45deg);
}
.commonModal .firstStepGuide-controls .goPrevSlide a:before {
  left: 10px;
}
.commonModal .firstStepGuide-controls .goPrevSlide a:after {
  left: 15px;
}
.commonModal .firstStepGuide-controls .goNextSlide a:before {
  right: 15px;
}
.commonModal .firstStepGuide-controls .goNextSlide a:after {
  right: 10px;
}
.commonModal .firstStepGuide-controls .goPrevSlide a:hover,
.commonModal .firstStepGuide-controls .goPrevSlide a:hover:before,
.commonModal .firstStepGuide-controls .goPrevSlide a:hover:after,
.commonModal .firstStepGuide-controls .goNextSlide a:hover,
.commonModal .firstStepGuide-controls .goNextSlide a:hover:before,
.commonModal .firstStepGuide-controls .goNextSlide a:hover:after {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .commonModal .firstStepGuide-panel {
    padding-bottom: 0;
  }
  .commonModal .firstStepGuide-panel .firstStepGuide-img {
    width: 60%;
    padding-top: 50%;
    margin: 20px auto;
  }
  .commonModal .firstStepGuide-panel.panel02 .firstStepGuide-img {
    width: 80%;
    padding-top: 40%;
  }
  .commonModal .firstStepGuide-panel.panel02 .firstStepGuide-img img {
    top: 45px;
  }
  .commonModal .firstStepGuide-panel-cont {
    overflow-y: scroll;
  }
  .commonModal .firstStepGuide-img {
    width: 100%;
    padding-top: 85%;
  }
}


/*--------------------------------------------------
 page404
--------------------------------------------------*/
.page404 {
  /*min-height: 100%;*/
  height: calc(100vh - 42px - 202px);
  margin-top: 42px;
  background: url(/static/images/page404_bk.png) no-repeat 50% top/cover;
  font-family: 'helvetica', 'Roboto', 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'HiraKakuProN-W3', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
}

.page404 .page404__inner {
  max-width: 500px;
  margin:  0 auto;
  padding: 165px 0 0;
}

.page404 .page404__title {
  margin: 0 0 24px;
  text-align: center;
}

.page404 .page404__sub-title {
  margin: 0 auto 16px;
  line-height: 3;
  font-size: 24px;
  text-align: center;
}

.page404 .page404__desc {
  width: 360px;
  margin: 0 auto 40px;
  line-height: 1.67;
  font-size: 18px;
}

.page404 .page404__go-back {
  display: block;
  width: 300px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 50px;
  color: #ffd35c;
  text-align: center;
  background-color: #000;
  border-radius: 10px;
}

.page404 .page404__go-contact {
  display: block;
  margin: 0 auto;
  font-size: 18px;
  color: #000;
  font-family: 'Roboto', 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'HiraKakuProN-W3', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
  text-align: center;
  text-decoration: underline;
}

@media (max-width: 767px) {

  .page404 {
    height: auto;
  }

  .page404 .page404__inner {
    padding: 100px 0;
  }

  .page404 .page404__title {
    margin-bottom: 36px;
  }

  .page404 .page404__sub-title {
    max-width: 92%;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 2;
  }

  .page404 .page404__desc {
    max-width: 92%;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 2;
  }

  .page404 .page404__go-back {
    font-size: 16px;
  }

  .page404 .page404__go-contact {
    font-size: 16px;
  }
}

.discontinuation-of-twitter-login {
    width: 70%;
    max-width: max-content;
    margin: 0 auto 8px;
    padding: 16px;
    border: 1px solid #979797;

}
@media (max-width: 992px){
  .discontinuation-of-twitter-login {
    width: 80%;
    max-width: max-content;
    padding: 14px;
  }
}

@media (max-width: 767px){
  .discontinuation-of-twitter-login {
    width: 95%;
    max-width: max-content;
    padding: 12px;
  }
}
