@charset "UTF-8";
@media screen and (min-width: 1080px) {
  .is-sp {
    display: none;
  }
}

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

.article-inner {
  max-width: 1000px;
  font-size: 14px;
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .article-inner {
    padding-bottom: 20px;
  }
}

.page-contact-header {
  text-align: center;
  margin-top: 40px;
}
.page-contact-header .thankyou {
  font-size: clamp(1rem, 0.7727272727rem + 0.9696969697vw, 1.5rem);
  margin-bottom: 30px;
}
.page-contact-header .page-contact-text {
  margin-bottom: 20px;
}
.page-contact-header .page-contact-tel-area {
  display: flex; /* フレックスボックスを使用 */
  flex-direction: column; /* 要素を縦に並べる */
  align-items: center; /* 要素を中央揃えに */
  background-color: #fff; /* 背景を半透明に設定 */
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  padding: 20px; /* 内部の余白 */
  border-radius: 20px; /* 角を丸くする */
  max-width: 600px;
  margin: 40px auto;
}
.page-contact-header .tel {
  display: flex; /* 電話番号を画像と横並びに */
  align-items: center; /* 画像とテキストを中央揃えに */
}
.page-contact-header .tel img {
  width: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem); /* 電話アイコンの幅 */
  height: auto; /* 電話アイコンの高さ */
  margin-right: 20px; /* テキストとの間にスペースを追加 */
}
.page-contact-header .tel a {
  font-size: clamp(1.5rem, 0.7613636364rem + 3.1515151515vw, 3.125rem); /* 電話番号のフォントサイズ */
  text-decoration: none; /* 下線を消す */
}
.page-contact-header .tim {
  margin: 5px 0; /* 上下に余白を追加 */
  font-size: 16px; /* 営業時間テキストのフォントサイズ */
}

form {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

.form-group {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
  align-items: center;
}

.form-group label {
  width: 220px;
  margin-right: 10px;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .form-group label {
    display: flex;
  }
}

.form-group input,
.form-group textarea, select {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}
@media screen and (min-width: 1080px) {
  .form-group input,
  .form-group textarea, select {
    width: 60%;
  }
}
@media screen and (max-width: 960px) {
  .form-group input,
  .form-group textarea, select {
    width: 100%;
    margin-top: 8px;
  }
}

.required-label {
  padding: 5px 10px;
  background-color: #ff555d;
  color: white;
  margin-left: 5px;
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  .required-label {
    font-size: 12px;
  }
}

.checkbox-group {
  display: flex;
  grid-template-columns: auto auto;
  flex-wrap: wrap;
}
@media screen and (min-width: 1080px) {
  .checkbox-group {
    width: 60%;
    gap: 10px;
  }
}

.checkbox-item {
  display: flex;
}

.checkbox-group label {
  cursor: pointer;
  padding: 5px;
  position: relative;
  width: auto;
}

.checkbox-group input[type=checkbox] {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #000;
}

.form-group textarea {
  height: 100px;
}

.submit-button {
  background: linear-gradient(to bottom, #ff6464 50%, #ff001e 100%);
  color: white;
  padding: 15px 20px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  width: 250px;
  margin: 0 auto;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
  transition: 1s;
}

.submit-button:hover {
  background: linear-gradient(to bottom, #ff001e 50%, #ff6464 100%);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  transition: 1s;
}

.form-group label span {
  display: inline-block;
  margin-left: auto;
}

.input-group .wpcf7-form-control-wrap {
  width: 60%;
}
.input-group input, .input-group textarea {
  width: 100%;
}

.wpcf7-list-item {
  margin-left: 0;
}

/* メディアクエリでスマホ対応 */
@media screen and (max-width: 600px) {
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-group label {
    width: 100%;
    margin-bottom: 5px;
  }
  .checkbox-group {
    flex-direction: column;
  }
  .input-group .wpcf7-form-control-wrap {
    width: 100%;
  }
  .input-group input, .input-group textarea {
    width: 100%;
  }
}/*# sourceMappingURL=page-contact.css.map */