@charset "utf-8";

/* =====================================================================
    Google Map
====================================================================== */

div#shopmap_thing {  /* 地図本体 */
    margin: 5px auto 0 auto;
    width: 100%;
    height: 300px
}

div#shopmap_info_window {  /* 吹き出し部分 */
}

span#shopmap_info_name {  /* 吹き出し内　店舗表示部分 */
    color:#e0c000;
    font-size:120%
}

/* =================================================================== */

div#shopmap {
    position: relative;
    font-family: helvetica,arial,sans-serif;
}

div#shopmap_shifting {
    text-align: center;
}

div#shopmap_destination {
    bottom: -51px;
    border: solid transparent;
    height: 35px;
    width: 315px;
    left: 50%;
    position: absolute;
    background-color: rgba(0, 0, 0, 1);
    color: white;
    border-radius: 20px;
    margin: 0px 0px -2px -160px;
    z-index: 599;
    text-align: center;
    display: none;
}

div#shopmap_destination:after {
    bottom: 106%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: rgba(0, 0, 0, 1);
    border-width: 15px;
    margin-left: -15px;
    z-index: 598;
}

span#shopmap_destination_msg {
    font-size:11px;
/*
    margin: 0 0 0 7px;
*/
}

span#destination_span {
    font-size:16px;
}

a#destination_shop_link {
    cursor: default;
    margin: 0 4px 0 0;
}

a#destination_parking_link {
    cursor: default;
}

img#destination_walking_img {
    width: 33%;
    float: left;
}

img#destination_car_img {
    width: 33%;
}

img#destination_train_img {
    width: 33%;
    float: right;
 }

img#destination_shop_img {
    cursor: default;
    margin: 6px -4px -3px 4px;
}

img#destination_parking_img {
    cursor: default;
    margin: 6px -3px -3px 3px;
}

span#destination_shop_msg {
    cursor: default;
    color: #ffffff;
    font-size:16px;
    margin: 0 0 0 6px;
}

span#destination_parking_msg {
    cursor: default;
    color: #ffffff;
    font-size:16px;
    margin: 0 0 0 6px;
}



/******************************
  目的地ふきだしフェードイン
 ******************************/
.visible {
  display: block;
  opacity: 1;
  animation-duration: 1.0s;
  animation-name: fade-in;
  -moz-animation-duration: 1.0s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 1.0s;
  -webkit-animation-name: fade-in;
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

/******************************
  目的地ふきだしフェードアウト
 ******************************/
.nonvisible {
  display: none;
  opacity: 0;
  animation-duration: 1.0s;
  animation-name: fade-out;
  -moz-animation-duration: 1.0s;
  -moz-animation-name: fade-out;
  -webkit-animation-duration: 1.0s;
  -webkit-animation-name: fade-out;
}

@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }

  1% {
    display: none;
    opacity: 1;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

@-moz-keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }

  1% {
    display: none;
    opacity: 1;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

@-webkit-keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }

  1% {
    display: none;
    opacity: 1;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

/******************************
  目的地表示フィールドフェードイン
 ******************************/
.slide_height_in {
  margin-top: 60px;
  animation-duration: 0.5s;
  animation-name: slide_height_on;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: slide_height_on;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: slide_height_on;
}

@keyframes slide_height_on {
  0% {
    margin-top: 0px;
  }
  100% {
    margin-top: 60px;
  }
}

@-moz-keyframes slide_height_on {
  0% {
    margin-top: 0px;
  }
  100% {
    margin-top: 60px;
  }
}

@-webkit-keyframes slide_height_on {
  0% {
    margin-top: 0px;
  }
  100% {
    margin-top: 60px;
  }
}

/******************************
  目的地表示フィールドフェードアウト
 ******************************/
.slide_height_out {
  animation-iteration-count: 1;
  animation-duration: 0.5s;
  animation-name: slide_height_off;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: slide_height_off;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: slide_height_off;
}

@keyframes slide_height_off {
  0% {
    margin-top: 60px;
  }
  100% {
    margin-top: 0px;
  }
}

@-moz-keyframes slide_height_off {
  0% {
    margin-top: 60px;
  }
  100% {
    margin-top: 0px;
  }
}

@-webkit-keyframes slide_height_off {
  0% {
    margin-top: 60px;
  }
  100% {
    margin-top: 0px;
  }
}

