@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: -20px;
			left: 0;
			width: 100%;
			height: 20px;
			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.7) !important;
			border: none;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
			padding: 20px !important;
			margin-top: 20px !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-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;
			aspect-ratio: 1 / 1;
			background-color: #30b7a8;
			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: white;
			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;
		top: 0px;
		left: 0px;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		padding: 20px 2%;
		width: 100%;
		transition: all 0.4s 0s ease;
		z-index: 999;
	}
	.cus-header-normal.is-scrolled{
		background-color: rgba(0, 0, 0, 0.6);
		padding: 0px 2% !important;
		transition: all 0.4s 0s ease;
	}
	.cus-header-normal.is-scrolled .header-logo img{
		position: relative;
		top: 3px;
	}
	@media screen and (max-width: 1349.98px) {
		.cus-header-normal.is-scrolled .header-logo img{top: -2px;}
	}
	@media screen and (max-width: 1149.98px) {
		.cus-header-normal.is-scrolled .header-logo img{top: -4px;}
	}
	@media screen and (max-width: 991.98px) {/* スマホ無効化 */
		.cus-header-normal.is-scrolled{
			background-color: transparent;
			padding: 0 !important;
		}
	}

	.cus-header-normal .header-logo{
		flex: 0 0 320px;/* ロゴの表示サイズに合わせる */
    white-space: nowrap;
		opacity: 1;
		transition: all 0.4s 0s ease;
	}
	.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: 2vw !important;
	}
	.cus-header-normal .header-nav-col li a{
		position: relative;
		overflow: hidden;
		color: white;
	}
	.cus-header-normal .header-nav-col li .active{
		font-weight: 700;
		color: white;
	}
	.cus-header-normal .header-nav-col li a::after{
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: white;
		z-index: -1;
		transform: translateX(-101%);
		transition: transform 0.4s ease;
	}
	.cus-header-normal .header-nav-col li a:hover::after{
		transform: translateX(0);
	}
	.cus-header-normal .header-nav-col li .active::after{
		transform: translateX(0);
	}


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

	@media screen and (max-width: 1499.98px) {/* 画面サイズでロゴサイズ調整する場合 */
		.cus-header-normal .header-logo{flex: 0 0 280px;}

		.cus-header-normal .header-nav-col li{/* リンク間隔 */
			padding-right: 1.4vw !important;
		}
		.cus-header-normal .header-nav-col li a{
			font-size: 15px;
		}
	}
	@media screen and (max-width: 1349.98px) {
		.cus-header-normal .header-logo{flex: 0 0 180px;}
	}
	@media screen and (max-width: 1149.98px) {
		.cus-header-normal .header-logo{flex: 0 0 140px;}

		.cus-header-normal .header-nav-col li{/* リンク間隔 */
			padding-right: 0.8vw !important;
		}
		.cus-header-normal .header-nav-col li a{
			font-size: 14px;
		}
	}

/* 電話番号 */
	.cus-header-phone{
		margin-right: 2vw;
		text-align: center;
	}
	.cus-header-phone .phone-dial{
		font-family: "Zalando Sans Expanded", sans-serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
		font-size: 24px;
		color: white;
		line-height: 1.4;
	}
	.cus-header-phone .phone-text{
		margin: 0;
		font-size: 14px;
		color: white;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-header-phone{
			margin-right: 1.4vw;
		}
		.cus-header-phone .phone-dial{
			font-size: 1.6vw;
		}
		.cus-header-phone .phone-text{
			font-size: 13px;
		}
	}
	@media screen and (max-width: 991.98px) {
		.cus-header-phone{
			margin-right: 0vw;
			margin-bottom: 20px;
		}
		.cus-header-phone .phone-dial{
			font-size: 3vw;
		}
		.cus-header-phone .phone-text{
			font-size: 15px;
		}

		.cus-header-normal .header-nav-col li .active{
			color: #ed8224 !important;
		}

		.cus-header-button{
			width: 100% !important;
			text-align: center;
		}
		.cus-header-button a{
			margin: 0 auto;
			width: 260px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-header-phone{
			margin-right: 0vw;
		}
		.cus-header-phone .phone-dial{
			font-size: 24px;
		}
		.cus-header-phone .phone-text{
			font-size: 15px;
		}
	}

/* スマホメニュー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: 7px;
			width: 160px !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: #3f6eaf;
			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: 5px;
			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; /* 最前面 */
		}
	}


/* スマホメニュー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(0, 64, 133, 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 18px 5px !important;
			width: 100% !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%;
			bottom: auto;
			left: auto;
			right: 20px;
			transform: translateY(-50%);
			width: 24px;
			height: 24px;
			background-color: #002861;
			display: flex;
			justify-content: center;
			align-items: center;
			border-radius: 4px;
			z-index: 1;
			transition: none;
		}
		.cus-header-normal .header-nav-col li a:hover::after,
    .cus-header-normal .header-nav-col li .active::after{
			transform: translateY(-50%);
    }

		.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 rgba(255, 255, 255, 0.4);
		}
		.cus-header-normal .dropdown-menu li:last-child{
			border-bottom: none !important;
		}
	}

@media print {
    /* --- 1. ヘッダーの追従を解除し、先頭にのみ配置 --- */
    .cus-header-normal {
        position: static !important;
        background-color: transparent !important;
        padding: 0 0 20px 0 !important;
    }
    
    /* JSでスクロールクラス(.is-scrolled)が付随していてもロゴを印刷する */
    .cus-header-normal .header-logo {
        display: block !important;
    }
    .cus-header-normal .header-logo img {
        opacity: 1 !important;
    }

    /* --- 2. スマホ特有の要素（バーガーボタン、スマホ用背景、スマホロゴ等）を非表示 --- */
    .navbar-toggler,
    .header-nav-brand,
    .header-toggler-bg::before,
    #nav-overlay {
        display: none !important;
    }

    /* --- 3. メニューをPC版と同じ横並びに強制展開 --- */
    /* Bootstrapの折りたたみ(.collapse)を強制解除 */
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        transform: none !important;
        background-color: transparent !important;
        height: auto !important;
        width: auto !important;
        padding: 0 !important;
    }

    /* リンクのコンテナを横並びに */
    .cus-header-normal .header-nav-col {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        opacity: 1 !important;
        margin: 0 !important;
    }

    /* 各リンクの装飾調整（白背景での印刷用に文字色を黒系に） */
    .cus-header-normal .header-nav-col li {
        list-style: none !important;
        border: none !important;
        padding-right: 10px !important;
        margin-bottom: 0 !important;
    }
    .cus-header-normal .header-nav-col li a {
        padding: 0 !important;
        color: #000 !important;
        font-size: 12px !important;
    }
    .cus-header-normal .header-nav-col li a::after {
        display: none !important; /* スマホ用の矢印アイコンや下線アニメーションを消す */
    }

    /* 電話番号エリアの文字色を黒に */
    .cus-header-phone {
        margin-bottom: 0 !important;
    }
    .cus-header-phone .phone-dial,
    .cus-header-phone .phone-text {
        color: #000 !important;
    }

   .cus-header-button { display: none !important; }
}