@charset "utf-8";

.indent_6{
  padding-left: 6em;
  text-indent: -6em;
}
.indent_7{
  padding-left: 7em;
  text-indent: -7em;
}
.indent_8{
  padding-left: 8em;
  text-indent: -8em;
}

.map_row{
  display: flex;
  gap:0 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.map_head{
  width: 100%;
  font-size: var(--fs-32);
  font-weight: normal;
  margin-bottom: 20px;
}
.map_cell{
  max-width: 328px;
  width: 100%;
  iframe{
    max-width: 100%;
  }
}
.map_sep {
  display: flex;
  margin-top: 60px;
  gap: 40px;
  align-items: center;
  span:first-child{
    font-size: var(--fs-24);
    font-weight: bold;
  }
  span:last-child{
    color: var(--deep-blue);
    position: relative;
    &::before{
      content:'';
      display: block;
      width: 2px;
      height: 100%;
      position: absolute;
      background: var(--deep-blue);
      left: -21px;
    }
  }
}
.data_flex {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
  gap:15px;
}
.data_logo {
  margin-top: 6px;
}
.map_full{
  padding-left: 2em;
  width: 100%;
}
@media screen and (max-width: 767px){

.map_row{
  gap:20px;
  justify-content: center;
}
.map_head{
  margin-bottom: 0px;
}
.map_full{
  padding-left: 0;
}
.map_sep {
  gap: 20px;
  span:last-child{
    font-size: 1.2rem;
    &::before{
      content:'';
      display: block;
      width: 2px;
      height: 100%;
      position: absolute;
      background: var(--deep-blue);
      left: -11px;
    }
  }
}
}