/*============================
#worries
============================*/
section#worries {
  gap: 56px;
  display: flex;
  padding: var(--scale-40, 40px) 0;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: url(../images/worries-bg.jpg) center center /
    min(100vw / 375 * 500, 1080px) auto no-repeat;
  background-color: #eae4e4;
}

section#worries div.worries__heading {
  width: 100%;
}
section#worries div.worries__heading h2 {
  display: flex;
  padding: var(--scale-16, 16px) 0;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-12, 12px);
  align-self: stretch;
  background: rgba(234, 228, 228, 0.8);
}
section#worries div.worries__heading h2 div.sub-title {
  color: var(--on-surface, #4d4848);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(100vw / 375 * 18, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 41.6px */
}
section#worries div.worries__heading h2 div.main-title {
  display: flex;
  padding: var(--scale-8, 8px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  border-radius: var(--scale-4, 4px);
  background: rgba(195, 126, 129, 0.9);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(100vw / 375 * 24, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
}
section#worries div.worries__rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-8, 8px);
  align-self: center;
  width: calc(100% - (var(--padding-inline, 20px) * 2));
  margin-inline: auto;
}
section#worries div.worries__rows div.rows__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  max-width: var(--width-md, 1080px);
  margin-inline: auto;
  width: 100%;
  gap: var(--scale-8, 6px);
  justify-content: space-around;
}
section#worries div.worries__rows div.rows__row:nth-of-type(even) {
  max-width: 800px;
}
section#worries div.worries__rows div.rows__row div.row__voice {
  display: flex;
  width: 100%;
  max-width: 240px;
  padding: min(100vw / 375 * 16, 20px);
  justify-content: center;
  align-items: center;
  border-radius: var(--scale-40, 40px);
  background: var(--on-surface, #4d4848);
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-size: min(100vw / 375 * 12, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
}

@media screen and (max-width: 768px) {
  section#worries {
    gap: 120px;
    background-position: top center;
  }
}
