/* CSS Document */

/*電話でのお問い合わせ*/
.contact-phone-box .col-6:first-child{
  border-right: solid 1px #e8e8e8;
}
.phone-number {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: bold;
}
.phone-number img {
  width: 30px;
  margin-right: 10px;
  margin-bottom: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .phone-number {
    font-size: 30px;
  }
  .phone-number img {
    width: 20px;
    margin-right: 10px;
    margin-bottom: 5px;
    vertical-align: middle;
  }
  .contact-phone-box .col-6:first-child{
    border-right: none;
    border-bottom: solid 1px #e8e8e8;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

/*ボタンタブスタイル*/
.btntab-list-item {
  font-size: 15px;
  text-align: center;
  background: #fff;
  color: #323232;
  border: 1px solid #cacaca;
  border-radius: 7px;
  min-width: 195px;
  padding: 10px 5px;
  cursor: pointer;
  text-decoration: none;
  -webkit-box-shadow: 0px 3px 0px #cacaca;
  box-shadow: 0px 3px 0px #cacaca;
  line-height: 1.7;
  -webkit-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
  top: 0px;
  position: relative;
}
.btntab-list-item.is-active {
  color: #ff0033;
  border: 1px solid #ff0033;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btntab-list-item.is-active:after {
  content: '';
  position: absolute;
  height: 0;
  right: -20px;
  top: calc(50% - 10px);
  border-style: solid;
  border-width: 12.5px 0 12.5px 12px;
  border-color: transparent transparent transparent #ff0033;
}
/*ガイダンスメニュー電話番号*/


/*ガイダンスメニュー手順*/
table.guideTable {
  margin-bottom: 0;
}
table.guideTable td {
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
  border-top: 1px solid #ededed;
}

table.guideTable td.first{
  border-top: none;
}

table.guideTable td.col2 {
  width: 30%;
  text-align: right;
}
table.guideTable td.col2 img {
  width: 23px;
}

table.guideTable td.col2 .arrowNext {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  table.guideTable td.col2 .arrowNext {
    padding: 0 5px;
  }
}

table.guideTable td.col2 .arrowNext img {
  width: 10px;
  position: relative;
  top: -5px;
}

/*メールでのお問い合わせ*/
.contact_box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 10px;
  background: #fff;
  justify-content: space-around;
  align-items: center;
}
.contact_box p {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .contact_box {
    display: block;
  }
}