@charset "UTF-8";
/* CSS Document */

/*------------------------------
お問い合わせ設定
------------------------------*/

/*ページビジュアル*/
#pageVisual{
	background: url(../img/contact/bg_main.webp) no-repeat center center / cover;
}

/*ページビジュアル  見出し英語*/
#pageVisual .pageNav h2::after{
	content: "CONTACT";
}

/*お問い合わせ全体*/
#contactForm{
	background: #333;
}

/*お問い合わせ中身*/
#contactForm .inner{
	padding: 100px 100px 0;
	background: #fff;
}

/*お問い合わせ中身*/
#contactForm .inner h3{
	font-size: 1.8rem;
	line-height: 1.6;
	text-align: justify;
}


/*------------------------------
メールフォーム設定
------------------------------*/

/*フォーム全体*/
.formContainer {
	margin: 0 auto;
	padding: 50px 0 150px;
	max-width: 900px;
	font-family:"ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

/*フォーム リンク*/
.formContainer a{
	text-decoration: underline;
}

/* フォームグループ（行）のレイアウト */
.form-group {
	display: flex;
	padding: 20px 0;
}

.label-box {
	font-family: "Shippori Mincho", serif;
	width: 250px;
	font-size: 1.6rem;
	line-height: 1.6;
	display: flex;
	align-items: start;
	gap: 10px;
	position: relative;
}

.label-box .ex{
	display: inline-block;
	font-size: 1.4rem;
	position: absolute;
	top: 25px;
	left: 0;
}

.input-box {
	flex: 1;
}

/* タグ（必須・任意） */
.tag-required,
.tag-optional {
	display: inline-block;
	margin: 0 0 0 10px;
	padding: 2px 4px;
	font-size: 1.4rem;
	line-height: 1;
	font-family:"ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	color: #fff;
}
.tag-required {
	background-color: #c6b198;
}

.tag-optional {
	background-color: #999;
}

/* 入力要素の装飾 */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
	width: 100%;
	padding: 7px;
	border: none;
	background-color: #efefef;
	border-radius: 0;
	box-sizing: border-box;
	font-size: 16px;
}

textarea {
	height: 260px;
	resize: vertical;
}

/* フォーム内の小見出し */
.sub-label {
	font-size: 14px;
	margin: 15px 0 5px;
}

.datetime-row:first-child .sub-label {
	margin-top: 0;
}

/* 日時・郵便番号などの横並び */
.flex-inputs, .zip-row {
	display: flex;
	gap: 10px;
}

.flex-inputs input, .flex-inputs select, .flex-inputs > span {
	flex: 1;
}


.input-zip {
	width: 150px !important;
}

.btn-zip {
	background-color: #444;
	color: #fff;
	border: none;
	padding: 0 20px;
	cursor: pointer;
}

/* チェックボックス（グリッド表示） */
.checkbox-grid > span > span {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

/* ラジオボタンのコンテナをFlexboxにして垂直中央揃え */
.radio-group {
  display: flex;
  align-items: center; /* 垂直中央揃え */
  gap: 8px; /* ラジオボタンとテキストの間隔 */
  cursor: pointer;
  margin-right: 20px;
}

.radio-box{
	display: flex;
	justify-content: start;
}

/* デフォルトのラジオボタンを非表示 */
.radio-group input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #999; /* グレーの枠線 */
  border-radius: 50%;
  display: grid;
  place-content: center;
}

/* 選択された時の色（グレー） */
.radio-group input[type="radio"]:checked {
  border-color: #999;
}

/* 選択された時の内側のドット（グレー） */
.radio-group input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #999; /* グレー */
  transform: scale(0);
  transition: 120ms transform ease-in-out;
}

.radio-group input[type="radio"]:checked::before {
  transform: scale(1);
}

.form-note {
	margin: 25px 0 0 0;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #333;
}

/* 送信エリア */
.submit-area {
	margin: 40px 0 0 0;
	text-align: center;
}

.privacy-label {
	display: block;
	margin-bottom: 30px;
}

.btn-submit {
	display: inline-block;
	width: 300px;
	padding: 15px;
	color: #1a1a1a;
	border: 1px solid #333;
	background: #fff;
	border-radius: 30px;
	font-size: 16px;
	cursor: pointer;
	position: relative;
	transition: 0.3s;
}

