html{overflow-x: hidden;}
body{overflow-x: hidden;


background: linear-gradient(120deg, rgba(255, 255, 255, 1) 48%, rgba(244, 244, 244, 1)) fixed;

/*
background: linear-gradient( to top right, white 78.8%,  rgba(244, 244, 244, 1));
*/

}



strong{font-size: 120%;}


.text_red{color: #FF5858;}

a.text_red{color: #FF5858;}



.kaigyou{}
.kaigyou2{display: none;}

.spview{display: none;}
.pcview{margin-top: 50px;display: block;}
@media screen and (max-width: 1250px){
	.kaigyou{display: none;}
	.kaigyou2{display: block;}
	.spview{display: block;}
	.pcview{display: none;}
}


.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb50{margin-bottom: 50px;}
.mb70{margin-bottom: 70px;}
.mb100{margin-bottom: 100px;}

.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt50{margin-top: 50px;}
.mt70{margin-top: 70px;}
.mt100{margin-top: 100px;}
.mt150{margin-top: 150px;}
.mt200{margin-top: 200px;}

.pt3par{padding-top: 3%;}
.pt5par{padding-top: 5%;}
.pt10par{padding-top: 10%;}

.pb0{padding-bottom: 0px!important;}
.pt0{padding-top: 0px!important;}


.underline-wavy {
	text-decoration-line:underline;
	text-decoration-style:wavy;
	text-decoration-color:#FDD23C;
	text-decoration-thickness: 2.3px;
}
.bold{
	font-weight: 600;
}



/*----------------------------------
テキストアニメーション
----------------------------------*/
.btn{
	position: relative;
	display: inline-block;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
    text-align: center;
    outline: none;
    transition: ease .2s;
	z-index: 1;
}

.btn span {
	position: relative;
	z-index: 3;
	text-align: left;
}
h2 .btn span {
	text-align: center;
}

.bgleft:before {
 	content: '';
 	position: absolute;
 	bottom: 18%;
 	left: 0;
 	z-index: 1;
 	background:#FDD23C;
 	width: 100%;
	height: 30%;
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
h2 .bgleft:before {
 	transition: transform .6s cubic-bezier(0.5, 0, 0.5, 2) 0.6s;
}

.btn_ov:hover .bgleft:before{
	transform-origin:left top;
	transform:scale(1, 1);
}








/*Link
----------------*/
a.Link{
	display: block;position: relative; text-decoration: none;height: 106px;

}
.Link .ico_aroow{
	width: 106px;
	height: 106px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-border-radius: 50%;
	position: absolute;
	left: 0;
	transition: 0.5s ease-in-out;
	background-color: #444;
}
.Link:hover .ico_aroow{
	background-color: #FDD23C;
}
.Link .ico_aroow img{
	width: 14px;
	height: 14px;
}
.Link .txt{
	display:block;
	position: absolute;
	left: 120px;
	top: 50%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.centerbutton .Link .txt{
	left: auto;
	top: 130px;
	position: relative;
}

.Link .txt::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 0;
  height: 1px;
  background: #3D3D3D;
  content: "";
  transition: 0.3s;
  transform: translateX(0%);
}
.Link:hover .txt::after {
  width: 100%;
}

/*波形の設定*/
.Link:hover .ico_aroow::before {
    content: '';
    /*絶対配置で波形の位置を決める*/
    position: absolute;
	transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /*波形の形状*/
    border: 1px solid #333;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    /*はじめは不透明*/
	opacity:1;
    /*アニメーションの設定*/
    animation:1s circleanime2 forwards;
}
/*波形が広がるアニメーション*/
@keyframes circleanime2{
	0%{
	  transform: scale(0);
	}
	100%{
		transform:scale(3);
		opacity: 0;
    
		
	}
}
@media screen and (max-width: 1250px){
a.Link{height: auto; width: 100%;text-align: center;}

.Link .ico_aroow img{
	width: 14px;
	height: 14px;
}
.Link .txt{
	display:block;
	position: relative;
	left: 0;
	top: 0;
	transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
}
.centerbutton .Link .txt{
	width: auto;
	display:block;
	left: 0;
	top: 0;
	position: relative;
}
.Link .ico_aroow{
	position: relative;
	left: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}
}





/*BOX
---------------------------------------*/
.Row{
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	position: relative;
	z-index: 100;
	padding-bottom: 100px;
	word-break: break-all;
}
@media screen and (max-width: 1250px){
	.Row{
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	#Contents_sp{
		position: relative;
		z-index: 1;
		width: 540px;
		margin-left: auto;
		margin-right: auto;
		border-radius: 15px;
		box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
		
		background-color:rgba(255,255,255,0.7);
	}
}

@media screen and (max-width: 550px){
	#Contents_sp{
		width: 100%;
		border-radius: 0;
		box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
		background-color:rgba(255,255,255,0);
	}
	.Row{
		margin-bottom: 5%;
	}
}


/*見出し
---------------------------------------*/
.ttl{
	font-size:130px;
	font-family: "M PLUS 1p","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	letter-spacing:-0.06em;
	font-weight: 900;
	line-height: 1.0;
	display: block;	
}
.ttl_sub{
	margin-top: 10px;
	font-size:40px;
	font-weight:700;
	display: block;
	line-height: 1.3;
	margin-bottom: 15px;
}

.clKasou .ttl{
	font-size:90px;
	transform   : scale(1.0, 1.8);
	line-height: 1.0;
}

@media screen and (max-width: 1250px){
.ttl{
	font-size:85px;
}

.clKasou .ttl{
	font-size:70px;
}
.ttl_sub{
	font-size:30px;
}
}

@media screen and (max-width: 550px){
.ttl{
	font-size:15vw;
}
.clKasou .ttl{
	font-size:12vw;
}
.ttl_sub{
	font-size:5vw;
}
}

/*左から右*/
#idKasouMain .ttl{
	display: inline-block;
	position: relative;
}
#idKasouMain .ttl::before{
	animation-name:bgLRextendAnime20;
	animation-duration:1.4s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
	bottom: -10px;
    width: 100%;
    height: 14px;
    background-color: #FDD23C;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime20{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(1);
	}
}



