@charset "UTF-8";
/* 日本語表記文字化け防止 */
main {
  overflow: hidden;
  margin-top: 50px;
  color: #4c4c4c;
}
@media (min-width: 900px) {
  main {
    margin-top: 135px;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "fot-tsukuardgothic-std", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

p {
  font-family: "Noto Sans JP", "sans-serif";
}

/*
firstView
---------------------------*/
#firstView .imageContainer {
  position: relative;
  height: 130px;
}
@media (min-width: 768px) {
  #firstView .imageContainer {
    height: 245px;
  }
}
#firstView .imageContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 530px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #f8f9ec), color-stop(80%, transparent));
  background: linear-gradient(90deg, #f8f9ec 0, transparent 80%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#firstView .imageContainer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  #firstView .imageContainer img {
    height: 245px;
  }
}
#firstView .textContainer {
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 5%;
  margin: auto 0;
  width: 200px;
  height: 100px;
}
@media (min-width: 768px) {
  #firstView .textContainer {
    top: 25px;
    left: 8%;
  }
}
@media (min-width: 768px) {
  #firstView .textContainer {
    width: 250px;
  }
}
@media (min-width: 1440px) {
  #firstView .textContainer {
    left: 140px;
    width: 300px;
    height: 100px;
  }
}
#firstView .textContainer h1 {
  position: relative;
  font-size: 26px;
  font-weight: bold;
  color: #1aab4b;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  #firstView .textContainer h1 {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  #firstView .textContainer h1 {
    font-size: 30px;
  }
}
@media (min-width: 1440px) {
  #firstView .textContainer h1 {
    font-size: 32px;
  }
}
#firstView .textContainer h1::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#8cca7a), to(#1aab4b));
  background: linear-gradient(90deg, #8cca7a 0%, #1aab4b 100%);
  border-radius: 10px;
}
@media (min-width: 768px) {
  #firstView .textContainer h1::after {
    bottom: -29px;
    height: 4px;
  }
}

/*
followContentsList
---------------------------*/
#followContentsList {
  padding-top: 100px;
  margin-top: -100px;
}
@media (min-width: 900px) {
  #followContentsList {
    padding-top: 175px;
    margin-top: -175px;
  }
}
#followContentsList .wrap {
  padding: 30px 0 20px;
}
@media (min-width: 768px) {
  #followContentsList .wrap {
    padding: 29px 0 65px;
  }
}
#followContentsList .inner {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #followContentsList .inner {
    max-width: 711px;
  }
}
#followContentsList .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 480px) {
  #followContentsList .list.item02 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 480px) {
  #followContentsList .list.item02 a + a {
    margin-left: 30px;
  }
}
#followContentsList .list a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 47%;
  min-height: 60px;
  padding: 0 5px 10px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.07);
}
@media (min-width: 375px) {
  #followContentsList .list a {
    padding: 0 15px 10px;
  }
}
@media (min-width: 480px) {
  #followContentsList .list a {
    width: calc((100% - 20px) / 3);
    padding: 0 6px 10px;
  }
}
@media (min-width: 768px) {
  #followContentsList .list a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: calc((100% - 63px) / 3);
    min-height: 117px;
    padding: 13px 0 0;
    -webkit-box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.07);
  }
}
#followContentsList .list a::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #acd387;
  border-right: 2px solid #acd387;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media (min-width: 768px) {
  #followContentsList .list a::after {
    bottom: 18px;
  }
}
#followContentsList .list a:nth-of-type(1) .imageContainer {
  width: 25px;
}
@media (min-width: 768px) {
  #followContentsList .list a:nth-of-type(1) .imageContainer {
    width: 40px;
  }
}
#followContentsList .list a:nth-of-type(2) .imageContainer {
  width: 21px;
}
@media (min-width: 768px) {
  #followContentsList .list a:nth-of-type(2) .imageContainer {
    width: 33.5px;
  }
}
#followContentsList .list a:nth-of-type(3) .imageContainer {
  width: 32px;
}
@media (min-width: 768px) {
  #followContentsList .list a:nth-of-type(3) .imageContainer {
    width: 53px;
  }
}
#followContentsList .list a .imageContainer {
  width: 30px;
  margin: 0 7px 0 0;
}
@media (min-width: 768px) {
  #followContentsList .list a .imageContainer {
    margin: 0 auto 7px;
  }
}
#followContentsList .list a p {
  width: 93px;
  font-size: 13px;
  font-weight: bold;
  font-family: "fot-tsukuardgothic-std", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: -0.04em;
  line-height: 1.2;
}
@media (min-width: 560px) {
  #followContentsList .list a p {
    width: 95px;
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  #followContentsList .list a p {
    width: auto;
    line-height: 1.5;
    text-align: center;
  }
}
@media (min-width: 1440px) {
  #followContentsList .list a p {
    font-size: 16px;
  }
}

/*
検査項目の説明（ページ内リンク）
---------------------------*/
#explanationContentsList {
  padding-top: 80px;
  margin-top: -80px;
}
@media (min-width: 900px) {
  #explanationContentsList {
    padding-top: 155px;
    margin-top: -155px;
  }
}
#explanationContentsList .wrap {
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  #explanationContentsList .wrap {
    margin-bottom: 104px;
  }
}
#explanationContentsList .inner {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
}
#explanationContentsList .title {
  position: relative;
  padding-bottom: 17px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  #explanationContentsList .title {
    padding-bottom: 23px;
    margin-bottom: 52px;
  }
}
#explanationContentsList .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #4c4c4c;
  opacity: 0.05;
}
#explanationContentsList .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 215px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#8cca7a), to(#1aab4b));
  background: linear-gradient(90deg, #8cca7a 0%, #1aab4b 100%);
  border-radius: 20px;
}
@media (min-width: 768px) {
  #explanationContentsList .title::after {
    width: 260px;
  }
}
#explanationContentsList .title h2 {
  font-size: 20px;
  font-weight: bold;
}
@media (min-width: 768px) {
  #explanationContentsList .title h2 {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  #explanationContentsList .title h2 {
    font-size: 24px;
  }
}
#explanationContentsList .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#explanationContentsList .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 10px);
  margin-bottom: 5px;
}
@media (min-width: 480px) {
  #explanationContentsList .list a {
    width: calc(33% - 10px);
    margin-bottom: 18px;
  }
}
@media (min-width: 900px) {
  #explanationContentsList .list a {
    width: calc(25% - 10px);
  }
}
@media (min-width: 1440px) {
  #explanationContentsList .list a {
    width: 20%;
  }
}
#explanationContentsList .list a .imageContainer {
  width: 50px;
  margin-right: 4px;
}
@media (min-width: 768px) {
  #explanationContentsList .list a .imageContainer {
    width: 72px;
    margin-right: 9px;
  }
}
#explanationContentsList .list a p {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  font-family: "fot-tsukuardgothic-std", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  line-height: 1.3;
}
@media (min-width: 768px) {
  #explanationContentsList .list a p {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  #explanationContentsList .list a p {
    font-size: 16px;
  }
}
#explanationContentsList .list a p::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -16px;
  margin: auto 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid #acd387;
  border-right: 2px solid #acd387;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
#explanationContentsList .empty {
  content: "";
  width: calc(20% - 24px);
}

/*
検査項目の説明（詳細）
---------------------------*/
#explanation .wrap {
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  #explanation .wrap {
    margin-bottom: 74px;
  }
}
#explanation .inner {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
}
#explanation .inner > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 100px;
  margin-top: -100px;
  padding-bottom: 32px;
  margin-bottom: 41px;
}
#explanation .inner > dl:not(:last-of-type) {
  border-bottom: 1px solid #E2E2E2;
}
@media (min-width: 768px) {
  #explanation .inner > dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 900px) {
  #explanation .inner > dl {
    padding-top: 175px;
    margin-top: -175px;
  }
}
#explanation .inner > dl > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#explanation .inner > dl > dt p {
  width: 210px;
  margin-bottom: 9px;
  padding: 7px 15px;
  font-size: 16px;
  font-weight: bold;
  font-family: "fot-tsukuardgothic-std", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  text-align: center;
  color: #ffffff;
  background: #ACD387;
  border-radius: 22.5px;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dt p {
    width: 260px;
    padding: 10.5px 0;
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  #explanation .inner > dl > dt p {
    font-size: 20px;
  }
}
#explanation .inner > dl > dt p span {
  margin-top: 4px;
  font-size: 14px;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dt p span {
    font-size: 16px;
  }
}
#explanation .inner > dl > dt .imageContainer {
  width: 90px;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dt .imageContainer {
    width: 153px;
    margin: 0 auto;
  }
}
#explanation .inner > dl > dd {
  width: 100%;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dd {
    width: calc(75% + 30px);
    margin-left: 15px;
  }
}
@media (min-width: 1000px) {
  #explanation .inner > dl > dd {
    margin-left: 30px;
  }
}
#explanation .inner > dl > dd ul li {
  position: relative;
  padding-left: 20px;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dd ul li {
    padding-left: 30px;
  }
}
#explanation .inner > dl > dd ul li + li {
  margin-top: 16px;
}
#explanation .inner > dl > dd ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: #EB819F;
  border-radius: 50%;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dd ul li::before {
    top: 5.5px;
    width: 14px;
    height: 14px;
  }
}
#explanation .inner > dl > dd ul li .title {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (min-width: 1440px) {
  #explanation .inner > dl > dd ul li .title {
    font-size: 18px;
  }
}
#explanation .inner > dl > dd ul li .detail {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media (min-width: 1440px) {
  #explanation .inner > dl > dd ul li .detail {
    font-size: 16px;
    line-height: 2;
  }
}
#explanation .inner > dl > dd .mainOpinion p {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 1440px) {
  #explanation .inner > dl > dd .mainOpinion p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
#explanation .inner > dl > dd .mainOpinion dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0;
  border-top: none;
  border-bottom: 1px solid #C6C6C6;
  border-left: 1px solid #C6C6C6;
  border-right: 1px solid #C6C6C6;
}
#explanation .inner > dl > dd .mainOpinion dl:first-of-type {
  border-top: 1px solid #C6C6C6;
}
#explanation .inner > dl > dd .mainOpinion dl + dl {
  padding-top: 0;
}
#explanation .inner > dl > dd .mainOpinion dl dt {
  width: 30%;
  padding: 6px 3px 10px;
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  border-right: 1px solid #C6C6C6;
  background: #F7F7F7;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dd .mainOpinion dl dt {
    padding: 10px 3px 14px;
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  #explanation .inner > dl > dd .mainOpinion dl dt {
    width: 23%;
    padding: 10px 0 14px 16px;
  }
}
@media (min-width: 1440px) {
  #explanation .inner > dl > dd .mainOpinion dl dt {
    font-size: 16px;
  }
}
#explanation .inner > dl > dd .mainOpinion dl dd {
  width: 70%;
  padding: 6px 5px 10px;
  font-size: 13px;
  letter-spacing: -0.01em;
  line-height: 1.8;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dd .mainOpinion dl dd {
    padding: 10px 5px 14px;
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  #explanation .inner > dl > dd .mainOpinion dl dd {
    width: 77%;
    padding: 10px 12px 14px;
  }
}
@media (min-width: 1440px) {
  #explanation .inner > dl > dd .mainOpinion dl dd {
    font-size: 16px;
  }
}
#explanation .inner > dl > dd ul + .mainOpinion {
  margin-left: 20px;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dd ul + .mainOpinion {
    margin-left: 30px;
  }
}
#explanation .inner > dl > dd ul + .mainOpinion dl dt {
  width: 24%;
}
#explanation .inner > dl > dd ul + .mainOpinion dl dd {
  width: 76%;
  padding: 14px 14px 14px 12px;
}
#explanation .inner > dl > dd p {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media (min-width: 1440px) {
  #explanation .inner > dl > dd p {
    font-size: 16px;
    line-height: 2;
  }
}
#explanation .inner > dl > dd .imageContainer {
  max-width: 350px;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dd .imageContainer {
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#bloodPressure {
    padding-bottom: 41px;
  }
}
#explanation .inner > dl#bloodPressure dd p {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#bloodPressure dd p {
    margin-top: -9px;
    margin-bottom: 49px;
  }
}
#explanation .inner > dl#bloodPressure dd .imageContainer {
  width: 100%;
}
@media (min-width: 768px) {
  #explanation .inner > dl#bloodPressure dd .imageContainer {
    margin-left: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#tension {
    padding-bottom: 31px;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#tension dd p {
    margin-top: 76px;
    letter-spacing: -0.01em;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#electrocardiogram {
    padding-bottom: 41px;
  }
}
#explanation .inner > dl#electrocardiogram dd > p {
  margin-top: -9px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
