:root {
  --join-brand: #b81c22;
  --join-text: #595757;
  --join-muted: #d6d8d9;
  --join-inner: 83.333vw;
  --zs-brand: #b81c22;
  --zs-muted: #d6d8d9;
  --zs-inner: 83.333vw;
}

body.zs-joinus {
  color: var(--join-text);
}

.join-page {
  width: 100%;
}

.page-shell {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.zs-inner {
  width: var(--zs-inner);
  margin: 0 auto;
  padding: 0 2.083vw;
  box-sizing: border-box;
}

.join-inner {
  width: var(--join-inner);
  margin: 0 auto;
  box-sizing: border-box;
}

.join-hero {
  position: relative;
  min-height: 56.25vw;
  padding-top: 4.062vw;
  overflow: hidden;
  background: #f5f5f5;
}

.join-hero-bg {
  position: absolute;
  inset: 0;
}

.join-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.join-hero-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 17.708vw;
  background:
    linear-gradient(180deg, rgba(245, 245, 245, 0) 10%, rgba(24, 24, 24, 0.9) 100%);
}

.join-hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(56.25vw - 4.062vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.937vw;
  color: #ffffff;
}

.join-hero-inner h1,
.join-hero-inner p {
  margin: 0;
}

.join-hero-inner p {
  color: rgba(231, 231, 231, 0.68);
}

.join-contact {
  padding: 4.791vw 0;
}

.join-coop {
  padding: 1.041vw 0 4.791vw;
}

.join-message {
  padding: 4.791vw 0;
}

.join-follow {
  padding: 4.791vw 0;
}

.join-contact {
  padding-top: 7.708vw;
}

.join-contact h2,
.join-coop h2,
.join-follow h2 {
  margin: 0 0 1.354vw;
}

.join-coop h2 {
  text-indent: 1em;
  color: #000;
}

.join-contact h2 {
  display: block;
  color: #595757;
  margin-bottom: 1.822vw;
}

.join-contact h2 span,
.join-coop h2 span {
  font-style: normal;
  line-height: 4.427vw;
  letter-spacing: -0.093vw;
}

.join-contact-shell {
  width: min(100%, 83.333vw);
  max-width: 83.333vw;
  margin: 0 auto;
}

.join-contact-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 60.52vw 22.812vw;
  gap: 0;
  border-radius: 1.041vw;
  overflow: hidden;
}

.join-contact-map {
  position: relative;
  overflow: hidden;
  border-radius: 1.041vw 0 0 1.041vw;
}