.btn-submit::after{
	content: "";
	display: inline-block;
	width: 9px;
	height: 15px;
	background: url(../img/common/ico_arrow.svg) no-repeat center center / cover;
	transition: 0.15s;
	position: absolute;
	top: calc(50% - 15px / 2);
	right: 20px;
}

/* 個人情報チェックがないとき */
.wpcf7 .wpcf7-submit.btn-submit:disabled {
	opacity: 0.5;
}
.wpcf7 .wpcf7-submit.btn-submit:disabled:hover {
	background: #fff;
	color: #333;
}

/* Cloudflare Turnstile 表示調整 */
.wpcf7-turnstile {
	margin-bottom: 30px;
}

/* ホバー */
@media (any-hover: hover) {

	.btn-submit:hover {
		background: #333;
		color: #fff;
	}

}

/*==============================
レスポンシブ設定
==============================*/

/*960px以下の場合*/
@media screen and (max-width:960px){

	/*------------------------------
	お問い合わせ設定
	------------------------------*/

	/*お問い合わせ中身*/
	#contactForm .inner{
		padding: 50px 50px 0;
	}

	/*お問い合わせ中身*/
	#contactForm .inner h3{
		font-size: 1.6rem;
	}

	/*------------------------------
	メールフォーム設定
	------------------------------*/
	
	.radio-box{
		flex-direction: column;
	}


}

/*768px以下の場合*/
@media screen and (max-width:768px){

	/*------------------------------
	メールフォーム設定
	------------------------------*/

	.form-group {
		flex-direction: column;
	}
	.label-box {
		width: 100%;
		margin-bottom: 10px;
	}

	.label-box .ex{
		position: static;
	}
	.checkbox-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.flex-inputs {
		flex-direction: column;
	}
}

/*600px以下の場合*/
@media screen and (max-width:600px){

	/*------------------------------
	メールフォーム設定
	------------------------------*/

	/*お問い合わせ中身*/
	#contactForm .inner{
		padding: 30px 30px 0;
	}
	
	/* 送信エリア */
	.submit-area {
		margin: 0;
	}

}

/*430px以下の場合*/
@media screen and (max-width:430px){

	/*ページビジュアル*/
	#pageVisual{
		background: url(../img/event/bg_main_sp.webp) no-repeat center center / cover;
	}

	/*お問い合わせ中身*/
	#contactForm .inner{
		padding: 20px 20px 0;
	}

	/*お問い合わせ中身*/
	#contactForm .inner h3{
		font-size: 1.4rem;
	}

	/*------------------------------
	メールフォーム設定
	------------------------------*/

	/*フォーム全体*/
	.formContainer {
		padding: 0 0 50px;
	}

	.label-box label{
		font-weight: 600;
	}

	/* チェックボックス（グリッド表示） */
	.checkbox-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 0;
	}

	.form-note {
		margin: 15px 0 0 0;
	}


}



/*------------------------------
flatpickr（カレンダー） 設定
------------------------------*/
.flatpickr-calendar {
	font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

/* カレンダーアイコン追加 */
input[type="text"].calendar-box {
	background-image: url('../img/contact/calendar-check.svg');
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px;
	padding-right: 40px;
	cursor: default;
}



/*------------------------------
Thanks popup 設定
------------------------------*/
.thanks-modal{
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.3);

	display: none;
	align-items: center;
	justify-content: center;

	z-index: 9999;
}
.thanks-modal.is-show{
	display: flex;
}
.thanks-modal__inner{
	background: #fff;
	padding: 40px;
	text-align: center;
	width: 300px;
}
.thanks-modal .thanks-modal__inner h2 {
	font-size: 3rem;
	font-family: "Outfit", sans-serif;
	font-weight: 600;
	letter-spacing: normal;
}
.thanks-modal__inner p {
	font-size: 1.4rem;
}
.thanks-modal__inner button {
	background: #fff;
	font-family: "Shippori Mincho", serif;
	margin-top: 1rem;
	padding: 0.5rem 2rem;
	border: 1px #000 solid;
	border-radius: 1.5rem;
}




