/** Shopify CDN: Minification failed

Line 81:12 Unexpected "{"
Line 81:21 Expected ":"
Line 82:16 Expected identifier but found whitespace
Line 82:18 Unexpected "{"
Line 82:27 Expected ":"
Line 82:53 Expected ":"
Line 83:19 Expected identifier but found whitespace
Line 83:21 Unexpected "{"
Line 83:30 Expected ":"
Line 83:59 Expected ":"

**/
/* START_SECTION:google-map (INDEX:29) */
.google-map-section {
    margin: 0 auto;
  }

  .google-map-section__heading {
    text-align: center;
    margin-bottom: 1rem;
  }

  .google-map-section__description {
    text-align: center;
    margin-bottom: 2rem;
  }

  .google-map-section__map-container {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* レスポンシブ対応用のスタイル追加 */
  .google-map-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }

  .google-map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
  }

  .google-map-section__placeholder {
    background: #f5f5f5;
    padding: 4rem 2rem;
    text-align: center;
    color: #666;
  }

  .google-map-section__links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .google-map-section__links .button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .google-map-section__links .button svg {
    flex-shrink: 0;
  }

  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  @media screen and (max-width: 749px) {
    .google-map-section__links {
      flex-direction: column;
      align-items: stretch;
    }

    .google-map-section__links .button {
      justify-content: center;
    }
  }
/* END_SECTION:google-map */