.join-contact-map img {
  width: 100%;
  height: 39.114vw;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.join-contact-map.is-switching img {
  animation: join-map-switch 0.42s ease;
}

.join-contact-card {
  background: #e2e2e2;
  min-height: 39.114vw;
  padding: 1.718vw 0.52vw 0;
  border-radius: 0 1.041vw 1.041vw 0;
  box-sizing: border-box;
}

.join-contact-card h3 {
  margin: 0;
  text-align: center;
  color: #595757;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 2.5vw;
}

.join-contact-addresses {
  margin-top: 2.291vw;
}

.join-contact-address {
  text-indent: 0.2em;
  margin: 0;
  min-height: 4.895vw;
  display: grid;
  grid-template-columns: 3.645vw minmax(0, 1fr);
  align-items: center;
  column-gap: 0.312vw;
  box-sizing: border-box;
  color: #595757;
  border-bottom: 0.104vw solid transparent;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 2.239vw;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.join-contact-address:hover {
  color: #b81c22;
  border-bottom-color: #b81c22;
}

.join-contact-address.is-active {
  color: #b81c22;
  border-bottom-color: #b81c22;
}

.join-contact-address span {
  display: block;
  line-height: 2.239vw;
}

.join-contact-address-city {
  white-space: nowrap;
}

.join-contact-meta {
  margin-top: 0;
  height: 4.322vw;
  display: grid;
  width: 83.333vw;
  max-width: 100%;
  grid-template-columns: 41.145vw 41.145vw;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.join-contact-meta-col {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.join-contact-meta-col::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 0.104vw;
  background: #b81c22;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.join-contact-meta-col:has(.join-contact-meta-item:hover)::after,
.join-contact-meta-col:has(.join-contact-meta-item.is-active)::after {
  transform: translateX(-50%) scaleX(1);
}

.join-contact-meta-item {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.416vw;
  color: #595757;
  height: 4.322vw;
  width: 100%;
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: color 0.25s ease;
}

.join-contact-meta-item img {
  width: 1.718vw;
  height: 1.718vw;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.join-contact-meta-item .is-default,
.join-contact-meta-item .is-active {
  position: static;
  transition: opacity 0.25s ease;
}

.join-contact-meta-item .is-active {
  display: none;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(3106%) hue-rotate(339deg) brightness(92%) contrast(92%);
}

.join-contact-meta-item:hover {
  color: #b81c22;
}

.join-contact-meta-item.is-active {
  color: #b81c22;
}

.join-contact-meta-item:hover .is-default {
  display: none;
}

.join-contact-meta-item.is-active .is-default {
  display: none;
}

.join-contact-meta-item:hover .is-active {
  display: block;
}

.join-contact-meta-item.is-active .is-active {
  display: block;
}

.join-contact-meta-item span {
  margin-left: 0;
  line-height: 1.875vw;
}

.join-contact-meta-item span.f_24 {
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400 !important;
  color: inherit;
}

.join-contact-links {
  max-height: none;
  opacity: 1;
  overflow: visible;
  transform: none;
  transition: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 0.312vw 1.406vw 0;
  box-sizing: border-box;
  pointer-events: auto;
}

.join-contact-shell.is-contact-links-open .join-contact-links {
  max-height: none;
  opacity: 1;
  transform: none;
  padding-top: 1.354vw;
  pointer-events: auto;
}

.join-contact-links-col {
  width: 32.8125vw;
  display: flex;
  flex-direction: column;
  gap: 0.937vw;
}

.join-contact-links-row {
  display: grid;
  grid-template-columns: 7.291vw minmax(0, 1fr);
  align-items: center;
  column-gap: 1.666vw;
  min-height: 2.447vw;
}

.join-contact-links-label,
.join-contact-links-value {
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 2.239vw;
  color: #595757;
  letter-spacing: -0.093vw;
  text-decoration-thickness: 0.052vw;
  text-underline-offset: 0.208vw;
}

.join-contact-links-value {
  min-width: 0;
  word-break: break-word;
}

.join-contact-links-value.is-link {
  text-decoration: underline;
  text-underline-offset: 0.156vw;
}

.join-coop-grid {
  display: grid;
  width: 83.333vw;
  max-width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(3, 26.875vw);
  justify-content: space-between;
  gap: 1.25vw 1.302vw;
  position: relative;
  overflow: visible;
}

.join-coop-card {
  min-height: 5.52vw;
  width: 26.875vw;
  max-width: 100%;
  border-radius: 0.833vw;
  background: #e7e7e7;
  padding: 1.145vw 4.479vw 1.145vw 1.614vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.416vw;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.join-coop-card h3,
.join-coop-card p {
  margin: 0;
}

.join-coop-card h3 {
  color: #595757;
  line-height: 1.875vw;
}

.join-coop-card h3 span {
  line-height: 1.875vw;
}

.join-coop-card:hover {
  background: #fbf2f2;
  border: 0.052vw solid rgba(184, 28, 34, 0.8);
  box-shadow:
    0 0.052vw 0.104vw rgba(0, 0, 0, 0.3),
    0 0.052vw 0.156vw rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.join-coop-qrcode {
  position: absolute;
  right: 1.614vw;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5vw;
  height: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.join-coop-qrcode-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.join-coop-qrcode-hover {
  display: none;
}

.join-coop-qrcode:hover .join-coop-qrcode-default {
  display: none;
}

.join-coop-qrcode:hover .join-coop-qrcode-hover {
  display: block;
}

.join-coop-card p span {
  color: rgba(89, 87, 87, 0.7);
  line-height: 0.937vw;
}

.join-coop-card:hover h3 {
  color: #b81c22;
}

.join-coop-card:hover p span {
  color: rgba(184, 28, 34, 0.7);
}

.join-coop-qr-popup {
  position: absolute;
  right: -6.041vw;
  top: calc(50% + 2.187vw);
  width: 10.781vw;
  height: 11.51vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.416vw);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}

.join-coop-qr-popup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.join-coop-qrcode:hover+.join-coop-qr-popup,
.join-coop-qr-popup:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.join-message {
  background: #efefef;
  padding: 6.51vw 0 8.906vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.join-message-panel {
  width: 66.25vw;
  margin: 0 auto;
  background: rgba(89, 87, 87, 0.49);
  border-radius: 1.041vw;
  padding: 3.385vw 6.354vw 4.062vw;
  box-sizing: border-box;
  box-shadow:
    0 0.052vw 0.156vw rgba(0, 0, 0, 0.1),
    0 0.052vw 0.104vw rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.join-message-panel h2 {
  margin: 0;
  text-align: center;
  color: #e7e7e7;
  line-height: 3.125vw;
}

.join-message-panel h2 span {
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.083vw !important;
  font-weight: 500 !important;
  line-height: 3.125vw;
  letter-spacing: -0.093vw;
}

.join-message-desc {
  margin: 0 auto 1.718vw;
  text-align: center;
  color: #ffffff;
}

.join-message-desc span {
  font-weight: 300;
  line-height: 1.406vw;
  opacity: 0.8;
}

.join-form-grid {
  display: grid;
  gap: 1.25vw;
}

.join-form-grid--top {
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 2.083vw;
}

.join-form-grid--middle {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2.083vw;
}

.join-form input,
.join-form textarea {
  border: none;
  background: #e2e2e2;
  border-radius: 0.416vw;
  color: #595757;
  font-family: inherit;
  padding: 0 0.729vw;
  height: 2.395vw;
  font-size: 0.937vw;
}

.join-form input::placeholder,
.join-form textarea::placeholder {
  color: rgba(89, 87, 87, 0.7);
}

.join-form textarea {
  display: block;
  width: 100%;
  height: 7.291vw;
  resize: none;
  padding: 0.833vw 0.729vw;
}

.join-select {
  position: relative;
  height: 2.395vw;
}

.join-select-trigger {
  width: 100%;
  height: 2.395vw;
  border: none;
  border-radius: 0.416vw;
  background: #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.833vw;
  color: rgba(89, 87, 87, 0.7);
  font-size: 0.937vw;
  cursor: pointer;
}

.join-select-arrow {
  width: 0.677vw;
  height: 0.677vw;
  background: url("../../img/joinus/joinus-arrow2.svg") center / contain no-repeat;
  transition: transform 0.2s ease;
}

.join-select.is-open .join-select-trigger {
  border-radius: 0.416vw 0.416vw 0 0;
}

.join-select.is-open .join-select-arrow {
  transform: rotate(180deg);
}

.join-select-menu {
  position: absolute;
  top: 2.395vw;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.416vw 0.833vw;
  list-style: none;
  background: #e2e2e2;
  border-radius: 0 0 0.416vw 0.416vw;
  display: none;
  flex-direction: column;
  gap: 0.833vw;
  z-index: 20;
}

.join-select.is-open .join-select-menu {
  display: flex;
}

.join-select-menu li {
  font-size: 0.937vw;
  color: rgba(89, 87, 87, 0.7);
  line-height: 1.5;
  cursor: pointer;
  position: relative;
}

.join-select-menu li:hover,
.join-select-menu li.is-active {
  color: #b81c22;
}

.join-select-menu li:hover::before,
.join-select-menu li.is-active::before {
  content: "";
  position: absolute;
  left: -0.833vw;
  right: -0.833vw;
  top: -0.416vw;
  bottom: -0.416vw;
  background: #ebdddd;
  z-index: -1;
}

.join-consent {
  margin-top: 1.666vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.416vw;
  color: #ffffff;
  cursor: pointer;
}

.join-consent input {
  display: none;
}

.join-consent .join-consent-box+span {
  opacity: 0.8;
}

.join-consent-box {
  width: 0.937vw;
  height: 0.937vw;
  border: 0.052vw solid #ffffff;
  border-radius: 0.104vw;
  box-sizing: border-box;
  position: relative;
}

.join-consent input:checked+.join-consent-box::after {
  content: "";
  position: absolute;
  left: 0.26vw;
  top: 0.052vw;
  width: 0.26vw;
  height: 0.52vw;
  border: solid #ffffff;
  border-width: 0 0.104vw 0.104vw 0;
  transform: rotate(45deg);
}

.join-submit {
  margin: 0.781vw auto 0;
  min-width: 5.416vw;
  height: 2.187vw;
  padding: 0 1.041vw;
  border: none;
  border-radius: 52.031vw;
  background: #e7e7e7;
  color: #b81c22;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.416vw;
  width: fit-content;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.join-submit img {
  width: 1.145vw;
  height: 0.729vw;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(3106%) hue-rotate(339deg) brightness(92%) contrast(92%);
  transition: filter 0.25s ease;
}

.join-submit:hover {
  background: #ffffff;
  border-color: transparent;
  color: #b81c22;
}

.join-submit:hover img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(3106%) hue-rotate(339deg) brightness(92%) contrast(92%);
}

.join-follow {
  background: #e7e7e7;
  padding: 5.208vw 0 10.416vw;
  box-sizing: border-box;
}

.join-follow h2 {
  margin: 0 0 4.062vw;
  text-align: center;
  color: #595757;
}

.join-follow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 3.02vw;
  max-width: 72.916vw;
  margin: 0 auto;
}

.join-follow-item {
  text-align: center;
}

.join-follow-item img {
  width: 11.354vw;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.join-follow-name,
.join-follow-account {
  margin: 0;
  color: #595757;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.join-follow-name {
  margin-top: 0.833vw;
}

.join-follow-account {
  margin-top: 0.416vw;
}

.join-follow-item.is-active .join-follow-name,
.join-follow-item.is-active .join-follow-account {
  color: #b81c22;
}

.join-follow-item:hover .join-follow-name,
.join-follow-item:hover .join-follow-account {
  color: #b81c22;
}

.join-follow-channel {
  width: 40vw;
  margin: 5.364vw auto 1.875vw;
  position: relative;
  text-align: center;
  color: #595757;
}

.join-follow-channel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0.052vw;
  background: #595757;
}

.join-follow-channel span {
  position: relative;
  display: inline-block;
  padding: 0 1.145vw;
  background: #e7e7e7;
}

.join-follow-shop {
  display: flex;
  justify-content: center;
  gap: 4.583vw;
}

.join-follow-shop-item {
  width: 6.25vw;
  text-align: center;
}

.join-follow-shop-item img {
  width: 3.333vw;
  height: 3.333vw;
  object-fit: contain;
  margin: 0 auto;
  transform-origin: center center;
  transition: transform 0.25s ease;
}

.join-follow-shop-name {
  margin: 0.729vw 0 0.416vw;
  color: rgba(89, 87, 87, 0.60);
}

.join-follow-shop-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.156vw;
  height: 1.51vw;
  border-radius: 3.593vw;
  background: #f5f5f5;
  color: rgba(89, 87, 87, 0.60);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.join-follow-shop-item.is-active .join-follow-shop-name {
  color: #595757;
}

.join-follow-shop-item.is-active .join-follow-shop-badge {
  color: #595757;
}

.join-follow-shop-item:hover img {
  transform: rotate(-8deg);
}

.join-follow-shop-item:hover .join-follow-shop-badge {
  color: #ffffff;
}

.join-follow-shop-item:first-child:hover .join-follow-shop-badge {
  background: #ff8a00;
}

.join-follow-shop-item:not(:first-child):hover .join-follow-shop-badge {
  background: #b81c22;
}


/* 
*======================================================media===============================================================
*/
@media screen and (max-width:768px) {
  :root {
    --join-inner: 92%;
    --zs-inner: 92%;
  }
  
  .join-page {
    width: 100%;
  }
  
  .page-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .zs-inner {
    padding: 0 40px;
  }
  
  .join-hero {
    min-height: 520px;
    padding-top: 78px;
  }
  
  .join-hero-bg img {
    width: 100%;
    height: 100%;
  }
  
  .join-hero-bg::after {
    height: 340px;
    background:
      linear-gradient(180deg, rgba(245, 245, 245, 0) 10%, rgba(24, 24, 24, 0.9) 100%);
  }
  
  .join-hero-inner {
    min-height: calc(1080px - 78px);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
.join-contact {
    padding: 92px 0;
  }
  
  .join-coop {
    padding: 20px 0 92px;
  }
  
  .join-message {
    padding: 92px 0;
  }
  
  .join-follow {
    padding: 92px 0;
  }
  
  .join-contact {
    padding-top: 148px;
  }
  
  .join-contact h2,
  .join-coop h2,
  .join-follow h2 {
    margin: 0 0 26px;
  }
  
  .join-contact h2 {
    margin-bottom: 35px;
  }
  
  .join-contact h2 span,
  .join-coop h2 span {
    line-height: 85px;
    letter-spacing: -1.8px;
  }
  
  .join-contact-shell {
    width: min(100%, 92%);
    max-width: 92%;
  }
  
  .join-contact-grid {
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  
  .join-contact-map {
    border-radius: 20px 0 0 20px;
  }
  
  .join-contact-map img {
    width: 100%;
    height: 240px;
  }
  
  .join-contact-card {
    min-height: 240px;
    padding: 33px 10px 0;
    border-radius: 0 20px 20px 0;
  }
  
  .join-contact-card h3 {
    line-height: 48px;
  }
  
  .join-contact-card h3 span {
    line-height: 48px;
  }
  
  .join-contact-addresses {
    margin-top: 0;
  }
  
  .join-contact-address {
    min-height: auto;
    grid-template-columns: none;
    column-gap: 6px;
    border-bottom: 2px solid transparent;
    line-height: 1.4;
    padding: 20px 0;
  }
  
  .join-contact-address span {
    line-height: 1.4;
    width: 100%;
  }
  
  .join-contact-meta {
    height: auto;
    width: 92%;
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  
  .join-contact-meta-col {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    text-align: left;
  }
  
  .join-contact-meta-col::after {
    left: 50%;
    width: 100%;
    height: 2px;
    transform: translateX(-50%) scaleX(0);
  }
  
  .join-contact-meta-col:has(.join-contact-meta-item:hover)::after,
  .join-contact-meta-col:has(.join-contact-meta-item.is-active)::after {
    transform: translateX(-50%) scaleX(1);
  }
  
  .join-contact-meta-item {
    display: inline-flex;
    gap: 8px;
    height: 83px;
    width: 100%;
  }
  
  .join-contact-meta-item img {
    width: 33px;
    height: 33px;
  }
  
  .join-contact-meta-item .is-active {
    filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(3106%) hue-rotate(339deg) brightness(92%) contrast(92%);
  }
  
  .join-contact-meta-item span {
    line-height: 36px;
  }
  
  .join-contact-links {
    max-width: 100%;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    gap: 0;
    padding: 6px 0 0;
  }
  
  .join-contact-shell.is-contact-links-open .join-contact-links {
    padding-top: 26px;
  }
  
  .join-contact-links-col {
    display: none;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .join-contact-links-col.is-active{
    display: flex;
  }
  
  .join-contact-links-row {
    grid-template-columns: none;
    column-gap: 32px;
    min-height: auto;
  }
  
  .join-contact-links-label,
  .join-contact-links-value {
    font-size: 18px;
    line-height: 43px;
    letter-spacing: -1.8px;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }
  
  .join-contact-links-value.is-link {
    text-underline-offset: 3px;
  }
  
  .join-coop-grid {
    width: 92%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 24px 25px;
  }
  
  .join-coop-card {
    min-height: 106px;
    width: 516px;
    max-width: 100%;
    border-radius: 16px;
    padding: 22px 86px 22px 31px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .join-coop-card h3 {
    line-height: 36px;
  }
  
  .join-coop-card h3 span {
    line-height: 36px;
  }
  
  .join-coop-card:hover {
    border: 1px solid rgba(184, 28, 34, 0.8);
    box-shadow:
      0 1px 2px rgba(0, 0, 0, 0.3),
      0 1px 3px rgba(0, 0, 0, 0.15);
  }
  
  .join-coop-qrcode {
    right: 31px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
  }
  
  .join-coop-qrcode-img {
    width: 100%;
    height: 100%;
  }
  
  .join-coop-card p span {
    line-height: 18px;
  }
  
  .join-coop-qr-popup {
    right: 0;
    top: calc(50% + 42px);
    width: 207px;
    height: 221px;
    transform: translateY(8px);
  }
  
  .join-coop-qr-popup img {
    width: 100%;
    height: 100%;
  }
  
  .join-message {
    padding: 125px 0 171px;
  }
  
  .join-message-panel {
    width: 100%;
    border-radius: 10px;
    padding: 25px 5% 58px;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.1),
      0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .join-message-panel h2 {
    line-height: 60px;
  }
  
  .join-message-panel h2 span {
    font-size: 26px !important;
    line-height: 60px;
    letter-spacing: -1.8px;
  }
  
  .join-message-desc {
    margin: 0 auto 33px;
  }
  
  .join-message-desc span {
    line-height: 27px;
  }
  
  .join-form-grid {
    gap: 8px;
  }
  
  .join-form-grid--top {
    margin-bottom: 8px;
    grid-template-columns: repeat(1, 1fr);
  }
  
  .join-form-grid--middle {
    margin-bottom: 8px;
    grid-template-columns: repeat(1, 1fr);
  }
  
  .join-form input,
  .join-form textarea {
    border-radius: 8px;
    padding: 0 14px;
    height: 40px;
    font-size: 13px;
  }
  
  .join-form textarea {
    width: 100%;
    height: 140px;
    padding: 16px 14px;
  }
  
  .join-select {
    height: 46px;
  }
  
  .join-select-trigger {
    width: 100%;
    height: 46px;
    border-radius: 8px;
    display: flex;
    padding: 0 16px;
    font-size: 14px;
  }
  
  .join-select-arrow {
    width: 13px;
    height: 13px;
  }
  
  .join-select.is-open .join-select-trigger {
    border-radius: 8px 8px 0 0;
  }
  
  .join-select-menu {
    top: 46px;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    flex-direction: column;
    gap: 16px;
  }
  
  .join-select.is-open .join-select-menu {
    display: flex;
  }
  
  .join-select-menu li {
    font-size: 14px;
  }
  
  .join-select-menu li:hover::before,
  .join-select-menu li.is-active::before {
    left: -16px;
    right: -16px;
    top: -8px;
    bottom: -8px;
  }
  
  .join-consent {
    margin-top: 32px;
    display: flex;
    gap: 8px;
  }
  
  .join-consent-box {
    width: 18px;
    height: 18px;
    border: 1px solid #ffffff;
    border-radius: 2px;
  }
  
  .join-consent input:checked+.join-consent-box::after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }
  
  .join-submit {
    margin: 15px auto 0;
    min-width: 104px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    display: flex;
    gap: 8px;
  }
  
  .join-submit img {
    width: 22px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(3106%) hue-rotate(339deg) brightness(92%) contrast(92%);
  }
  
  .join-submit:hover img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(3106%) hue-rotate(339deg) brightness(92%) contrast(92%);
  }
  
  .join-follow {
    padding: 100px 0 200px;
  }
  
  .join-follow h2 {
    margin: 0 0 58px;
  }
  
  .join-follow-grid {
    gap: 58px;
    max-width: 100%;
  }
  
  .join-follow-item img {
    width: 76%;
  }
  
  .join-follow-name {
    margin-top: 16px;
  }
  
  .join-follow-account {
    margin-top: 8px;
  }
  
  .join-follow-channel {
    width: 100%;
    margin: 103px auto 36px;
  }
  
  .join-follow-channel::before {
    top: 50%;
    height: 1px;
  }
  
  .join-follow-channel span {
    padding: 0 22px;
  }
  
  .join-follow-shop {
    display: flex;
    gap: 88px;
  }
  
  .join-follow-shop-item {
    width: 120px;
  }
  
  .join-follow-shop-item img {
    width: 64px;
    height: 64px;
  }
  
  .join-follow-shop-name {
    margin: 14px 0 8px;
  }
  
  .join-follow-shop-badge {
    display: inline-flex;
    min-width: 99px;
    height: 29px;
    border-radius: 69px;
  }

.zs-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  .join-hero {
    min-height: 520px;
  }

  .join-hero-inner {
    min-height: auto;
    padding: 104px 16px 48px;
  }

  .join-contact,
  .join-coop,
  .join-message,
  .join-follow {
    padding: 48px 0;
  }

  .join-contact-shell,
  .join-message-panel,
  .join-coop-grid {
    width: 100%;
    max-width: 100%;
  }

  .join-contact-map {
    border-radius: 12px 12px 0 0;
  }

  .join-contact-card {
    border-radius: 0 0 12px 12px;
    min-height: auto;
    padding: 24px 16px;
  }

  .join-coop-card {
    width: 100%;
  }

  .join-follow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .join-follow-channel {
    width: 100%;
  }

  .join-follow-shop {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
}