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

/*------------------------------
イベント情報設定
------------------------------*/

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

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

/*イベント全体*/
#event{
	background: #333;
}

/*イベント中身*/
#event .inner{
	background: #fff;
}

/*イベント情報*/
#event .info{
	padding: 60px;
	width: 100%;
	display: flex;
	gap: 60px;
}

/*leftBox,rightBox共通*/
#event .info .leftBox,
#event .info .rightBox{
	flex: 1;
}

/*イベント見出し*/
#event .info .leftBox h2{
	padding: 0 0 10px 0;
	font-size: 4rem;
	line-height: 1.6;
	text-align: justify;
	border-bottom: 1px solid #4d4d4d;
}

/*イベント見出し line-hight打ち消し用*/
#event .info .leftBox h2::before{
	content: "";
	display: flex;
	margin-top: -0.3em;
}

/*日時*/
#event .date{
	margin: 30px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
}

/*日時 dt,dd*/
#event .date dt,
#event .date dd{
	margin: 0 0 15px 0;
	font-size: 1.8rem;
	line-height: 1.6;
}

/*日時 dt,dd*/
#event .date dt:last-of-type,
#event .date dd:last-of-type{
	margin: 0;
}

/*期間とか*/
#event .date dt{
	width: 114px;
	position: relative;
}

/*dt：開催期間とか 装飾*/
#event .date dt::after{
	content: "";
	display: block;
	width: 1px;
	height: 18px;
	background: #333;
	position: absolute;
	top: 6px;
	right:20px;
}

/*dt：日時とか*/
#event .date dd{
	flex: 0 0 calc(100% - 114px);
}

/*完全予約制アイコン*/
#event .reserve{
	margin: 24px 0 0 0;
	padding: 8px 0 10px;
	width: 234px;
	color: #fff;
	font-size: 2.4rem;
	line-height: 1;
	text-align: center;
	background: #333;
}

/*申し込みはこちらボタン*/
#event .leftBox .btn{
	margin: 35px 0 0 0;
}

/*イベント 小見出し*/
#event .rightBox h3{
	font-size: 2rem;
	line-height: 1.6;
	text-align: justify;
	letter-spacing: 3px;
}

/*イベント本文*/
#event .rightBox p{
	margin: 35px 0 0 0;
	font-size: 1.4rem;
	line-height: 2;
	text-align: justify;
	font-family:"ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

/*------------------------------
イベント会場設定
------------------------------*/

/*イベント会場,申し込みフォーム共通*/
#event .place,
#comfirm{
	padding: 0 60px;
}

/*イベント会場,申し込みフォーム タイトル共通*/
#event .place h3,
#comfirm h3{
	font-size: 2rem;
	border-bottom: 1px solid #4d4d4d;
}

/*イベント会場 地図*/
#event .place .map{
	margin: 40px 0 0 0;
	width: 100%;
	aspect-ratio: 2.2 / 1;
	overflow: hidden;
}

/*イベント会場 地図 iframe*/
#event .place .map iframe{
	width: 100%;
	aspect-ratio: 2.2 / 1;
}

/*------------------------------
メールフォーム設定
------------------------------*/
/*申し込みフォーム共通*/
#comfirm{
	margin: 86px 0 0 0;
}

/*フォーム全体*/
.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;
}

.input-box {
	flex: 1;
}
.input-box .ex {
	margin: 0 0 0 73%;
	display: inline-block;
	font-size: 1.2rem;
}

/* タグ（必須・任意） */
.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(3, 1fr);
	gap: 10px;
}

.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;
	}

}

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

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

	/*------------------------------
	イベント内容設定
	------------------------------*/

	/*イベント情報*/
	#event .info{
		padding: 40px;
		gap: 40px;
	}

	/*------------------------------
	イベント会場設定
	------------------------------*/

	/*イベント会場,申し込みフォーム共通*/
	#event .place,
	#comfirm{
		padding: 0 40px;
	}


}

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

	/*------------------------------
	イベント内容設定
	------------------------------*/

	/*イベント見出し*/
	#event .info .leftBox h2{
		font-size: 3.6rem;
	}

	/*日時*/
	#event .date{
		margin: 15px 0 0 0;
	}

	/*日時 dt,dd*/
	#event .date dt,
	#event .date dd{
		margin: 0 0 5px 0;
		font-size: 1.6rem;
	}

	/*完全予約制アイコン*/
	#event .reserve{
		font-size: 2rem;
	}

	/*イベント 小見出し*/
	#event .rightBox h3{
		font-size: 1.8rem;
	}

	/*イベント本文*/
	#event .rightBox p{
		margin: 20px 0 0 0;
		line-height: 1.8;
	}

	/*------------------------------
	メールフォーム設定
	------------------------------*/
	/*申し込みフォーム共通*/
	#comfirm{
		margin: 60px 0 0 0;
	}

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

}

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

	/*イベント情報*/
	#event .info{
		display: flex;
		flex-direction: column;
	}
	
	/*------------------------------
	メールフォーム設定
	------------------------------*/

	.form-group {
		flex-direction: column;
	}
	.label-box {
		width: 100%;
		margin-bottom: 10px;
	}
	.checkbox-grid > span > span {
		grid-template-columns: repeat(2, 1fr);
	}
	.flex-inputs {
		flex-direction: column;
	}
	.input-box .ex {
		margin: 0 0 0 35px;
	}
}

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

	/*------------------------------
	イベント内容設定
	------------------------------*/

	/*イベント情報*/
	#event .info{
		padding: 30px;
		gap: 30px;
	}

	/*イベント見出し*/
	#event .info .leftBox h2{
		font-size: 3rem;
	}

	/*日時*/
	#event .date{
		margin: 10px 0 0 0;
	}

	/*日時 dt,dd*/
	#event .date dt,
	#event .date dd{
		margin: 0;
		font-size: 1.4rem;
	}

	/*期間とか*/
	#event .date dt{
		width: 90px;
	}

	/*dt：開催期間とか 装飾*/
	#event .date dt::after{
		height: 14px;
		top: 5px;
		right: 15px;
	}

	/*dt：日時とか*/
	#event .date dd{
		flex: 0 0 calc(100% - 90px);
	}

	/*完全予約制アイコン*/
	#event .reserve{
		font-size: 2rem;
	}


	/*------------------------------
	イベント会場設定
	------------------------------*/

	/*イベント会場,申し込みフォーム共通*/
	#event .place,
	#comfirm{
		padding: 0 30px;
	}

	/*イベント会場 地図*/
	#event .place .map{
		margin: 30px 0 0 0;
		aspect-ratio: 1.2 / 1;
	}

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

	/* 送信エリア */
	.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;
	}

	/*------------------------------
	イベント内容設定
	------------------------------*/

	/*イベント情報*/
	#event .info{
		padding: 20px;
		gap: 40px;
	}

	/*完全予約制アイコン*/
	#event .reserve{
		margin: 24px 0 0;
		width: 100%;
	}

	/*申し込みはこちらボタン*/
	#event .leftBox .btn{
		margin: 35px auto 0;
	}

	/*イベント会場 地図*/
	#event .place .map{
		margin: 20px 0 0 0;
		aspect-ratio: 1 / 1;
	}

	/*------------------------------
	イベント会場設定
	------------------------------*/

	/*イベント会場,申し込みフォーム共通*/
	#event .place,
	#comfirm{
		padding: 0 20px;
	}

	/*申し込みフォーム共通*/
	#comfirm{
		margin: 40px 0 0 0;
	}

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

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

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

	/* チェックボックス（グリッド表示） */
	.checkbox-grid > span > span {
		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;
}