/*Kasou COMMON
----------------------------------------------*/
#idKasouMain{
	text-align: center;
	position: relative;
	z-index: 1;
	padding-top: 0px;
	
}
#idKasouMain .ttl{
	font-size: 80px;
}
#idKasouMain .ttl_sub{
	font-size: 24px;
}
#idKasouMain .clBigtext{
	font-family: "M PLUS 1p","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	letter-spacing:-0.06em;
	font-size:10vw;
	line-height: 1;
	margin-top: 0;
	font-weight: 900;
}

@media screen and (max-width: 1250px){
#idKasouMain{
	padding-top: 50px;
	margin-left: 5%;
	margin-right: 5%;
}
#idKasouMain .ttl_sub{
}
#idKasouMain .clBigtext{
	text-align: left;
	font-size:118px;
}
}
@media screen and (max-width: 550px){
#idKasouMain .clBigtext{
	text-align: left;
	font-size:21vw;
}
#idKasouMain{
	padding-top: 0px;
}
#idKasouMain .ttl{
	font-size:50px;
}
#idKasouMain .ttl_sub{
	font-size:20px;
}
}


/*CONTENTS BOX
---------------------------------------*/
.clContents_L{
	position: relative;
	z-index: 1;
	width: 43%;
}
.clContents_R{
	position: absolute;
	width: 50%;
	right: 0;
	top: 0;
}
.clContents{
	margin-bottom: 50px;
	position: relative;
	width: 100%;
	/*background-image: url("../i/blobanimation.svg");
	background-repeat: no-repeat;
	background-position: right -170px top;
	background-size:  50% 100%;*/
	padding: 100px 0 0px 0;

}
.clContents p{
	line-height: 2;
}
.clMidashi_mini{
	font-size: 26px;
	width: 500;
	line-height: 2;
}

@media screen and (max-width: 1250px){
.clContents_L{
	width: 100%;
	padding-bottom: 200px;
}
.clContents_R{
	position: relative;
	width: 100%;
	right: auto;
	top: auto;
}
.clContents{
	margin-bottom: 50px;
	padding: 50px 0 0px 0;
	background-size: 98% auto;
	background-position: right 70px;
}
}

@media screen and (max-width: 550px){
.clContents{
	margin-bottom: 5%;
}
}






