@charset "utf-8";

/*!
Theme Name: avenir
Template: habakiri
*/

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	/*outline: 1px solid red;*/
}
/* 編集してはいけない */
.fit {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 90px;
	position: fixed;
	top: 0;
	padding: 0px 40px;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 9999;
}
.header-navItem {
	position: relative;
}
.inner-nav {
	padding: 0;
	list-style: none;
	position: absolute;
	width: 100%;
	padding: 0px 20px 20px;
	margin-top: 29px;
	left: -20px;
	background-color: rgba(0, 0, 0, 0.6);
	visibility: hidden;
	opacity: 0;
	transition: 0.4s ease-in;
}
.inner-nav:hover {
	visibility: visible;
}

.inner-navItem {
	margin-top: 10px;
}

#booking-package_calendarPage {
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6); /* 影の設定 */
	border: 1px solid #000;
	border-radius: 8px; /* 角を丸くする（必要に応じて） */
	padding: 10px; /* 内側の余白を調整 */
	background-color: #596e30; /* 背景色を設定 */
	margin: 20px auto; /* 上下の余白と中央寄せ */
	max-width: 95%; /* スマホ画面に収まるように幅を調整 */
}

#booking-package_calendarPage .day_slot, 
#booking-package_calendarPage .week_slot {
    border: 1px solid #000 !important; /* 枠線の太さと色を設定 */
    box-sizing: border-box !important; /* 枠線を含めたサイズ計算 */
}

/* 日曜日の背景色 */
#booking-package_calendarPage .week_slot:nth-child(1) {
	background-color: #ffe5e5 !important; /* 好みの背景色 */
	color: #000; /* テキストの色を必要に応じて変更 */
}

/* 土曜日の背景色 */
#booking-package_calendarPage .week_slot:nth-child(7) {
	background-color: #e5f2ff !important; /* 好みの背景色 */
	color: #000; /* テキストの色を必要に応じて変更 */
}

/* 日曜日の日付の背景色 */
#booking-package_calendarPage .calendar .day_slot:nth-child(7n+1) {
	background-color: #ffe5e5 !important; /* 日曜日の背景色 */
	color: #000; /* テキスト色（必要に応じて） */
}

/* 土曜日の日付の背景色 */
#booking-package_calendarPage .calendar .day_slot:nth-child(7n) {
	background-color: #e5f2ff !important; /* 土曜日の背景色 */
	color: #000; /* テキスト色（必要に応じて） */
}



@media (hover: hover) {
	.header-navItem.-child:hover .inner-nav{
		visibility: visible;
		opacity: 1;
	}
}

@media screen and (max-width: 1100px) {
	.inner-nav {
		overflow: hidden;
		padding: 0;
		position: relative;
		width: 100%;
		height: 0;
		margin-top: 0;
		left: 0;
		background-color: transparent;
		visibility: visible;
		opacity: 1;
	}
	.inner-navItem{
		margin-top: 24px;
	}
}

/* スマホ向けのスタイル調整 */
@media screen and (max-width: 834px) {
	#booking-package_calendarPage .day_slot {
		display: flex; /* フレックスボックスで中央揃え */
		flex-direction: column; /* 垂直方向に並べる */
		align-items: center; /* 水平方向の中央揃え */
		justify-content: center; /* 垂直方向の中央揃え */
		height: auto; /* 高さを自動調整 */
		min-height: 4em; /* 必要なら最小高さを指定 */
		padding: 0; /* 余白をリセット */
		box-sizing: border-box; /* サイズ計算をボックス内に含める */
}

#booking-package_calendarPage .symbolPanel {
		display: inline-block; /* インライン要素として中央揃え */
		font-size: 1.2em; /* 必要に応じてフォントサイズ調整 */
		line-height: 1; /* 行の高さを調整 */
		margin: 0; /* 不要な余白をリセット */
}

#booking-package_calendarPage .dateField {
		margin-bottom: 1px; /* 日付と記号の間隔を微調整 */
}


}

