/* CSS Document */
.contactList {
  display: flex;
  justify-content: space-around;
  width: calc(100% + 10px);
  margin: 0 -5px;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .contactList {
    display: block;
    width: 100%;
    margin: 0;
  }
}

.contactList__item {
  display: block;
  margin: 0 10px 20px;
  zoom: 1;
  border: 1px solid #d2d0e5;
  background: #fff;
  padding: 20px;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;
  flex-basis: calc(33.33% - 10px);
}

.contactList__item:before, .contactList__item:after {
  content: "";
  display: table;
}

.contactList__item:after {
  clear: both;
}

@media only screen and (max-width: 767px) {
  .contactList__item {
    flex-basis: 100%;
    padding: 15px 10px 10px;
    margin: 0 0 10px;
  }
}

.contactList__title {
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 10px;
  margin: 0 0 25px;
  position: relative;
}

.contactList__title .brSp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .contactList__title {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .contactList__title .brSp {
    display: inline;
  }
}

.contactList__title::after {
  content: '';
  border-top: 1px solid #0b1d65;
  position: absolute;
  bottom: 0;
  width: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contactList__text {
  margin: 0 0 20px;
}

@media only screen and (max-width: 767px) {
  .contactList__text {
    text-align: left;
  }
}

.contactList__btn {
  margin: 0 0 20px;
}

.contactList__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #0b1d65;
  border-radius: 5px;
  width: auto;
  position: relative;
  transition: background .2s ease-in-out;
  color: #0b1d65;
  background: #fff;
  line-height: 1.2;
  height: 50px;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .contactList__btn a {
    font-size: 13px;
    height: 44px;
  }
}

.contactList__btn a:hover {
  text-decoration: none;
  background: #F0EFFC;
}

.contactList__faq {
  position: relative;
  font-weight: bold;
}

.contactList__faq::before {
  content: '';
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  width: 5px;
  height: 5px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: -12px;
  z-index: 2;
  transition: .2s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .contactList__faq::before {
    display: none;
  }
}
