@charset "utf-8";
/* CSS Document */


/*==================================================
新事業のギャラリー
===================================*/

.new-business-h2{
	border-bottom: 1px solid #333;
	margin-bottom: 15px;
	text-align: center;
	line-height: 1.25;
	font-size: clamp(20px, 3vw, 30px);
	padding: 1.5% 0;
	color: #F30 !important;
}

.new-business-notice{
	width: 100%;
	height: auto;
	padding: 5%;
	background-image: url(../images/block-check.gif);
	background-repeat: repeat;
	background-position: center top;
	margin-bottom: 150px;/*50px*/
}

.fa-map-marker-alt{
	color: #F30;
	font-size: clamp(36px, 3vw, 60px);
}

.business-contents img{
	width: 75%;
	height: auto;
	margin: 0 auto;
}

@media screen and (max-width:900px) {

.business-contents img{
	width: 90%;
}
	
}




/*==================================================
告知のギャラリー
===================================*/

.frema-notice{
	width: 100%;
	height: auto;
	padding: 5%;
	background-image: url(../images/sdgs-back.png);
	background-repeat: repeat;
	background-position: center top;
	margin-bottom: 150px;/*50px*/
}
.frema-notice-h2{
	border-bottom: 1px solid #333;
	margin-bottom: 15px;
	text-align: center;
	line-height: 1.25;
	font-size: clamp(20px, 3vw, 30px);
	padding: 1.5% 0;
	color: #F30 !important;
}
.fa-shopping-basket{
	color: #F30;
	font-size: clamp(36px, 3vw, 60px);
}
.frema img{
	width: 70%;
	height: auto;
	margin: 0 auto;
}

.frema-past-h2{
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	text-align: center;
	line-height: 1.25;
	font-size: clamp(20px, 3vw, 30px);
	padding: 1.5% 0;
	color: #000;
}
.frema-past{
	width: 100%;
	padding-bottom: 100px;
}

#midashi .m-text{
	font-size: clamp(12px, 3vw, 16px);
	text-align: center;
	margin: 5px auto 10px auto;
}

@media screen and (max-width: 700px) {
	
.frema img{
	width: 100%;
}
	
	
}


/*==================================================
過去のギャラリー
===================================*/

.frema-past{
	width: 100%;
	margin-bottom: 100px;
}

.gallery{
	columns: 4;/*段組みの数*/
	padding:0 2.5%;/*ギャラリー左右に余白をつける*/
}

.gallery li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/}
	

/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
	
	.gallery{
		columns:3;
	}	
}

@media only screen and (max-width: 700px) {
	
	.gallery{
	columns: 2;
	}	
}


/*========= レイアウトのためのCSS ===============*/

/*画像を出現させるアニメーションCSS*/

.flipLeft{
	animation-name: flipLeft;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	perspective-origin: left center;
	opacity: 0;
}

@keyframes flipLeft{
	
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
  
}
