@charset "UTF-8";
/* ---------------------------------------------------
 base
--------------------------------------------------- */
html {
  height: 100%;
  font-size: 62.5%;
  box-sizing: border-box;
}
@media (min-width: 700px) {
  html {
    font-size: 75%;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 100%;
  background: #FFF;
  color: #000;
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro', Osaka, 'メイリオ',Meiryo, 'ＭＳ Ｐゴシック','MS PGothic', sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.7;
}
@media (min-width: 700px) {
  body {
    min-width: 1000px;
  }
}

#contents {
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover, a:active {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------
container
---------------------------------------- */
.layoutInner {
  padding: 0 20px;
}
@media (min-width: 700px) {
  .layoutInner {
    width: 980px;
    margin: 0 auto;
    padding: 0 10px;
  }
}

/* ---------------------------------------------------
 common include parts
--------------------------------------------------- */
/* ----------------------------------------
 header
---------------------------------------- */
#headerInclude {
  min-height: 50px;
}
@media (min-width: 700px) {
  #headerInclude {
    min-height: 70px;
  }
}

#header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 50px;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
#header .inner {
  width: 100%;
  padding: 0 20px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo {
  width: 145px;
}
@media (min-width: 700px) {
  #header {
    height: 70px;
  }
  #header .logo {
    width: 250px;
  }
}

/* ----------------------------------------
 header menu (SP)
---------------------------------------- */
#menuBtn {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1000;
}
#menuBtn a {
  display: block;
  text-indent: -9999px;
  width: 35px;
  height: 30px;
  background: url("../images/header_btn_menu.png") center center no-repeat;
  background-size: 35px auto;
}
#menuBtn.active a {
  background: url("../images/header_btn_close.png") center center no-repeat;
  background-size: 35px auto;
}

#spNavi {
  display: none;
  position: fixed;
  z-index: 999;
  top: 50px;
  left: 0;
  width: 100%;
}
#spNavi li {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}
#spNavi li a {
  display: block;
  height: 75px;
  line-height: 75px;
}
#spNavi li:nth-child(1) a {
  background: #f3fbc8;
}
#spNavi li:nth-child(2) a {
  background: #e3ef9e;
}
#spNavi li:nth-child(3) a {
  background: #dae987;
}

/* ----------------------------------------
 header menu (PC)
---------------------------------------- */
@media (min-width: 700px) {
  #pcNavi ul {
    overflow: hidden;
  }
  #pcNavi ul li {
    float: left;
    font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    font-size: 14px;
    margin-right: 40px;
  }
  #pcNavi ul li a:hover {
    color: #bcd04c;
    text-decoration: none;
  }
}
/* ----------------------------------------
 breadcrumbs
---------------------------------------- */
#breadcrumbs {
  background: #eee;
}
#breadcrumbs ol {
  padding: 3px 10px;
}
#breadcrumbs ol li {
  display: inline;
  font-size: 10px;
  line-height: 1.2;
}
#breadcrumbs ol li:before {
  content: " > ";
  margin: 0 3px;
}
#breadcrumbs ol li:first-child:before {
  content: "";
}
@media (min-width: 700px) {
  #breadcrumbs ol {
    padding: 4px 25px 6px;
  }
  #breadcrumbs ol li {
    font-size: 12px;
  }
  #breadcrumbs ol li:before {
    margin: 0 5px;
  }
}

/* ----------------------------------------
 footer
---------------------------------------- */
#footer {
  margin-top: 50px;
}
#footer .contact {
  background: #bcd04c;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 40px;
}
#footer .contact .title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#footer .contact .text {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  #footer .contact {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  #footer .contact .title,
  #footer .contact .text {
    margin-bottom: 25px;
  }
}
#footer .copyright {
  background: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  padding: 18px;
}

/* ---------------------------------------------------
 module
--------------------------------------------------- */
/* ----------------------------------------
 responsive
---------------------------------------- */
.pcOnly {
  display: none;
}
@media (min-width: 700px) {
  .pcOnly {
    display: block;
  }
}

@media (min-width: 700px) {
  .spOnly {
    display: none;
  }
}

/* ----------------------------------------
 image + text layout
---------------------------------------- */
.imageLayout .image {
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 700px) {
  .imageLayout {
    display: -webkit-flex;
    display: flex;
  }
  .imageLayout.reverse {
    flex-direction: row-reverse;
  }
  .imageLayout.center {
    align-items: center;
  }
  .imageLayout .image {
    width: calc((100% - 50px) / 2);
    margin-top: 0;
  }
  .imageLayout .image.left {
    margin-right: 50px;
  }
  .imageLayout .image.right {
    margin-left: 50px;
  }
  .imageLayout .image img {
    width: 100%;
  }
  .imageLayout .body {
    flex: 1;
  }
  .imageLayout .body p {
    line-height: 1.8;
  }
}

