@charset "utf-8";

/* 共通のスタイル ----------------------------------------- */
html {
  scroll-padding-top: 45px;
}

.map {
  padding-top: 0 !important;
}

:root {
  --main-color: #00491e;
}

/* タイトル ------------------ */
.map-title {
  width: 700px;
  margin: 20px auto 40px auto;
  padding-bottom: 10px;
  border-bottom: solid 2px #00491e;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #00491e;
}

/* ボタン -------------------- */
.button {
  cursor: pointer;
  padding: 10px 5px;
  box-sizing: border-box;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}

/* 自販機紹介テキスト --------- */
.text-main.vending-text {
  width: 60% !important;
}

/* 検索上部 ---------------------------------------------- */
.search-top {
  display: grid;
  gap: 60px 0;
  margin: 0px auto 40px auto;
}

.search-block {
  width: 100%;
  margin: 0 auto;
}

.search-top .map-title {
  width: 100%;
}

/* 検索フォーム -------------- */
.form-block {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 50px;
}

.search-form {
  padding: 10px;
  box-sizing: border-box;
  border: solid 1px #777;
  border-right: none;
  font-size: 16px;
  -webkit-appearance: none;
  border-radius: 0;
}

.search-form:focus {
  outline: none;
}

.button.search-btn {
  padding: 12px 10px;
  border: solid 2px #00491e;
  background-color: #00491e;
  color: #fff;
}

/* 現在地から探す ------------ */
.button.location {
  width: 300px;
  display: block;
  margin: 0 auto 8px auto;
  padding: 10px 5px;
  border: solid 2px #00491e;
  background-color: #00491e;
  color: #fff;
  /* font-weight: bold; */
}

.button.search-btn:hover,
.button.location:hover {
  background-color: #fff;
  color: #00491e;
}

.button-txt::before {
  margin-right: 10px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f5a0';
}

.note {
  font-size: 14px;
  text-align: center;
}

/* Google Map ------------------------------------------- */
/* Google Map描画エリア */
#map {
  width: 100%;
  height: 600px;
  margin-bottom: 30px;
  border: solid 1px #ddd;
}

/* #map img {
  width: 60px !important;
  height: auto !important;
} */

/* infowindow --------------- */
/* ✕ボタン */
.gm-style-iw-chr {
  width: 200px;
  margin: 10px 0 5px 0 !important;
}

.gm-style-iw-ch {
  display: none !important;
}

.gm-ui-hover-effect {
  margin-left: auto !important;
  width: fit-content !important;
  height: fit-content !important;
}

.gm-ui-hover-effect span {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
}

/* テキスト */
.info-window {
  width: 200px;
}

.info-title {
  margin-bottom: 5px;
  font-size: 14px;
  /* font-weight: bold; */
  color: #00491e;
}

.map-link {
  color: #1a73e8;
  text-decoration: none;
}
.map-link:hover {
  border-bottom: solid 1px #1a73e8;
}

/* 設置先 ----------------------------------------------- */
.vender-marker {
  display: inline-block;
  margin-bottom: 15px;
  padding: 0.5em;
  background: var(--main-color);
  background: #0da01c;
  border-radius: 25px 0px 0px 25px;
  color: #fff;
  line-height: 1.3;
  vertical-align: middle;
}

.vender-marker::before {
  content: '●';
  color: white;
  margin-right: 8px;
}

.place-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 35px;
}

.vending {
  padding: 10px;
  border: solid 1px #00491e;
  background-color: #fff;
  color: #00491e;
}

.not-buy {
  color: red;
}

.vending:hover {
  background-color: #00491e;
  color: #fff;
}

/* ====================================================================== */
/* @～1199px(タブレットサイズ以下)
/* ====================================================================== */
@media screen and (max-width: 1199px) {
  /* タイトル・検索フォーム ----- */
  .map-title,
  .search-block {
    width: 100%;
  }
}

/* ====================================================================== */
/* @1199px ~ 768px(タブレットサイズ)
/* ====================================================================== */
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .inner {
    max-width: 80%;
  }

  .place-block {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ====================================================================== */
/* @767px以下(スマホサイズ)
/* ====================================================================== */
@media screen and (max-width: 767px) {
  .inner {
    max-width: 90%;
  }

  /* 自販機紹介テキスト --------- */
  .text-main.vending-text {
    width: 100% !important;
  }

  /* 検索上部 ---------------------------------------------- */
  .search-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 0px;
  }

  /* .button.location,
  .note {
    width: 80%;
  } */

  .place-block {
    grid-template-columns: repeat(1, 1fr);
  }
}
