@charset "UTF-8";
/*
	* Bootstrap ヘッダ・フッタに関するカスタムCSS

	@media screen and (max-width: 1499.98px) {}
	@media (max-width: 991.98px) {}
	@media print {}
	@media screen and (max-width: 767px) {}
 
	xxl-1500over(min-1500)
	xl-1500(max-1499) 左右余白15pxを含む（1470）
	lg-992(max-991)
	md-768(max-767)
	sm-576(max-575)
 
	-------------------

	初期設定
	-ドロップダウンメニュー内設定

	ヘッダーレイアウト
	-追加ボタン（svgアイコン付き）

	スマホメニューCSS 外観
	スマホメニューCSS 内容

*/

/* 初期設定 */
	#nav-overlay{/* メニュー外クリックで閉じる為の追加オーバーレイ */
		display: block !important;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 1000;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.6s ease, visibility 0.6s;
	}
	#nav-overlay.is-active{
		visibility: visible;
		opacity: 1;
	}

	.cus-header-normal .header-nav .header-nav-col{/* Bootstrap設定上書き */
		display: -webkit-flex !important;
		display: flex !important;
		justify-content: flex-end !important;
		text-align: right !important;
	}

	.dropdown-toggle::after{/* ドロップダウンメニューのアイコン変更 */
		display: none !important;
	}
	.plus-minus-icon{
		display: inline-block;
		position: relative;
		top: -2px;
		width: 10px;
		height: 10px;
		margin-left: 4px; /* 文字との間隔 */
		vertical-align: middle;
	}
	.plus-minus-icon::before{
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: currentColor;
		transform: translateY(-50%);
	}
	.plus-minus-icon::after{
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		width: 1px;
		height: 100%;
		background-color: currentColor;
		transform: translateX(-50%);
		transition: transform 0.3s ease, opacity 0.3s ease;
	}
	@media screen and (min-width: 992px){
		.dropdown:hover .plus-minus-icon::after{/* +アイコンアニメーション */
			transform: translateX(-50%) rotate(90deg);
			opacity: 0;
		}
		.cus-header-normal .dropdown-menu::before{/* マウス移動時ドロップダウンメニューが消えないように */
			content: "";
			position: absolute;
			top: -30px;
			left: 0;
			width: 100%;
			height: 40px;
			background: transparent;
		}

    .dropdown > .dropdown-menu{
			display: block !important;
			visibility: hidden;
			opacity: 0;
			transform: translateY(-10px);
			transition: all 0.5s ease;

			background-color: rgba(255, 255, 255, 0.9) !important;
			border: none;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
			padding: 20px !important;
			margin-top: 30px !important;
			min-width: 200px;
			pointer-events: none;
    }
		.dropdown:hover > .dropdown-menu{/* ドロップダウンメニューの位置・背景色調整 */
			visibility: visible;
			opacity: 1;
			transform: translateY(0);
			pointer-events: auto;
		}
		.cus-header-normal .dropdown-menu li{
			border-bottom: 1px solid #c2c7c6 !important;
		}
		.cus-header-normal .dropdown-menu li:last-child{
			border-bottom: none !important;
		}
		.cus-header-normal .dropdown-menu li .active{
			font-weight: 700;
			color: #e7c56c;
		}
		.cus-header-normal .dropdown-item{/* ドロップダウンメニュー内部調整 */
			overflow: hidden;
			position: relative;
			padding: 10px 20px !important;
			background-color: transparent;
			min-width: 290px;/* 最小幅設定 */
			color: inherit;
			transition: all 0.2s ease;
		}
		.cus-header-normal .dropdown-item::before{
			content: ''; /* 文字は入れない */
			position: absolute;
			top: 50%;
			right: 10px;
			width: 20px;
			transform: translateY(-50%);
			z-index: 1;
		}
		.cus-header-normal .dropdown-item::after{
			content: '\f061';
			font-family: "Font Awesome 6 Free";
			font-weight: 900;
			font-size: 10px;
			color: #e7c56c;
			position: absolute;
			top: 50%;
			right: 20px; /* (right:10px + 枠の幅20pxの中央付近) */
			transform: translate(50%, -50%); /* 枠内の中央付近に配置 */
			transition: all 0.3s ease;
			z-index: 2;
		}
		.cus-header-normal .dropdown-item:hover::after{
			animation: arrowLoop 0.4s forwards;
		}
		@keyframes arrowLoop {
			0% {
        transform: translate(50%, -50%);
        opacity: 1;
			}
			49% {
        transform: translate(150%, -50%);
        opacity: 0;
			}
			50% {
        transform: translate(-150%, -50%);
        opacity: 0;
			}
			100% {
        transform: translate(50%, -50%);
        opacity: 1;
			}
		}
		.dropdown:hover > .dropdown-menu{
			visibility: visible;
			opacity: 1;
		}
	}
	@media screen and (max-width: 991.98px) {
		.dropdown-toggle[aria-expanded="true"] .plus-minus-icon::after{
			opacity: 0;
		}
	}

	@media screen and (min-width: 991.98px) {/* ドロップダウンボタンをマウスオーバーで利用 */
		.dropdown:hover > .dropdown-menu{
			display: block !important;
		}
	}


