@charset "utf-8";
/* CSS Document */
.pagetop {
	display: none;
	position: fixed;
	bottom: 250px;
	right: 5px;
	width: 40px;
	height: 40px;
	z-index: 50000;
	 filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
.pagetop img {
	transition: 0.5s;
}
.pagetop img:hover {
	transform: rotate(360deg);
}

/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
  overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
  display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

/*--------------------------------------------------------------------------メインイメージ*/
#mimg {
	position: relative;
	width: 100%;
	height: 200px;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
	background-color: #2341b9;
	overflow: hidden;
}
#mimgbox{
	width: 100%;
	height: 1000%;
	background: #ddd;
	transform: skew(0deg, -60deg);
}

#mimg .txtBox {
	width: 1100px;
	height: 200px;
	margin: 0 auto;
	z-index: 2;
	transform: skew(0deg, 60deg);
}
#mimg .p1 {
	position: relative;
	width: 100%;
	height: auto;
	font-size: 38px;
	line-height: 40px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #fff;
    text-align: left;
	float: left;
	z-index: 3;
	margin-top: 70px;
}
#mimg .p2 {
	position: relative;
	width: 100%;
	height: auto;
	font-size: 14px;
	line-height: 15px;
	color: #ffd700;
    text-align: left;
	float: left;
	margin-top: 15px;
}


/*--------------------------------------------------------------------------コンテンツ*/
#container {
	width: 100%;
	height: auto;
	margin-top: 70px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

#section01 {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding-top: 0px;
	padding-bottom: 50px;
}
#contents01 {
	position: relative;
	width: 1100px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
#contents01:after{
	content: "";
	clear: both;
	display: block;
}
h2 {
	position: relative;
	width: 100%;
	height: 60px;
	float: left;
	font-size: 38px;
	line-height: 45px;
	font-weight:600;
	text-align: left;
	letter-spacing: 1px;
	color: #2341b9;
}
h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 4px #2341b9;
  bottom: 0px;
  width: 80px;
}

#contents01 .txt01{
	width: 100%;
	height: auto;
	float: left;
	font-size: 18px;
	line-height: 30px;
	font-weight: 600;
	text-align: left;
	letter-spacing: 1px;
	margin-top: 30px;
}
h3 {
	position: relative;
	width: 100%;
	height: auto;
	float: left;
	font-size: 25px;
	line-height: 26px;
	font-weight:600;
	text-align: left;
	letter-spacing: 1px;
	margin-top: 50px;
}
#contents01 .txt02{
	width: 100%;
	height: auto;
	float: left;
	font-size: 16px;
	line-height: 25px;
	text-align: left;
	letter-spacing: 1px;
	margin-top: 15px;
}
#Imgbox {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	float: left;
	margin-top: 20px;
}
#Imgbox img{
	margin-right: 10px;
}

@media screen and (min-width:768px){

}
