@charset "UTF-8";
/* CSS Document */

.map_wrap {
  margin-top: 30px;
}
#googlemap {
  margin-left: -30px;
  width: 100vw;
  height: 100vw;
}
.link {
  font-weight: bold;
  text-decoration: underline;
}
/* 地図の吹き出し内の「×」の変更 */
.gm-ui-hover-effect {
  width: 24px !important;
  height: 34px !important;
}
.gm-ui-hover-effect span {
  margin: 0 !important;
  width: 18px !important;
  height: 18px !important;
}

/* 地図のコントロールボタンの文字サイズ変更 */
.gm-style-mtc div {
    font-size: 1.2rem !important;  /* 文字サイズ変更 */
    font-weight: bold;  /* 太字 */
    color: #333 !important;  /* 文字色 */
}
/* ボタン全体のサイズを変更 */
.gm-style-mtc {
    transform: scale(0.7); /* 拡大 */
    transform-origin: top left; /* 左上基準で拡大 */
}

/*
#info-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
}
*/
.card {
  display: none; /* 初期状態で非表示 */
}





@media print, screen and (min-width:1000px) {
  
  header nav li:nth-of-type(2) a::after { /* Gナビ 閲覧中ページ 下線表示 */
    width: calc(100% + 4px);
  }
  
  

  .map_wrap {
    margin-top: 50px;
  }
  #googlemap {
    margin-left: 0;
    width: 1000px;
    height: 750px;
  }
  /* 地図のコントロールボタンの文字サイズ変更 */
  .gm-style-mtc div {
      font-size: 1.4rem !important;  /* 文字サイズ変更 */
  }
  /* ボタン全体のサイズを変更 */
  .gm-style-mtc {
      transform: scale(0.8); /* 拡大 */
  }
  
}

