.secOffice .gridArea {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  row-gap: 80px;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.secOffice .gridArea .content h2 {
  color: #001A72;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: bold;
  margin-bottom: 20px;
}
.secOffice .gridArea .content .address {
  margin: 20px auto;
  border: 2px solid #001A72;
  width: 100%;
  text-align: center;
  font-size: clamp(16px, 1.25vw, 18px);
  padding: 35px 10px;
  font-weight: 500;
}
.secOffice .gridArea .content ul li {
  padding: 20px 0;
  border-bottom: 1px solid #D3D3D3;
  display: grid;
  grid-template-columns: max-content 1fr;
}
.secOffice .gridArea .content ul li div {
  font-size: clamp(15px, 1.1vw, 16px);
}
.secOffice .gridArea .content ul li h3 {
  width: 145px;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: bold;
}
.secOffice .gridArea .content .iframeWrap {
  margin-top: 40px;
  aspect-ratio: 2/1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.secOffice .gridArea .content .iframeWrap iframe {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .secOffice .gridArea {
    grid-template-rows: max-content;
  }
  .secOffice .gridArea .content {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .secOffice .gridArea {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
  }
  .secOffice .gridArea .content h2 {
    margin-bottom: 20px;
  }
  .secOffice .gridArea .content .address {
    margin: 10px auto;
    border: 2px solid #001A72;
    padding: 15px 10px;
  }
  .secOffice .gridArea .content ul li {
    padding: 20px 0;
  }
  .secOffice .gridArea .content .iframeWrap {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */