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

	モーダルウインドウに関わるCSS
	テキストアニメーション（一文字ずつ表示）に関わるCSS
	画像ホバー時アクション
	テーブル装飾
	お問い合わせページ
	お問い合わせページバリデーション
	GoogleMap埋め込み
	YouTube埋め込み
	EZGATE タグコレボタン設定

*/

/* 下層ページ見出し */
	.cus-promo{
		position: relative;
		width: 100vw;
		margin-left: calc(50% - 50vw);
	}

	.cus-promo .promo-text{
		position: absolute;
		top: 170px;
		left: 50%;
		margin-left: -735px;
		z-index: 3;
	}
	.cus-promo .promo-text .text-arrow{
		position: relative;
		display: flex;
		flex-direction: column-reverse;
		padding: 10px 140px 15px 0;
		z-index: 1;
	}
	.cus-promo .promo-text .text-arrow::before{
		content: '';
		position: absolute;
		top: 0px;
		left: 0px;
		background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    clip-path: polygon(
        0% 0%, 
        calc(100% - 80px) 0%, 
        100% 50%, 
        calc(100% - 80px) 100%, 
        0% 100%
    );
		width: 100%;
		height: 100%;
		z-index: -1;
	}
	.cus-promo .promo-text .text-arrow .en{
		font-family: 'Arial Black', sans-serif;
		font-weight: 900 !important;
		font-style: normal;
		font-size: 120px;
		line-height: 1.2;
		margin-bottom: 10px;
		white-space: nowrap;
	}
	.cus-promo .promo-text .text-arrow .main{
		position: relative;
		font-size: 36px;
		font-weight: 600;
		letter-spacing: 0.08em;
		z-index: 10;
	}
	.cus-promo .promo-text .en span{
		display: inline-block;
		opacity: 0;
		transform: translateY(-5px);
		background: linear-gradient(to right, #33c4f8, #0478c6);
		background-size: calc(var(--char-total) * 100%) 100%;
		background-position: calc(var(--char-index) * 100% / (var(--char-total) - 1)) 0;
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent; 
		animation: promoFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
		animation-play-state: paused;
	}
	.cus-promo .promo-text .en.is-active span{
		animation-play-state: running;
	}
	.cus-promo .promo-text .en span {
		animation-delay: calc(var(--char-index) * 0.06s);
	}
	@keyframes promoFadeUp {
		0% {
			opacity: 0;
			transform: translateX(-5px);
		}
		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}

	.cus-promo .promo-img{
		overflow: hidden;
		margin-left: calc(50vw - 600px);
		margin-bottom: 0;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 200px 100%);
	}
	.cus-promo .promo-img img{
		width: calc(100vw + 600px);
		height: 460px;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}
	@media screen and (max-width: 1499.98px) {
		.cus-promo{
			margin-left: calc(10%);
		}
	
		.cus-promo .promo-text{
			top: 150px;
			left: 2%;
			margin-left: -10%;
		}
		.cus-promo .promo-text .text-arrow{
			padding: 10px 110px 15px 0;
		}
		.cus-promo .promo-text .text-arrow .en{
			font-size: 100px;
		}
		.cus-promo .promo-text .text-arrow .main{
			font-size: 32px;
		}
	
		.cus-promo .promo-img{
			margin-left: calc(10%);
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 200px 100%);
		}
		.cus-promo .promo-img img{
			width: calc(100%);
			height: 400px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-promo{
			margin-left: calc(4%);
			margin-top: 65px;
		}
	
		.cus-promo .promo-text{
			top: 100px;
			left: 2%;
			margin-left: -4%;
		}
		.cus-promo .promo-text .text-arrow{
			padding: 6px 90px 10px 0;
		}
		.cus-promo .promo-text .text-arrow .en{
			font-size: 74px;
		}
		.cus-promo .promo-text .text-arrow .main{
			font-size: 26px;
		}
	
		.cus-promo .promo-img{
			margin-left: calc(4%);
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 160px 100%);
		}
		.cus-promo .promo-img img{
			width: calc(100%);
			height: 340px;
		}
	}
	@media print {
		.cus-promo{
			margin-left: calc(4%);
			margin-top: 65px;
		}
	
		.cus-promo .promo-text{
			top: 80px;
			left: 2%;
			margin-left: -4%;
		}
		.cus-promo .promo-text .text-arrow{
			padding: 6px 90px 10px 0;
		}
		.cus-promo .promo-text .text-arrow .en{
			font-size: 62px;
		}
		.cus-promo .promo-text .text-arrow .main{
			font-size: 22px;
		}
	
		.cus-promo .promo-img{
			margin-left: calc(4%);
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 120px 100%);
		}
		.cus-promo .promo-img img{
			width: calc(100%);
			height: 280px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-promo{
			margin-left: calc(0%);
			margin-top: 65px;
		}
	
		.cus-promo .promo-text{
			top: 70px;
			left: 2%;
			margin-left: 0%;
		}
		.cus-promo .promo-text .text-arrow{
			padding: 6px 40px 10px 0;
		}
		.cus-promo .promo-text .text-arrow::before{
			clip-path: polygon(
					0% 0%, 
					calc(100% - 40px) 0%, 
					100% 50%, 
					calc(100% - 40px) 100%, 
					0% 100%
			);
		}
		.cus-promo .promo-text .text-arrow .en{
			font-size: 42px;
		}
		.cus-promo .promo-text .text-arrow .main{
			font-size: 20px;
		}
	
		.cus-promo .promo-img{
			margin-left: calc(0%);
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100px 100%);
		}
		.cus-promo .promo-img img{
			width: calc(100%);
			height: 230px;
		}
	}



