.header{
  	max-width: 450px;
	margin-top: 30px;
  	margin-left: auto;
  	margin-right: auto;
	margin-bottom: 50px;
  	background-color: #fff;
	text-align: center;
}

.concept {
	margin         : auto;                 /* サンプル用 中央寄せ */
	color: #474747;
	font-size: 14px;
	box-sizing     : border-box;           /* 罫線も含む長さ      */
	background     : #fff;                 /* BOXの背景色         */
	animation: boxAnime 10s linear infinite alternate;
	width: 720px;
    max-width: calc(100% - 32px);
    margin: 0 auto;
    margin-bottom: 64px;

	/* ▼ FlexBoxの定義 */
	display        : flex;                 /* FlexBox定義         */
	justify-content: center;               /* 揃えの定義          */
	flex-wrap      : wrap;                 /* 折り返し定義        */
}

.agelimit {
	text-align: center;
	margin-bottom: 10px;
	
	
}

	/* --- 外枠の定義 ---------------------------------------------*/
.nenrei {
	margin         : auto;                 /* サンプル用 中央寄せ */
	box-sizing     : border-box;           /* 罫線も含む長さ      */
	background     : #fff;                 /* BOXの背景色         */
	width          : 370px;                /* BOXの幅             */
	max-height     : 280px;                /* BOXの高さ           */
	animation: boxAnime 10s linear infinite alternate;

	/* ▼ FlexBoxの定義 */
	display        : flex;                 /* FlexBox定義         */
	justify-content: center;               /* 揃えの定義          */
	flex-wrap      : wrap;                 /* 折り返し定義        */
}


	/* --- 個別のBOXの定義 --------------------------------------- */
.nenrei div {
	box-sizing     : border-box;           /* 罫線も含む長さ      */
	background     : #fff;              /* BOXの背景色         */
	border         : 0px solid #35557f;    /* 枠線の指定          */
	width          : 170px;                 /* サンプルBOXの幅     */
	height         : 60px;                 /* サンプルBOXの幅     */
	margin         : 1px;                  /* サンプルBOXの間     */
	text-align     : center;
	border-radius: 10px 10px 10px 10px;
}

.nenrei a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 1em 1em;
  width: 110px;
  color: #fff;
  font-size: 11px;
  font-weight: 680;
  background-color: #464646;
  transition: 0.3s;
}

.nenrei a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
}

.nenrei a:hover {
  text-decoration: none;
  background-color: #bbbbbb;
}

.tel {
  text-align: center;
	
}