#explanation .inner > dl#electrocardiogram .mainOpinion dl dt {
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  #explanation .inner > dl#eyesight {
    padding-bottom: 28px;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#eyesight dd > p {
    margin-top: 50px;
    letter-spacing: 0.04em;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#fundusAndIop {
    padding-bottom: 45px;
  }
}
#explanation .inner > dl#fundusAndIop dd {
  margin-top: -5px;
}
#explanation .inner > dl#fundusAndIop dd > p {
  margin-top: 50px;
  letter-spacing: 0.04em;
}
#explanation .inner > dl#fundusAndIop dd ul {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#lung {
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#lung dd > p {
    margin-top: 50px;
    letter-spacing: 0.04em;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#cxrAndSputum {
    padding-bottom: 37px;
  }
}
#explanation .inner > dl#cxrAndSputum dd {
  margin-top: -6px;
}
#explanation .inner > dl#cxrAndSputum dd ul:nth-of-type(1) {
  margin-bottom: 10px;
}
#explanation .inner > dl#cxrAndSputum dd ul:nth-of-type(1) .detail {
  letter-spacing: -0.01em;
}
#explanation .inner > dl#cxrAndSputum ul + .mainOpinion {
  margin-bottom: 29px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#echocardiography {
    padding-bottom: 30px;
  }
}
#explanation .inner > dl#echocardiography dd > p {
  margin-top: -10px;
  margin-bottom: 13px;
}
#explanation .inner > dl#echocardiography dd .mainOpinion > p {
  margin-bottom: 11px;
}
#explanation .inner > dl#echocardiography dd .mainOpinion .scrollWrap {
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: #eb819f #f8f8f8;
}
@media (min-width: 768px) {
  #explanation .inner > dl#echocardiography dd .mainOpinion .scrollWrap {
    overflow-x: hidden;
  }
}
#explanation .inner > dl#echocardiography dd .mainOpinion .scrollWrap::-webkit-scrollbar {
  height: 8px;
  border-radius: 8px;
}
#explanation .inner > dl#echocardiography dd .mainOpinion .scrollWrap::-webkit-scrollbar-track {
  background-color: #f8f8f8;
  border-radius: 8px;
}
#explanation .inner > dl#echocardiography dd .mainOpinion .scrollWrap::-webkit-scrollbar-thumb {
  background-color: #eb819f;
  border-radius: 8px;
}
#explanation .inner > dl#echocardiography dd .mainOpinion .scrollWrap .scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 950px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#echocardiography dd .mainOpinion .scrollWrap .scroll {
    width: auto;
  }
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#echocardiography dd .mainOpinion ul {
    margin-bottom: 0;
  }
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li + li {
  margin-top: 0;
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li + li p {
  border-top: 1px solid #C6C6C6;
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li + li .table dl {
  border-top: none;
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li::before {
  content: none;
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li:first-of-type p {
  border-top: 1px solid #C6C6C6;
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li:last-of-type p {
  border-bottom: 1px solid #C6C6C6;
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li:not(:last-of-type) dl:last-of-type {
  border-bottom: none;
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryTitle {
  position: sticky;
  left: 0;
  width: 80px;
  padding: 13px 8px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.8;
  background: #ECF1B3;
  border-left: 1px solid #C6C6C6;
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryTitle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-right: 1px solid #C6C6C6;
}
@media (min-width: 768px) {
  #explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryTitle {
    position: relative;
    width: 85px;
  }
  #explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryTitle:before {
    content: none;
  }
}
@media (min-width: 1440px) {
  #explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryTitle {
    width: 100px;
    padding: 13px 16px;
    font-size: 16px;
  }
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryDetail {
  width: calc(100% - 80px);
}
@media (min-width: 768px) {
  #explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryDetail {
    width: calc(100% - 85px);
  }
}
@media (min-width: 1440px) {
  #explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryDetail {
    width: calc(100% - 100px);
  }
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryDetail dl {
  border-left: none;
}
@media (min-width: 768px) {
  #explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryDetail dl {
    border-left: 1px solid #C6C6C6;
  }
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryDetail dl dt {
  width: 15%;
  min-width: 80px;
  padding: 10px 5px 14px;
  font-size: 14px;
}
@media (min-width: 1440px) {
  #explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryDetail dl dt {
    width: 19%;
    padding: 10px 0 14px 16px;
    font-size: 16px;
  }
}
#explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryDetail dl dd {
  width: 85%;
  padding: 10px 5px 14px;
  font-size: 14px;
}
@media (min-width: 1440px) {
  #explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryDetail dl dd {
    width: 81%;
    padding: 10px 0 14px 16px;
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#hematology {
    padding-bottom: 35px;
  }
}
#explanation .inner > dl#hematology dd {
  margin-top: -5px;
}
#explanation .inner > dl#hematology dd ul li .detail {
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  #explanation .inner > dl#liver {
    padding-bottom: 31px;
  }
}
#explanation .inner > dl#liver dd {
  margin-top: -5px;
}
#explanation .inner > dl#liver dd ul li + li {
  margin-top: 17px;
}
#explanation .inner > dl#liver dd ul li .detail {
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  #explanation .inner > dl#gastrointestinalSeries {
    padding-bottom: 47px;
  }
}
#explanation .inner > dl#gastrointestinalSeries dd {
  margin-top: -7px;
}
#explanation .inner > dl#gastrointestinalSeries dd p {
  margin-bottom: 10px;
}
#explanation .inner > dl#gastrointestinalSeries dd .mainOpinion {
  max-width: 840px;
}
#explanation .inner > dl#gastrointestinalSeries dd .mainOpinion dl dt {
  width: 24%;
}
#explanation .inner > dl#gastrointestinalSeries dd .mainOpinion dl dd {
  width: 76%;
  padding: 15px 12px 14px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#upperEndoscope {
    padding-bottom: 51px;
  }
}
#explanation .inner > dl#upperEndoscope dd {
  margin-top: -9px;
}
#explanation .inner > dl#upperEndoscope dd p {
  margin-bottom: 13px;
}
#explanation .inner > dl#upperEndoscope dd .mainOpinion {
  max-width: 840px;
}
#explanation .inner > dl#upperEndoscope dd .mainOpinion dl dt {
  width: 24%;
}
#explanation .inner > dl#upperEndoscope dd .mainOpinion dl dd {
  width: 76%;
  padding: 15px 5px 14px;
}
@media (min-width: 900px) {
  #explanation .inner > dl#upperEndoscope dd .mainOpinion dl dd {
    padding: 15px 12px 14px;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#otherStomach {
    padding-bottom: 36px;
  }
}
#explanation .inner > dl#otherStomach dd {
  margin-top: -6px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#inflammatoryResponse {
    padding-bottom: 36px;
  }
}
#explanation .inner > dl#inflammatoryResponse dd {
  margin-top: -5px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#urinalysis {
    padding-bottom: 41px;
  }
}
#explanation .inner > dl#urinalysis dd {
  margin-top: -6px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#stoolExamination {
    padding-bottom: 28px;
  }
}
#explanation .inner > dl#stoolExamination dd {
  margin-top: 42px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#glycolipidMetabolism {
    padding-bottom: 41px;
  }
}
#explanation .inner > dl#glycolipidMetabolism dd {
  margin-top: -6px;
}
#explanation .inner > dl#glycolipidMetabolism dd ul li .detail {
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  #explanation .inner > dl#gynecology {
    padding-bottom: 32px;
  }
}
#explanation .inner > dl#gynecology dd {
  margin-top: -5px;
}
#explanation .inner > dl#gynecology dd ul li .detail {
  letter-spacing: -0.01em;
}
#explanation .inner > dl#gynecology dd ul li .type {
  margin-top: 14px;
}
#explanation .inner > dl#gynecology dd ul li .type p {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media (min-width: 768px) {
  #explanation .inner > dl#gynecology dd ul li .type p {
    font-size: 16px;
  }
}
#explanation .inner > dl#gynecology dd ul li .type p:first-of-type {
  margin-bottom: 6px;
}
#explanation .inner > dl#gynecology dd ul li .type p span {
  display: block;
  margin-left: 5px;
  font-size: 12px;
  font-weight: normal;
}
@media (min-width: 768px) {
  #explanation .inner > dl#gynecology dd ul li .type p span {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  #explanation .inner > dl#gynecology dd ul li .type p span {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  #explanation .inner > dl#mammaryGland {
    padding-bottom: 40px;
  }
}
#explanation .inner > dl#mammaryGland dd {
  margin-top: -5px;
}
#explanation .inner > dl#mammaryGland dd .mainOpinion {
  margin-top: 14px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#tumorMarker {
    padding-bottom: 55px;
  }
}
#explanation .inner > dl#tumorMarker dd .scrollWrap {
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: #eb819f #f8f8f8;
}
@media (min-width: 768px) {
  #explanation .inner > dl#tumorMarker dd .scrollWrap {
    overflow-x: hidden;
  }
}
#explanation .inner > dl#tumorMarker dd .scrollWrap::-webkit-scrollbar {
  height: 8px;
  border-radius: 8px;
}
#explanation .inner > dl#tumorMarker dd .scrollWrap::-webkit-scrollbar-track {
  background-color: #f8f8f8;
  border-radius: 8px;
}
#explanation .inner > dl#tumorMarker dd .scrollWrap::-webkit-scrollbar-thumb {
  background-color: #eb819f;
  border-radius: 8px;
}
#explanation .inner > dl#tumorMarker dd .scrollWrap .scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 840px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#tumorMarker dd .scrollWrap .scroll {
    width: auto;
  }
}
#explanation .inner > dl#tumorMarker dd .table {
  margin-bottom: 15px;
  border: 1px solid #C6C6C6;
  border-left: none;
}
@media (min-width: 768px) {
  #explanation .inner > dl#tumorMarker dd .table {
    margin-bottom: 0;
    border-left: 1px solid #C6C6C6;
  }
}
#explanation .inner > dl#tumorMarker dd .table dl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 0;
  margin-bottom: 0;
}
#explanation .inner > dl#tumorMarker dd .table dl + dl {
  border-top: 1px solid #C6C6C6;
}
#explanation .inner > dl#tumorMarker dd .table dl.header {
  background: #F7F7F7;
  text-align: center;
}
#explanation .inner > dl#tumorMarker dd .table dl.header dt,
#explanation .inner > dl#tumorMarker dd .table dl.header dd {
  padding: 12px 0;
}
#explanation .inner > dl#tumorMarker dd .table dl.header dt:before {
  background: #F7F7F7;
}
#explanation .inner > dl#tumorMarker dd .table dl:not(:first-of-type) dt {
  background: #ECF1B3;
}
#explanation .inner > dl#tumorMarker dd .table dl dt {
  position: sticky;
  left: 0;
  width: 12%;
  padding: 13px 5px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
