@charset "UTF-8";
section p {
  line-height: 240%;
}

.resident .schedule {
  width: 90%;
}
.resident .shien_photo {
  width: 30%;
  min-width: 250px;
  display: block !important;
}
@media screen and (max-width: 768px) {
  .resident .shien_photo {
    margin-left: 20px;
  }
}
.resident p.top-link {
  background-color: #FFEFF2;
  border: 1px solid #666666;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  color: #000000;
  margin-bottom: 15px;
  width: 20em;
  margin: 20px 10px 10px auto;
}
.resident p.top-link::after {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f138";
  position: absolute;
  right: 20px;
}
.resident ul.tab {
  width: 80%;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  list-style: none;
  font-size: 2rem;
  position: relative;
  z-index: 80;
}
@media screen and (max-width: 1024px) {
  .resident ul.tab {
    gap: 0;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .resident ul.tab {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
.resident ul.tab a {
  background-color: #FFEFF2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  color: #666666;
}
@media screen and (max-width: 1024px) {
  .resident ul.tab a {
    border-left: 1px solid #666666;
    border-bottom: 1px solid #666666;
  }
}
@media screen and (max-width: 768px) {
  .resident ul.tab a {
    width: 50%;
  }
}
.resident ul.tab a i {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .resident ul.tab a:last-child {
    width: 100%;
  }
}
.resident ul.tab a.active {
  background-color: #D6909D;
  color: #ffffff;
}
.resident ul.tab a:hover {
  background-color: #D6909D;
  color: #ffffff;
}
.resident .nintei {
  list-style: none;
  margin-left: 50px;
}
.resident .nintei li {
  padding: 10px;
}
.resident .flex {
  display: flex;
  align-items: flex-start;
}
.resident .flex img {
  max-width: 350px;
}
@media screen and (max-width: 768px) {
  .resident .flex {
    display: block;
  }
  .resident .flex img {
    display: none;
  }
}
.resident table.resident-table {
  border-collapse: collapse;
  margin-left: 30px;
  min-width: 300px;
  width: 95%;
  border: 1px solid #666666;
  min-width: 738px;
}
@media screen and (max-width: 768px) {
  .resident table.resident-table {
    margin-left: 0;
  }
}
.resident table.resident-table td, .resident table.resident-table th {
  padding: 20px;
  text-align: center;
  width: 14%;
  vertical-align: middle;
  border-left: 1px solid #666666;
}
.resident table.resident-table th:last-child, .resident table.resident-table td:last-child {
  border-right: 1px solid #666666;
}
.resident table.resident-table th {
  border-bottom: 1px solid #666666;
}
.resident table.resident-table .bg-blue {
  background-color: #dbecfc;
}
.resident div.resident-photo {
  width: 90%;
  margin: 45px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 40px;
}
@media screen and (max-width: 768px) {
  .resident div.resident-photo {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 500px) {
  .resident div.resident-photo {
    grid-template-columns: 1fr;
  }
}
.resident div.resident-photo figcaption {
  font-size: 1.3rem;
  text-align: center;
  padding: 5px 0;
}
.resident div.resident-photo img {
  width: 100%;
}

.toggle {
  display: none;
}

.Label { /*タイトル*/
  padding: 1em;
  display: block;
  color: #000000;
  background: #dbecfc;
  margin: 30px auto;
  width: 90%;
  line-height: 180%;
}

.Label::before { /*タイトル横の矢印*/
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}

.Label,
.content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.content { /*本文*/
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
  width: 90%;
  margin: auto;
}

.toggle:checked + .Label + .content { /*開閉時*/
  height: auto;
  transition: all 0.3s;
}

.toggle:checked + .Label::before {
  transform: rotate(-45deg) !important;
}/*# sourceMappingURL=resident.css.map */