@charset "utf-8";

.shop-detail {
  margin-bottom: 4rem;
  padding: 2rem;
	border: 1px solid #ddd;

  @media screen and (max-width: 767px) {
    margin-bottom: 3rem;
    padding: 1.5rem
  }

	.detail-title {
    margin-bottom: 2rem;
		font-weight: 700;
		font-size: 1.6rem;
		line-height: 160%;
		color: #000000;
	}
	.detail-list {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 160%;
    color: #000000;

    & li{
      position: relative;
      padding-left: 2.4rem;

      &:before{
        content: "";
        position: absolute;
        left: 0.8rem;
        top: 1rem;
        z-index: 1;
        display: block;
        width: 0.4rem;
        height: 0.4rem;
        background: #000;
        border-radius: 50%;
      }

      & a{
        @media screen and (max-width: 767px) {
          display: inline;
        }
      }

    }
	}
}
