.sp-only{
  display: none;
}
main .wrapper, .inner { /* 後でcommon.cssに統合 */
  width: 100%;
}

.inner{
  max-width: 1200px;
  padding-bottom: 0;
}

.description{
  margin-bottom: 80px;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 24px */
  text-align: center;
}

.content{
  width: 100%;
}

.address{
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.upper{
  display: flex;
  justify-content: space-between;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.mini-map{
  width: 300px;
}

dl,dd { /* これはcommon.cssで打ち消したい */
  margin: 0;
}


.address-str {
  width: calc(100% - 364px);
}
dt {
  width: 30%;
  min-width: 120px;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.dt-has-2lines {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.dd {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.str-type1{
  font-weight: 400;
  line-height: 24px;
}

.str-type2{
  font-weight: 400;
  line-height: 24px;
}

.info-item{
  position: relative;
  padding-bottom: 24px;
  list-style:none;
  border-bottom: 1px solid #999999;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 24px 0;
}

.google-map{
  width: 100%;
  max-width: 1080px;
  height: 608px;
  margin-top: 40px;
  margin-bottom: 100px;
}

.google-map iframe{
  width: 100%;
  max-width: 1080px;
  height: 608px;
}

.gm-style .directions-card-medium-large {
  display: none
}

@media screen and (max-width: 767px) {
  /* この中にスマホ用のcssの記述をお願いします */
  /* 上記で書いたcssはPC,スマホ共通なのでスマホで適用したくないものは以下で上書きするイメージです */
  .sp-only{
    display: block;
  }

  .inner{
    padding-top: 0;
  }

  .description{
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
  }

  .content{
    width: 100%;
    padding: 80px 0;
    padding-bottom: 0;
    margin: 0 0;
  }

  .address{
    width: 100%;
  }

  .address-str {
    width: 100%;
  }
  dt {
    width: 208px;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
  }

  .upper{
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
  }

  .info-item{
    position: relative;
    padding-bottom: 24px;
    list-style:none;
    border-bottom: 1px solid #999999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }

  .mini-map{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .mini-map img{
    border-radius: 20px;
    width: 100%;
  }

  .google-map{
    width: 100%;
    height: 295px;
    align-items: center;
  }
  .google-map iframe{
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }

}