@charset "utf-8";

/*余白の消去*/
head,header,html,body{margin:0;padding:0;}
main{
  overflow: hidden;
  padding-bottom: 10px;
}

/*ヘッダーのサイズ*/
header {
　  position: fixed;
    height: 75px;
    width: 100%;
    z-index: 90;
}

.hamburger-menu {
  display: inline;
  height: 0;
}

.title {
    display: block;
    font-size: 175%;
    text-align: center;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/*メニューボタン*/
.menu-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

/*メニューオープン時の処理*/
/*真ん中の横棒を透明に*/
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}

/*上の横棒を回転*/
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

/*下の横棒を回転*/
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

/*チェックボックスの非表示*/
#menu-btn-check {
    display: none;
}

/*メニュー(画面外)*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;/*アニメーション設定(メニューを滑らかに移動)*/
}

/*チェックボックスにチェックが付いたとき、メニューが表示される*/
#menu-btn-check:checked ~ .menu-content {
    right: 0;
}

.menu-content ul {
    padding: 70px 10px 0;
}

.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

/*マップのサイズ*/
#mapid {
　position: fixed;
  height: 600px;
  width: 100%
}

.link {
  text-decoration: none;
  color: #000000;
}

/*
.link:visited {
  text-decoration: none;
  color: #000000;
}
*/

.link:active {
  text-decoration: none;
  color: #000000;
}

.logo_space {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.logo {
  display: inline;
}

#bookmark_check {
  display: none;
}

#bookmark_search {
  height: 30px;
  border : solid 1px #000000;
  padding: 6px;
  margin: 2px;
}

.bookmark_search1 {
  background-color: white;
}

.bookmark_search2 {
  background-color: #1da1f2;
}

.select_label {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin: 5px 0px;
}

.between {
    margin: 5px 0px;
}

.select_label::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.select_label select {
    appearance: none;
    height: 40px;
    width: 120px;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}

.locate-icon {
    color: #377Cb1;
}