@charset "UTF-8";
/* CSS Document */

*{
	margin:0;padding:0;
	font-feature-settings: "palt";
	box-sizing: border-box;
	font-weight: 900;
  font-style: normal;
}

.body1 {
	width: calc(100% - 2em);
	max-width: 600px; /** デザインの最大幅 **/
	margin: 0 auto;
	/*font-family: 'M PLUS 1p', sans-serif;*/
	font-family: "Helvetica Neue",Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}
img {border:0;}
address {font-style:normal;}
a{text-decoration:none;}

.m0auto{margin: 0 auto;}
.mb1{margin-bottom: 1em!important;}
.mb1-5{margin-bottom: 1.5em!important;}
.mb2{margin-bottom: 2em!important;}
.mb2-5{margin-bottom: 2.5em!important;}
.mb3{margin-bottom: 3em!important;}

.red {color: red;}
.yelllow {color: yellow;}
.white{color:white;}
.blue{color:blue;}
.green{color:green;}
.DechauOrange{color:#FF4200;}

.clear {clear:both;}
.copyright {font-size: 0.5em;margin: 20px 0;text-align: center;}

.title1{
	margin-bottom: 2em;
	padding-top: 2em;
}

.wrapper1{
	margin-bottom: 2.5em;
}
.banner1 img{
	display: block;
	width: 100%;
	/*border: solid 1px #333;
	border-radius: 10px;*/
}
h2{
	font-size: 1.2em;
	text-align: center;
}
p{
	margin-top: 0.5em;
	color:#333;
}
.flex1{
	margin-top: 0.4em;
	display: flex;
	justify-content: space-between;
}
.flex1 div{
	text-align: center;
	width: 49.5%;
}
.flex1 div a{
	display: block;
	padding: 0.5em;
	color:white;
	border-radius: 7px;
	border: solid 2.5px #333;
	border-bottom: solid 4px #333;
	font-weight: 900;
	background : -moz-linear-gradient(50% 1.3% -90deg,rgba(7, 6, 7, 1) 0%,rgba(22, 23, 25, 1) 14.91%,rgba(41, 44, 48, 1) 27.63%,rgba(13, 13, 13, 1) 40.59%,rgba(37, 41, 47, 1) 59.17%,rgba(44, 49, 54, 1) 74.08%,rgba(20, 35, 40, 1) 91.69%,rgba(13, 13, 13, 1) 100%);
  background : -webkit-linear-gradient(-90deg, rgba(7, 6, 7, 1) 0%, rgba(22, 23, 25, 1) 14.91%, rgba(41, 44, 48, 1) 27.63%, rgba(13, 13, 13, 1) 40.59%, rgba(37, 41, 47, 1) 59.17%, rgba(44, 49, 54, 1) 74.08%, rgba(20, 35, 40, 1) 91.69%, rgba(13, 13, 13, 1) 100%);
  background : -webkit-gradient(linear,50% 1.3% ,50% 101.16% ,color-stop(0,rgba(7, 6, 7, 1) ),color-stop(0.1491,rgba(22, 23, 25, 1) ),color-stop(0.2763,rgba(41, 44, 48, 1) ),color-stop(0.4059,rgba(13, 13, 13, 1) ),color-stop(0.5917,rgba(37, 41, 47, 1) ),color-stop(0.7408,rgba(44, 49, 54, 1) ),color-stop(0.9169,rgba(20, 35, 40, 1) ),color-stop(1,rgba(13, 13, 13, 1) ));
  background : -o-linear-gradient(-90deg, rgba(7, 6, 7, 1) 0%, rgba(22, 23, 25, 1) 14.91%, rgba(41, 44, 48, 1) 27.63%, rgba(13, 13, 13, 1) 40.59%, rgba(37, 41, 47, 1) 59.17%, rgba(44, 49, 54, 1) 74.08%, rgba(20, 35, 40, 1) 91.69%, rgba(13, 13, 13, 1) 100%);
  background : -ms-linear-gradient(-90deg, rgba(7, 6, 7, 1) 0%, rgba(22, 23, 25, 1) 14.91%, rgba(41, 44, 48, 1) 27.63%, rgba(13, 13, 13, 1) 40.59%, rgba(37, 41, 47, 1) 59.17%, rgba(44, 49, 54, 1) 74.08%, rgba(20, 35, 40, 1) 91.69%, rgba(13, 13, 13, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#070607', endColorstr='#0D0D0D' ,GradientType=0)";
  background : linear-gradient(180deg, rgba(7, 6, 7, 1) 0%, rgba(22, 23, 25, 1) 14.91%, rgba(41, 44, 48, 1) 27.63%, rgba(13, 13, 13, 1) 40.59%, rgba(37, 41, 47, 1) 59.17%, rgba(44, 49, 54, 1) 74.08%, rgba(20, 35, 40, 1) 91.69%, rgba(13, 13, 13, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#070607',endColorstr='#0D0D0D' , GradientType=0);
}

/*
FlexBoxの設定
----------------------------------------------------------- */
/*コンテナ*/
.flexContainer{
	display:flex;
	justify-content: flex-start; /*水平方向の揃え設定*/
	align-items: stretch; /*垂直方向の揃え設定*/
}
/*アイテム*/
.flexItem{
	width: calc(100%/2 - 0.3em); /*分割数を指定*/
}
/*要素の真ん中に配置*/
.mannaka{
	display: flex;
	justify-content: center;
	align-items: center;
}


/*
 フェイドインクラス
----------------------------------------------------------- */
.fadeInUp {
  opacity : 0;
  transform: translateY(20px);
  transition: 1.5s;
}

/*
 メディアクエリ 
----------------------------------------------------------- */
@media (max-width:600px){
	
}