@charset "UTF-8";

/*
==========================
        MAP
==========================
*/
.map_window {
  box-sizing: border-box;
  width: 100%;
  height: 450px;
  text-align: center;
  overflow-y: hidden;
  margin: 0 auto 15px;
  padding: 0;
}

.map_window iframe {
  box-sizing: border-box;
  width: 100%;
  height: 560px;
  margin-top: -110px;
}

@media screen and (max-width:750px) {
  .map_window {
    height: 300px;
  }

  .map_window iframe {
    height: 410px;
  }
}

/*------- Button ▸MAP操作-------*/
.div_map_move_btn {
  box-sizing: border-box;
  width: 99%;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 20px;
}

.div_map_move_btn button {
  padding: 6px;
  border: 3px solid #008e53;
  background-color: #008e53;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
}

.div_map_move_btn button:hover,
.div_map_move_btn button:focus,
.div_map_move_btn button.active:hover {
  border: 3px solid #008e53;
  background: #fff;
  color: #008e53;
}

.div_map_move_btn button.active {
  border: 3px solid #888;
  background: #aaa;
  color: #fff;
}

/*
===================================
      店舗情報 .shop-info-box
===================================
*/
div.shop-info-box {
  box-sizing: border-box;
  width: fit-content;
  padding: 1em .8em;
  margin: 20px auto 30px;
}

div.shop-info-box>ul {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.05em;
  border: 1px solid #aaa;
  border-radius: 5px;
  overflow: hidden;
}

div.shop-info-box>ul>li {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

div.shop-info-box>ul>li:not(:last-child) {
  border-bottom: 1px dashed #999;
}

div.shop-info-box>ul>li:last-child {
  box-sizing: border-box;
  width: 100%;
}

div.shop-info-box>ul>li:last-child>a {
  margin: 0 auto;
  padding: .6em;
  font-size: 14px;
  color: #10998f;
  font-weight: 600;
}

div.shop-info-box>ul>li:last-child>a:hover {
  text-decoration: underline;
  color: #00f;
}

div.shop-info-box>ul>li>div.th-shop-info {
  box-sizing: border-box;
  width: 68px;
  padding: 1.45em 0;
  background: #eee;
  border-right: 1px dotted #ccc;
  color: #777;
  text-align: center;
  font-size: 12px;
}

div.shop-info-box>ul>li>div.td-shop-info {
  box-sizing: border-box;
  flex: 1;
  padding: 0 1.0em;
  font-size: clamp(13px, 1.65vw, 15px);
}

div.shop-info-box>ul>li>div.td-shop-info>span.yubin {
  display: block;
  font-size: 80%;
  line-height: 1.0em;
}

div.shop-info-box>ul>li>div.td-shop-info>picture>img {
  padding: 0;
  margin: 0;
  border: 0;
}

/*-----icon_popver------*/
div.shop-info-box>div.icon_info>button#icon_info_btn {
  color: #10998f;
  font-size: 12px;
  font-weight: 600;
}