@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*
 *地図の見せ方
 */
/* 地図カード全体 */
.booking-place-map {
  margin: 24px 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

/* Google Map iframe */
.booking-place-map iframe {
  display: block;          /* ← これが一番重要 */
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 20px;     /* 念のためiframe側にも */
}

/* 行き方ボタンエリア */
.booking-place-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px;
  background: #fff;
}

/* ボタン共通 */
.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  text-decoration: none;
  font-size: 0.9rem;
  color: #111;
  transition: opacity 0.2s ease;
}

.booking-btn:hover {
  opacity: 0.85;
}

/* サブボタン */
.booking-btn.is-secondary {
  background: #e5e7eb;
}