#explanation .inner > dl#tumorMarker dd .table dl dt:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-right: 1px solid #C6C6C6;
  border-left: 1px solid #C6C6C6;
}
@media (min-width: 768px) {
  #explanation .inner > dl#tumorMarker dd .table dl dt {
    position: relative;
    width: 15%;
  }
  #explanation .inner > dl#tumorMarker dd .table dl dt:before {
    content: none;
  }
}
@media (min-width: 1000px) {
  #explanation .inner > dl#tumorMarker dd .table dl dt {
    padding: 13px 0 13px 10px;
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  #explanation .inner > dl#tumorMarker dd .table dl dt {
    width: 100px;
  }
}
#explanation .inner > dl#tumorMarker dd .table dl dd {
  padding: 5px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  border-left: none;
}
@media (min-width: 768px) {
  #explanation .inner > dl#tumorMarker dd .table dl dd {
    border-left: 1px solid #C6C6C6;
  }
}
@media (min-width: 1000px) {
  #explanation .inner > dl#tumorMarker dd .table dl dd {
    padding: 11px;
    font-size: 16px;
  }
}
#explanation .inner > dl#tumorMarker dd .table dl dd + dd {
  border-left: 1px solid #C6C6C6;
}
#explanation .inner > dl#tumorMarker dd .table dl dd:nth-of-type(1) {
  width: 34%;
}
@media (min-width: 768px) {
  #explanation .inner > dl#tumorMarker dd .table dl dd:nth-of-type(1) {
    width: 32.5%;
  }
}
@media (min-width: 1440px) {
  #explanation .inner > dl#tumorMarker dd .table dl dd:nth-of-type(1) {
    width: 242px;
  }
}
#explanation .inner > dl#tumorMarker dd .table dl dd:nth-of-type(2) {
  width: 34%;
}
@media (min-width: 768px) {
  #explanation .inner > dl#tumorMarker dd .table dl dd:nth-of-type(2) {
    width: 32.5%;
  }
}
@media (min-width: 1440px) {
  #explanation .inner > dl#tumorMarker dd .table dl dd:nth-of-type(2) {
    width: 240px;
  }
}
#explanation .inner > dl#tumorMarker dd .table dl dd:nth-of-type(3) {
  width: 20%;
}
@media (min-width: 1440px) {
  #explanation .inner > dl#tumorMarker dd .table dl dd:nth-of-type(3) {
    width: 175px;
  }
}
#explanation .inner > dl#tumorMarker dd .mainOpinion {
  margin-top: 14px;
}
@media (min-width: 768px) {
  #explanation .inner > dl#other {
    padding-bottom: 40px;
  }
}
#explanation .inner > dl#other dd {
  margin-top: -5px;
}

