@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)
 
	-------------------

	初期設定（変更不要）
	-ドロップダウンメニュー内設定

	ヘッダーレイアウト（PCのベースレイアウト・ホバー動作）
	-追加ボタン（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;
		}
	}


/* ヘッダーレイアウト（PCのベースレイアウト・ホバー動作） */
	.cus-header-normal{/* 追従型 */
		position: fixed;
		top: 0px;
		left : 0px;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		background: linear-gradient(to right, rgba(108, 212, 250, 0.6), rgba(57, 153, 218, 0.6));
    backdrop-filter: blur(12px);/* すりガラスのボカシ具合 */
    -webkit-backdrop-filter: blur(12px);/* Safari用保守 */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05); /* 軽い陰影で立体感をプラス */
		padding: 10px 1%;
		width: 100%;
		z-index: 999;
	}
	.cus-header-normal .header-logo{/* ロゴの表示サイズ */
		display: block;
		flex: 0 0 411px;
		margin: 0;
    white-space: nowrap;
	}
	.cus-header-normal .header-nav .header-nav-brand{/* スマホ用ロゴは今は非表示 */
		display: none;
	}

	.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{/* リンク間隔（0でも標準間隔あり） */
		padding-right: 1vw !important;
	}
	.cus-header-normal .header-nav-col li:last-child{
		padding-right: 0 !important;
	}

	@media screen and (min-width: 992px) {/* ホバー動作 PCサイズのみ反映 */
		.cus-header-normal .header-nav-col li a{
			position: relative;
			font-size: 18px;
			color: initial;
			line-height: 1.6;
			transition: all 0.5s 0s ease;
			text-decoration: none;
		}
		.cus-header-normal .header-nav-col li a .en{
			position: relative;
			display: block;
			padding-left: 18px;
			font-size: 12px;
			color: white;
			text-transform: uppercase;
			text-align: left;
		}
		.cus-header-normal .header-nav-col li a .en::before{
			content: '';
			position: absolute;
			top: 50%;
			left: 0px;
			background-color: white;
			width: 10px;
			height: 1px;
		}
		.cus-header-normal .header-nav-col li a::after{
			content: '';
			position: absolute;
			bottom: 0px;
			left: 0;
			width: 0%; /* 初期状態は幅0 */
			height: 1px; /* 線の太さ */
			background-color: white; /* 指定の色 */
			transition: width 0.4s ease; /* 伸びるスピード */
		}
		.cus-header-normal .header-nav-col li a:hover::after{
			width: 100%;
		}
		.cus-header-normal .header-nav-col li .active::after{
			width: 100%;
		}
	}

	.cus-header-ic-bt{margin: 0;}/* 追加ボタン（svgアイコン付き） */
	.cus-header-ic-bt.bt-margin-right{margin-right: 10px;}/* 追加ボタン余白 */
	.cus-header-ic-bt a{
		overflow: hidden;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 6px;
		padding: 6px 12px;
		color: white;
		text-decoration: none;
		z-index: 1;
	}
	.cus-header-ic-bt a::before{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		width: 0;
		transition: width 0.3s ease;
		z-index: -1;
	}
	.cus-header-ic-bt a:hover::before {width: 100%;}
	
	.cus-header-ic-bt.bt-blue a{background-color: #30b7a8;}/* 追加ボタン色指定 */
	.cus-header-ic-bt.bt-red a{background-color: #d04525;}
	.cus-header-ic-bt.bt-blue a::before{background-color: #189284;}
	.cus-header-ic-bt.bt-red a::before{background-color: #9e2d13;}
	
	.cus-header-ic-bt a .ic{
		position: relative;
		align-items: center;
		padding-left: 6px;
		line-height: 1;
	}
	.cus-header-ic-bt a .ic img{
		width: 1.2em;
		height: auto;
		vertical-align: middle;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-header-normal .header-logo{/* ロゴの表示サイズ */
			flex: 0 0 14vw;
		}
	
		.cus-header-normal .header-nav-col li{/* リンク間隔（0でも標準間隔あり） */
			padding-right: 0px !important;
		}
	}
	@media (max-width: 991.98px) {/* バーガーメニュー時 */
		.cus-header-ic-bt{margin: 0 0 10px 0;}
		.cus-header-ic-bt.bt-margin-right{margin-right: 0px;}
		.cus-header-ic-bt a{
			padding: 14px 10px;
			text-align: center;
		}
	}


/* バーガーメニューCSS 外観 */
	@media screen and (max-width: 991.98px) {/* 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;
			position: relative;
			padding: 5px;
			z-index: 1005;
		}
		.cus-header-normal .header-nav .header-nav-brand img{/* バーガーメニュー表示ロゴのサイズ・位置 */
			position: relative;
			top: -2px;
			width: 240px !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-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{
			overflow: hidden;
			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 .en{
			display: none;
		}
		.cus-header-normal .header-nav-col li a::after{
			content: '';
			position: absolute;
			top: 50%;
			right: 20px;
			transform: translateY(-50%);
			width: 24px;
			height: 24px;
			background-color: #0478c6;
			border-radius: 4px;
			z-index: 1;
		}
		.cus-header-normal .header-nav-col li a::before{
			content: '\f061';
			font-family: "Font Awesome 6 Free";
			font-weight: 900;
			font-size: 10px;
			color: white;
			position: absolute;
			top: 50%;
			right: 27px; 
			transform: translateY(-50%);
			z-index: 2;
			transition: all 0.3s ease;
		}
		.cus-header-normal .header-nav-col li a:hover::before{
			animation: arrowLoopSP 0.4s forwards;
		}
		.cus-header-normal .header-nav-col li .dropdown-toggle::after,
		.cus-header-normal .header-nav-col li .dropdown-toggle::before{
			display: none !important;
		}
		.cus-header-normal .header-nav-col li .active{
			font-weight: 600;
		}
		.cus-header-normal .header-nav-col li .active::after{
			background-color: #ffffff;
		}
		.cus-header-normal .header-nav-col li .active::before{
			color: #0478c6;
		}
		.cus-header-normal .header-nav-col li .active:hover::before{
			animation: none;
		}
		@keyframes arrowLoopSP {
			0% {
				transform: translateY(-50%) translateX(0);
				opacity: 1;
			}
			49% {
				transform: translateY(-50%) translateX(20px);
				opacity: 0;
			}
			50% {
				transform: translateY(-50%) translateX(-20px);
				opacity: 0;
			}
			100% {
				transform: translateY(-50%) translateX(0);
				opacity: 1;
			}
		}

		.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 {
		.navbar-toggler,
		#nav-overlay{
			display: none !important;
		}
		.navbar-collapse{
			display: block !important;
		}

		.cus-header-normal {
			position: relative !important; /* 固定を解除 */
			display: flex !important;
			background-color: white !important;
		}

		.cus-header-normal .header-logo{/* ロゴの表示サイズ */
			flex: 0 0 100px;
		}

		.cus-header-normal .header-nav{
			display: flex !important;
			justify-content: flex-end !important;
		}
		.cus-header-normal .header-nav-col{
			display: flex !important;
			flex-direction: row !important;
			opacity: 1 !important;
			transform: none !important;
		}
		.cus-header-normal .header-nav-col li{
			border: none !important;
		}
		.cus-header-normal .header-nav-col li a{
			display: block !important;
			padding: 10px !important;
			font-size: 12px !important;
			color: black !important;
		}
	}


	/* フッターレイアウト */
	.cus-footer-contact{
		background-image: url("../img/site/contact-bg.jpg");
		background-size: cover;
		background-position: center center;
		padding: 100px 0;
	}

	.cus-footer-contact .cus-title02.title02-footer,
	.cus-footer-contact .cus-title02.title02-footer .en span{
		color: white !important;
	}
	.cus-footer-contact .cus-title02.title02-footer .main .in::before,
	.cus-footer-contact .cus-title02.title02-footer .main .in::after{
		background-color: white;
	}

	.cus-footer-contact-col{
		display: flex;
		gap: 60px;
		background-color: rgba(255, 255, 255, 0.8);
		padding: 60px;
	}
	.cus-footer-contact-col .col-phone,
	.cus-footer-contact-col .col-mail{
		width: 50%;
	}

	.cus-footer-contact-col .col-phone .title,
	.cus-footer-contact-col .col-mail .title{
		position: relative;
		display: inline-block;
		padding: 10px 60px 20px 60px;
		font-size: 32px;
		font-weight: 600;
	}
	.cus-footer-contact-col .col-phone .title::before,
	.cus-footer-contact-col .col-mail .title::before{
		content: '';
		position: absolute;
		top: 0px;
		left: 10px;
		background-color: #0478c6;
		width: 1px;
		height: 100%;
	}
	.cus-footer-contact-col .col-phone .title::after,
	.cus-footer-contact-col .col-mail .title::after{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0px;
		background-color: #0478c6;
		width: 100%;
		height: 1px;
	}

	.cus-footer-contact-col .col-phone .dial,
	.cus-footer-contact-col .col-mail .mail{
		display: flex;
		align-items: center;
		gap: 20px;
	}
	.cus-footer-contact-col .col-phone .dial .ic,
	.cus-footer-contact-col .col-mail .mail .ic{
		width: 80px;
	}
	.cus-footer-contact-col .col-phone .dial .ic .target-icon,
	.cus-footer-contact-col .col-mail .mail .ic .target-icon{
		fill: #005791;
	}
	.cus-footer-contact-col .col-phone .phone-dial{
		font-family: 'Arial Black', sans-serif;
		font-weight: 900 !important;
		font-style: normal;
		font-size: 62px;
		letter-spacing: 0.08em;
		line-height: 1.4;
	}
	.cus-footer-contact-col .col-phone .text02{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 10px;
	}
	.cus-footer-contact-col .col-mail .mail{
		padding-top: 16px;
	}
	.cus-footer-contact-col .col-mail .main a{
		position: relative;
		font-family: 'Arial Black', sans-serif;
		font-weight: 900 !important;
		font-style: normal;
		font-size: 54px;
		color: initial;
		letter-spacing: 0.08em;
		line-height: 1.4;
		text-decoration: none;
	}
	.cus-footer-contact-col .col-mail .main a::before{
		content: '';
		position: absolute;
		bottom: 0px;
		right: -10%;
		background-image: url("../img/site/contact-mail-arrow.png");
		background-repeat: no-repeat;
		background-position: bottom right;
		width: 110%;
		height: 100%;
		transition: all 0.5s 0s ease;
	}
	.cus-footer-contact-col .col-mail .main a:hover::before{
		right: -20%;
		width: 120%;
		transition: all 0.5s 0s ease;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-footer-contact{
			padding: 80px 0;
		}

		.cus-footer-contact-col{
			gap: 40px;
			padding: 40px;
		}
	
		.cus-footer-contact-col .col-phone .title,
		.cus-footer-contact-col .col-mail .title{
			padding: 8px 50px 16px 40px;
			font-size: 26px;
		}

		.cus-footer-contact-col .col-phone .dial,
		.cus-footer-contact-col .col-mail .mail{
			gap: 18px;
		}
		.cus-footer-contact-col .col-phone .dial .ic,
		.cus-footer-contact-col .col-mail .mail .ic{
			width: 60px;
		}
		.cus-footer-contact-col .col-phone .dial .ic svg,
		.cus-footer-contact-col .col-mail .mail .ic svg{
			width: 60px;
		}
		.cus-footer-contact-col .col-phone .phone-dial{
			font-size: 4vw;
		}
		.cus-footer-contact-col .col-phone .text02{
			padding: 0;
			font-size: 14px;
		}
		.cus-footer-contact-col .col-mail .mail{
			padding-top: 0px;
		}
		.cus-footer-contact-col .col-mail .main a{
			font-size: 3.6vw;
		}
	}
	@media (max-width: 991.98px) {
		.cus-footer-contact{
			padding: 60px 0;
		}

		.cus-footer-contact-col{
			gap: 20px;
			padding: 20px;
		}
	
		.cus-footer-contact-col .col-phone .title,
		.cus-footer-contact-col .col-mail .title{
			padding: 6px 40px 14px 40px;
			font-size: 22px;
		}

		.cus-footer-contact-col .col-phone .dial,
		.cus-footer-contact-col .col-mail .mail{
			gap: 15px;
		}
		.cus-footer-contact-col .col-phone .dial .ic,
		.cus-footer-contact-col .col-mail .mail .ic{
			width: 50px;
		}
		.cus-footer-contact-col .col-phone .dial .ic svg,
		.cus-footer-contact-col .col-mail .mail .ic svg{
			width: 50px;
		}
		.cus-footer-contact-col .col-phone .phone-dial{
			font-size: 4vw;
		}
		.cus-footer-contact-col .col-phone .text02{
			display: block;
			padding: 0;
			font-size: 14px;
		}
		.cus-footer-contact-col .col-mail .mail{
			padding-top: 0px;
		}
		.cus-footer-contact-col .col-mail .main a{
			font-size: 3.6vw;
		}
		.cus-footer-contact-col .col-mail .main a::before{
			background-size: auto 14px;
		}
	}
	@media print {
		.cus-footer-contact{
			padding: 40px 0;
		}

		.cus-footer-contact-col{
			gap: 15px;
			padding: 15px;
		}
	
		.cus-footer-contact-col .col-phone .title,
		.cus-footer-contact-col .col-mail .title{
			padding: 6px 30px 14px 30px;
			font-size: 20px;
		}

		.cus-footer-contact-col .col-phone .dial,
		.cus-footer-contact-col .col-mail .mail{
			gap: 15px;
		}
		.cus-footer-contact-col .col-phone .dial .ic,
		.cus-footer-contact-col .col-mail .mail .ic{
			width: 50px;
		}
		.cus-footer-contact-col .col-phone .dial .ic svg,
		.cus-footer-contact-col .col-mail .mail .ic svg{
			width: 50px;
		}
		.cus-footer-contact-col .col-phone .phone-dial{
			font-size: 4vw;
		}
		.cus-footer-contact-col .col-phone .text02{
			display: block;
			padding: 0;
			font-size: 14px;
		}
		.cus-footer-contact-col .col-mail .mail{
			padding-top: 0px;
		}
		.cus-footer-contact-col .col-mail .main a{
			font-size: 3.6vw;
		}
		.cus-footer-contact-col .col-mail .main a::before{
			background-size: auto 14px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-footer-contact{
			padding: 40px 0;
		}

		.cus-footer-contact-col{
			display: block;
			gap: 0px;
			padding: 15px;
		}
		.cus-footer-contact-col .col-phone,
		.cus-footer-contact-col .col-mail{
			width: auto;
			text-align: center;
		}
		.cus-footer-contact-col .col-phone{
			margin-bottom: 20px;
		}
	
		.cus-footer-contact-col .col-phone .title,
		.cus-footer-contact-col .col-mail .title{
			padding: 6px 15px 14px 20px;
			margin: 0 0 10px 0;
			font-size: 18px;
		}

		.cus-footer-contact-col .col-phone .dial,
		.cus-footer-contact-col .col-mail .mail{
			justify-content: center;
			gap: 10px;
		}
		.cus-footer-contact-col .col-phone .dial .ic,
		.cus-footer-contact-col .col-mail .mail .ic{
			width: 42px;
		}
		.cus-footer-contact-col .col-phone .dial .ic svg,
		.cus-footer-contact-col .col-mail .mail .ic svg{
			width: 42px;
		}
		.cus-footer-contact-col .col-phone .phone-dial{
			font-size: 24px;
		}
		.cus-footer-contact-col .col-phone .text02{
			display: block;
			padding: 0;
			font-size: 14px;
		}
		.cus-footer-contact-col .col-mail .mail{
			padding-top: 0px;
		}
		.cus-footer-contact-col .col-mail .main a{
			font-size: 20px;
		}
		.cus-footer-contact-col .col-mail .main a::before{
			background-size: auto 14px;
		}
	}

/* footer */
	.cus-footer{
		background-color: #505050;
		padding: 100px 0 30px 0;
	}

	.cus-footer-col{
		display: flex;
		gap: 30px;
		margin-bottom: 60px;
		color: white;
	}
	.cus-footer-col .col-con01{
		width: 45%;
	}
	.cus-footer-col .col-con02{
		display: flex;
		flex-direction: column;
    justify-content: center; 
		align-items: center;
		background-image: url("../img/site/f-bg01");
		background-size: cover;
		background-position: center center;
		width: 30%;
	}
	.cus-footer-col .col-con03{
		flex: 1;
	}
	
	.cus-footer-col .col-con02 .number{
		display: flex;
		justify-content: center;
		align-items: baseline;
		text-align: center;
	}
	.cus-footer-col .col-con02 .number .min{
		width: 80px;
		font-size: 24px;
	}
	.cus-footer-col .col-con02 .number .main{
		font-size: 42px;
	}
	.cus-footer-col .col-con02 .cus-button{
		margin: 0 0 0 100px;
	}

	.cus-footer-col .col-con03 .text01{
		font-family: 'Arial Black', sans-serif;
		font-weight: 900 !important;
		font-style: normal;
		border-bottom: white solid 1px;
		padding-bottom: 8px;
		margin-bottom: 0px;
	}
	.cus-footer-col .col-con03 .text02 li{
		position: relative;
		padding-left: 20px;
	}
	.cus-footer-col .col-con03 .text02 li::before{
		content: '';
		position: absolute;
		top: 50%;
		left: 0px;
		background-color: white;
		width: 10px;
		height: 1px;
	}
	.cus-footer-col .col-con03 .text02 li a{
		display: block;
		border-bottom: #b9b9b9 solid 1px;
		padding: 12px 0 12px 2px;
		color: white;
		text-decoration: none;
	}
	.cus-footer-col .col-con03 .text02 li a:hover{
		padding-left: 10px;
	}

	footer{
		display: block;
		text-align: center;
	}
	footer small{
		font-size: 14px;
		color: white;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-footer{
			padding: 80px 0 20px 0;
		}
	
		.cus-footer-col{
			gap: 25px;
			margin-bottom: 50px;
		}
		.cus-footer-col .col-con01{
			width: 40%;
		}
		.cus-footer-col .col-con02{
			width: 35%;
		}
		.cus-footer-col .col-con03{
			flex: 1;
		}

		.cus-footer-col .col-con02 .number .min{
			width: 60px;
			font-size: 22px;
		}
		.cus-footer-col .col-con02 .number .main{
			font-size: 3.2vw;
		}
		.cus-footer-col .col-con02 .cus-button{
			margin: 0 2vw 0 auto;
		}

		.cus-footer-col .col-con03 .text02 li{
			padding-left: 20px;
		}
		.cus-footer-col .col-con03 .text02 li::before{
			width: 10px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-footer{
			padding: 60px 0 20px 0;
		}
	
		.cus-footer-col{
			gap: 15px;
			margin-bottom: 40px;
		}
		.cus-footer-col .col-con01{
			width: 35%;
		}
		.cus-footer-col .col-con02{
			width: 40%;
		}
		.cus-footer-col .col-con03{
			flex: 1;
		}

		.cus-footer-col .col-con02 .number .min{
			width: 50px;
			font-size: 18px;
		}
		.cus-footer-col .col-con02 .number .main{
			font-size: 3.2vw;
		}
		.cus-footer-col .col-con02 .cus-button{
			margin: 0 auto;
		}

		.cus-footer-col .col-con03 .text02 li{
			padding-left: 16px;
		}
		.cus-footer-col .col-con03 .text02 li::before{
			width: 8px;
		}
	}
	@media print {
		.cus-footer{
			padding: 40px 0 20px 0;
		}
	
		.cus-footer-col{
			gap: 10px;
			margin-bottom: 40px;
		}
		.cus-footer-col .col-con01{
			width: 35%;
		}
		.cus-footer-col .col-con02{
			width: 40%;
		}
		.cus-footer-col .col-con03{
			flex: 1;
		}

		.cus-footer-col .col-con02 .number .min{
			width: 35px;
			font-size: 14px;
		}
		.cus-footer-col .col-con02 .number .main{
			font-size: 2.8vw;
		}
		.cus-footer-col .col-con02 .cus-button{
			margin: 0 auto;
		}

		.cus-footer-col .col-con03 .text02 li{
			padding-left: 16px;
		}
		.cus-footer-col .col-con03 .text02 li::before{
			width: 8px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-footer{
			padding: 40px 0 20px 0;
		}
	
		.cus-footer-col{
			display: block;
			gap: 0px;
			margin-bottom: 20px;
		}
		.cus-footer-col .col-con01{
			margin-bottom: 20px;
			width: auto;
		}
		.cus-footer-col .col-con02{
			padding: 40px 0;
			margin-bottom: 20px;
			width: auto;
		}
		
		.cus-footer-col .col-con02 .number .min{
			width: 50px;
			font-size: 18px;
		}
		.cus-footer-col .col-con02 .number .main{
			font-size: 28px;
		}
		.cus-footer-col .col-con02 .cus-button{
			margin: 0 auto;
		}

		.cus-footer-col .col-con03 .text02 li{
			padding-left: 16px;
		}
		.cus-footer-col .col-con03 .text02 li::before{
			width: 8px;
		}
	}










