﻿.site-main {
  background: #fff;
}

.overview-hero {
  position: relative;
  height: 225px;
  overflow: hidden;
  background: #e7f4f5;
}

.overview-hero-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
}

.overview-hero-tools {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  padding: 0 14px 0 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.brand-mark {
  display: flex;
  align-items: center;
  min-width: 132px;
  color: #008d55;
  flex-shrink: 0;
}

.brand-emblem,
.footer-emblem {
  width: 28px;
  height: 28px;
  margin-right: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-mark strong,
.footer-logo strong {
  display: block;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
}

.brand-mark small,
.footer-logo small {
  display: block;
  margin-top: 2px;
  font-size: 4px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.hero-search {
  width: 96px;
  height: 18px;
  margin-left: auto;
  padding: 0 7px 0 11px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
}

.hero-search input {
  width: 68px;
  min-width: 0;
  font-size: 8px;
  color: #777;
  background: transparent;
}

.hero-search button {
  width: 13px;
  height: 13px;
  position: relative;
  flex-shrink: 0;
}

.hero-search button::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: 1px;
  top: 1px;
  border: 1.4px solid #777;
  border-radius: 50%;
}

.hero-search button::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1.4px;
  right: 1px;
  bottom: 2px;
  background: #777;
  transform: rotate(45deg);
  transform-origin: center;
}

.menu-toggle {
  width: 28px;
  height: 36px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #008d55;
}

.overview-title {
  position: absolute;
  left: 21px;
  bottom: 13px;
  color: #fff;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.overview-title strong {
  display: block;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 400;
}

.overview-title span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  line-height: 1;
}

.sub-tabs {
  height: 32px;
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  justify-content: center;
  gap: 34px;
  background: #fff;
}

.sub-tabs a {
  position: relative;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: #222;
}

.sub-tabs a.is-active {
  color: #009354;
  font-weight: 700;
}

.sub-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #009354;
}

.intro-section {
  padding: 15px 20px 74px;
  background: #fff;
}

.intro-section h2 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  color: #222;
}

.intro-title-line {
  width: 68px;
  height: 2px;
  margin: 10px auto 20px;
  background: #d9a63b;
}

.intro-image {
  width: 100%;
  height: 135px;
  object-fit: cover;
  margin-bottom: 11px;
}

.intro-content p {
  font-size: 11px;
  line-height: 1.42;
  color: #222;
  text-align: justify;
}

.site-footer {
  min-height: 266px;
  padding: 29px 20px 17px;
  background: #009354;
  color: #fff;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-emblem {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  color: #fff;
  font-size: 13px;
}

.footer-logo strong {
  font-size: 19px;
  letter-spacing: 1px;
}

.footer-logo small {
  margin-top: 4px;
  font-size: 7px;
  text-align: left;
}

.footer-contact {
  margin-top: 25px;
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1px;
}

.qrcode-list {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 49px;
}

.qrcode-list img {
  width: 41px;
  height: 41px;
  margin: 0 auto;
}

.qrcode-list figcaption {
  margin-top: 6px;
  font-size: 8px;
  line-height: 1;
}

@media (max-width: 360px) {
  .overview-hero-tools {
    padding-left: 12px;
    padding-right: 8px;
    gap: 6px;
  }

  .brand-mark {
    min-width: 118px;
  }

  .hero-search {
    width: 88px;
  }

  .intro-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 431px) {
  .overview-hero,
  .overview-hero-image {
    height: 390px;
  }

  .overview-hero-tools {
    height: 96px;
    padding: 0 28px 0 38px;
    gap: 20px;
  }

  .brand-mark {
    min-width: 264px;
  }

  .brand-emblem {
    width: 56px;
    height: 56px;
    margin-right: 10px;
    border-width: 4px;
    font-size: 24px;
  }

  .brand-mark strong {
    font-size: 24px;
  }

  .brand-mark small {
    margin-top: 4px;
    font-size: 8px;
  }

  .hero-search {
    width: 192px;
    height: 36px;
    padding: 0 14px 0 22px;
    border-radius: 20px;
  }

  .hero-search input {
    width: 136px;
    font-size: 16px;
  }

  .hero-search button {
    width: 26px;
    height: 26px;
  }

  .hero-search button::before {
    width: 14px;
    height: 14px;
    left: 2px;
    top: 2px;
    border-width: 3px;
  }

  .hero-search button::after {
    width: 10px;
    height: 3px;
    right: 2px;
    bottom: 4px;
  }

  .menu-toggle {
    width: 56px;
    height: 72px;
    gap: 8px;
  }

  .menu-toggle span {
    width: 32px;
    height: 4px;
  }

  .overview-title {
    left: 42px;
    bottom: 26px;
  }

  .overview-title strong {
    font-size: 46px;
  }

  .overview-title span {
    margin-top: 6px;
    font-size: 22px;
  }

  .sub-tabs {
    height: 64px;
    gap: 68px;
  }

  .sub-tabs a {
    height: 64px;
    font-size: 28px;
  }

  .sub-tabs a.is-active::after {
    height: 4px;
  }

  .intro-section {
    padding: 30px 40px 148px;
  }

  .intro-section h2 {
    font-size: 40px;
  }

  .intro-title-line {
    width: 136px;
    height: 4px;
    margin: 20px auto 40px;
  }

  .intro-image {
    height: 270px;
    margin-bottom: 22px;
  }

  .intro-content p {
    font-size: 22px;
    line-height: 1.42;
  }

  .site-footer {
    min-height: 532px;
    padding: 58px 40px 34px;
  }

  .footer-emblem {
    width: 60px;
    height: 60px;
    margin-right: 16px;
    font-size: 26px;
  }

  .footer-logo strong {
    font-size: 38px;
  }

  .footer-logo small {
    margin-top: 8px;
    font-size: 14px;
  }

  .footer-contact {
    margin-top: 50px;
  }

  .footer-contact p {
    margin-bottom: 24px;
    font-size: 20px;
  }

  .qrcode-list {
    margin-top: 36px;
    gap: 98px;
  }

  .qrcode-list img {
    width: 82px;
    height: 82px;
  }

  .qrcode-list figcaption {
    margin-top: 12px;
    font-size: 16px;
  }
}