/* タイトル */
	.cus-title01{
		display: flex;
		flex-direction: column-reverse;
	}
	.cus-title01 .en{
		background: linear-gradient(to right, #33c4f8, #0478c6);
		font-family: 'Arial Black', sans-serif;
		font-weight: 900 !important;
		font-style: normal;
		font-size: 120px;
		line-height: 1.2;
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		transition: all 0.5s 0s ease;
	}
	.cus-title01.title01-min .en{
		font-size: 90px;
	}
	.cus-title01 .main{
		position: relative;
		padding-left: 64px;
		font-size: 24px;
		font-weight: 600;
		letter-spacing: 0.08em;
		transition: all 0.5s 0s ease;
	}
	.cus-title01 .main::before{
		content: '';
		position: absolute;
		top: -55%;
		left: 30px;
		background-color: #077cc9;
		margin: 0;
		width: 2px;
		height: 200%;
		transform: rotate(45deg);
	}
	@media screen and (max-width: 1820px) {
		.cus-title01.title01-min .en{
			font-size: 80px;
		}
	}
	@media screen and (max-width: 1680px) {
		.cus-title01.title01-min .en{
			font-size: 4.6vw;
		}
	}
	@media screen and (max-width: 1499.98px) {
		.cus-title01 .en{
			font-size: 8vw;
		}
		.cus-title01.title01-min .en{
			font-size: 40px;
		}
		.cus-title01 .main{
			font-size: 22px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-title01 .en{
			font-size: 8.4vw;
		}
		.cus-title01.title01-min .en{
			font-size: 34px;
		}
		.cus-title01 .main{
			font-size: 20px;
		}
		.cus-title01.title01-min .main{
			font-size: 20px;
		}
	}
	@media print {
		.cus-title01 .en{
			font-size: 8vw;
		}
		.cus-title01.title01-min .en{
			font-size: 26px;
		}
		.cus-title01 .main{
			font-size: 18px;
		}
		.cus-title01.title01-min .main{
			font-size: 16px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-title01 .en{
			font-size: 32px;
		}
		.cus-title01.title01-min .en{
			font-size: 32px;
		}
		.cus-title01 .main{
			font-size: 18px;
		}
		.cus-title01.title01-min .main{
			font-size: 18px;
		}
	}

	.cus-title02{
		display: flex;
		flex-direction: column-reverse;
		text-align: center;
	}
	.cus-title02 .en{
		background: linear-gradient(to right, #33c4f8, #0478c6);
		font-family: 'Arial Black', sans-serif;
		font-weight: 900 !important;
		font-style: normal;
		font-size: 120px;
		line-height: 1.2;
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
	.cus-title02 .main{
		font-size: 24px;
		font-weight: 600;
		letter-spacing: 0.08em;
	}
	.cus-title02 .main .in{
		position: relative;
		display: inline-block;
	}
	.cus-title02 .main .in::before{
		content: '';
		position: absolute;
		top: 50%;
		left: -42px;
		background-color: #077cc9;
		margin-top: -3px;
		width: 26px;
		height: 2px;
	}
	.cus-title02 .main .in::after{
		content: '';
		position: absolute;
		top: 50%;
		right: -42px;
		background-color: #077cc9;
		margin-top: -3px;
		width: 26px;
		height: 2px;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-title02 .en{
			font-size: 8vw;
		}
		.cus-title02 .main{
			font-size: 22px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-title02 .en{
			font-size: 8.4vw;
		}
		.cus-title02 .main{
			font-size: 20px;
		}
	}
	@media print {
		.cus-title02 .en{
			font-size: 8vw;
		}
		.cus-title02 .main{
			font-size: 18px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-title02 .en{
			font-size: 32px;
		}
		.cus-title02 .main{
			font-size: 18px;
		}
	}

	/* .enタイトルの一文字ずつ表示アニメーション */
	.cus-title01 .en,
	.cus-title02 .en{
		display: inline-block;
	}
	.cus-title01 .en span,
	.cus-title02 .en span{
		display: inline-block;
		opacity: 0;
		transform: translateX(-15px);

		/* ★JSから受け取った変数でグラデーションを制御 */
		background: linear-gradient(to right, #33c4f8, #0478c6);
		background-size: calc(var(--char-total) * 100%) 100%;
		background-position: calc(var(--char-index) * 100% / max(1, var(--char-total) - 1)) 0;
		
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
	.cus-title01 .en.is-active span,
	.cus-title02 .en.is-active span{
		animation: titleCharFadeIn 0.5s forwards ease-out;
	}
	@keyframes titleCharFadeIn {
		0% {
			opacity: 0;
			transform: translateX(-15px);
		}
		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}
	@media print {
    .cus-title01 .en,
    .cus-title02 .en{
			background: none !important;
    }
    .cus-title01 .en span,
    .cus-title02 .en span{
			opacity: 1 !important;
			transform: none !important;
			animation: none !important;
			background: none !important;
			-webkit-background-clip: initial !important;
			background-clip: initial !important;
			color: #0478c6 !important;
			letter-spacing: 0 !important; /* ← これを足しておくとより安心です */
    }
	}

	.cus-title03{
		position: relative;
		display: inline-block;
	}
	.cus-title03::before{
		content: '';
		position: absolute;
		bottom: -20px;
		left: 0px;
		width: 100%;
		height: 110%;
		background: linear-gradient(to right, #077dc9, #32c3f7);
		margin: 0;
    clip-path: polygon( /* 要素を右向きの矢印型に切り抜く */
        0% 0%, 
        calc(100% - 20px) 0%, 
        100% 50%, 
        calc(100% - 20px) 100%, 
        0% 100%
    );
		z-index: -1;
	}
	.cus-title03 .main{
		padding: 0 40px 0 20px;
		margin: 0;
		font-size: 46px;
		letter-spacing: 0.1em;
		text-shadow: 
			white 4px 0px,  white -4px 0px,
			white 0px -4px, white 0px 4px,
			white 4px 4px , white -4px 4px,
			white 4px -4px, white -4px -4px,
			white 2px 4px,  white -2px 4px,
			white 2px -4px, white -2px -4px,
			white 4px 2px,  white -4px 2px,
			white 4px -2px, white -4px -2px;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-title03::before{
			bottom: -16px;
			height: 102%;
			clip-path: polygon( /* 要素を右向きの矢印型に切り抜く */
					0% 0%, 
					calc(100% - 20px) 0%, 
					100% 50%, 
					calc(100% - 20px) 100%, 
					0% 100%
			);
		}
		.cus-title03 .main{
			padding: 0 36px 0 16px;
			font-size: 40px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-title03::before{
			bottom: -16px;
			height: 102%;
			clip-path: polygon( /* 要素を右向きの矢印型に切り抜く */
					0% 0%, 
					calc(100% - 14px) 0%, 
					100% 50%, 
					calc(100% - 14px) 100%, 
					0% 100%
			);
		}
		.cus-title03 .main{
			padding: 0 30px 0 14px;
			font-size: 32px;
		}
	}
	@media print {
		.cus-title03::before{
			bottom: -16px;
			height: 102%;
			clip-path: polygon( /* 要素を右向きの矢印型に切り抜く */
					0% 0%, 
					calc(100% - 10px) 0%, 
					100% 50%, 
					calc(100% - 10px) 100%, 
					0% 100%
			);
		}
		.cus-title03 .main{
			padding: 0 26px 0 12px;
			font-size: 26px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-title03::before{
			bottom: -12px;
			height: 100%;
			clip-path: polygon( /* 要素を右向きの矢印型に切り抜く */
					0% 0%, 
					calc(100% - 10px) 0%, 
					100% 50%, 
					calc(100% - 10px) 100%, 
					0% 100%
			);
		}
		.cus-title03 .main{
			padding: 0 26px 0 12px;
			font-size: 26px;
		}
	}


/* ボタン */
	.cus-button{
		overflow: hidden;
    filter: 
    	drop-shadow(1px 0px 0px #0478c6)
    	drop-shadow(-1px 0px 0px #0478c6)
    	drop-shadow(0px 1px 0px #0478c6)
    	drop-shadow(0px -1px 0px #0478c6);
	}
	.cus-button.button-280{
		width: 280px;
	}
	.cus-button a{
		position: relative;
		overflow: hidden;
		display: block;
		background-color: rgba(255, 255, 255, 0.9);
    clip-path: polygon(
    	0% 0%, 
    	calc(100% - 15px) 0%, 
    	100% 50%, 
    	calc(100% - 15px) 100%, 
    	0% 100%, 
    	15px 50%
    );
		padding: 14px 0;
		padding-left: 60px;
		font-family: 'Arial Black', sans-serif;
		font-weight: 900 !important;
		font-style: normal;
		text-decoration: none;
	}
	.cus-button a .text{
		background: linear-gradient(to right, #33c4f8, #0478c6);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
	.cus-button a .arrow{
		position: absolute;
		top: 50%;
		right: 35px;
		background-image: url("../img/site/bt-arrow.png");
		background-position: right bottom;
		background-repeat: no-repeat;
		width: 30px;
		height: 16px;
		transform: translateY(-50%);
		transition: all 0.5s 0s ease;
	}
	.cus-button a:hover .arrow{
		right: 15px;
		width: 50px;
		transition: all 0.5s 0s ease;
	}
	@media (max-width: 991.98px) {
		.cus-button.button-280{
			width: 260px;
		}
	}
	@media print {
		.cus-button.button-280{
			width: 96%;
			max-width: 280px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-button.button-280{
			width: 96%;
			max-width: 280px;
		}
	}

/* 矢印内コンテンツレイアウト */
	.cus-arrow-body{
    background: linear-gradient(to right, #e2f4fb, #9bd0eb);
    clip-path: polygon( /* 要素を右向きの矢印型に切り抜く */
        0% 0%, 
        calc(100% - 100px) 0%, 
        100% 50%, 
        calc(100% - 100px) 100%, 
        0% 100%, 
        100px 50%
    );
    display: flex;/* テキストの配置を調整 */
		align-items: stretch;
		padding: 0;
		height: auto;
		min-height: 600px;
	}
	.cus-arrow-body.arrow-return{/* 反転CSS */
    background: linear-gradient(to left, #e2f4fb, #9bd0eb);
    clip-path: polygon(
        0% 50%,
        100px 0%,
        100% 0%,
        calc(100% - 100px) 50%,
        100% 100%,
        100px 100%
    );
    flex-direction: row-reverse;
	}
	.cus-arrow-body .body-text{
		box-sizing: border-box;
		padding: 80px 0;
		padding-left: 120px;
		width: 55%;
	}
	.cus-arrow-body.arrow-return .body-text{/* 反転CSS */
		padding-right: 120px;
	}
	.cus-arrow-body .body-photo{
		flex: 1;
		display: flex;
		flex-direction: column;
	}
	.cus-arrow-body .body-photo figure{
		overflow: hidden;
		position: relative;
		margin: 0;
		height: 50%;
	}
	.cus-arrow-body .body-photo figure img{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover; 
	}
	.cus-arrow-body .body-photo .photo-img01{
		clip-path: polygon(
			0% 0%, 
			100% 0%, 
			100% 100%, 
			100px 100% 
		);
	}
	.cus-arrow-body .body-photo .photo-img02{
		clip-path: polygon(
			100px 0%, 
			100% 0%, 
			100% 100%, 
			0% 100% 
		);
	}
	.cus-arrow-body.arrow-return .body-photo .photo-img01{/* 反転CSS */
		clip-path: polygon(
			0% 0%, 
			100% 0%, 
			calc(100% - 100px) 100%, 
			0% 100%
		);
	}
	.cus-arrow-body.arrow-return .body-photo .photo-img02{/* 反転CSS */
		clip-path: polygon(
			0% 0%, 
			calc(100% - 100px) 0%, 
			100% 100%, 
			0% 100%
		);
	}
	@media screen and (max-width: 1499.98px) {
		.cus-arrow-body{
			clip-path: polygon( /* 要素を右向きの矢印型に切り抜く */
					0% 0%, 
					calc(100% - 70px) 0%, 
					100% 50%, 
					calc(100% - 70px) 100%, 
					0% 100%, 
					70px 50%
			);
			min-height: 200px;
		}
		.cus-arrow-body.arrow-return{/* 反転CSS */
			clip-path: polygon(
					0% 50%,
					70px 0%,
					100% 0%,
					calc(100% - 70px) 50%,
					100% 100%,
					70px 100%
			);
		}
		.cus-arrow-body .body-text{
			padding: 60px 0;
			padding-left: 100px;
		}
		.cus-arrow-body.arrow-return .body-text{/* 反転CSS */
			padding-right: 100px;
		}

		.cus-arrow-body .body-photo .photo-img01{
			clip-path: polygon(
				0% 0%, 
				100% 0%, 
				100% 100%, 
				70px 100% 
			);
		}
		.cus-arrow-body .body-photo .photo-img02{
			clip-path: polygon(
				70px 0%, 
				100% 0%, 
				100% 100%, 
				0% 100% 
			);
		}
		.cus-arrow-body.arrow-return .body-photo .photo-img01{/* 反転CSS */
			clip-path: polygon(
				0% 0%, 
				100% 0%, 
				calc(100% - 70px) 100%, 
				0% 100%
			);
		}
		.cus-arrow-body.arrow-return .body-photo .photo-img02{/* 反転CSS */
			clip-path: polygon(
				0% 0%, 
				calc(100% - 70px) 0%, 
				100% 100%, 
				0% 100%
			);
		}
	}
	@media (max-width: 991.98px) {
		.cus-arrow-body{
			clip-path: polygon( /* 要素を右向きの矢印型に切り抜く */
					0% 0%, 
					calc(100% - 50px) 0%, 
					100% 50%, 
					calc(100% - 50px) 100%, 
					0% 100%, 
					50px 50%
			);
		}
		.cus-arrow-body.arrow-return{/* 反転CSS */
			clip-path: polygon(
					0% 50%,
					50px 0%,
					100% 0%,
					calc(100% - 50px) 50%,
					100% 100%,
					50px 100%
			);
		}
		.cus-arrow-body .body-text{
			padding: 40px 0;
			padding-left: 80px;
			width: 60%;
		}
		.cus-arrow-body.arrow-return .body-text{/* 反転CSS */
			padding-right: 80px;
		}

		.cus-arrow-body .body-photo .photo-img01{
			clip-path: polygon(
				0% 0%, 
				100% 0%, 
				100% 100%, 
				50px 100% 
			);
		}
		.cus-arrow-body .body-photo .photo-img02{
			clip-path: polygon(
				50px 0%, 
				100% 0%, 
				100% 100%, 
				0% 100% 
			);
		}
		.cus-arrow-body.arrow-return .body-photo .photo-img01{/* 反転CSS */
			clip-path: polygon(
				0% 0%, 
				100% 0%, 
				calc(100% - 50px) 100%, 
				0% 100%
			);
		}
		.cus-arrow-body.arrow-return .body-photo .photo-img02{/* 反転CSS */
			clip-path: polygon(
				0% 0%, 
				calc(100% - 50px) 0%, 
				100% 100%, 
				0% 100%
			);
		}
	}
	@media print {
		.cus-arrow-body{
			clip-path: polygon( /* 要素を右向きの矢印型に切り抜く */
					0% 0%, 
					calc(100% - 50px) 0%, 
					100% 50%, 
					calc(100% - 50px) 100%, 
					0% 100%, 
					50px 50%
			);
		}
		.cus-arrow-body.arrow-return{/* 反転CSS */
			clip-path: polygon(
					0% 50%,
					50px 0%,
					100% 0%,
					calc(100% - 50px) 50%,
					100% 100%,
					50px 100%
			);
		}
		.cus-arrow-body .body-text{
			padding: 40px 0;
			padding-left: 80px;
			width: 60%;
		}
		.cus-arrow-body.arrow-return .body-text{/* 反転CSS */
			padding-right: 80px;
		}

		.cus-arrow-body .body-photo .photo-img01{
			clip-path: polygon(
				0% 0%, 
				100% 0%, 
				100% 100%, 
				50px 100% 
			);
		}
		.cus-arrow-body .body-photo .photo-img02{
			clip-path: polygon(
				50px 0%, 
				100% 0%, 
				100% 100%, 
				0% 100% 
			);
		}
		.cus-arrow-body.arrow-return .body-photo .photo-img01{/* 反転CSS */
			clip-path: polygon(
				0% 0%, 
				100% 0%, 
				calc(100% - 50px) 100%, 
				0% 100%
			);
		}
		.cus-arrow-body.arrow-return .body-photo .photo-img02{/* 反転CSS */
			clip-path: polygon(
				0% 0%, 
				calc(100% - 50px) 0%, 
				100% 100%, 
				0% 100%
			);
		}
	}
	@media (max-width: 767px) {
    .cus-arrow-body,
		.cus-arrow-body.arrow-return{
    	background: linear-gradient(to bottom, #e2f4fb, #9bd0eb);
    	clip-path: polygon(
				0% 0%, 
				100% 0%, 
				100% calc(100% - 40px), 
				50% 100%, 
				0% calc(100% - 40px), 
				0% 0px
    	);
    	flex-direction: column; /* 縦並びに */
    	align-items: center;
    	padding: 40px 0px;
    }
    .cus-arrow-body .body-text,
		.cus-arrow-body.arrow-return .body-text{
			box-sizing: border-box;
    	width: 100%;
			padding: 0 15px;
    }
    .cus-arrow-body .body-photo,
    .cus-arrow-body.arrow-return .body-photo{
			position: relative;
			top: 40px;
			flex-direction: column;
    	width: 100%;
    }
    .cus-arrow-body .body-photo figure{
			width: 100%;
    	height: 56vw;
    }
    .cus-arrow-body .body-photo img{
    	position: static;
    }
    .cus-arrow-body .body-photo .photo-img01,
    .cus-arrow-body .body-photo .photo-img02,
    .cus-arrow-body.arrow-return .body-photo .photo-img01,
    .cus-arrow-body.arrow-return .body-photo .photo-img02 {
    	clip-path: none !important;
    }
	}


/* モーダルウインドウに関わるCSS */
	.modal-btn{/* モーダルボタンの設定 */
		/* 上書き設定を入力 */
	}
	.modal-content{/* モーダルウインドウベースの設定 */
		border: #bcbcbc solid 2px;
		background-color: white;
		padding: 10px;
	}


/* テキストアニメーション（一文字ずつ表示）に関わるCSS */
	.cus-movetext01{opacity:0;}
	.cus-movetext01 span{opacity:0;}


/* 画像ホバー時アクション */
	.cus-image-zoom{/* 画像ホバー時に少し拡大 */
		overflow: hidden;
		width: 100%;
	}
	.cus-image-zoom img{
		transition: 0.5s all;
	}
	.cus-image-zoom img:hover{
		transform: scale(1.2,1.2);
		transition: 0.7s all;
	}

	.cus-image-slide-text01{/* 画像ホバー時にテキスト表示 */
		position: relative;
		display: block;
		background-color: black;
		text-decoration: none;
	}
	.cus-image-slide-text01 .text{
		position: absolute;
		bottom: 0%;
		left: 0px;
		width: 100%;
		color: white;
		text-align: center;
		opacity: 0;
		z-index: 3;
		transition: 0.7s all;
	}
	.cus-image-slide-text01 .text .main{
		margin: 0;
		font-size: 32px;
		font-weight: 700;
	}
	.cus-image-slide-text01 .text .sub{
		margin: 0;
		font-size: 16px;
		font-weight: 700;
	}
	.cus-image-slide-text01 .image{
		margin: 0;
		transition: 0.7s all;
	}
	.cus-image-slide-text01:hover .text{
		bottom: 35%;
		opacity: 1;
		transition: 0.7s all;
	}
	.cus-image-slide-text01:hover .image{
		opacity: 0.4;
		transition: 0.7s all;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-image-slide-text01 .text .main{
			font-size: 32px;
		}
		.cus-image-slide-text01 .text .sub{
			font-size: 16px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-image-slide-text01 .text .main{
			font-size: 26px;
		}
		.cus-image-slide-text01 .text .sub{
			font-size: 15px;
		}
	}
	@media print {
		.cus-image-slide-text01 .text{
			bottom: 35%;
			opacity: 1;
		}
		.cus-image-slide-text01 .image{
			opacity: 0.4;
		}
		.cus-image-slide-text01 .text .main{
			font-size: 20px;
		}
		.cus-image-slide-text01 .text .sub{
			font-size: 15px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-image-slide-text01 .text .main{
			font-size: 20px;
		}
		.cus-image-slide-text01 .text .sub{
			font-size: 15px;
		}
	}


	.cus-image-slide-text02{/* 画像ホバー時にテキスト非表示 */
		position: relative;
		display: block;
		background-color: black;
		text-decoration: none;
	}
	.cus-image-slide-text02 .text{
		position: absolute;
		bottom: 35%;
		left: 0px;
		width: 100%;
		color: white;
		text-align: center;
		opacity: 1;
		z-index: 3;
		transition: 0.7s all;
	}
	.cus-image-slide-text02 .text .main{
		margin: 0;
		font-size: 32px;
		font-weight: 700;
	}
	.cus-image-slide-text02 .text .sub{
		margin: 0;
		font-size: 16px;
		font-weight: 700;
	}
	.cus-image-slide-text02 .image{
		margin: 0;
		opacity: 0.5;
		transition: 0.7s all;
	}
	.cus-image-slide-text02:hover .text{
		bottom: 0%;
		opacity: 0;
		transition: 0.7s all;
	}
	.cus-image-slide-text02:hover .image{
		opacity: 1;
		transition: 0.7s all;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-image-slide-text02 .text .main{
			font-size: 32px;
		}
		.cus-image-slide-text02 .text .sub{
			font-size: 16px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-image-slide-text02 .text .main{
			font-size: 26px;
		}
		.cus-image-slide-text02 .text .sub{
			font-size: 15px;
		}
	}
	@media print {
		.cus-image-slide-text02 .text{
			bottom: 35%;
			opacity: 1;
		}
		.cus-image-slide-text02 .image{
			opacity: 0.4;
		}
		.cus-image-slide-text02 .text .main{
			font-size: 20px;
		}
		.cus-image-slide-text02 .text .sub{
			font-size: 15px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-image-slide-text02 .text .main{
			font-size: 20px;
		}
		.cus-image-slide-text02 .text .sub{
			font-size: 15px;
		}
	}


	.cus-image-rotate{/* 画像ホバー時に少し拡大 */
		position: relative;
		width: 100%;
	}
	.cus-image-rotate::before{
		content: '';
		position: absolute;
		top: 2%;
		left: 2%;
		display: block;
		background-color: #bbbbbb;
		width: 96%;
		height: 96%;
		-ms-filter: blur(6px);
		filter: blur(6px);
		z-index: 1;
	}
	.cus-image-rotate img{
		position: relative;
		transition: 0.5s all;
		z-index: 3;
	}
	.cus-image-rotate img:hover{
		transform: rotate(8deg);
		transition: 0.3s all;
	}


/* テーブル装飾 */
	@media screen and (max-width: 767px) {
		.cus-table-responsive thead tr{
			display: none;
		}
		.cus-table-responsive tbody tr th,
		.cus-table-responsive tbody tr td{
			display: block;
			width: 100%;
		}
		.cus-table-responsive tbody tr th{
			background-color: #f4f4f4;
		}
	}

	.cus-table-border{
		border-collapse: collapse;
		table-layout: fixed;
    width: 100%;
	}
	.cus-table-border tbody tr{
		display: flex;
	}
	.cus-table-border tbody tr th,
	.cus-table-border tbody tr td{
		display: flex;
		flex: 1;
		border: none;
		padding: 4px;
	}
	.cus-table-border tbody tr th{
		flex: 0 0 25%;
	}
	.cus-table-border tbody tr td{
		flex: 1;
	}
	.cus-table-border tbody tr th .text,
	.cus-table-border tbody tr td .text{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border: #0478c6 solid 1px;
    padding: 10px;
    width: 100%;
    min-height: 100%;
	}
	.cus-table-border tbody tr th .text{
		background-color: #e7f9ff;
	}
	@media screen and (max-width: 767px) {
		.cus-table-border tbody tr{
			display: block;
		}
		.cus-table-border tbody tr th,
		.cus-table-border tbody tr td{
			display: block;
			width: 100%;
			padding: 0;
		}
		.cus-table-border tbody tr td{
			padding: 0 0 4px 0;
		}
		.cus-table-border tbody tr th .text{
			border-bottom: #0478c6 solid 0px;
		}
	}

	.cus-table-bgcover{
		overflow: hidden;
		table-layout: fixed;
		border-collapse: separate;
	  border-spacing: 0;
	  border: none;
		width: 100%;
	}
	.cus-table-bgcover thead tr th,
	.cus-table-bgcover tbody tr th,
	.cus-table-bgcover tbody tr td{
		padding: 4px;
	}
	.cus-table-bgcover thead tr th .text,
	.cus-table-bgcover tbody tr th .text,
	.cus-table-bgcover tbody tr td .text{
		display: block;
		border-radius: 6px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		padding: 12px;
	}
	.cus-table-bgcover thead tr th .text,
	.cus-table-bgcover tbody tr th .text{
		background-color: #eaeaea;
	}
	.cus-table-bgcover tbody tr td .text{
		background-color: #f7f7f7;
	}
	@media screen and (max-width: 767px) {
		.cus-table-bgcover thead{
			display: none;
		}
		.cus-table-bgcover thead tr th,
		.cus-table-bgcover tbody tr th,
		.cus-table-bgcover tbody tr td{
			display: block;
			width: 100%;
		}
		.cus-table-bgcover tbody tr th,
		.cus-table-bgcover tbody tr td{
			padding: 4px 0;
		}
	}
	
	.cus-table-tit-respon tbody tr th .text .misadhi,
	.cus-table-tit-respon tbody tr td .text .misadhi{/* 縦並び時に見出しを追加 */
		display: none;
	}
	@media screen and (max-width: 767px) {
		.cus-table-tit-respon tbody tr th .text,
		.cus-table-tit-respon tbody tr td .text{
			position: relative;
			padding-left: 100px;
		}
		.cus-table-tit-respon tbody tr th .text .misadhi,
		.cus-table-tit-respon tbody tr td .text .misadhi{
			display: block;
			position: absolute;
			top: 0x;
			left: 10px;
			width: 84px;
		}
		.cus-table-tit-respon tbody tr th .text .misadhi .dot,
		.cus-table-tit-respon tbody tr td .text .misadhi .dot{
			display: block;
			float: right;
		}
	}


/* お問い合わせページ */
	.cus-form-required{
		background-color: #a90505;
		padding: 1px 6px 0 6px;
		margin: 0;
		height: 20px;
		font-size: 14px;
		font-weight: 400;
		color: white;
		line-height: 20px;
	}

	.cus-form-contact{
		overflow: hidden;
	}
	.cus-form-contact .text{
		overflow: hidden;
		position: relative;
	}

	.cus-form-contact .required{/* 必須 */
		position: absolute;
		top: 10px;
		right: 10px;
		display: inline-block;
		background-color: #a90505;
		padding: 2px 6px 0 6px;
		margin: 0;
		width: 80px;
		height: auto;
		font-size: 14px;
		font-weight: 400;
		color: white;
		text-align: center;
		z-index: 3;
	}

	label{/* チェックボックス類微調整 */
	  display:block;
	  position:relative;
	  padding-left:1em;
	}
	label input{
	  position:absolute;
	  top:0;
	  bottom:0;
	  left:0;
	  margin:auto;
	}

	.cus-form-contact .text .area-min{/* フォーム幅調整 */
		width: 60%;
	}
	.cus-form-contact .text .area-full{
		width: 100%;
	}
	@media screen and (max-width: 767px) {
		.cus-form-contact .text .area-min{
			width: 100%;
		}
	}

	.cus-form-contact .text .area-address{/* 住所欄レイアウト */
		display: table;
		border-bottom: #a7a7a7 solid 1px;
		padding-bottom: 10px;
		margin-bottom: 10px;
		width: 100%;
	}
	.cus-form-contact .text .area-address:last-child{
		border-bottom: #a7a7a7 solid 0px;
		margin-bottom: 0px;
	}
	.cus-form-contact .text .area-address .txt{
		position: relative;
		display: table-cell;
		width: 160px;
		vertical-align: middle;
	}
	.cus-form-contact .text .area-address .txt::before{
		content: ':';
		position: absolute;
		top: 3px;
		right: 10px;
	}
	.cus-form-contact .text .area-address .form{
		display: table-cell;
		vertical-align: middle;
	}
	@media print {
		.cus-form-contact .text .area-address{/* 住所欄レイアウト */
			display: block;
			padding-bottom: 8px;
			margin-bottom: 8px;
			width: auto;
		}
		.cus-form-contact .text .area-address:last-child{
			border-bottom: #a7a7a7 solid 0px;
			margin-bottom: 0px;
		}
		.cus-form-contact .text .area-address .txt{
			display: inline-block;
			margin-bottom: 5px;
			width: auto;
		}
		.cus-form-contact .text .area-address .txt::before{
			content: ':';
			position: absolute;
			top: -2px;
			right: -10px;
		}
		.cus-form-contact .text .area-address .form{
			display: block;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-form-contact .text .area-address{/* 住所欄レイアウト */
			display: block;
			padding-bottom: 8px;
			margin-bottom: 8px;
			width: auto;
		}
		.cus-form-contact .text .area-address:last-child{
			border-bottom: #a7a7a7 solid 0px;
			margin-bottom: 0px;
		}
		.cus-form-contact .text .area-address .txt{
			display: inline-block;
			margin-bottom: 5px;
			width: auto;
		}
		.cus-form-contact .text .area-address .txt::before{
			content: ':';
			position: absolute;
			top: -2px;
			right: -10px;
		}
		.cus-form-contact .text .area-address .form{
			display: block;
		}
	}

	.cus-cp-ipselect{/* 住所セレクトボックス */
	  overflow: hidden;
	  display: inline-block;
	  width: 200px !important;
	  text-align: center;
	}
	.cus-cp-ipselect select{
	  width: 100%;
	  padding-right: 1em;
	  cursor: pointer;
	  text-indent: 0.01px;
	  text-overflow: ellipsis;
	  border: none;
	  outline: none;
	  background: transparent;
	  background-image: none;
	  box-shadow: none;
	  -webkit-appearance: none;
	  appearance: none;
	}
	.cus-cp-ipselect select::-ms-expand{
	  display: none;
	}
	.cus-cp-ipselect{
	  position: relative;
	  border: 1px solid #949494;
	  border-radius: 0px;
	  background: #ffffff;
	}
	.cus-cp-ipselect::before{
	  position: absolute;
	  top: 1.1em;
	  right: 0.8em;
	  width: 0;
	  height: 0;
	  padding: 0;
	  content: '';
	  border-left: 6px solid transparent;
	  border-right: 6px solid transparent;
	  border-top: 6px solid #0a293a;/* arrow */
	  pointer-events: none;
	}
	.cus-cp-ipselect select{
	  padding: 3px 20px 3px 5px;
	  color: #333333;
	  font-size: 16px;
	}
	@media (max-width: 991.98px) {
		.cus-cp-ipselect{/* セレクトボックス */
	 	 width: 150px !important;
		}
		.cus-cp-ipselect.cp_sl04::before{
		  top: 0.8em;
		  right: 0.4em;
		  border-left: 5px solid transparent;
		  border-right: 5px solid transparent;
		}
		.cus-cp-ipselect.cp_sl04 select{
		  padding: 3px 15px 3px 4px;
		  font-size: 14px;
		}
	}
	@media print{
		.cus-cp-ipselect{/* セレクトボックス */
	 	 width: 130px !important;
		}
		.cus-cp-ipselect.cp_sl04::before{
		  top: 0.8em;
		  right: 0.4em;
		  border-left: 5px solid transparent;
		  border-right: 5px solid transparent;
		}
		.cus-cp-ipselect.cp_sl04 select{
		  padding: 3px 15px 3px 4px;
		  font-size: 12px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-cp-ipselect{/* セレクトボックス */
	 	 width: 150px !important;
		}
		.cus-cp-ipselect.cp_sl04::before{
		  top: 0.8em;
		  right: 0.4em;
		  border-left: 5px solid transparent;
		  border-right: 5px solid transparent;
		}
		.cus-cp-ipselect.cp_sl04 select{
		  padding: 3px 15px 3px 4px;
		  font-size: 14px;
		}
	}

	.cus-form-policy-tit{/* プライバシーポリシー */
		position: relative;
		display: inline-block;
		font-size: 20px;
		font-weight: 700;
		text-align: center;
	}
	.cus-form-policy-tit::before{
		content: '';
		position: absolute;
		top: 50%;
		left: -40px;
		display: block;
		background-color: #333333;
		width: 20px;
		height: 2px;
	}
	.cus-form-policy-tit::after{
		content: '';
		position: absolute;
		top: 50%;
		right: -40px;
		display: block;
		background-color: #333333;
		width: 20px;
		height: 2px;
	}
	
	.cus-form-policy{
		overflow: hidden;
		overflow-y: scroll;
		border: #333333 solid 1px;
		background-color: #f8f8f8;
		padding: 20px;
		height: 360px;
	}
	.cus-form-policy .policy-tit{
		display: inline-block;
		background-color: #888888;
		padding: 6px 10px 8px 10px;
		margin-bottom: 10px;
		color: white;
		line-height: 1;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-form-policy-tit{/* プライバシーポリシー */
			font-size: 19px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-form-policy-tit{/* プライバシーポリシー */
			font-size: 18px;
		}
	}
	@media print {
		.cus-form-policy-tit{/* プライバシーポリシー */
			font-size: 18px;
		}
		.cus-form-policy-tit::before{
			left: -24px;
			width: 14px;
		}
		.cus-form-policy-tit::after{
			right: -24px;
			width: 14px;
		}
		
		.cus-form-policy{
			padding: 10px;
			height: 200px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-form-policy-tit{/* プライバシーポリシー */
			font-size: 18px;
		}
		.cus-form-policy-tit::before{
			left: -24px;
			width: 14px;
		}
		.cus-form-policy-tit::after{
			right: -24px;
			width: 14px;
		}
		
		.cus-form-policy{
			padding: 10px;
			height: 200px;
		}
	}

	.cus-form-submit{/* ボタン */
		text-align: center;
	}
	.cus-form-submit-daburu{
		display: -webkit-flex;
		display: flex;
		justify-content: center;
	}
	.cus-form-submit-daburu .cus-form-button{
		margin-right: 20px;
	}
	.cus-form-submit-daburu .cus-form-button:last-child{
		margin-right: 0px;
	}
	
	.cus-form-button button{
		overflow: hidden;
		display: inline-block;
		position: relative;
		border: none;
		background: transparent;
		background: linear-gradient(to right, #33c4f8, #0478c6);
		border-radius: 0px;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		padding: 12px 40px 12px 0;
		margin: 0;
		width: 280px;/* ボタン幅調整 */
		font-size: 20px;
		color: white;
		text-align: center;
	}
	.cus-form-button.long button{
		width: 600px;/* ボタン幅調整 */
	}
	.cus-form-button.white button{
		border: #646464 solid 1px;
		background: linear-gradient(90deg, white, white);
		color: #646464;
	}
	.cus-form-button button .arrow{
		position: absolute;
		top: 50%;
		right: 25px;
		background-image: url("../img/site/bt-arrow.png");
		background-position: right bottom;
		background-repeat: no-repeat;
		width: 30px;
		height: 16px;
		transform: translateY(-50%);
		transition: all 0.5s 0s ease;
		filter: brightness(0) invert(1);
	}
	.cus-form-button button:hover .arrow{
		right: 5px;
		width: 50px;
		transition: all 0.5s 0s ease;
	}
	.cus-form-button.button-back button{
		padding: 12px 0 12px 40px;
	}
	.cus-form-button.button-back button .arrow{
		right: auto;
		left: 25px;
		background-image: url("../img/site/bt-arrow.png");
		background-position: right bottom;
		background-repeat: no-repeat;
		width: 30px;
		height: 16px;
		transform: translateY(-50%) scaleX(-1);
		transition: all 0.5s 0s ease;
		filter: brightness(0) invert(1);
	}
	.cus-form-button.button-back button:hover .arrow{
		left: 5px;
		width: 50px;
	}

	.cus-form-doui{
		display: table;
		margin: 0 auto;
	}
	.cus-form-doui .doui-check{
		position: relative;
		top: -1px;
		display: table-cell;
		padding: 0;
		margin: 0;
		width: auto;
		vertical-align: middle;
	}
	.cus-form-doui .doui-text{
		display: table-cell;
		padding: 0;
		margin: 0;
		width: auto;
		vertical-align: middle;
	}
	@media print {
		.cus-form-button button{
			width: 240px;/* ボタン幅調整 */
			font-size: 18px;
		}
		.cus-form-button.long button{
			width: 100%;/* ボタン幅調整 */
		}
	}
	@media screen and (max-width: 767px) {
		.cus-form-submit-daburu{
			display: block;
		}
		.cus-form-submit-daburu .cus-form-button{
			margin-right: 0px;
			margin-bottom: 20px;
			text-align: center;
		}
		.cus-form-submit-daburu .cus-form-button:last-child{
			margin-bottom: 0px;
		}
		
		.cus-form-button button{
			width: 260px;/* ボタン幅調整 */
			font-size: 18px;
		}
		.cus-form-button.long button{
			width: 100%;/* ボタン幅調整 */
		}

		.cus-form-doui .doui-text{
			text-align: left;
		}
	}

/* ファイルアップロード */
	.file-upload{
	  display: flex;
	  align-items: center;
	  gap: 12px;
		min-width: 0;
	}
	.file-label{
	  display: inline-block;
	  padding: 5px 12px;
	  background: #868686;
	  color: #fff;
	  border-radius: 6px;
	  cursor: pointer;
	  font-size: 14px;
		flex-shrink: 0; 
		transition: all 0.5s 0s ease;
	}
	.file-label:hover{
	  background: #515151;
		transition: all 0.5s 0s ease;
	}
	.file-label input[type="file"] {/* 本体のfile inputは非表示 */
	  display: none;
	}
	.file-name{
	  font-size: 14px;
	  color: #555;
	  white-space: nowrap;
	  overflow: hidden;
	  text-overflow: ellipsis;
	  flex-grow: 1;            
	  min-width: 0;
	}

/* お問い合わせページバリデーション */
	.error-bubble{
	  position: absolute;
	  left: 0;
	  top: 95%;
	  margin-top: 2px;
	  background: rgba(255, 0, 0, 0.75);
	  color: white;
	  padding: 8px 12px;
	  border-radius: 6px;
	  font-size: 14px;
	  z-index: 50;
	  width: max-content;
	  max-width: 260px;
	  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	}
	.error-bubble::after{
	  content: "";
	  position: absolute;
	  top: -6px;
	  left: 10px;
	  border-width: 0 6px 6px 6px;
	  border-style: solid;
	  border-color: transparent transparent rgba(255,0,0,0.75) transparent;
	}
	.cus-form-text{position: relative;}/* textフォームのバリデーション用 */

/* GoogleMap埋め込み */
	.cus-gmap{
		overflow: hidden;
		position: relative;
		margin: 0;
		width: 100%;
		height: 560px;
	}
	.cus-gmap iframe,
	.cus-gmap object,
	.cus-gmap embed{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	@media screen and (max-width: 767px) {
		.cus-gmap{
			height: 30vh;
		}
	}

/* YouTube埋め込み */
	.cus-youtube{
	  position: relative;
	  width: 100%;
	  padding-top: 56.25%;
	}
	.cus-youtube iframe{
	  position: absolute;
	  top: 0;
	  right: 0;
	  width: 100% !important;
	  height: 100% !important;
	}

/* EZGATE タグコレボタン設定 */
	.tagcolle-btn-default{
		box-shadow: none !important;
		background-color: #01203b !important;
		border: none !important;
	}
	.tagcolle-btn{
		font-weight: 400 !important;
		font-size: 18px !important;
		color: white !important;
	}
	@media (max-width: 991.98px) {
		.tagcolle-btn{
			font-size: 17px !important;
		}
	}