/*
医療機関のご案内
---------------------------*/
#facilities {
  padding-top: 80px;
  margin-top: -80px;
}
@media (min-width: 900px) {
  #facilities {
    padding-top: 175px;
    margin-top: -175px;
  }
}
#facilities .wrap {
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  #facilities .wrap {
    margin-bottom: 110px;
  }
}
#facilities .inner {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
}
#facilities .title {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  #facilities .title {
    margin-bottom: 42px;
  }
}
#facilities .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #4c4c4c;
  opacity: 0.05;
}
#facilities .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 215px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#8cca7a), to(#1aab4b));
  background: linear-gradient(90deg, #8cca7a 0%, #1aab4b 100%);
  border-radius: 20px;
}
@media (min-width: 768px) {
  #facilities .title::after {
    width: 260px;
  }
}
#facilities .title h2 {
  font-size: 20px;
  font-weight: bold;
}
@media (min-width: 768px) {
  #facilities .title h2 {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  #facilities .title h2 {
    font-size: 24px;
  }
}
#facilities .overView {
  margin-bottom: 23px;
}
#facilities .overView p {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media (min-width: 1440px) {
  #facilities .overView p {
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 2;
  }
}
#facilities .overView p.attention {
  margin-top: 5px;
  font-size: 12px;
}
@media (min-width: 1440px) {
  #facilities .overView p.attention {
    margin-top: 8px;
    font-size: 14px;
  }
}
#facilities .overView p.attention + .attention {
  margin-top: 0;
}
#facilities .overView p .line {
  border-bottom: 1px solid #4c4c4c;
}
#facilities .scrollWrap {
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: #eb819f #f8f8f8;
}
@media (min-width: 1000px) {
  #facilities .scrollWrap {
    overflow-x: hidden;
  }
}
#facilities .scrollWrap::-webkit-scrollbar {
  height: 8px;
  border-radius: 8px;
}
#facilities .scrollWrap::-webkit-scrollbar-track {
  background-color: #f8f8f8;
  border-radius: 8px;
}
#facilities .scrollWrap::-webkit-scrollbar-thumb {
  background-color: #eb819f;
  border-radius: 8px;
}
#facilities .scrollWrap .scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 730px;
}
@media (min-width: 768px) {
  #facilities .scrollWrap .scroll {
    width: 1000px;
  }
}
@media (min-width: 1000px) {
  #facilities .scrollWrap .scroll {
    width: auto;
  }
}
#facilities .table ul {
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #C6C6C6;
  border-left: none;
}
@media (min-width: 768px) {
  #facilities .table ul {
    border-left: 1px solid #C6C6C6;
  }
}
@media (min-width: 1000px) {
  #facilities .table ul {
    margin-bottom: 0;
  }
}
#facilities .table ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#facilities .table ul li + li {
  border-top: 1px solid #C6C6C6;
}
#facilities .table ul li > p {
  position: sticky;
  left: 0;
  width: 75px;
  padding: 14px 14px 5px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  z-index: 1;
}
@media (min-width: 768px) {
  #facilities .table ul li > p {
    width: 100px;
    position: relative;
    border-right: 1px solid #C6C6C6;
  }
}
@media (min-width: 1440px) {
  #facilities .table ul li > p {
    font-size: 16px;
  }
}
#facilities .table ul li > p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid #C6C6C6;
  border-right: 1px solid #C6C6C6;
}
@media (min-width: 768px) {
  #facilities .table ul li > p:before {
    content: none;
  }
}
#facilities .table ul li.header p {
  background: #EDEDED;
}
#facilities .table ul li.header dl {
  width: calc(100% - 70px);
  background: #EDEDED;
}
@media (min-width: 768px) {
  #facilities .table ul li.header dl {
    width: calc(100% - 100px);
  }
}
#facilities .table ul li.header dl dt, #facilities .table ul li.header dl dd {
  padding: 15px 5px;
}
@media (min-width: 1440px) {
  #facilities .table ul li.header dl dt, #facilities .table ul li.header dl dd {
    padding: 15px 14px;
  }
}
#facilities .table ul li:not(:first-of-type) > p {
  background: #ECF1B3;
}
#facilities .table ul li .hospitalList {
  width: calc(100% - 70px);
}
@media (min-width: 768px) {
  #facilities .table ul li .hospitalList {
    width: calc(100% - 100px);
  }
}
#facilities .table ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#facilities .table ul li dl + dl {
  border-top: 1px solid #C6C6C6;
}
#facilities .table ul li dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25%;
  padding: 0 12px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media (min-width: 768px) {
  #facilities .table ul li dl dt {
    padding: 0 14px;
  }
}
@media (min-width: 1440px) {
  #facilities .table ul li dl dt {
    width: 200px;
    font-size: 16px;
  }
}
#facilities .table ul li dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  border-left: 1px solid #C6C6C6;
}
@media (min-width: 1440px) {
  #facilities .table ul li dl dd {
    font-size: 16px;
  }
}
#facilities .table ul li dl dd:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10%;
  min-width: 90px;
  text-align: center;
}
@media (min-width: 768px) {
  #facilities .table ul li dl dd:nth-of-type(1) {
    min-width: 80px;
  }
}
@media (min-width: 1440px) {
  #facilities .table ul li dl dd:nth-of-type(1) {
    width: 110px;
    padding: 15px 0;
  }
}
#facilities .table ul li dl dd:nth-of-type(1) span {
  font-size: 12px;
}
#facilities .table ul li dl dd:nth-of-type(2) {
  width: 65%;
  padding: 14px 10px 16px;
}
@media (min-width: 1440px) {
  #facilities .table ul li dl dd:nth-of-type(2) {
    width: 748px;
  }
}
#facilities .table ul li dl dd:nth-of-type(2) .empty {
  content: "";
}
@media (min-width: 768px) {
  #facilities .table ul li dl dd:nth-of-type(2) .empty {
    height: 25px;
  }
}
#facilities .table ul li dl dd:nth-of-type(2) .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  #facilities .table ul li dl dd:nth-of-type(2) .tel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#facilities .table ul li dl dd:nth-of-type(2) .tel + .tel {
  margin: 10px 0 3px;
}
@media (min-width: 768px) {
  #facilities .table ul li dl dd:nth-of-type(2) .tel + .tel {
    margin: 4px 0 3px;
  }
}
#facilities .table ul li dl dd:nth-of-type(2) .tel p {
  width: 100%;
  line-height: 1.4;
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  #facilities .table ul li dl dd:nth-of-type(2) .tel p {
    width: calc(100% - 157px);
  }
}
@media (min-width: 1000px) {
  #facilities .table ul li dl dd:nth-of-type(2) .tel p {
    width: 68%;
  }
}
@media (min-width: 1440px) {
  #facilities .table ul li dl dd:nth-of-type(2) .tel p {
    width: 450px;
    font-size: 16px;
  }
}
#facilities .table ul li dl dd:nth-of-type(2) .tel p span {
  font-size: 14px;
  letter-spacing: -0.01em;
}
#facilities .table ul li dl dd:nth-of-type(2) .tel a {
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  #facilities .table ul li dl dd:nth-of-type(2) .tel a {
    width: 157px;
  }
}
@media (min-width: 1000px) {
  #facilities .table ul li dl dd:nth-of-type(2) .tel a {
    width: 32%;
  }
}
@media (min-width: 1440px) {
  #facilities .table ul li dl dd:nth-of-type(2) .tel a {
    width: calc(100% - 400px);
    font-size: 16px;
  }
}

