@charset "utf-8";

/*****************************************
*
* お問い合わせ
*
******************************************/

.contact-contents {
  text-align: center;
}

/* 電話 --------------------------------*/
.contact-contents .phone-wrap {
  margin-top: 20px;
  margin-bottom: 10px;
}

.contact-contents .phone {
  position: relative;
  color: var(--color-main);
  font-size: 2rem;
  font-weight: 800;
  padding-left: 40px;
}

.contact-contents .phone::before {
  content: '';
  display: inline-block;
  background: url('../img/common/icon_phone.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 40/36;
  width: 30px;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all .5s ease;
}

@media screen and (min-width: 834px), print {
  .contact-contents .phone-wrap {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .contact-contents .phone {
    font-size: 3rem;
    padding-left: 60px;
  }

  .contact-contents .phone::before {
    width: 50px;
  }
}

/* 営業時間 --------------------------------*/
.contact-contents .table-type-underline {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  margin-bottom: 20px;
}

.contact-contents .table-type-underline th {
  width: 6em;
}

@media screen and (min-width: 834px), print {
  .contact-contents .table-type-underline {
    margin-bottom: 40px;
  }
}

/* テキスト --------------------------------*/
.contact-contents .text {
  display: inline-block;
  text-align: left;
}

/* メール --------------------------------*/
.contact-contents .image {
  margin-bottom: 20px;
}

.contact-contents .image img {
  max-width: 100%;
}

@media screen and (min-width: 834px), print {
  .contact-contents .image {
    margin-bottom: 40px;
  }
}