@charset "UTF-8";

.entry-flow__image2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  overflow: hidden;
  height: 220px;
  border-radius: 10px;
  padding: 2em;
}

.entry-flow__image2 img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.emergency-info {
  display: flex;
  justify-content: center;
  margin-top: 2em;
  margin-bottom: 3em;
}

.emergency-info__list {
  width: 630px;
  padding: 2rem;
  background-color: #fff2ee;
}

.emergency-info__list a {
  display: block;
  position: relative;
  padding: 0.5em 1em 0.5em 2.5em;
}

.emergency-info__list a::before {
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0.5em;
  width: 20px;
  height: 20px;
  background: url(/app-files/img/sprite/icon.svg#exclamation-usage) no-repeat 0 0;
  content: "";
  background-size: 20px;
}


@media only screen and (width <=768px) {
  .entry-flow__image2 {
    height: 132px;
    border-radius: 8px
  }

  .entry-flow__image2 img {
    max-width: 100%;
    max-height: 100px;
    padding: 0;
  }

  .emergency-info__list {
    width: 100%;
    padding: 1em;
  }
}