@charset "utf-8";

.map_wrap {
    background-color: #fff;
    padding: 1vw 0;
}
.map_area {
     width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.map_box {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%; /* 比率を4:3に固定 */
}
/* Google Mapのiframe */
.map_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access_wrap {
    background-color: #fcf8e8;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding-top: 5vw;
    padding-bottom: 5vw;
}
.access_box {
    width: 100%;
    max-width: 700px;
    padding: 0 1vw;
}
.access_list {
    margin: 0 auto;
}
.access_box ul {
    list-style-type: disc;
    list-style-position: outside;
}
.access_box li {
    position: relative;
    list-style: none;
   color: darkblue; /* 6.文字色 */
    margin-top: 10px;
    line-height: normal;
}
.access_box li::before{
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: darkblue;
    position: absolute;
    left: 7%;
    top: calc(0.75em - 3px);
}
p.access_cap {
   font-size: 15px;  /* 5.文字サイズ */
    font-weight: bold;
    line-height: normal;
    text-align: left;
    padding: 0 10%;
}
.access_img img {
    width: 100%;
    height: auto;
}