/*
健康セミナーのご案内
---------------------------*/
#healthSeminar {
  padding-top: 80px;
  margin-top: -80px;
}
@media (min-width: 900px) {
  #healthSeminar {
    padding-top: 175px;
    margin-top: -175px;
  }
}
#healthSeminar .wrap {
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  #healthSeminar .wrap {
    margin-bottom: 156px;
  }
}
#healthSeminar .inner {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
}
#healthSeminar .title {
  position: relative;
  padding-bottom: 23px;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  #healthSeminar .title {
    margin-bottom: 42px;
  }
}
#healthSeminar .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #4c4c4c;
  opacity: 0.05;
}
#healthSeminar .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 215px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#8cca7a), to(#1aab4b));
  background: linear-gradient(90deg, #8cca7a 0%, #1aab4b 100%);
  border-radius: 20px;
}
@media (min-width: 768px) {
  #healthSeminar .title::after {
    width: 260px;
  }
}
#healthSeminar .title h2 {
  font-size: 20px;
  font-weight: bold;
}
@media (min-width: 768px) {
  #healthSeminar .title h2 {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .title h2 {
    font-size: 24px;
  }
}
#healthSeminar .overflow {
  margin-bottom: 53px;
}
#healthSeminar .overflow > p {
  margin-bottom: 28px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media (min-width: 1440px) {
  #healthSeminar .overflow > p {
    font-size: 16px;
    line-height: 2;
    text-align: center;
  }
}
#healthSeminar .overflow .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 10px;
  background-color: #fdeff3;
}
@media (min-width: 480px) {
  #healthSeminar .overflow .contact {
    padding: 30px 15px;
  }
}
@media (min-width: 768px) {
  #healthSeminar .overflow .contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 975px;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .overflow .contact {
    padding: 30px 40px;
  }
}
#healthSeminar .overflow .tel {
  position: relative;
  width: 100%;
  text-align: center;
  max-width: 270px;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  #healthSeminar .overflow .tel {
    max-width: 375px;
  }
}
@media (min-width: 768px) {
  #healthSeminar .overflow .tel {
    width: 65%;
    margin-bottom: 0;
    text-align: left;
  }
}
@media (min-width: 900px) {
  #healthSeminar .overflow .tel {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .overflow .tel {
    width: 55%;
    max-width: initial;
  }
}
#healthSeminar .overflow .tel::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  background: url("/medical_common/img/kitahachi/common/tel.svg");
  background-repeat: no-repeat;
  height: 35px;
  width: 35px;
  display: block;
}
@media (min-width: 900px) {
  #healthSeminar .overflow .tel::before {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .overflow .tel::before {
    height: 60px;
    width: 60px;
  }
}
#healthSeminar .overflow .tel p + div {
  margin-top: 20px;
}
#healthSeminar .overflow .tel p {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 2;
}
#healthSeminar .overflow .tel > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding-left: 30px;
}
@media (min-width: 480px) {
  #healthSeminar .overflow .tel > div {
    padding-left: 40px;
  }
}
@media (min-width: 900px) {
  #healthSeminar .overflow .tel > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 60px;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .overflow .tel > div {
    padding-left: 75px;
  }
}
#healthSeminar .overflow .tel > div a {
  width: 100%;
  font-size: 27px;
  font-weight: bold;
  font-family: "fot-tsukuardgothic-std", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: 0.04em;
}
@media (min-width: 480px) {
  #healthSeminar .overflow .tel > div a {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  #healthSeminar .overflow .tel > div a {
    width: 50%;
    font-size: 23px;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .overflow .tel > div a {
    width: auto;
  }
}
@media (min-width: 900px) {
  #healthSeminar .overflow .tel > div a span {
    font-size: 16px;
  }
}
#healthSeminar .overflow .tel > div p {
  width: 100%;
  font-size: 15px;
}
@media (min-width: 480px) {
  #healthSeminar .overflow .tel > div p {
    font-size: 13px;
  }
}
@media (min-width: 900px) {
  #healthSeminar .overflow .tel > div p {
    width: 50%;
    margin-left: 10px;
    font-size: 15px;
  }
}
#healthSeminar .overflow .tel > p {
  width: 100%;
  padding-left: 30px;
  font-size: 13px;
}
@media (min-width: 768px) {
  #healthSeminar .overflow .tel > p {
    padding-left: 40px;
  }
}
@media (min-width: 900px) {
  #healthSeminar .overflow .tel > p {
    padding-left: 60px;
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .overflow .tel > p {
    padding-left: 75px;
  }
}
#healthSeminar .overflow .tel .week {
  padding-left: 40px;
}
@media (min-width: 480px) {
  #healthSeminar .overflow .tel .week {
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  #healthSeminar .overflow .tel .week {
    padding-left: 40px;
  }
}
@media (min-width: 900px) {
  #healthSeminar .overflow .tel .week {
    padding-left: 60px;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .overflow .tel .week {
    padding-left: 75px;
  }
}
#healthSeminar .overflow .form {
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  #healthSeminar .overflow .form {
    max-width: 350px;
  }
}
@media (min-width: 768px) {
  #healthSeminar .overflow .form {
    width: 40%;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .overflow .form {
    width: 45%;
    max-width: initial;
  }
}
#healthSeminar .overflow .form a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 380px;
  height: 70px;
  padding-left: 30px;
  font-size: 14px;
  font-weight: bold;
  color: #f1a0b9;
  background-color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  border-radius: 4px;
  cursor: pointer;
}
@media (min-width: 480px) {
  #healthSeminar .overflow .form a {
    width: 92%;
    padding-left: 8%;
  }
}
@media (min-width: 768px) {
  #healthSeminar .overflow .form a {
    width: 100%;
    max-width: 260px;
    padding-left: 40px;
    font-size: 15px;
  }
}
@media (min-width: 900px) {
  #healthSeminar .overflow .form a {
    max-width: 365px;
    font-size: 16px;
  }
}
#healthSeminar .overflow .form span::before {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  left: -160px;
  right: 0;
  margin: auto;
  background: url("/medical_common/img/common/mail_icon_pink.svg");
  background-repeat: no-repeat;
}
@media (min-width: 900px) {
  #healthSeminar .overflow .form span::before {
    width: 36px;
    height: 36px;
    top: 0;
    bottom: 0;
    left: -170px;
  }
}
@media (min-width: 768px) {
  #healthSeminar .overflow .form a {
    margin-left: 10px;
  }
}
#healthSeminar .detail {
  margin-bottom: 22px;
}
#healthSeminar .detail p {
  font-size: 16px;
  font-weight: bold;
  font-family: "fot-tsukuardgothic-std", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #333333;
}
@media (min-width: 768px) {
  #healthSeminar .detail p {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .detail p {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  #healthSeminar .detail p + p {
    margin-top: 4px;
  }
}
#healthSeminar .detail p span {
  color: #EB819F;
}
@media (min-width: 768px) {
  #healthSeminar .detail p span:nth-of-type(2) {
    padding-left: 20px;
  }
}
#healthSeminar .detail p small {
  line-height: 1.3;
}
#healthSeminar .table {
  border: 1px solid #C6C6C6;
}
#healthSeminar .table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#healthSeminar .table dl + dl {
  border-top: 1px solid #C6C6C6;
}
#healthSeminar .table dl.header dt, #healthSeminar .table dl.header dd {
  padding: 14px 16px;
  background: #EDEDED;
}
#healthSeminar .table dl dt {
  width: 35%;
  padding: 8px 15px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  background: #ECF1B3;
}
@media (min-width: 768px) {
  #healthSeminar .table dl dt {
    padding: 16px 15px;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .table dl dt {
    width: 400px;
    font-size: 16px;
    line-height: 1.8;
  }
}
#healthSeminar .table dl dd {
  width: 65%;
  padding: 10px 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  border-left: 1px solid #C6C6C6;
}
@media (min-width: 768px) {
  #healthSeminar .table dl dd {
    padding: 20px 8px;
  }
}
@media (min-width: 1440px) {
  #healthSeminar .table dl dd {
    width: 761px;
    font-size: 16px;
    line-height: 1.8;
  }
}
#healthSeminar .table dl dd p {
  padding-left: 1em;
  text-indent: -1em;
}
#healthSeminar .table dl dd p + p {
  margin-top: 11px;
}

