/*****************************************************************************
CSS only for Contact page
*****************************************************************************/

/* Contact
-----------------------------------------*/
.Contact {
  max-width: 976px;
  margin: 0 auto;
}
@media screen and (max-width: 976px) {
  .Contact {
    margin: 0 20px;
  }
}
.Contact__sec {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .Contact__sec {
    padding-top: 70px;
  }
}

/* SecSubtitle
-----------------------------------------*/
.SecSubtitle {
  font-size: 2rem;
  color: #fff;
  background-color: #004ea2;
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 39px;
}
@media screen and (max-width: 767px) {
  .SecSubtitle {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}
.SecSubtitle > span {
  position: relative;
  padding-left: 16px;
  display: inline-block;
}
.SecSubtitle > span::before {
  content: '';
  background-color: #fff;
  width: 5px;
  height: 67%;
  display:inline-block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .SecSubtitle > span::before {
    width: 4px;
  }
}
.SecSubtitle small {
  font-size: 1.6rem;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .SecSubtitle small {
    font-size: 1.2rem;
    padding-left: 0;
    display: block;
  }
}

/* Inquiry
-----------------------------------------*/
.Inquiry {
  padding-top: 48px;
  margin-top: 26px;
}

/* ListCircle
-----------------------------------------*/
.ListCircle {
  margin-bottom: 1.5em;
}
.ListCircle > li {
  line-height: 1.5;
  position: relative;
  padding-left: 1em;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .ListCircle > li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.ListCircle li:first-child {
  margin-top: 0;
}
.ListCircle > li::before {
  content: "●";
  font-size: 8px;
  font-size: .8rem;
  color: #AAA;
  position: absolute;
  top: 3px;
  left: 1px;
}