/** Shopify CDN: Minification failed

Line 16:20 Unexpected "{"
Line 16:29 Expected ":"
Line 17:16 Expected identifier but found whitespace
Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 17:53 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 18:59 Expected ":"
... and 37 more hidden warnings

**/
  #shopify-section-{{ section.id }} .about-message {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    color: var(--about-text-color);
  }

  #shopify-section-{{ section.id }} .about-message__inner {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  #shopify-section-{{ section.id }} .about-message__heading {
    margin-bottom: 68px;
    text-align: center;
  }

  #shopify-section-{{ section.id }} .about-message__heading-en {
    margin: 0 0 2rem 0;
    color: var(--about-heading-color);
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.22em;
    line-height: 1.2;
  }

  #shopify-section-{{ section.id }} .about-message__subheading {
    margin: 0;
    color: var(--about-text-color);
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.18em;
    line-height: 1.8;
  }

  #shopify-section-{{ section.id }} .about-message__content {
    color: var(--about-text-color);
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 2.05;
    text-align: center;
  }

  #shopify-section-{{ section.id }} .about-message__content p {
    margin-top: 0;
    margin-bottom: 38px;
  }

  #shopify-section-{{ section.id }} .about-message__content p:last-child {
    margin-bottom: 0;
  }

  @media screen and (max-width: 749px) {
    #shopify-section-{{ section.id }} .about-message {
      padding-top: {{ section.settings.padding_top_mobile }}px;
      padding-bottom: {{ section.settings.padding_bottom_mobile }}px;
    }

    #shopify-section-{{ section.id }} .about-message__inner {
      width: calc(100% - 48px);
      padding-right: 0;
      padding-left: 0;
    }

    #shopify-section-{{ section.id }} .about-message__heading {
      margin-bottom: 43px;
    }

    #shopify-section-{{ section.id }} .about-message__heading-en {
      font-size: 28px;
      letter-spacing: 0.2em;
    }

    #shopify-section-{{ section.id }} .about-message__subheading {
      margin-top: 23px;
      font-size: 14px;
      letter-spacing: 0.16em;
      line-height: 1.8;
    }

    #shopify-section-{{ section.id }} .about-message__content {
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 2.1;
    }

    #shopify-section-{{ section.id }} .about-message__content p {
      margin-bottom: 32px;
    }
  }


.about-message {
  padding-top: var(--about-padding-top);
  padding-bottom: var(--about-padding-bottom);
}

@media screen and (max-width: 749px) {
  .about-message {
    padding-top: var(--about-padding-top-mobile);
    padding-bottom: var(--about-padding-bottom-mobile);
  }
}
```
