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

	@media screen and (max-width: 1199.98px) {}
	@media (max-width: 991.98px) {}
	@media print {}
	@media screen and (max-width: 767px) {}
 
	xxl-1200over(min-1200)
	xl-1200(max-1199) 左右余白15pxを含む（1170）
	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;
		background-color: rgba(255, 255, 255, 0.8);
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		padding: 10px 2%;
		width: 100%;
		z-index: 999;
	}
	.cus-header-normal .header-logo{
		flex: 0 0 270px;/* ロゴの表示サイズに合わせる */
    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;
		text-align: center;
	}
	.cus-header-normal .header-nav-col li a:hover,
	.cus-header-normal .header-nav-col li .active{
		font-weight: 500;
	}

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

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

/* 追加ボタン */
	.cus-header-right{
		display: flex;
		align-items: center;
	}

	.cus-header-contact{margin: 0 20px 0 0;}
	.cus-header-contact a{
		overflow: hidden;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #0d2962;
		border-radius: 100px;
		padding: 12px 30px;
		color: white;
		text-decoration: none;
		z-index: 1;
	}
	.cus-header-contact a span{
		display: inline-block;
		transition: none;
	}
	.cus-header-contact a:hover span{
		animation: textSlideUpIn 0.5s ease-in-out;
	}
	@keyframes textSlideUpIn {
		0% {
			transform: translateY(0);
			opacity: 1;
		}
		49% {
			transform: translateY(150%);
			opacity: 0;
		}
		50% {
			transform: translateY(-150%);
			opacity: 0;
		}
		100% {
			transform: translateY(0);
			opacity: 1;
		}
	}

	.cus-header-phone{
		margin: 0;
		font-family: "Forum", serif;
		font-weight: 400;
		font-style: normal;
	}
	.cus-header-phone .text01{font-size: 18px;}
	.cus-header-phone .text02{font-size: 24px;}
	@media screen and (max-width: 1629px) {
		.cus-header-normal .header-logo{
			flex: 0 0 15vw;/* ロゴの表示サイズに合わせる */
			white-space: nowrap;
		}

		.cus-header-normal .header-nav-col li{/* リンク間隔 */
			padding-right: 10px !important;
			font-size: 15px;
			line-height: 1.4;
		}
		.cus-header-normal .header-nav-col li .col-no{
			display: none;
		}
		.cus-header-normal .header-nav-col li .col-top{
			position: relative;
			top: 10px;
		}
		.cus-header-normal .header-nav-col li .col-2{
			display: block;
			width: 100%;
		}

		.cus-header-right{
			flex-direction: column;
		}
	
		.cus-header-contact{margin: 0 20px 0 0;}
		.cus-header-contact a{
			padding: 10px 20px;
			font-size: 15px;
		}

		.cus-header-phone .text01{font-size: 16px;}
		.cus-header-phone .text02{font-size: 20px;}
	}
	@media screen and (min-width: 992px) {/* PCサイズ時、スクロールで表示 */
		.cus-header-normal{
			opacity: 0;
			visibility: hidden;
			transform: translateY(-20px); /* 少し上から出てくる演出用（任意） */
			transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
		}.cus-header-normal.shown{
			opacity: 1 !important;
			visibility: visible !important;
			transform: translateY(0) !important;
		}
		.cus-header-normal.is-shown{
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
		}
	}


/* スマホメニューCSS 外観 */
	@media screen and (max-width: 991.98px) {/*スマホメニューに切り替え */
		.cus-header-normal{/* スマホサイズ時、最初から表示 */
			opacity: 1 !important;
			visibility: visible !important;
			transform: none !important;
		}

		.cus-header-normal .header-nav-col li .col-no{
			display: inline;
		}
		.cus-header-normal .header-nav-col li .col-top{
			position: static;
		}
		.cus-header-normal .header-nav-col li .col-2{
			display: inline;
		}
		
		.cus-header-contact{margin: 0 0 20px 0;}
		.cus-header-contact a{
			border: white solid 1px;
			padding: 10px 20px;
			font-size: 16px;
		}

		.cus-header-phone{
			color: white !important;
		}
		.cus-header-phone .text01{font-size: 18px;color: white !important;}
		.cus-header-phone .text02{font-size: 26px;color: white !important;}

		.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: 8px;
			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: #004086;
			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; /* 最前面 */
		}
	}

/* スマホメニュー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(13, 41, 98, 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;
			padding: 0 !important;
			margin: 0 !important;
		}
		.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;
			background-color: #69ccf3;
			display: flex;
			justify-content: center;
			align-items: center;
			border-radius: 4px;
		}
		.cus-header-normal .header-nav-col li .active{
			background-color: white;
			color: #0d2962 !important;
		}

		.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 {/* 印刷用 */
		.cus-header-normal{
			position: static !important;
			opacity: 1 !important;
			visibility: visible !important;
			transform: none !important;
			display: flex !important;
			background-color: #fff !important;
			box-shadow: none !important;
			padding: 10px 0 !important;
		}
		body {
			padding-top: 0 !important;
		}

		.cus-header-normal .header-logo{
			display: block !important;
			flex: 0 0 100px !important;
		}
		.header-nav-brand{
			display: none !important;
		}

		.navbar-toggler,
		.header-toggler-bg::before{
			display: none !important;
		}

		.navbar-collapse{
			display: flex !important;
			position: static !important;
			height: auto !important;
			width: auto !important;
			background-color: transparent !important;
			transform: none !important;
			opacity: 1 !important;
			visibility: visible !important;
			padding: 0 !important;
			overflow: visible !important;
		}

		.cus-header-normal .header-nav-col{
			display: flex !important;
			flex-direction: row !important;
			opacity: 1 !important;
			width: auto !important;
			margin: 0 !important;
			align-items: center !important;
		}
		.cus-header-normal .header-nav-col li{
			border: none !important;
			padding-right: 0px !important;
		}
		.cus-header-normal .header-nav-col li a{
			color: #000 !important;
			padding: 0 !important;
			font-size: 12px !important;
		}
		
		.cus-header-normal .header-nav-col li a::after{
			display: none !important;
		}

		.cus-header-right{
			display: flex !important;
			flex-direction: row !important;
			align-items: center !important;
		}
		.cus-header-phone{
			color: #000 !important;
		}
		.cus-header-phone .text01, 
		.cus-header-phone .text02{
			color: #000 !important;
		}
		.cus-header-phone .text01{font-size: 14px;}
		.cus-header-phone .text02{font-size: 18px;}
		
		.cus-header-contact a{
			border: 1px solid #000 !important;
			color: #000 !important;
			background-color: transparent !important;
			padding: 5px 15px !important;
		}
	}