/** Shopify CDN: Minification failed

Line 63:10 Unexpected "{"
Line 63:19 Expected ":"
Line 64:14 Expected identifier but found whitespace
Line 64:16 Unexpected "{"
Line 64:25 Expected ":"
Line 64:51 Expected ":"
Line 65:17 Expected identifier but found whitespace
Line 65:19 Unexpected "{"
Line 65:28 Expected ":"
Line 65:57 Expected ":"
... and 50 more hidden warnings

**/


/* CSS from section stylesheet tags */
.activity {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.activity__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  font-family: serif;
}

.activity__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #000;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 0.3fr;
  gap: 30px;
  margin-top: 40px;
}


@media (max-width: 767px) {
  .activity__content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 5%;
  }


}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

@media screen and (max-width: 749px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.sp_padding_top }}px;
    padding-bottom: {{ section.settings.sp_padding_bottom }}px;
  }
}
.info-grid {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0 80px 0;
}

.info-grid__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-grid__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #ddd;
}

.info-grid__head {
  padding: 15px;
  font-weight: bold;
}

.info-grid__content {
  padding: 15px;
}

.info-grid__business-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-grid__business-item {
  margin-bottom: 5px;
}

.info-grid__business-item:last-child {
  margin-bottom: 0;
}

.info-grid__link {
  color: #000;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.info-grid__link:hover {
  opacity: 0.7;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media screen and (max-width: 767px) {
  .info-grid__item {
    grid-template-columns: 120px 1fr;
  }

  .info-grid__head,
  .info-grid__content {
    padding: 10px;
  }
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

@media screen and (max-width: 749px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.sp_padding_top }}px;
    padding-bottom: {{ section.settings.sp_padding_bottom }}px;
  }
}
.about {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
  
}

.about__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  font-family: serif;
}

.about__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #000;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 0.3fr;
  gap: 30px;
  margin-top: 40px;
}

.about__text-wrapper {
  display: flex;
  align-items: center;
}

.about__description {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.about__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 5%;
  }

  .about__image-wrapper {
    margin: 0 auto;
    width: 55%;
  }

  .about__image {
    max-width: 100%;
  }
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

@media screen and (max-width: 749px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.sp_padding_top }}px;
    padding-bottom: {{ section.settings.sp_padding_bottom }}px;
  }
}