.inquiryPanel__contact {
  width: 100%;
  background: #FAFAFA;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px;
  gap: 8px;
}

.inquiryPanel__contact__tel {
  font-family: 'Hiragino Kaku Gothic Pro';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.04em;
  color: #222222;
}

.header__contact__hours {
  font-family: 'Hiragino Kaku Gothic Pro';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  /* ボックスの高さと同一、または17px */
  text-align: center;
  letter-spacing: 0.04em;
  font-feature-settings: 'kern' off;
  color: #666666;
}

@media screen and (max-width: 960px) {
  .header__contact__num--pc {
    display: none;
  }

  .header__contact__num--sp {
    font-family: 'Avenir Next';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #20AEE5;
  }

  .inquiryPanel__contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 12px;
    gap: 8px;
    background: #FAFAFA;
    border-radius: 8px;
  }
}

@media screen and (min-width: 960px) {
  .header__contact__num--sp {
    display: none;
  }

  .header__contact__num--pc {
    font-family: 'Avenir Next';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #20AEE5;
  }
  
  .inquiryPanel__contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 12px;
    gap: 8px;
    background: #FAFAFA;
    border-radius: 8px;
  }
}