@charset "UTF-8";

.area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* margin-top: 100px; */

  & h2 {
    width: 100%;
    background-color: #5CB531;
    padding: 10px 0;
    font-size: 2.2rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
  }

  & h3 {
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    line-height: 1.5;
  }

  & dl {
    width: 30%;
    margin-top: 60px;
    line-height: 1.75;
  }

  & dt {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: url(/img/logo_dog.png) #E9FAD8 no-repeat center;
    background-size: 50%;
  }

  & dd {
    padding: 20px 0;
  }
}

.area:after {
  content: "";
  display: block;
  width: 30%;
  /* .boxに指定したwidthと同じ幅を指定する */
  height: 0;
}

.s-details {
  padding-right: 1em;
  font-size: 1.2rem;
  color: #707070;
  position: relative;

  &::after {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    font-family: 'Material Icons Round';
    content: "\e5cc";
  }

  &:hover {
    text-decoration: underline;
  }
}

.shoptype {
  display: inline-block;
  padding: 0 0.8rem;
  border-radius: 20px;
  color: #fff;
  font-size: 1.3rem;
}

.roof {
  background-color: #5CB531;
}

.indoor {
  background-color: #dd873b;
}

@media screen and (max-width: 829px) {
  .area {
    margin-top: 0px;

    & dl {
      width: 100%;
      margin-top: 30px;
    }
  }
}