@charset "UTF-8";
/* --- hearing --- */
.hearing-sention {
  padding-bottom: 6.25em;
}
.hearing-sention:last-of-type {
    padding-bottom: 13.75em;
}

.hearing-type {
  counter-reset: number 0;
}
.hearing-type h4::before {
  counter-increment: number 1;
  content: counter(number) ".";
}
.hearing-type span {
  font-weight: 300;
}
.hearing-type figure {
  text-align: center;
}
.hearing-type img {
  width: 90%;
}

.hearing-age figure {
  text-align: center;
}
.hearing-age img {
  width: 85%;
}

.hearing-loss dl {
  counter-reset: number 0;
}
.hearing-loss dt {
  position: relative;
  padding-left: 4.5em;
  margin-bottom: 0.5em;
  font: 600 2.0rem "hiragino-kaku-gothic-pron","sans-serif";
  color: #161b59;
}
.hearing-loss dt::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  counter-increment: number 1;
  content: "POINT" counter(number);
  display: inline-block;
  background: #efefef;
  font: 300 1.6rem "hiragino-kaku-gothic-pron","sans-serif";
  padding: 0.2em 0.6em;
  border-radius: 2em;
}

.hearing-loss figure {
  display: flex;
  column-gap: 1.25em;
  margin: 2em 0;
}
.hearing-loss figure > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hearing-words {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.hearing-words table {
  text-align: center;
  font-weight: 600;
  margin: 1em 0;
}
.hearing-words-arrow {
  padding: 1em;
  color: #b5a9a9;
}

/* --- SP--- */
@media screen and (max-width: 1000px) {
  .hearing-loss dt {
    padding-left: 0;
    padding-top: 1.5em;
  }
  .hearing-loss dt::before {
    font-size: 1.4rem;
    top: 0;
    left: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  .hearing-loss figure {
    flex-direction: column;
    row-gap: 2em;
  } 
 .hearing-loss figure > div {
    display: flex;
    flex-direction: row;
    column-gap: 2em;
    align-items: flex-end;
 }
  .hearing-loss img {
    width: 50%;
  }
  .hearing-words {
    flex-direction: column;
  }
}