@charset "UTF-8";
/* --------------------------
media query
-------------------------- */
/* --------------------------
非表示切り替え
-------------------------- */
@media screen and (min-width: 768px) {
  .u-hide--pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-hide--tab {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .u-hide--laptop {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-hide--sp {
    display: none;
  }
}
.u-hidden {
  visibility: hidden;
}

.office-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, auto);
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .office-list {
    grid-template-columns: repeat(2, auto);
    margin-bottom: 40px;
  }
}
.office-list-item {
  width: 100%;
}
.office-list-item a {
  display: block;
  padding: 0.5em;
  text-align: center;
  border-bottom: 2px solid rgb(18, 19, 20);
  transition: all 0.4s;
}
.office-list-item a:hover {
  opacity: 0.7;
}
.office-list-item a span::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 10px solid rgb(18, 19, 20);
  border-bottom: 0;
  margin-left: 0.5em;
}
.office-panel {
  padding: 40px;
  border: 1px solid #b7b7b7;
}
@media screen and (max-width: 767px) {
  .office-panel {
    padding: 24px 16px;
  }
}
.office-panel-list-item:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .office-panel-list-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.office-panel-headline {
  font-size: 24px;
  font-weight: bold;
  color: #526884;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 767px) {
  .office-panel-headline {
    font-size: 20px;
  }
}
.office-table {
  width: 100%;
  border-collapse: collapse;
}
.office-table tbody tr {
  border-bottom: 2px solid #e9eef2;
}
.office-table tbody th {
  width: 9em;
  font-weight: normal;
  padding: 1em;
}
.office-table tbody th::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 2em;
  aspect-ratio: 1/1;
  margin-right: 0.5em;
}
.office-table tbody th.location::before {
  background-image: url(../images/office/icon-location.png);
}
.office-table tbody th.access::before {
  background-image: url(../images/office/icon-access.png);
}
.office-table tbody th.tel::before {
  background-image: url(../images/office/icon-tel.png);
}
.office-table tbody th.fax::before {
  background-image: url(../images/office/icon-fax.png);
}
.office-table tbody th.opening::before {
  background-image: url(../images/office/icon-opening.png);
}
.office-table tbody th.holiday::before {
  background-image: url(../images/office/icon-holiday.png);
}
.office-table tbody td {
  padding: 0.5em 1em;
}
.office-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}
.office-map iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.office-map iframe ~ p {
  display: none;
}/*# sourceMappingURL=office.css.map */