/*ヘッダー
---------------------------------------*/
#idHeader{
	margin-left: 50px;
	margin-right: 50px;
	position: relative;
	margin-top: 10px;
	margin-bottom: 50px;
	z-index: 1000;
}
#idHeader .clLogo{
	margin-top: 55px;
	float: left;
}
#idHeader .clLogo img{
	width: 60px;
	height: auto;
}
#idHeader #idHeadSns{
	position: absolute;
	text-align: right;
	display: flex;
	
	position: fixed;
	right: 5px;
	top:10px;
}
#idHeader #idHeadSns li a{
	display: block;
	padding: 10px;
}
#idHeader #idHeadSns li a img{
	width: 20px!important;
}
@media screen and (max-width: 1250px){
#idHeader #idHeadSns li a img{
	width: 40px!important;
}
}
#idHeader #idHeadSns li a:hover img{
	-webkit-filter: brightness(2.8);
	-moz-filter: brightness(2.8);
	-o-filter: brightness(2.8);
	-ms-filter: brightness(2.8);
	filter: brightness(2.8);
}

#idHeader #idGmenu{
	top: 60px;
	/*position: fixed;*/
	right: 50px;
	display: flex;
	flex-wrap: nowrap;
	position: fixed;
	padding: 10px 10px 10px 20px;
	-webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
#idHeader #idGmenu.fixed1{
	top: -100px;
}

#idHeader #idGmenu.fixed{
	top: 0px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	background-color: rgba(255,255,255,.9);
}
#idHeader #idGmenu li{
	text-align: center;
	margin-right: 30px;
	
}
#idHeader #idGmenu li:last-child{
	margin-right: 0px;
}
#idHeader #idGmenu a{
	position: relative;
	text-decoration: none;
	font-weight: 700;
	font-size: 20px;
	color: #3D3D3D;
	display: block;
	line-height: 1;
	padding: 10px 0px 15px 0px;
	-webkit-transition: 0.15s ease-in-out;
    -moz-transition: 0.15s ease-in-out;
    -o-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
}
#idHeader #idGmenu a .sub{
	display: block;
	font-size: 12px;
	font-weight: 300;
	margin-top: 5px;
}
#idHeader #idGmenu a.sen::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #3D3D3D;
  content: "";
  transition: 0.3s;
  transform: translateX(-50%);
}
#idHeader #idGmenu a.sen:hover::after {
  width: 100%;
}

#idHeader #idGmenu li#idHeadContact{
}
#idHeader #idGmenu li#idHeadContact a{
	border-bottom: 0;
	background-color: #10C991;
	color: #FFF;
	padding: 10px 35px 15px 50px;
	-webkit-border-radius: 50px;
	-webkit-transition: 0.15s ease-in-out;
    -moz-transition: 0.15s ease-in-out;
    -o-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
	position: relative;
	overflow: hidden;
}
#idHeader #idGmenu li#idHeadContact.Status_2 a{
	background-color: #FDD23C;
	color: #222;
}
#idHeader #idGmenu li#idHeadContact.Status_3 a{
	background-color: #FF5858;
}

#idHeader #idGmenu li#idHeadContact a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shine 1.5s linear infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 30%;
  }
  100% {
    left: 100%;
  }
}



#idHeader #idGmenu li#idHeadContact a img{
	position: absolute;
	left: 15px;
	top: 35%;
}
#idHeader #idGmenu li#idHeadContact a:hover img{
    animation: 0.5s arrow2 linear infinite;
}

#idHeader #idGmenu li#idHeadContact a img {	
	animation:3s linear infinite arrow;
}
@keyframes arrow{
  from{ transform:rotate3d(0, 1, 0, 0deg);}
  25%{ transform:rotate3d(0, 1, 0, 90deg); }
  50%{ transform:rotate3d(0, 1, 0, 180deg); }
  75%{ transform:rotate3d(0, 1, 0, 270deg); }
  to { transform:rotate3d(0, 1, 0, 360deg); }
}
@keyframes arrow2{
  0% {transform: rotate(0);}
  50% {filter:rotateX(100);}
  100% {transform: rotateX(360deg);}
}


#idHeader #idGmenu li#idHeadContact a:hover{
	background-color: #3D3D3D!important;
	color: #fff!important;
}

#idHeader #idHeadContact2{
	position: fixed;
	top: 15px;
	right: 80px;
	z-index: 10000;
	display: none;
}
#idHeader #idHeadContact2 a{
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	-webkit-border-radius: 50px;
	background-color: #10C991;
	justify-content: center;
	flex-wrap: wrap;
}
#idHeader #idHeadContact2.Status_2 a{
	background-color: #FCDB00;
}
#idHeader #idHeadContact2.Status_3 a{
	background-color: #FF5858;
}
#idHeader #idHeadContact2 img {	
    animation: 2s arrow linear infinite;
}

