@charset "UTF-8";
.structure-row {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .structure-row {
    flex-direction: column;
    gap: 12px;
  }
}
.structure-row .zeh-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  position: relative;
  flex: 1 0 auto;
}
@media screen and (max-width: 767px) {
  .structure-row .zeh-ttl {
    padding: 0.5em;
  }
}
.structure-row .zeh-ttl::before, .structure-row .zeh-ttl::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 100%;
  border: 1px solid #231815;
  top: 50%;
  transform: translateY(-50%);
}
.structure-row .zeh-ttl::before {
  left: 0;
  border-right: none;
}
.structure-row .zeh-ttl::after {
  right: 0;
  border-left: none;
}

.structure-flexTtl {
  margin-bottom: 0.5em;
}

.structure-flex {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .structure-flex {
    flex-direction: column;
  }
}

.structure-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .structure-list {
    flex-direction: column;
    gap: 24px;
  }
}
.structure-list + .structure-list {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid #000;
}

.structure-list-ul {
  width: calc((100% - 96px) / 4);
}
@media screen and (max-width: 767px) {
  .structure-list-ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.structure-list-ul li + li {
  margin-top: 32px;
}

.structure-list-ttl {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  border-bottom: 2px solid #231815;
  line-height: 1;
  padding: 8px 0;
}
.structure-list-ttl .small {
  font-size: 10px;
  line-height: 1;
}

.structure-list-cont {
  margin-top: 8px;
}
.structure-list-cont.harf {
  display: flex;
}
.structure-list-cont.harf .structure-list-txt {
  width: 48%;
  flex: 1 0 auto;
}
.structure-list-cont.harf-ttl {
  display: flex;
  gap: 8px;
}
.structure-list-cont.harf-ttl .structure-list-ttlWrap {
  width: 48%;
  flex: 1 0 auto;
}
.structure-list-cont.harf-ttl .structure-list-ttl {
  word-break: keep-all;
  position: relative;
}
.structure-list-cont.harf-ttl .structure-list-txt {
  margin-top: 4px;
}
.structure-list-cont.float {
  clear: both;
}
@media screen and (max-width: 767px) {
  .structure-list-cont.float {
    display: flex;
    flex-direction: row-reverse;
  }
}
.structure-list-cont.float::before {
  content: "";
  float: right;
  width: 0;
  height: 5em;
}
@media screen and (max-width: 767px) {
  .structure-list-cont.float::before {
    content: none;
  }
}
.structure-list-cont.float .structure-list-img {
  width: 50%;
  float: right;
  clear: right;
  /* これが重要！::beforeの下に配置させます */
  margin: 0.2em 0 0 0.2em;
}
@media screen and (max-width: 767px) {
  .structure-list-cont.float .structure-list-img {
    flex: 1 0 auto;
    float: initial;
  }
}

.structure-list-img.--large {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .structure-list-img.--large {
    width: 80%;
  }
}
.structure-list-img.--medium {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .structure-list-img.--medium {
    width: 68%;
  }
}
@media screen and (max-width: 767px) {
  .structure-list-img.--sp-narrow {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .structure-list-img.--sp-medium {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .structure-list-img.--sp-large {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.structure-list-txt {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.structure-list-txt small {
  font-size: 10px;
  margin-top: 8px;
  display: block;
}