/* ヘッダーレイアウト */
	.cus-header-normal{/* 追従型 */
		position: fixed;
		display: flex;
		align-items: center;
		background-color: rgba(255, 255, 255, 0.9);
		padding: 16px 2%;
		width: 100%;
		z-index: 999;
	}
	.cus-header-normal .header-logo{
		flex: 0 0 352px;/* ロゴの表示サイズに合わせる */
    white-space: nowrap;
	}
	.cus-header-normal .header-nav{
		flex-grow: 1; 
		display: flex;
		justify-content: flex-end;
		align-items: center;
    text-align: right;
	}

	.cus-header-normal .header-nav-col li{/* リンク間隔 */
		padding-right: 20px !important;
	}

	.cus-header-normal .header-nav .header-nav-brand{/* スマホ用ロゴは今は非表示 */
		display: none;
	}

	.cus-header-normal .header-nav-col li .ic{
		display: inline-block;
		margin-right: 10px;
	}

/* 電話番号 */
	.cus-header-phone{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		margin-right: 30px;
		text-align: center;
	}
	.cus-header-phone .phone-dial{
		font-family: "Manrope", sans-serif;
		font-optical-sizing: auto;
		font-size: 32px;
		font-weight: 600;
		font-style: normal;
		line-height: 1.2;
	}
	.cus-header-phone .phone-dial .min{
		font-size: 24px;
		color: #e7c56c;
	}
	.cus-header-phone .phone-text{
		font-size: 13px;
	}