@media screen and (max-width: 1250px){
#idHeader{
	margin-left: 0;
	margin-right: 0;
	margin-top: 0px;
	margin-bottom: 50px;
}

#idHeader #Menu{
	background-color: #FFF;
	position: fixed;
	z-index: 1000;
	height: 100vh;
	width: 100%;
	border: 2px solid #999;
	box-sizing: border-box;
	transform: translateX(100%);
	transition: .5s;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#idHeader #Menu::-webkit-scrollbar{
  display: none;
}
#idHeader #Menu.slide-in {
	transform: translateX(0);
}

#idHeader .clLogo{
	margin-top: 20px;
	margin-left: 20px;
}
#idHeader .clLogo img{
	width: 60px;
}

#idHeader #idGmenu,
#idHeader #idGmenu.fixed,
#idHeader #idGmenu.fixed1{
	top: 80px;
	position: relative;
	right: auto;
	display: block;
	margin-left: 7%;
	margin-right: 7%;
	padding: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

#idHeader #idGmenu li{
	text-align: left;
	margin-right: 0;
	margin-bottom: 5px;
	display: block;
	position: relative;
	background-image: url("../i/ico_arrow-right.svg");
	background-position:center right;
	background-repeat: no-repeat;
	background-size: auto 20px;
}
#idHeader #idGmenu li:nth-child(6){
	margin-bottom: 0px;
}

#idHeader #idGmenu li#idHeadContact{
	display: none;
}
#idHeader #idHeadContact2{
	display: block;
}

#idHeader #idGmenu a.sen::after {
  left: 0%;
  transform: translateX(0%);
}
#idHeader #idHeadSns{
	right: auto;
	top:auto;
	position: relative;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
	margin-top: 100px;
	margin-bottom: 20px;
}
#idHeader #idHeadSns li{
	display: inline-block;
	margin-left: 30px;
	margin-right: 30px;
}
#idHeader #idHeadSns li img{
	height: 50px;
}


}

@media screen and (max-width: 550px){
#idHeader{
	margin-bottom: 30px;
}
}




/*背景歯車
---------------------------------------*/
.Back_haguruma{
	top:150px;
	right:-100px;
	position: absolute;
	z-index: 0;
	opacity: 0.3;
}
.Back_haguruma object{
	width: 1300px;
	height: auto;
}

@media screen and (max-width: 1250px){
.Back_haguruma{
	top:-15px;
	right:-202px;
}
.Back_haguruma object{
	width: 700px;
	height: auto;
}
.Back_haguruma{
	position: fixed;
}
}
@media screen and (max-width: 550px){
.Back_haguruma{
	position: absolute;
}
}

/*フッターお問合せ誘導
---------------------------------------*/
.clContact{
	background-color: #FDD23C;
	text-align: center;
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	margin-bottom: 70px;
}
.clContact p{
	color: #000;
	font-weight: 500;
}
.clContact h2{
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}
.clContact .link{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	position: relative;
	z-index: 1;
}

.clContact .link a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 50px;
  background-color: #10C991;
  color: #fff;
  padding: 14px 65px 20px 80px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.15s ease-in-out;
}

.clContact .link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  animation: shineEffect 1.5s linear infinite;
  pointer-events: none;
}
@keyframes shineEffect {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}



.clContact .link.Status_2 a{
	background-color: transparent;
	box-sizing: border-box;
	border: 2px solid #000;
	color: #000;
}
.clContact .link.Status_2 a:hover{
	border: 2px solid #fff;
	color: #FFF;
}
.clContact .link.Status_3 a{
	background-color: #FF5858;
}



.clContact .Status_p{
	margin-top: 30px;
	font-size: 80%;
}

.clContact .link a img{
	position: absolute;
	left: 15px;
	top: 34%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	transform: rotateX(0deg);
	transition:.7s;
}
.clContact .link a:hover img{
	transform: rotateX( 360deg );
}

.clContact .link a:hover{
	-webkit-filter: brightness(1.2);
	-moz-filter: brightness(1.2);
	-o-filter: brightness(1.2);
	-ms-filter: brightness(1.2);
	filter: brightness(1.2);
}
.clContact .clContact_l{
	position: absolute;
	left: 5%;
	bottom:-50px;
	z-index: 0;
}
.clContact .clContact_r{
	position: absolute;
	right: 5%;
	bottom:-50px;
	z-index: 0;
}

.clContact .clContact_l img{
	animation-name: con01;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
@keyframes con01 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(10px);
  }
}
.clContact .clContact_r img{
	animation-name: con02;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
@keyframes con02 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-10px);
  }
}



