.handicapped-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}

@media screen and (max-width: 960px) {
  .handicapped-list {
    gap: 0 16px;
  }
}

@media screen and (max-width: 768px) {
  .handicapped-list {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 520px) {
  .handicapped-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
  }
}

.handicapped-list__item .handicapped-img {
  margin: 0 0 12px;
}

@media screen and (max-width: 960px) {
  .handicapped-list__item .handicapped-img {
    margin: 0 0 8px;
  }
}

@media screen and (max-width: 768px) {
  .handicapped-list__item .handicapped-img {
    margin: 0 auto 6px;
    width: 100%;
    max-width: 356px;
  }
}

@media screen and (max-width: 768px) {
  .handicapped-list__item .handicapped-txt {
    margin: 0 auto;
    width: 100%;
    max-width: 356px;
  }
}

.img-unit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media screen and (max-width: 960px) {
  .img-unit {
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .img-unit {
    gap: 12px;
  }
}

@media screen and (max-width: 520px) {
  .img-unit {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.guidance-unit {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
}

@media screen and (max-width: 960px) {
  .guidance-unit {
    gap: 0 24px;
  }
}

@media screen and (max-width: 768px) {
  .guidance-unit {
    flex-direction: column;
    gap: 16px 0;
  }
}

.guidance-unit__img {
  width: 440px;
}

@media screen and (max-width: 960px) {
  .guidance-unit__img {
    width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .guidance-unit__img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.guidance-unit__txt {
  width: calc( 100% - 472px);
}

@media screen and (max-width: 960px) {
  .guidance-unit__txt {
    width: calc( 100% - 424px);
  }
}

@media screen and (max-width: 768px) {
  .guidance-unit__txt {
    width: 100%;
  }
}

.guidance-unit__txt .ttl-m {
  margin-bottom: calc(8px * 2);
}

@media screen and (max-width: 960px) {
  .guidance-unit__txt .ttl-m {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .guidance-unit__txt .ttl-m {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

.greeting-unit {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 0 24px;
}

@media screen and (max-width: 960px) {
  .greeting-unit {
    gap: 0 16px;
  }
}

@media screen and (max-width: 768px) {
  .greeting-unit {
    gap: 12px 0;
  }
}

.greeting-unit__txt {
  width: calc( 100% - 304px);
}

@media screen and (max-width: 960px) {
  .greeting-unit__txt {
    width: calc( 100% - 296px);
  }
}

@media screen and (max-width: 768px) {
  .greeting-unit__txt {
    width: 100%;
  }
}

.greeting-unit__txt .introduction-col {
  padding: 16px 16px 10px;
  border: solid 1px #C9C8C6;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .greeting-unit__txt .introduction-col {
    padding: 12px 12px 10px;
  }
}

.greeting-unit__txt .introduction-col .name span {
  margin-left: 8px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .greeting-unit__txt .introduction-col .name span {
    font-size: 1.6rem;
  }
}

.greeting-unit__txt .introduction-col .list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

@media screen and (max-width: 768px) {
  .greeting-unit__txt .introduction-col .list {
    gap: 2px 12px;
  }
}

.greeting-unit__txt .introduction-col .list__item {
  margin-bottom: 0;
}

.greeting-unit__img {
  width: 280px;
}

@media screen and (max-width: 768px) {
  .greeting-unit__img {
    display: grid;
    margin: 0 auto;
    gap: 4px 0;
  }
}

.tbl-flex .tbl:nth-child(2) table {
  margin: 0 0 12px;
}

@media screen and (max-width: 768px) {
  .tbl-flex .tbl:nth-child(2) table {
    margin: 0 0 6px;
  }
}

@media screen and (max-width: 768px) {
  .tbl table tbody tr th {
    width: 120px;
  }
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 24px;
}

@media screen and (max-width: 960px) {
  .facility-list {
    gap: 32px 16px;
  }
}

@media screen and (max-width: 768px) {
  .facility-list {
    gap: 24px 12px;
  }
}

@media screen and (max-width: 520px) {
  .facility-list {
    gap: 20px;
  }
}

.facility-list__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (max-width: 520px) {
  .facility-list__item {
    gap: 8px;
  }
}

.facility-list__item:nth-child(-n+3) {
  width: calc( 33.33% - 16px);
}

@media screen and (max-width: 960px) {
  .facility-list__item:nth-child(-n+3) {
    width: calc( 33.33% - 11px);
  }
}

@media screen and (max-width: 768px) {
  .facility-list__item:nth-child(-n+3) {
    width: calc( 50% - 6px);
  }
}

@media screen and (max-width: 520px) {
  .facility-list__item:nth-child(-n+3) {
    width: 100%;
  }
}

.facility-list__item:nth-child(n+4) {
  width: calc( 50% - 12px);
}

@media screen and (max-width: 960px) {
  .facility-list__item:nth-child(n+4) {
    width: calc( 50% - 8px);
  }
}

@media screen and (max-width: 768px) {
  .facility-list__item:nth-child(n+4) {
    width: calc( 50% - 6px);
  }
}

@media screen and (max-width: 520px) {
  .facility-list__item:nth-child(n+4) {
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .facility-list__item .ttl-m {
    margin: 0 0 8px;
  }
}

.facility-list__item .facility-img img {
  width: 100%;
}

.contact .ttl-l {
  margin-bottom: 68px;
}

@media screen and (max-width: 960px) {
  .contact .ttl-l {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 520px) {
  .contact .ttl-l {
    margin-bottom: 34px;
  }
}

.hotline-tel {
  position: relative;
}

.hotline-tel a {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 34px 24px;
  border: solid 2px #C9C8C6;
  border-radius: 4px;
}

@media screen and (max-width: 960px) {
  .hotline-tel a {
    padding: 22px 34px 18px;
  }
}

@media screen and (max-width: 768px) {
  .hotline-tel a {
    padding: 20px 22px 18px;
  }
}

.hotline-tel a .tel-ttl {
  position: absolute;
  top: -11px;
  left: 50%;
  padding: 0 1em;
  background: #fefefe;
  font-size: 2rem;
  font-weight: bold;
  transform: translateX(-50%);
}

@media screen and (max-width: 960px) {
  .hotline-tel a .tel-ttl {
    left: calc( 50% - 38px);
    font-size: 1.8rem;
    transform: translateX(-39%);
  }
}

@media screen and (max-width: 768px) {
  .hotline-tel a .tel-ttl {
    left: calc( 50% - 148px);
    font-size: 1.6rem;
    transform: translateX(1%);
    padding: 0 0.5em;
  }
}

.hotline-tel a .tel-ttl span {
  background-image: radial-gradient(circle at center, #008EAE 23%, transparent 23%);
  background-repeat: repeat-x;
  background-size: 1.03em 0.3em;
  padding-top: .4em;
}

@media screen and (max-width: 768px) {
  .hotline-tel a .tel-ttl span {
    background-size: 1em 0.3em;
  }
}

.hotline-tel a .tel-num {
  display: block;
  margin: 0 auto 8px auto;
  text-align: center;
  line-height: 40px;
}

@media screen and (max-width: 768px) {
  .hotline-tel a .tel-num {
    line-height: 24px;
  }
}

.hotline-tel a .tel-num .tel-num-inner {
  position: relative;
  font-size: 5.2rem;
  padding-left: 46px;
}

@media screen and (max-width: 960px) {
  .hotline-tel a .tel-num .tel-num-inner {
    font-size: 4.6rem;
    padding-left: 36px;
    line-height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .hotline-tel a .tel-num .tel-num-inner {
    font-size: 3.8rem;
    padding-left: 30px;
    line-height: 44px;
  }
}

@media screen and (max-width: 520px) {
  .hotline-tel a .tel-num .tel-num-inner {
    font-size: 3.5rem;
  }
}

.hotline-tel a .tel-num .tel-num-inner svg {
  position: absolute;
  left: 6px;
  top: 4px;
  width: 40px;
  height: 47px;
  fill: #005aa6;
}

@media screen and (max-width: 960px) {
  .hotline-tel a .tel-num .tel-num-inner svg {
    left: 0;
    top: 2px;
    width: 36px;
    height: 43px;
  }
}

@media screen and (max-width: 768px) {
  .hotline-tel a .tel-num .tel-num-inner svg {
    top: 1px;
    width: 32px;
    height: 37px;
  }
}

@media screen and (max-width: 520px) {
  .hotline-tel a .tel-num .tel-num-inner svg {
    width: 29px;
    height: 34px;
  }
}

.hotline-tel a .tel-txt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hotline-tel a .tel-txt dt {
  margin-right: 8px;
  padding: 2px 12px;
  background: #008EAE;
  border-radius: 2px;
  color: #fefefe;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .hotline-tel a .tel-txt dt {
    margin-right: 6px;
    padding: 1px 8px;
  }
}

.hotline-tel a .tel-txt dd {
  font-feature-settings: "palt";
}

/*# sourceMappingURL=../../../maps/general/pages/handicapped.css.map */
