@charset "UTF-8";
.tel-container {
  display: flex;
  flex-wrap: wrap; /* 子要素が横に並んで横幅を超える場合に折り返す */
  gap: 0; /* 子要素間の間隔 */
  margin: 0 -20px; /* 左右の外側の余白 */
  /* Flexbox items (sections) */
}
.tel-container section {
  flex: 1 1 calc(50% - 20px); /* flex-grow, flex-shrink, flex-basis */
  margin: 10px; /* 子要素の下の余白 */
  box-sizing: border-box; /* marginがセクションの幅を超えないようにする */
  /* セクション内の要素のスタイル */
}
.tel-container section .tel-info {
  background: #f7f7f7;
  text-align: center;
  height: 100%; /* 高さを100%に固定 */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 上下の余白を均等にする */
  padding: 25px; /* 内側の余白を指定 */
  margin: 0; /* マージンをリセット */
}
.tel-container section .tel-info-caption {
  font-size: 22px; /* キャプションのフォントサイズを調整 */
  font-weight: bold; /* キャプションのフォントウェイトを太くする */
  margin-bottom: 20px; /* キャプションと番号の間の余白を調整 */
}
.tel-container section .tel-info-title {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 8px; /* タイトルの下の余白を調整 */
}
.tel-container section .tel-info-number {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1;
  margin-bottom: 16px; /* 電話番号の下の余白を調整 */
}
.tel-container section .tel-info-number.icon-dial a {
  display: inline-block;
  padding-left: 67px;
  background-image: url(/img/inquiry/icon-dial.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 60px auto;
}
.tel-container section .tel-info .highlighted-text {
  display: inline-block;
  padding: 5px 10px; /* 内側の余白を指定 */
  margin-bottom: 30px; /* テキストの下の余白を調整 */
}
.tel-container section p {
  margin: 0; /* テキストの余白をリセット */
  width: 100%; /* 横幅を100%にする */
}

@media only screen and (max-width: 768px) {
  .tel-container {
    flex-direction: column; /* モバイルの場合は縦並びにする */
  }
  .tel-container section {
    flex: 1 1 100%; /* セクションを100%の幅にする */
    margin: 10px 0; /* 子要素の下の余白と上下の余白を調整 */
  }
}
/* モバイルの場合のみ商品に関するお問い合わせの見出しを表示 */
.mobile-heading {
  display: none; /* 初期状態では非表示 */
}
@media only screen and (max-width: 768px) {
  .mobile-heading {
    display: block; /* モバイルの場合のみ表示 */
    margin-bottom: 5px; /* 上下の余白を追加 */
    padding: 5px;
    margin: 0 10px;
    flex: 1 1 calc(50% - 20px); /* sectionと同じ幅にする */
    font-size: 17px;
    text-align: center; /* 中央揃え */
  }
}
.mobile-heading p {
  background-color: #f7f7f7; /* 背景色を指定 */
  margin-bottom: 5px;
  padding: 5px;
  font-weight: bold;
}/*# sourceMappingURL=inquiry.min.css.map */