.clContact .link a:hover img{
	transform: rotateX( 360deg );
    animation: 0.5s arrow2 linear infinite;
}

.clContact .link a img {	
    animation: 2s arrow linear infinite;
}

@media screen and (max-width: 1450px){
.clContact .clContact_l{
	left: 0%;
}
.clContact .clContact_r{
	right: 0%;
}
}

@media screen and (max-width: 1250px){
.clContact .clContact_l{
	position: absolute;
	left: -3%;
	width: 30%;
}
.clContact .clContact_r{
	position: absolute;
	right: -3%;
	width: 30%;
}
.clContact{
	padding-left: 20%;
	padding-right: 20%;
}
.clContact .Status_p{
	margin-left: 50px;
	margin-right: 50px;	
}
}

@media screen and (max-width: 550px){
.clContact{
	padding-left: 10%;
	padding-right: 10%;
	padding-bottom: 3%;
}
.clContact .clContact_l{
	position: absolute;
	bottom:1%;
	width: 40%;
	left: -13%;
}
.clContact .clContact_r{
	position: absolute;
	bottom:1%;
	width: 40%;
	right: -11%;
}
.clContact .Status_p{
	margin-left: 50px;
	margin-right: 50px;	
}
}


@media screen and (max-width: 400px){
.clContact .link a{
	font-size: 5vw;
}
}


.clContact .triangle{
  width: 0px;
  margin-left: auto;
  margin-right: auto;
  border-top: 30px solid #444;
  border-right: 60px solid transparent;
  border-left: 60px solid transparent;
}


/*テキストアニメーション*/
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.85s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1.4s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}


/*スクロールダウン全体の場所*/
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
	position:relative;
	bottom:10px;
    /*全体の高さ*/
	height:80px;
}

/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -15px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 60px;
	background: #ccc;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:50px;
		opacity: 1;
	}
	100%{
		height:0;
		top:80px;
		opacity: 0;
	}
}



/*フッター
---------------------------------------*/
#idFooter{
	position: relative;
	z-index: 1;
	text-align: center;
	font-size: 14px;
	padding-bottom: 70px;
}
#idFooter .logo{
	width: 150px;
	height: auto;
}





/*フッターリンクボタン
---------------------------------------*/
#idPartner_bana{
	position: fixed;
	right: 0px;
	bottom: 0px;
	z-index: 100;
}
#idPartner_bana a{
	/*color: #FFDD00;*/
	text-decoration: none;
	background-color: #FDD23C;
	color: #3D3D3D;
	display: block;
	padding: 12px 140px 12px 60px;
	border-top-left-radius: 25px;
	position: relative;
	
	border-top: 3px solid #3D3D3D;
	border-left: 3px solid #3D3D3D;
	box-sizing: border-box;
	background-image:url(/i/ico_mail.svg);
	background-repeat:no-repeat;
	background-position: 20px center;
	background-size: 17px auto;
	transition: background-position 0.3s ease-in-out;
	box-shadow: -7px -5px 10px rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
  z-index: 0;
}
#idPartner_bana a::before {
	box-sizing: border-box;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
	border-top-left-radius: 20px;
  background: #3D3D3D;
  z-index: -1; /* 背景を下に置くのがポイント！ */
  transition: width 0.4s ease;
	background-position: 20px center;
	background-image:url(/i/ico_mail.svg);
	background-repeat:no-repeat;
}

#idPartner_bana a:hover::before {
  width: 100%;
}
#idPartner_bana a:hover {
	color: #FFF;
}

#idPartner_bana .img{
	position: absolute;
	right: -20px;
	bottom: -10px;
	animation-name: shake;
	animation-duration: 0.7s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
#idPartner_bana .img img{
	transform: scaleX(-1);
}

#idPartner_bana .img{
	vertical-align: bottom;
}

/*
#idPartner_bana a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  animation: shineEffect 1.5s linear infinite;
  pointer-events: none;
}
*/

@media screen and (max-width: 1250px){

#idPartner_bana{
}
#idPartner_bana .img{
	right: -10px;
}
#idPartner_bana .img img{
	height: 100px;
	width: auto;
}
#idPartner_bana a{
	padding: 12px 90px 12px 55px;
}
#idPartner_bana .mini{
	display: none;
}

}


@media screen and (max-width: 1250px){
#idPartner_bana a{
	font-size: 80%;
}
}



