@charset "utf-8";

.eeatflex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  @media screen and (max-width: 767px) {
    gap: 10px;
  }
}
.eeatflex_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #F5F2E5;
  max-width: calc(50% - 10px);
  min-height: 154px;
  width: 100%;
  text-align: center;
  padding: 10px 5%;
  @media screen and (max-width: 767px) {
    max-width: 100%;
    min-height: 120px;
  }
  .title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--theme-color);
    line-height: 1.25;
  }
  .title_en {
    font-weight: bold;
    color: var(--theme-color);
    &::first-letter {
      color: #D60B0A;
    }
  }
}