/* ----------------------------------------
 title / text
---------------------------------------- */
.sectionTitle {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  text-align: center;
  color: #5891c4;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 25px;
}
@media (max-width: 320px) {
  .sectionTitle {
    font-size: 2.1rem;
  }
}
@media (min-width: 700px) {
  .sectionTitle {
    margin-bottom: 40px;
  }
}

@media (min-width: 700px) {
  .leadText {
    text-align: center;
  }
}

.emphasisText {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  background: url("../images/emphasis_text_bg01.png") -5px center no-repeat;
  background-size: auto 152px;
  padding: 40px 30px;
}
@media (min-width: 700px) {
  .emphasisText {
    background-position: center center;
    background-size: auto 200px;
    padding: 80px 0;
  }
}

/* ----------------------------------------
 button
---------------------------------------- */
.linkBtn, .moreBtn, .contactBtn {
  text-align: center;
}
.linkBtn a, .moreBtn a, .contactBtn a {
  display: inline-block;
  background: #fff url("../images/link_btn_bg01.png") right top no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 335px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
  font-size: 1.8rem;
  border: 1px solid #000;
}
.linkBtn a:hover, .moreBtn a:hover, .contactBtn a:hover {
  text-decoration: none;
  opacity: 0.9;
  color: #999;
  border-color: #999;
}

.moreBtn a {
  background-image: url("../images/more_btn_bg01.png");
  width: 240px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-size: 1.4rem;
}

.contactBtn a {
  background-color: #173910;
  background-image: url("../images/contact_btn_bg01.png");
  color: #fff;
  border: none;
}

/* ----------------------------------------
 about parts
---------------------------------------- */
.graphImage {
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 700px) {
  .graphImage {
    margin: 30px auto 0;
  }
  .graphImage img {
    width: 450px;
  }
}

.servicePoint .item {
  width: 100%;
  max-width: 330px;
  margin: 0 auto 10px;
  background: #eee;
}
.servicePoint .item .imageArea {
  position: relative;
}
.servicePoint .item .imageArea .image:after {
  content: '';
  display: block;
  position: absolute;
  top: 13px;
  left: 13px;
  border: 1px solid #fff;
  width: calc(100% - 26px);
  height: calc(100% - 26px);
}
.servicePoint .item .imageArea .point {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 30px;
  background: #bcd04c;
  color: #fff;
  font-size: 15px;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: bold;
  font-style: italic;
  line-height: 30px;
  text-align: center;
  padding-left: 10px;
}
.servicePoint .item .imageArea .point:after {
  display: block;
  content: ' ';
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: 100%;
  top: 0;
  border: 0 solid transparent;
  border-width: 0 0 30px 10px;
  border-left-color: #bcd04c;
}
.servicePoint .item .imageArea .title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.servicePoint .item .imageArea .title span {
  display: block;
  font-size: 24px;
}
.servicePoint .item .textArea {
  font-size: 13px;
  padding: 15px;
}
.servicePoint .item .textArea .detail {
  display: flex;
  background: #fff;
  padding: 8px 10px;
  margin-top: 10px;
}
.servicePoint .item .textArea .detail dt {
  width: 5em;
}
.servicePoint .item .textArea .detail dd {
  flex: 1;
}
@media (min-width: 700px) {
  .servicePoint {
    display: flex;
    justify-content: center;
  }
  .servicePoint .item {
    margin: 0;
  }
  .servicePoint .item:not(:first-child) {
    margin-left: 15px;
  }
  .servicePoint .item .textArea .detail {
    font-size: 12px;
  }
}

/* ----------------------------------------
 exam parts
---------------------------------------- */
.examCategory {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 85px;
  height: 25px;
  background: #bcd04c;
  line-height: 25px;
  color: #173910;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding: 0 10px;
}

.examList {
  margin-bottom: -2px;
}
.examList .item {
  position: relative;
  height: 250px;
  color: #fff;
  text-align: center;
  padding-top: 25px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 2px;
}
.examList .item.blood {
  background-image: url("../images/exam_bg01.jpg");
}
.examList .item.fatigue {
  background-image: url("../images/exam_bg02.jpg");
}
.examList .item.dementia {
  background-image: url("../images/exam_bg03.jpg");
  padding-top: 15px;
}
.examList .item.breast {
  background-image: url("../images/exam_bg04.jpg");
}
.examList .item .title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}
.examList .item .text {
  font-size: 15px;
  margin-top: 10px;
}
.examList .item .button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -70px;
  display: inline-block;
  width: 140px;
  height: 30px;
  font-weight: bold;
  line-height: 30px;
  border: 1px solid #fff;
}
.examList .item .button a {
  display: block;
}
.examList .item .button a:hover {
  background: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
@media (min-width: 700px) {
  .examList {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -10px;
    margin-bottom: -10px;
  }
  .examList .item {
    width: calc((100% - 40px) / 4);
    max-width: 375px;
    margin-left: 10px;
    margin-bottom: 10px;
  }
  .examList .item .button {
    font-weight: normal;
  }
}
@media (min-width: 1100px) {
  .examList {
    padding: 0 40px;
  }
}