.meterInner {
  display: inherit;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (min-width: 1000px) {
  .meterInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.meterInner .bloodImg {
  width: 90%;
}
@media (min-width: 1000px) {
  .meterInner .bloodImg {
    width: 45%;
  }
}

.innerMeas {
  width: auto;
}

#explanation .inner > dl#bloodPressure dd .measWrap p {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 0px;
  text-decoration: underline;
}

.measWrap {
  border: 1px solid #333333;
  border-radius: 30px;
  height: auto;
  width: 100%;
  padding: 14px;
  margin: 50px auto 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 480px) {
  .measWrap {
    width: 340px;
    height: 180px;
  }
}
@media (min-width: 1000px) {
  .measWrap {
    margin: 50px 0px 50px 10px;
    width: 350px;
  }
}

.meter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

img.meterImg {
  width: 100px;
}

.measWrap li {
  font-size: 18px;
  padding-left: 0px;
  padding-left: 0px;
}
@media (min-width: 768px) {
  .measWrap li {
    font-size: 14px;
  }
}

#explanation .inner > dl > dd ul li.kuro::before {
  background: #000;
  width: 6px;
  height: 6px;
  font-size: 14px;
}

#explanation .inner > dl > dd ul li.iconNone::before {
  content: none;
}

#explanation .inner > dl > dd ul li.iconNone {
  margin-left: -20px;
  font-weight: bold;
}
@media (min-width: 768px) {
  #explanation .inner > dl > dd ul li.iconNone {
    margin-left: -30px;
  }
}

#explanation .inner > dl > dd ul li + li.kuro {
  padding-left: 15px;
  margin-top: 10px;
  font-size: 14px;
}

#explanation .inner > dl#echocardiography dd .mainOpinion ul li .categoryDetail dl dd.connectText {
  width: 100%;
}

#explanation .inner > dl#consultation dd p {
  margin-bottom: 10px;
}

#facilities p.text {
  margin-bottom: 10px;
}

ul.listText li {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  list-style: inside;
}
ul.listText li span.line {
  text-decoration: underline;
}

#healthSeminar .detail p.attention {
  font-size: 14px;
}
@media (min-width: 768px) {
  #healthSeminar .detail p.attention {
    font-size: 16px;
  }
}/*# sourceMappingURL=follow.css.map */