/* 楽天 */
	.cus-header-ic-bt{margin: 0;}
	.cus-header-ic-bt a{
		overflow: hidden;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		z-index: 1;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-header-normal .header-logo{flex: 0 0 200px;}/* 352px */
		.cus-header-normal .header-nav-col li{/* ヘッダメニューに関する設定 */
			padding-right: 15px !important;
			font-size: 15px;
		}
		.cus-header-normal .header-nav-col li a .ic{
			position: relative;
			top: -2px;
			width: 26px;
		}

		.cus-header-phone{
			margin-right: 20px;
		}
		.cus-header-phone .phone-dial{
			font-size: 25px;
		}
		.cus-header-phone .phone-dial .min{
			font-size: 19px;
		}
		.cus-header-phone .phone-text{
			font-size: 11px;
		}

		.cus-header-ic-bt a img{
			width: 70px;
		}
	}
	@media screen and (max-width: 1139.98px) {
		.cus-header-normal{/* 追従型 */
			padding: 12px 2%;
		}

		.cus-header-normal .header-logo{flex: 0 0 160px;}/* 352px */
		.cus-header-normal .header-nav-col li{/* ヘッダメニューに関する設定 */
			padding-right: 5px !important;
			font-size: 14px;
		}
		.cus-header-normal .header-nav-col li a .ic{
			position: relative;
			top: -2px;
			width: 22px;
		}

		.cus-header-phone{
			margin-right: 16px;
		}
		.cus-header-phone .phone-dial{
			font-size: 23px;
		}
		.cus-header-phone .phone-dial .min{
			font-size: 16px;
		}
		.cus-header-phone .phone-text{
			font-size: 10px;
		}

		.cus-header-ic-bt a img{
			width: 60px;
		}
	}
	@media screen and (max-width: 991.98px) {
		.cus-header-normal .header-nav-col li a .ic{
			position: relative;
			top: -2px;
			width: 28px;
		}

		.cus-header-phone .phone-dial{
			font-size: 26px;
			color: white;
		}
		.cus-header-phone .phone-dial .min{
			font-size: 18px;
		}
		.cus-header-phone .phone-text{
			font-size: 12px;
			color: white;
		}

		.cus-header-ic-bt{
			padding-top: 30px;
			text-align: center;
		}
		.cus-header-ic-bt a{
			display: inline-block;
			padding: 4px;
		}
		.cus-header-ic-bt a img{
			width: 140px;
			filter: drop-shadow(0 0 2px #ffffff);
		}
	}
	@media print {
		.cus-header-normal{/* 追従型 */
			position: relative;
		}

		/* ------------------------------------
		   印刷時はハンバーガーメニューを非表示にし
		   PC用のメニューを強制的に表示する
		------------------------------------ */
		.navbar-toggler {
			display: none !important; /* バーガーボタンを非表示 */
		}

		.collapse.navbar-collapse {
			display: flex !important;
			flex-basis: auto !important;
			visibility: visible !important;
			opacity: 1 !important;
			transform: none !important; /* スマホ用のアニメーション移動を解除 */
			background-color: transparent !important;
			height: auto !important;
			position: static !important; /* 画面固定を解除 */
		}

		.navbar-nav {
			flex-direction: row !important; /* メニューを横並びに */
		}

		/* PC用ロゴを表示し、スマホ用ロゴを非表示にする */
		.cus-header-normal .header-logo {
			display: block !important;
			flex: 0 0 80px;/* ロゴの表示サイズに合わせる */
		}
		.cus-header-normal .header-nav .header-nav-brand {
			display: none !important;
		}

		.cus-header-normal .header-nav-col li{/* ヘッダメニューに関する設定 */
			padding-right: 0px !important;
			font-size: 10px;
		}

		.cus-header-normal .header-nav-col li a .ic{
			display: none;
		}

		.cus-header-phone .phone-dial{
			font-size: 16px;
		}
		.cus-header-phone .phone-dial .min{
			font-size: 12px;
		}
		.cus-header-phone .phone-text{
			font-size: 8px;
		}

		.cus-header-ic-bt{
			padding-top: 20px;
			text-align: center;
		}
		.cus-header-ic-bt a{
			display: inline-block;
			padding: 4px;
		}
		.cus-header-ic-bt a img{
			width: 50px;
			filter: drop-shadow(0 0 2px #ffffff);
		}

		/* スマホ用メニューで文字が白くなる設定をリセット */
		.cus-header-normal .header-nav-col li a {
			color: #000 !important; 
			padding: 0 15px !important;
		}

		/* ドロップダウンメニューを展開させない（印刷不要なら非表示） */
		.cus-header-normal .dropdown-menu {
			display: none !important;
		}
	}


/* スマホメニューCSS 外観 */
	@media screen and (max-width: 991.98px) {/*スマホメニューに切り替え */
		.header-nav .navbar,
		.header-toggler-bg{/* padding初期化 */
      padding: 0 !important; 
    }

		.cus-header-normal{
			display: block;
			background-color: transparent;
			box-shadow: none;
			border-radius: 0px;
			padding: 0;
			margin: 0;
			width: 100%;
		}

		.cus-header-normal .header-logo{display: none;}/* 表示ロゴの変更 */
		.cus-header-normal .header-nav .header-nav-brand{
			display: block;
			padding: 5px;
		}
		.cus-header-normal .header-nav .header-nav-brand img{/* ロゴ調整する場合 */
			position: relative;
			top: 2px;
			width: 200px !important;
		}

		.cus-header-normal .header-nav{
			display: block;
			text-align: left;
		}
		.header-toggler-bg{
			position: relative;
			top: 0px;
			z-index: 1005;
		}
		.header-toggler-bg::before{
			content: '';
			position: absolute;
			top: 0px;
			left: 0px;
			background-color: #e7c56c;
			width: 100%;
			height: 65px;
			z-index: -1;
		}

		.navbar-toggler-icon{/* バーガーメニュー3本線 */
			background-image: none;
		}
		.navbar-toggler-icon{
			position: relative;
			width: 40px;
			height: 40px;
			background: none;
			appearance: none;
			cursor: pointer;
			&,span{
				display: inline-block;
				box-sizing: border-box;
			}
			span{
				position: absolute;
				left: 5px;
				width: 80%;
				height: 2px;
				background-color: white;
				border-radius: 1px;
				&:nth-of-type(1) {top: 8px;}
				&:nth-of-type(2) {top: 20px;}
				&:nth-of-type(3) {top: 32px;}
			}
		}
		.navbar-light .navbar-toggler{
			border-color: rgba(0, 0, 0, 0);
			outline: none;
		}
		.navbar-light .navbar-toggler-icon{
			background-image: none;
		}
		.navbar-toggler-icon {
			position: relative;
			top: 4px;
			width: 40px;
			height: 40px;
			background: none;
			appearance: none;
			cursor: pointer;
			&,
			span{
				display: inline-block;
				transition: all 0.4s;
				box-sizing: border-box;
			}
			span{
				position: absolute;
				left: 5px;
				width: 80%;
				height: 2px;
				background-color: white;
				border-radius: 1px;
				&:nth-of-type(1) {
					top: 8px;
				}
				&:nth-of-type(2) {
					top: 20px;
				}
				&:nth-of-type(3) {
					top: 32px;
				}
			}
		}
		.navbar-toggler[aria-expanded='true'] {
			span.navbar-toggler-icon {
				span {
					&:nth-of-type(1) {
						transform: translateY(12px) rotate(-315deg);
					}
					&:nth-of-type(2) {
						opacity: 0;
					}
					&:nth-of-type(3) {
						transform: translateY(-12px) rotate(315deg);
					}
				}
			}
		}
	
		.navbar-toggler{/* バーガーメニューの黒い枠を完全に消す */
			border: none !important;
			outline: none !important;
			box-shadow: none !important;
		}
		.navbar-toggler:focus,
		.navbar-toggler:active,
		.navbar-toggler:focus-visible{/* フォーカス時（クリック・タップ時）の枠も消す */
			border: none !important;
			outline: none !important;
			box-shadow: none !important;
		}
		.header-nav-brand, 
		.navbar-toggler{
			position: relative;
			z-index: 1010; /* 最前面 */
		}
	}

	.cus-header-normal .header-nav-col .nav-item .nav-link:hover{
		color: #e7c56c !important;
	}
	.cus-header-normal .header-nav-col .nav-item .nav-link.active{
		font-weight: 700;
		color: #e7c56c !important;
	}

/* スマホメニューCSS 内容 */
	@media screen and (max-width: 991.98px) {
		.navbar-collapse{/* 内容量が多い際にスクロールさせる */
			overflow-y: auto !important;
			display: block !important;
			position: fixed;
			top: 65px;
			left: 0px;
			overflow: auto !important;
			background-color: rgba(110, 89, 33, 0.9);
			padding: 20px;
			width: 90%;
			height: 100vh;
			z-index: 1001;
			transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
			transform: translateY(-100%);
			opacity: 0;
			visibility: hidden;
		}
		.navbar-collapse.show{
			transform: translateY(0);
			opacity: 1;
			visibility: visible;
		}

		.cus-header-normal .header-nav-col{
			padding: 0 !important;
			margin: 0 0 20px 0 !important;
			width: 100% !important;
			opacity: 0;
			transition: opacity 0.3s ease 0.2s;
		}
		.navbar-collapse.show .header-nav-col{
			opacity: 1;
		}
		.cus-header-normal .header-nav-col li{
			text-align: left;
			border-bottom: 1px solid rgba(255, 255, 255, 0.4);
			list-style: none;
		}
		.cus-header-normal .header-nav-col li a{
			position: relative;
			display: block;
			padding: 18px 20px !important;
			font-size: 16px;
			color: white !important;
			text-decoration: none;
		}
		.cus-header-normal .header-nav-col li a::after{
			content: '\f061';
			font-family: "Font Awesome 6 Free";
			font-weight: 900;
			font-size: 10px;
			color: white;
			position: absolute;
			top: 50%;
			right: 20px;
			transform: translateY(-50%);
			width: 24px;
			height: 24px;
			display: flex;
			justify-content: center;
			align-items: center;
			border-radius: 4px;
		}

		.cus-header-normal .header-nav-col .dropdown-menu{/* スマホ時ドロップダウンメニュー */
			background: rgba(255, 255, 255, 0.1) !important;
			padding: 0;
			margin: 0;
		}
		.cus-header-normal .header-nav-col .dropdown-item{
			padding-left: 40px !important;
			font-size: 14px;
		}
		.cus-header-normal .header-nav-col .dropdown-item:hover{
			background-color: inherit !important;
		}
		.cus-header-normal .dropdown-menu li{
			border-bottom: 1px solid #e7e7e7;
		}
		.cus-header-normal .dropdown-menu li:last-child{
			border-bottom: none !important;
		}
	}

