@charset "UTF-8";

/*==================================================
 入力フィールド
================================================== */

select,
textarea,
input[type='tel'],
input[type='text'],
input[type='email'],
input[type='url'] {
  max-width: 100%;
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(150, 150, 150, .1) inset;
  box-sizing: border-box;

  @media screen and (max-width: 768px) {
    padding: 2vw;
    font-size: 4vw;
  }
}

textarea {
  width: 100%;
}

.address_flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

#pc01,
#pc02 {
  width: 120px;
}

.content_fix {
  width: 200px;
  margin: 40px auto 20px;
  height: 56px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2em;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .content_fix {
    width: 50vw;
    height: 14vw;
    padding: 2.5vw;
    margin-top: 10vw;
    margin-bottom: 4vw;
    font-size: 4vw;
  }
}
.submit{
  background: #dbbe68;
}
.send_button {
  width: 200px;
  background: #dbbe68;
  color: white;
}

@media screen and (max-width: 768px) {
  .send_button {
    width: 50vw;
    height: 14vw;
    font-size: 4vw !important;
  }
}

/* ボタン
-------------------------------------------------- */

input[type='button'],
input[type='submit'] {
  margin: 0 4px;
  padding: 1em 2em;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  -webkit-appearance: none;
  transition: opacity 0.4s ease;
}

input[type='button']:hover,
input[type='submit']:hover {
  opacity: .8;
  cursor: pointer;
}

input[type='button'][disabled],
input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}


/* チェックボックス・ラジオボタン
-------------------------------------------------- */

input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio]+label,
input[type=checkbox]+label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  line-height: 30px;
  cursor: pointer;

  @media screen and (max-width: 768px) {
    font-size: 3.2vw;
  }
}

input[type=radio],
input[type=checkbox] {
  display: none;
  margin: 0;
}

input[type=radio]+label,
input[type=checkbox]+label {
  margin-bottom: 5px;
  padding: 0 0 0 24px;

  @media screen and (max-width: 768px) {
    padding-left: 5vw;
  }
}

input[type=radio]+label::before,
input[type=checkbox]+label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #FFF;

  @media screen and (max-width: 768px) {
    width: 4vw;
    height: 4vw;
    margin-top: -1.7vw;
  }
}

input[type=radio]+label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type=checkbox]+label::before {
  border: 2px solid #ccc;
}

input[type=radio]:checked+label::after,
input[type=checkbox]:checked+label::after {
  content: "";
  position: absolute;
  top: 50%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}

input[type=radio]:checked+label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #e74c3c;
  border-radius: 8px;
}

input[type=checkbox]:checked+label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #e74c3c;
  border-bottom: 3px solid #e74c3c;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


/*==================================================
 テーブル
================================================== */
/* #contact-form{
  background: white;
  width: 100%;
  padding-bottom: 100px;
} */


/* スマホ表示時にはテーブルを縦向きにする */
@media screen and (max-width: 768px) {

  .contact-form-table,
  .contact-form-table tbody,
  .contact-form-table tr,
  .contact-form-table th,
  .contact-form-table td {
    width: auto;
    display: block;
  }
}

/* ご住所だけ2段なのでマージンを開ける */
input[name="items[address]"] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-link {
  text-align: center;
  font-size: 16px;
  margin-top: 30px;
}

.sec-error-link a {
  border-bottom: 1px solid #194fff;
  display: inline-block;
  color: #194fff;
}

@media screen and (max-width: 768px) {
  .sec-error-text {
    padding: 30px 10px;
    font-size: 3.9vw;
  }

  .sec-error-link {
    font-size: 4vw;
  }
}

/* 「任意」「必須」マーク */
.optional-mark,
.required-mark {
  padding: 2px 4px;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  float: right;

  @media screen and (max-width: 768px) {
    padding: 0.5vw 1vw;
    font-size: 3vw;
    border-radius: 1vw;
  }
}

.optional-mark {
  background: #3498db;
}

.required-mark {
  background: #e74c3c;
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #e74c3c;
  text-align: center;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  text-align: center;
}

/* プライバシーポリシー
.inline-privacy-policy {
  width: 100%;
	height: 350px;
	background: #fff;
}

.inline-privacy-policy-inner {
	height: 100%;
  border: 1px solid #dfdfdf;
  margin: 0 auto;
}

.inline-privacy-policy iframe {
	width: 100%;
	height: 100%;
	display: block;
} */

/* リキャプチャ */
.contact-recaptcha-wrap {
  margin: 0 auto 20px auto;
  display: table;
}

.recaptcha_submit_wrap {
  padding: 30px 30px 0 30px;
}

/*==================================================
 日付選択フォーム
================================================== */
.date-list {
  padding-left: inherit;
}

.date-list li {
  list-style: none;
  margin-bottom: 15px;
}

.date-list li p {
  margin-bottom: 5px;
}

/*==================================================
 画像アップロードフォーム
================================================== */

.upload-item-wrap {
  font-size: 13px;
  overflow: hidden;
}

.upload-item-wrap input[type="file"] {
  display: none;
}

/* アップされた画像のサムネイル */
.upload-item-wrap .thumb {
  width: 220px;
  height: 220px;
  margin: 0 8px 0 0;
  position: relative;
  overflow: hidden;
  float: left;
}

.upload-item-wrap .thumb img {
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*選択・削除ボタン  */
.upload-item-wrap .ancion-btn-wrap {
  float: left;
}

.upload-item-wrap .ancion-btn {
  margin: 0 0 8px;
  width: 110px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: #e6e6e6;
  display: block;
}

.upload-item-wrap .select-file {
  background: #2ecc71;
}

.upload-item-wrap .deselect-file {
  background: #e74c3c;
}

.upload-item-wrap .ancion-btn:hover {
  cursor: pointer;
}

/*添付ファイルの注意文  */
.upload-notice {
  margin-top: 10px;
  font-size: 0.8em;
}