.wrap {
  max-width: 1100px;
}

#content {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 100px;
}
#content .content-left {
  width: 220px;
  height: -moz-max-content;
  height: max-content;
  position: sticky;
  top: 120px;
}
#content .content-left h3 {
  background: #fcd13e;
  padding: 6px 10px 4px 50px;
  border-radius: 50vw;
  font-size: 17px;
  font-weight: 700;
  position: relative;
  margin-bottom: 15px;
  box-sizing: border-box;
}
#content .content-left h3::before {
  content: "";
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
#content .content-left ul li a {
  display: block;
  margin-left: 20px;
  padding-left: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
}
#content .content-left ul li a::before {
  content: "";
  background: #cccccc;
  width: 10px;
  height: 10px;
  border-radius: 50vw;
  left: 0;
  top: 9px;
  position: absolute;
}
#content .content-left ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#content .content-left ul li a:hover::before {
  background: #fcd13e;
}
#content .content-left ul li a.active::before {
  background: #fcd13e;
}
#content .content-left .status {
  margin-bottom: 35px;
}
#content .content-left .status h3::before {
  background: url(../img/residents/search_icon1.png) no-repeat 0 0/100%;
  width: 22px;
  height: 25px;
}
#content .content-left .district h3::before {
  background: url(../img/residents/search_icon2.png) no-repeat 0 0/100%;
  width: 18px;
  height: 23px;
  left: 25px;
}
#content .content-right {
  width: calc(100% - 260px);
}
#content .content-right .box-content {
  background: #fffaec;
  border-radius: 120px;
  margin-bottom: 70px;
}
#content .content-right .box-content .top-ttl {
  display: flex;
  justify-content: space-between;
  padding: 40px 50px 30px 80px;
  box-sizing: border-box;
  background: #fcd13e;
  border-radius: 120px 120px 0 0;
}
#content .content-right .box-content .top-ttl h3 span {
  display: block;
  font-weight: 700;
}
#content .content-right .box-content .top-ttl h3 span:first-child {
  font-size: 28px;
  margin-bottom: 5px;
}
#content .content-right .box-content .top-ttl h3 span:last-child {
  font-size: 21px;
}
#content .content-right .box-content .top-ttl .label {
  position: relative;
  z-index: 0;
  text-align: center;
  color: #0f98bb;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 20px;
}
#content .content-right .box-content .top-ttl .label::before {
  content: "";
  background: url(../img/residents/icon_bg.png) no-repeat 0 0/100%;
  width: 90px;
  height: 90px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  #content .content-right .box-content .top-ttl .label {
    max-width: 70px;
    padding: 0 10px;
    word-break: keep-all;
  }
}
#content .content-right .box-content .box-info {
  padding: 10px 30px 70px;
}
#content .content-right .box-content .box-info dl {
  display: flex;
  align-items: center;
  gap: 0 30px;
  padding: 15px 0;
  border-bottom: 2px dotted #fcd13e;
  font-weight: 600;
}
#content .content-right .box-content .box-info dl dt {
  width: 160px;
  background: #feedb2;
  text-align: center;
  border-radius: 50vw;
  height: -moz-max-content;
  height: max-content;
  padding: 2px 0;
}
#content .content-right .box-content .box-info dl dd {
  width: calc(100% - 160px);
  font-size: 18px;
}
#content .content-right .box-content .box-info dl dd .link-t1 {
  color: #0f98bb;
  text-decoration: underline;
  max-width: 35ch;  
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
}
#content .content-right .box-content .box-info dl dd .link-t1:hover {
  text-decoration: none;
}
#content .content-right .btn-t3 a {
  display: block;
  font-size: 27px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  background: #64b6c8;
  color: #fff;
  padding: 12px 70px 10px;
  box-sizing: border-box;
  border-radius: 50vw;
  font-weight: 600;
}
#content .content-right .btn-t3 a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media screen and (max-width: 991px) {
  #content .content-right .box-content .top-ttl {
    padding: 40px 20px 30px 25px;
  }
  #content .content-right .box-content .top-ttl h3 span:first-child {
    font-size: 22px;
    margin-bottom: 0;
  }
  #content .content-right .box-content .top-ttl h3 span:last-child {
    font-size: 16px;
    line-height: 22px;
  }
  #content .content-right .box-content {
    border-radius: 80px;
  }
  #content .content-right .box-content .top-ttl {
    border-radius: 80px 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  #content {
    display: block;
    padding-bottom: 25px;
  }
  #content .content-left {
    width: 100%;
    position: static;
    margin-bottom: 30px;
  }
  #content .content-right {
    width: 100%;
  }
  #content .content-right .box-content .top-ttl h3 {
    margin-right: 30px;
  }
  #content .content-right .box-content .top-ttl .label {
    width: 125px;
  }
  #content .content-right .box-content .box-info {
    padding: 10px 15px 70px;
  }
  #content .content-right .box-content .box-info dl dt {
    width: 125px;
    font-size: 14px;
  }
  #content .content-right .box-content .box-info dl dd .link-t1 {
    font-size: 14px;
    max-width: 18ch;  
  }
  #content .content-right .box-content .box-info dl dd {
    font-size: 16px;
    line-height: 22px;
  }
}/*# sourceMappingURL=post_id.css.map */