/* ============================================
   contact.html 専用スタイル
   style_contact.css
   ============================================ */

/* ============================================
   ナビ：現在地ハイライト
   ============================================ */
.gnav__link--current {
	color: var(--color-main);
	font-weight: 700;
}

/* ============================================
   
   ============================================ */
.contact-form__title {
	font-size: 28px;
  font-weight: 700;
  color: var(--color-main);
  margin: 80px 0 40px;
  text-align: center;
	line-height: 1.4;
}
	 /* リード文：上余白100px・下余白40px */
.contact-form__lead {
	margin-bottom: 50px;
	text-align: center;
}

/* 電話番号 */
.contact-form__tel-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
}

/* 受付時間テキスト */
.contact-form__tel-note {
	margin-top: 10px;
}

/* ============================================
   レスポンシブ（スマホ）
   ============================================ */
@media (max-width: 768px) {
	.contact-form__title {
		font-size: 24px;
		margin: 40px 0 40px;
	}
	.contact-form__lead {
		text-align: left;
	}
	.contact-form__lead br {
		display: none;
	}
}

/* フォーム */
.contact-form .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-wrap {
  margin-bottom: 50px;
}

/* 入力ボックス設定 */
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  padding: 12px;
  background-color: #FFF;
  resize: vertical;
  border: 2px solid #E7ECF2;
  line-height: 1.5;
  box-shadow: none;
  transition: border-color .3s ease;
  outline: none;
  box-sizing: border-box;
}
.contact-form-wrap input[type="text"] {
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border: 2px solid #AAA;
}
.contact-form-list li:not(:last-of-type) {
  margin-bottom: 30px;
}
.contact-form-list li .item_name {
  margin: 0 0 6px;
}
.contact-form-list li span.mandatory,
.contact-form-list li span.any {
  font-size: 12px;
  color: #FFF;
  margin-right: 8px;
  padding: 4px 8px;
  background: #A61C4B;
}
.contact-form-list li span.any {
  font-weight: 700;
  color: #A61C4B;
  background: #FFF;
  border: 1px solid #A61C4B;
}

@media (max-width: 480px) {
	.contact-form-wrap {
		margin-bottom: 30px;
	}
  .contact-form-list li {
    margin-bottom: 20px;
  }
}

/* 個人情報保護方針 */
.privacy-title {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
	line-height: 1.4;
}
.privacy-box {
  width: 100%;
  height: 250px;
  border: 1px solid #CCC;
  background: #FFF;
  padding: 25px;
  margin-bottom: 40px;
  box-sizing: border-box;
  overflow-y: scroll;
}
.privacy-box p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8;
}
.privacy-list {
  margin-top: 20px;
  padding-left: 20px;
  list-style: decimal;
}
.privacy-list li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8;
}
.privacy-note {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .privacy-box {
    height: 300px;
    padding: 15px;
  }
}

.contact-complete-text {
  margin: 60px 0 0;
	text-align: center;
}
.contact-text p:first-of-type,
.contact-complete-text p:first-of-type {
  margin-bottom: 20px;
}
.link-top {
	display: inline-block;
	color: var(--color-main);
  margin: 40px 0;
	text-decoration: underline;
}
.link-top:hover {
	text-decoration: none;
}


/* コンタクトフォーム 独自スタイル非表示 */
.wpcf7-spinner,
.wpcf7 form .wpcf7-response-output {
	display: none;
}



