@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 タグコレボタン設定

*/

/* オン・スクリーン・アニメーション テキスト */
	.js-text-anime .char{
		display: inline-block;
		opacity: 0;
		transform: translateY(15px);
		transition: opacity 0.4s ease, transform 0.4s ease;
	}
	.js-text-anime-group.is-active .js-text-anime .char{
		opacity: 1;
		transform: translateY(0);
	}
	@media print {
		.js-text-anime .char{
			opacity: 1;
			transform: translateY(0)
		}
	}

/* コンテンツ内バブル設定 */
	.cus-bubble{
		position: relative;
	}
	.cus-bubble-style{
		position: absolute;
		background: linear-gradient(135deg, #fabb33, #ee5e16);
		border-radius: 50%;
		opacity: 0;
		transform: translateY(30px) scale(0.8);
		transition: opacity 1.2s ease-out, transform 1.2s ease-out;
	}
	.cus-bubble-style.is-active{
		opacity: 1;
		transform: translateY(0) scale(1); /* 元の位置・サイズに戻る */
	}

/* コンテンツ背景 */
	.cus-bg-sphere{/* コンテンツの始まりと終わりを若干の楕円に */
		background-color: #fff2d6;
		border-radius: 50% / 70px;
		padding-top: 130px; 
    padding-bottom: 130px;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-bg-sphere{
			border-radius: 50% / 65px;
			padding-top: 120px; 
			padding-bottom: 120px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-bg-sphere{
			border-radius: 50% / 60px;
			padding-top: 100px; 
			padding-bottom: 100px;
		}
	}
	@media print {
		.cus-bg-sphere{
			border-radius: 50% / 50px;
			padding-top: 80px; 
			padding-bottom: 80px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-bg-sphere{
			border-radius: 50% / 40px;
			padding-top: 60px; 
			padding-bottom: 60px;
		}
	}

/* コンテンツ内見出し */
	.cus-midashi01{
		display: flex;
		flex-direction: column-reverse;
	}
	.cus-midashi01 .main{
		position: relative;
		display: inline-block;
		padding-left: 24px;
		margin-bottom: 30px;
		font-size: 16px;
		letter-spacing: 0.08em;
	}
	.cus-midashi01 .main::before{
		content: '';
		position: absolute;
		top: 4px;
		left: 0px;
		background: linear-gradient(135deg, #fabb33, #ee5e16);
		border-radius: 100px;
		width: 13px;
		height: 13px;
	}
	.cus-midashi01 .en{
		font-family: "Montserrat", sans-serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
		font-size: 72px;
		line-height: 1.5;
	}
	.cus-midashi01.midashi01-white .main{
		color: white;
	}
	.cus-midashi01.midashi01-white .main::before{
		background: linear-gradient(135deg, white, white);
	}
	.cus-midashi01.midashi01-white .en{
		color: white;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-midashi01 .main{
			padding-left: 24px;
			margin-bottom: 30px;
			font-size: 16px;
		}
		.cus-midashi01 .main::before{
			top: 4px;
			width: 13px;
			height: 13px;
		}
		.cus-midashi01 .en{
			font-size: 66px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-midashi01 .main{
			padding-left: 22px;
			margin-bottom: 25px;
			font-size: 15px;
		}
		.cus-midashi01 .main::before{
			top: 4px;
			width: 11px;
			height: 11px;
		}
		.cus-midashi01 .en{
			font-size: 58px;
		}
	}
	@media print {
		.cus-midashi01 .main{
			padding-left: 20px;
			margin-bottom: 20px;
			font-size: 13px;
		}
		.cus-midashi01 .main::before{
			top: 3px;
			width: 10px;
			height: 10px;
		}
		.cus-midashi01 .en{
			font-size: 46px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-midashi01 .main{
			padding-left: 22px;
			margin-bottom: 25px;
			font-size: 15px;
		}
		.cus-midashi01 .main::before{
			top: 3px;
			width: 10px;
			height: 10px;
		}
		.cus-midashi01 .en{
			font-size: 40px;
		}
	}

	.cus-midashi-tb{
		display: table;
	}
	.cus-midashi-tb .tb-title{
		display: table-cell;
		white-space: nowrap;
		vertical-align: middle;
	}
	.cus-midashi-tb .tb-text{
		position: relative;
		display: table-cell;
		padding-left: 160px;
		vertical-align: middle;
	}
	.cus-midashi-tb .tb-text::before{
		content: '';
		position: absolute;
		top: 20%;
		left: 80px;
		background-color: #bdbdbd;
		width: 1px;
		height: 60%;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-midashi-tb .tb-text{
			padding-left: 140px;
		}
		.cus-midashi-tb .tb-text::before{
			left: 70px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-midashi-tb .tb-text{
			padding-left: 100px;
		}
		.cus-midashi-tb .tb-text::before{
			left: 50px;
		}
	}
	@media print {
		.cus-midashi-tb .tb-text{
			padding-left: 60px;
		}
		.cus-midashi-tb .tb-text::before{
			left: 30px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-midashi-tb{
			display: block;
		}
		.cus-midashi-tb .tb-title{
			display: block;
		}
		.cus-midashi-tb .tb-text{
			display: block;
			padding: 15px 0 0 0;
		}
		.cus-midashi-tb .tb-text::before{
			top: 0px;
			left: 1px;
			width: 100%;
			height: 1px;
		}
	}

	.cus-midashi01-center{
		position: relative;
		padding-top: 100px;
		text-align: center;
	}
	.cus-midashi01-center .main{
		position: relative;
		display: inline-block;
		padding-left: 24px;
		margin-bottom: 30px;
		font-size: 16px;
		letter-spacing: 0.08em;
	}
	.cus-midashi01-center .main::before{
		content: '';
		position: absolute;
		top: 4px;
		left: 0px;
		background: linear-gradient(135deg, #fabb33, #ee5e16);
		border-radius: 100px;
		width: 13px;
		height: 13px;
	}
	.cus-midashi01-center .en{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		font-family: "Montserrat", sans-serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
		font-size: 72px;
		line-height: 1.5;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-midashi01-center{
			padding-top: 94px;
		}
		.cus-midashi01-center .main{
			padding-left: 24px;
			margin-bottom: 30px;
			font-size: 16px;
		}
		.cus-midashi01-center .main::before{
			top: 4px;
			width: 13px;
			height: 13px;
		}
		.cus-midashi01-center .en{
			font-size: 66px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-midashi01-center{
			padding-top: 86px;
		}
		.cus-midashi01-center .main{
			padding-left: 22px;
			margin-bottom: 25px;
			font-size: 15px;
		}
		.cus-midashi01-center .main::before{
			top: 4px;
			width: 11px;
			height: 11px;
		}
		.cus-midashi01-center .en{
			font-size: 58px;
		}
	}
	@media print {
		.cus-midashi01-center{
			padding-top: 72px;
		}
		.cus-midashi01-center .main{
			padding-left: 20px;
			margin-bottom: 20px;
			font-size: 13px;
		}
		.cus-midashi01-center .main::before{
			top: 3px;
			width: 10px;
			height: 10px;
		}
		.cus-midashi01-center .en{
			font-size: 46px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-midashi01-center{
			padding-top: 72px;
		}
		.cus-midashi01-center .main{
			padding-left: 22px;
			margin-bottom: 25px;
			font-size: 15px;
		}
		.cus-midashi01-center .main::before{
			top: 3px;
			width: 10px;
			height: 10px;
		}
		.cus-midashi01-center .en{
			font-size: 40px;
		}
	}

	.cus-midashi02{
		display: flex;
		align-items: center;
	}
	.cus-midashi02 .main{
		margin: 0;
		font-size: 28px;
		font-weight: 700;
	}
	.cus-midashi02 .sub{
		position: relative;
		padding: 30px 0 0 60px;
		margin: 0;
		font-size: 22px;
		font-weight: 700;
		color: #ea610f;
	}
	.cus-midashi02 .sub::before{
		content: '';
		position: absolute;
		top: 0px;
		left: 35px;
		background-color: #ea610f;
		width: 2px;
		height: 120%;
		transform: rotate(45deg);
	}
	@media screen and (max-width: 1499.98px) 4
		.cus-midashi02 .main{
			font-size: 24px;
		}
		.cus-midashi02 .sub{
			padding: 25px 0 0 50px;
			font-size: 20px;
		}
		.cus-midashi02 .sub::before{
			left: 30px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-midashi02 .main{
			font-size: 20px;
		}
		.cus-midashi02 .sub{
			padding: 20px 0 0 40px;
			font-size: 18px;
		}
		.cus-midashi02 .sub::before{
			left: 25px;
		}
	}
	@media print {
		.cus-midashi02 .main{
			font-size: 18px;
		}
		.cus-midashi02 .sub{
			padding: 15px 0 0 30px;
			font-size: 16px;
		}
		.cus-midashi02 .sub::before{
			left: 20px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-midashi02{
			display: block;
		}
		.cus-midashi02 .main{
			margin-bottom: 15px;
			font-size: 22px;
		}
		.cus-midashi02 .sub{
			padding: 0 0 0 30px;
			font-size: 16px;
		}
		.cus-midashi02 .sub::before{
			top: -3px;
			left: 10px;
			height: 110%;
			transform: rotate(35deg);
		}
	}


/* お問い合わせボタン */
	.cus-button a{
		overflow: hidden;
		position: relative;
		display: block;
		background-color: #292929;
		border-radius: 100px;
		padding: 14px 50px 14px 30px;
		color: white;
		text-decoration: none;
		z-index: 1;
	}
	.cus-button a .text{
		position: relative;
		z-index: 3;
	}
	.cus-button a .arrow{
		position: absolute;
		top: 0px;
		right: 20px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 100%;
		transition: all 0.3s;
	}
	.cus-button a:hover .arrow {
		animation: arrowSlide 0.5s forwards;
	}
	.cus-button.button-white a{
		background-color: white;
		color: #292929;
	}
	@keyframes arrowSlide {
		0% {
			transform: translateX(0);
			opacity: 1;
		}
		49% {
			transform: translateX(20px); /* 右へ移動 */
			opacity: 0;
		}
		50% {
			transform: translateX(-20px); /* 一瞬で左側にワープ */
			opacity: 0;
		}
		100% {
			transform: translateX(0);    /* 元の位置に戻る */
			opacity: 1;
    }
	}
	@keyframes arrowSlide-2 {
		0% {
			transform: translateX(0);
			opacity: 1;
		}
		49% {
			transform: translateX(-20px); /* 右へ移動 */
			opacity: 0;
		}
		50% {
			transform: translateX(20px); /* 一瞬で左側にワープ */
			opacity: 0;
		}
		100% {
			transform: translateX(0);    /* 元の位置に戻る */
			opacity: 1;
    }
	}


/* フッター 採用情報 */
	.cus-footer-recruit{
		background-image: url("../img/site/recruit-bg.jpg");
		background-size: cover;
		background-position: center center;
		padding: 110px 0;
	}
	.cus-footer-recruit-con01{
		margin: 0 auto;
		width: 1230px;
		color: white;
	}
	.cus-footer-recruit-con01 .con01-text{
		padding-top: 60px;
	}
	.cus-footer-recruit-bt01{
		margin: 0 0 0 auto;
		width: 220px;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-footer-recruit{
			padding: 100px 0;
		}
		.cus-footer-recruit-con01{
			width: 96%;
			max-width: 1230px;
		}
		.cus-footer-recruit-con01 .con01-text{
			padding-top: 50px;
		}
		.cus-footer-recruit-bt01{
			width: 220px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-footer-recruit{
			padding: 90px 0;
		}
		.cus-footer-recruit-con01{
			width: 96%;
			max-width: 1230px;
		}
		.cus-footer-recruit-con01 .con01-text{
			padding-top: 40px;
		}
		.cus-footer-recruit-bt01{
			width: 200px;
		}
	}
	@media print {
		.cus-footer-recruit{
			padding: 60px 0;
		}
		.cus-footer-recruit-con01{
			width: 96%;
			max-width: 1230px;
		}
		.cus-footer-recruit-con01 .con01-text{
			padding-top: 40px;
		}
		.cus-footer-recruit-bt01{
			width: 200px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-footer-recruit{
			padding: 60px 0;
		}
		.cus-footer-recruit-con01{
			width: 94%;
			max-width: 1230px;
		}
		.cus-footer-recruit-con01 .con01-text{
			padding-top: 10px;
		}
		.cus-footer-recruit-bt01{
			margin: 0 auto;
			width: 200px;
		}
	}

/* フッター */
	.cus-footer{
		background-color: #2d2d2d;
		padding: 110px 0;
		color: white;
	}
	.cus-footer-con01{
		border-bottom: white solid 1px;
		padding-bottom: 80px;
		margin-bottom: 80px;
	}
	.cus-footer-con01 .con01-toiawase{
		display: flex;
		align-items: center;
	}
	.cus-footer-con01 .con01-toiawase .toiawase-bt{
		flex-shrink: 0;
		width: 40%;
	}
	.cus-footer-con01 .con01-toiawase .toiawase-bt a{
		background-color: #ea610f;
		padding: 20px 60px 20px 30px;
		font-size: 24px;
		font-weight: 700;
	}
	.cus-footer-con01 .con01-toiawase .toiawase-bt a .text{
		font-size: 24px;
	}
	.cus-footer-con01 .toiawase-dial{
		flex: 1;
		padding-left: 50px;
	}
	.cus-footer-con01 .toiawase-dial .dial-phone{
		display: inline-block;
		margin-bottom: 5px;
		font-family: "Montserrat", sans-serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
		font-size: 40px;
		line-height: 1.2;
	}
	.cus-footer-con01 .toiawase-dial .dial-phone .min{
		font-size: 20px;
	}

	.cus-footer-con02{
		display: flex;
		justify-content: space-between;
		gap: 50px;
	}
	.cus-footer-con02 .con02-nav{
		flex-shrink: 0;
		width: 60%;
	}
	.cus-footer-con02 .con02-bt{
		flex: 1;
	}

	.cus-footer-con02-menu{
		display: flex;
		flex-wrap: wrap;
	}
	.cus-footer-con02-menu li{
		box-sizing: content-box;
		padding-right: 10%;
		width: 45%;
	}
	.cus-footer-con02-menu li:nth-child(2n){
		padding-right: 0%;
	}
	.cus-footer-con02-menu li a{
		overflow: hidden;
		position: relative;
		display: block;
		padding: 14px 0;
		color: white;
		text-decoration: none;
	}
	.cus-footer-con02-menu li a::before{
		content: '';
		position: absolute;
		bottom: 0px;
		left: 0px;
		background-color: #606060;
		width: 100%;
		height: 1px;
	}
	.cus-footer-con02-menu li a::after{
		content: '';
		position: absolute;
		bottom: 0px;
		left: 0px;
		background-color: white;
		width: 100%;
		height: 1px;
    transform: scaleX(0);
    transform-origin: left top; /* 左端を基点にする */
    transition: transform 0.3s ease; /* 0.3秒でアニメーション */
	}
	.cus-footer-con02-menu li a:hover::after{
    transform: scaleX(1);
	}

	.cus-footer-bt01{
		margin: 0 0 0 auto;
		width: 220px;
	}

	.cus-footer-con02-copy{
		font-size: 14px;
		color: #bdbdbd;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-footer{
			padding: 100px 0;
		}
		.cus-footer-con01{
			padding-bottom: 70px;
			margin-bottom: 70px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt{
			width: 42%;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a{
			padding: 18px 50px 18px 20px;
			font-size: 20px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a .text{
			font-size: 20px;
		}
		.cus-footer-con01 .toiawase-dial{
			padding-left: 20px;
		}
		.cus-footer-con01 .toiawase-dial .dial-phone{
			font-size: 30px;
		}
		.cus-footer-con01 .toiawase-dial .dial-phone .min{
			font-size: 18px;
		}
	
		.cus-footer-con02-logo{
			width: 280px;
		}
	
		.cus-footer-con02{
			gap: 40px;
		}
		.cus-footer-con02 .con02-nav{
			width: 56%;
		}

		.cus-footer-con02-menu li{
			padding-right: 8%;
			width: 46%;
		}
		.cus-footer-con02-menu li a{
			padding: 12px 0;
			font-size: 15px;
		}
	
		.cus-footer-bt01{
			width: 200px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-footer{
			padding: 90px 0;
		}
		.cus-footer-con01{
			padding-bottom: 60px;
			margin-bottom: 60px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt{
			width: 42%;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a{
			padding: 15px 30px 15px 10px;
			font-size: 16px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a .text{
			font-size: 16px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a .arrow{
			right: 0px;
		}
		.cus-footer-con01 .toiawase-dial{
			padding-left: 20px;
		}
		.cus-footer-con01 .toiawase-dial .dial-phone{
			font-size: 22px;
		}
		.cus-footer-con01 .toiawase-dial .dial-phone .min{
			font-size: 15px;
		}
	
		.cus-footer-con02-logo{
			width: 240px;
		}

		.cus-footer-con02{
			gap: 20px;
		}
		.cus-footer-con02 .con02-nav{
			width: 54%;
		}

		.cus-footer-con02-menu li{
			padding-right: 8%;
			width: 46%;
		}
		.cus-footer-con02-menu li a{
			padding: 12px 0;
			font-size: 14px;
		}
	
		.cus-footer-bt01{
			width: 180px;
		}
		.cus-footer-bt01 a{
			font-size: 14px;
		}
		.cus-footer-bt01 a .text{
			font-size: 14px;
		}
		.cus-footer-bt01 a .arrow{
			right: 0px;
		}
	}
	@media print {
	.cus-footer{
			padding: 70px 0;
		}
		.cus-footer-con01{
			padding-bottom: 40px;
			margin-bottom: 40px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt{
			width: 42%;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a{
			padding: 15px 50px 15px 10px;
			font-size: 14px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a .text{
			font-size: 14px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a .arrow{
			right: 0px;
		}
		.cus-footer-con01 .toiawase-dial{
			padding-left: 20px;
		}
		.cus-footer-con01 .toiawase-dial .dial-phone{
			font-size: 19px;
		}
		.cus-footer-con01 .toiawase-dial .dial-phone .min{
			font-size: 13px;
		}
	
		.cus-footer-con02-logo{
			width: 200px;
		}

		.cus-footer-con02{
			gap: 15px;
		}
		.cus-footer-con02 .con02-nav{
			width: 54%;
		}

		.cus-footer-con02-menu li{
			padding-right: 8%;
			width: 46%;
		}
		.cus-footer-con02-menu li a{
			padding: 12px 0;
			font-size: 12px;
		}
	
		.cus-footer-bt01{
			width: 180px;
		}
		.cus-footer-bt01 a{
			font-size: 12px;
		}
		.cus-footer-bt01 a .text{
			font-size: 12px;
		}
		.cus-footer-bt01 a .arrow{
			right: 0px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-footer{
			padding: 60px 0;
		}
		.cus-footer-con01{
			padding-bottom: 40px;
			margin-bottom: 40px;
		}
		.cus-footer-con01 .con01-toiawase{
			display: block;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt{
			margin: 0 auto 20px auto !important;
			width: 200px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a{
			padding: 15px 30px 15px 10px;
			font-size: 16px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a .text{
			font-size: 16px;
		}
		.cus-footer-con01 .con01-toiawase .toiawase-bt a .arrow{
			right: 0px;
		}
		.cus-footer-con01 .toiawase-dial{
			padding-left: 0px;
			text-align: center;
		}
		.cus-footer-con01 .toiawase-dial .dial-phone{
			font-size: 22px;
		}
		.cus-footer-con01 .toiawase-dial .dial-phone .min{
			font-size: 16px;
		}
		
		.cus-footer-con02-logo{
			width: 200px;
		}
	
		.cus-footer-con02{
			display: block;
			gap: 0px;
		}
		.cus-footer-con02 .con02-nav{
			margin-top: 20px;
			width: auto;
		}
	
		.cus-footer-con02-menu{
			overflow: hidden;
			display: block;
			border-top: #606060 solid 1px;
		}
		.cus-footer-con02-menu li{
			float: left;
			padding-right: 0;
			width: 50%;
			text-align: center;
		}
		.cus-footer-con02-menu li:first-child{
			width: 100%;
		}
		.cus-footer-con02-menu li:nth-child(2n) a{
			border-right: #606060 solid 1px;
		}
		.cus-footer-con02-menu li a::before{
			content: '';
			position: absolute;
			bottom: 0px;
			left: 0px;
			background-color: #606060;
			width: 100%;
			height: 1px;
		}
		.cus-footer-con02-menu li a::after{
			display: none;
		}
	
		.cus-footer-bt01{
			margin: 0 auto;
			width: 200px;
		}
	
		.cus-footer-con02-copy{
			text-align: center;
		}
	}

/* 下層ページ見出し */
	.cus-promo{
		position: relative;
		background-image: url("../img/site/promo-bg.png");
		background-position: center bottom;
		background-repeat: no-repeat;
		padding: 140px 0 40px 0;
	}

	.cus-promo .promo-title{
		position: absolute;
		bottom: 60px;
		left: 3%;
		background-color: rgba(255, 255, 255, 0.9);
		border-radius: 100px;
		padding: 16px 60px;
		margin: 0;
		font-size: 36px;
		letter-spacing: 0.08em;
		z-index: 3;
	}

	.cus-promo .promo-img{
		margin: 0 auto;
		width: 96%;
		height: 340px;
	}
	.cus-promo .promo-img img{
		overflow: hidden;
		border-radius: 14px;
		width: 100%;
		height: 100%;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}
	@media screen and (min-width: 1500px) {
		.cus-promo{
			background-size: cover;
		}
	}
	@media screen and (max-width: 1499.98px) {
		.cus-promo{
			padding: 120px 0 40px 0;
		}
	
		.cus-promo .promo-title{
			bottom: 60px;
			left: 3.6%;
			padding: 16px 50px;
			font-size: 32px;
		}
	
		.cus-promo .promo-img{
			height: 300px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-promo{
			background-size: 1000px auto;
			padding: 80px 0 40px 0;
		}
	
		.cus-promo .promo-title{
			bottom: 60px;
			left: 4%;
			padding: 14px 40px;
			font-size: 26px;
		}
	
		.cus-promo .promo-img{
			height: 260px;
		}
	}
	@media print {
		.cus-promo{
			background-size: 1000px auto;
			padding: 80px 0 40px 0;
		}
	
		.cus-promo .promo-title{
			bottom: 60px;
			left: 4%;
			padding: 12px 30px;
			font-size: 22px;
		}
	
		.cus-promo .promo-img{
			height: 200px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-promo{
			background-size: 800px 100%;
			padding: 75px 0 30px 0;
		}
	
		.cus-promo .promo-title{
			bottom: 50px;
			left: 4%;
			padding: 12px 20px;
			font-size: 20px;
		}
	
		.cus-promo .promo-img{
			height: 180px;
		}
	}


/* 下層ページ ファーストテキスト */
	.cus-first-text{
		position: relative;
		display: inline-block;
		padding: 20px 80px;
	}
	.cus-first-text::before,
	.cus-first-text::after{
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 50px;
		border: 3px solid #ea610f;
	}
	.cus-first-text::before{
		left: 0;
		border-right: none;
		border-radius: 12px 0 0 12px;
	}
	.cus-first-text::after{
		right: 0;
		border-left: none;
		border-radius: 0 12px 12px 0;
	}

	.cus-first-text .main{
		font-size: 28px;
		font-weight: 700;
		letter-spacing: 0.08em;
	}
	.cus-first-text .sub{
		font-size: 22px;
	}

	.cus-firsttext-bubble01{
		top: 0px;
		left: 0;
		margin-left: -200px;
		width: 94px;
		aspect-ratio: 1 / 1;
	}
	.cus-firsttext-bubble02{
		top: -60px;
		left: 0;
		margin-left: -100px;
		width: 50px;
		aspect-ratio: 1 / 1;
	}
	.cus-firsttext-bubble03{
		bottom: -50px;
		right: 0;
		margin-right: -140px;
		width: 60px;
		aspect-ratio: 1 / 1;
	}
	@media screen and (max-width: 1499.98px) {
		.cus-first-text{
			padding: 20px 60px;
		}
		.cus-first-text::before,
		.cus-first-text::after{
			width: 45px;
		}
	
		.cus-first-text .main{
			font-size: 22px;
		}
		.cus-first-text .sub{
			font-size: 19px;
		}
	
		.cus-firsttext-bubble01{
			margin-left: -160px;
			width: 85px;
		}
		.cus-firsttext-bubble02{
			top: -50px;
			margin-left: -70px;
			width: 46px;
		}
		.cus-firsttext-bubble03{
			margin-right: -120px;
			width: 54px;
		}
	}
	@media (max-width: 991.98px) {
		.cus-first-text{
			padding: 20px 50px;
		}
		.cus-first-text::before,
		.cus-first-text::after{
			width: 40px;
		}
	
		.cus-first-text .main{
			font-size: 20px;
		}
		.cus-first-text .sub{
			font-size: 17px;
		}
	
		.cus-firsttext-bubble01{
			margin-left: -110px;
			width: 75px;
		}
		.cus-firsttext-bubble02{
			top: -50px;
			margin-left: -40px;
			width: 40px;
		}
		.cus-firsttext-bubble03{
			margin-right: -60px;
			width: 48px;
		}
	}
	@media print {
		.cus-first-text{
			padding: 18px 30px;
		}
		.cus-first-text::before,
		.cus-first-text::after{
			width: 30px;
		}
	
		.cus-first-text .main{
			font-size: 17px;
		}
		.cus-first-text .sub{
			font-size: 15px;
		}
	
		.cus-firsttext-bubble01{
			margin-left: -110px;
			width: 75px;
		}
		.cus-firsttext-bubble02{
			top: -50px;
			margin-left: -40px;
			width: 40px;
		}
		.cus-firsttext-bubble03{
			margin-right: -60px;
			width: 48px;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-first-text{
			padding: 16px 25px;
			text-align: left;
		}
		.cus-first-text::before,
		.cus-first-text::after{
			width: 30px;
		}
	
		.cus-first-text .main{
			font-size: 17px;
		}
		.cus-first-text .sub{
			font-size: 15px;
		}
	
		.cus-firsttext-bubble01{
			top: -60px;
			margin-left: -66px;
			width: 75px;
		}
		.cus-firsttext-bubble02{
			top: -80px;
			margin-left: 0px;
			width: 40px;
		}
		.cus-firsttext-bubble03{
			margin-right: -30px;
			width: 48px;
		}
	}


/* モーダルウインドウに関わる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-normal{
		overflow: hidden;
		table-layout: fixed;
		border-collapse: separate;
	  border-spacing: 0;
	  border: none;
	  border-top: #222222 solid 1px;
		width: 100%;
	}
	.cus-table-normal tbody tr th,
	.cus-table-normal tbody tr td{
		padding: 22px 15px;
	}
	.cus-table-normal tbody tr th{
		background-color: #eaeaea;
	}
	@media screen and (max-width: 767px) {
		.cus-table-normal tbody tr th,
		.cus-table-normal tbody tr td{
			display: block;
			padding: 18px 12px;
			width: 100%;
		}
		.cus-table-normal tbody tr th{
			border: none !important;
		}
	}

	.cus-table-border{
		overflow: hidden;
		table-layout: fixed;
		border-collapse: separate;
	  border-spacing: 0;
	  border: none;
		width: 100%;
	}
	.cus-table-border thead tr th,
	.cus-table-border tbody tr th,
	.cus-table-border tbody tr td{
		padding: 4px;
	}
	.cus-table-border thead tr th .text,
	.cus-table-border tbody tr th .text,
	.cus-table-border tbody tr td .text{
		display: block;
		border: #333333 solid 1px;
		border-radius: 6px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		padding: 10px;
	}
	.cus-table-border thead tr th .text,
	.cus-table-border tbody tr th .text{
		background-color: #eaeaea;
	}
	@media screen and (max-width: 767px) {
		.cus-table-border thead{
			display: none;
		}
		.cus-table-border thead tr th,
		.cus-table-border tbody tr th,
		.cus-table-border tbody tr td{
			display: block;
			width: 100%;
		}
		.cus-table-border tbody tr th,
		.cus-table-border tbody tr td{
			padding: 4px 0;
		}
	}

	.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{
		overflow: hidden;
		position: relative;
	}

	.cus-form-contact .required{/* 必須 */
		float: right;
		background-color: #a90505;
		padding: 1px 6px 0 6px;
		margin: 0;
		height: 20px;
		font-size: 14px;
		font-weight: 400;
		color: white;
		line-height: 20px;
		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 .area-min{/* フォーム幅調整 */
		width: 60%;
	}
	.cus-form-contact .area-full{
		width: 100%;
	}
	@media screen and (max-width: 767px) {
		.cus-form-contact .area-min{
			width: 100%;
		}
	}

	.cus-form-contact .area-address{/* 住所欄レイアウト */
		display: table;
		border-bottom: #a7a7a7 solid 1px;
		padding-bottom: 10px;
		margin-bottom: 10px;
		width: 100%;
	}
	.cus-form-contact .area-address:last-child{
		border-bottom: #a7a7a7 solid 0px;
		margin-bottom: 0px;
	}
	.cus-form-contact .area-address .txt{
		position: relative;
		display: table-cell;
		width: 160px;
		vertical-align: middle;
	}
	.cus-form-contact .area-address .txt::before{
		content: ':';
		position: absolute;
		top: 3px;
		right: 10px;
	}
	.cus-form-contact .area-address .form{
		display: table-cell;
		vertical-align: middle;
	}
	@media print {
		.cus-form-contact .area-address{/* 住所欄レイアウト */
			display: block;
			padding-bottom: 8px;
			margin-bottom: 8px;
			width: auto;
		}
		.cus-form-contact .area-address:last-child{
			border-bottom: #a7a7a7 solid 0px;
			margin-bottom: 0px;
		}
		.cus-form-contact .area-address .txt{
			display: inline-block;
			margin-bottom: 5px;
			width: auto;
		}
		.cus-form-contact .area-address .txt::before{
			content: ':';
			position: absolute;
			top: -2px;
			right: -10px;
		}
		.cus-form-contact .area-address .form{
			display: block;
		}
	}
	@media screen and (max-width: 767px) {
		.cus-form-contact .area-address{/* 住所欄レイアウト */
			display: block;
			padding-bottom: 8px;
			margin-bottom: 8px;
			width: auto;
		}
		.cus-form-contact .area-address:last-child{
			border-bottom: #a7a7a7 solid 0px;
			margin-bottom: 0px;
		}
		.cus-form-contact .area-address .txt{
			display: inline-block;
			margin-bottom: 5px;
			width: auto;
		}
		.cus-form-contact .area-address .txt::before{
			content: ':';
			position: absolute;
			top: -2px;
			right: -10px;
		}
		.cus-form-contact .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-button{
		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;
		position: relative;
		display: block;
		border: none;
		background-color: #292929;
		border-radius: 100px;
		padding: 14px 50px 14px 30px;
		margin: 0 auto;
		width: 260px;
		color: white;
		text-decoration: none;
		z-index: 1;
	}
	.cus-form-button button .text{
		position: relative;
		z-index: 3;
	}
	.cus-form-button button .arrow{
		position: absolute;
		top: 0px;
		right: 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 100%;
		transition: all 0.3s;
	}
	.cus-form-button button:hover .arrow {
		animation: arrowSlide 0.5s forwards;
	}

	.cus-form-button.return button .arrow{
		right: auto;
		left: 10px;
	}
	.cus-form-button.return button:hover .arrow {
		animation: arrowSlide-2 0.5s forwards !important;
	}
	
	.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-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: 220px;/* ボタン幅調整 */
			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: 220px;/* ボタン幅調整 */
			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;
	}
	.file-label {
	  display: inline-block;
	  padding: 8px 16px;
	  background: #4f46e5;
	  color: #fff;
	  border-radius: 6px;
	  cursor: pointer;
	  font-size: 14px;
	}
	.file-label:hover {
	  background: #4338ca;
	}
	.file-label input[type="file"] {/* 本体のfile inputは非表示 */
	  display: none;
	}
	.file-name {
	  font-size: 14px;
	  color: #555;
	}

/* お問い合わせページバリデーション */
	.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: 45vh;
	}
	.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;
		}
	}
