@charset "utf-8";
.subtitle {
	font-size: 24px;
	color: #5db5bd;
	margin-bottom: 24px;
}
.history-new {
	padding-top: 60px;
}
/*listブロック
---------------------------------------------------------------------------*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	gap: 20px;
}


/*NEWアイコン*/
.list .newicon {
	background: #ff4343;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*UPアイコン*/
.list .up {
	background: #4385ff;	/*背景色*/
	color: #fff;			/*文字色*/
}
/* * {outline: 1px solid magenta;} */
/*---------------------------------------------------------------------------
利用規約
---------------------------------------------------------------------------*/
#rule {
	width: 100%;
	margin-bottom: 5vh;
  }
  
  #rule-inner {
	margin-top: 20px;
	display: flex;
	/* flex-direction: column; */
	gap: 20px;
	justify-content: center;
	align-items: center;
  }
  
  /* ボタン共通設定 */
  #rule-inner div {
	font-weight: 600;
	position: relative;
	z-index: 1;
	width: 50%;
	max-width: 400px;
	min-width: 330px;
	text-align: center;
	border-radius: 10px;
	line-height: 1.5;
	letter-spacing: 5px;
	transition: 0.3s;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  }
  
  /* ボタン内リンク設定 */
  #rule-inner div a {
	display: block;
	text-decoration: none;
	padding: 25px 20px;
	color: #fff;
	box-sizing: border-box;
  }
  
  /* ボタンのマウスオン時 */
  #rule-inner div:hover {
	transform: scale(1.05);
	filter: brightness(1.2);
  }
  
  /* ボタンごとの色設定（公募） */
  #rule-inner div:nth-last-child(1) {
	background-color: #0096ff;
  }
  #rule-inner div:nth-last-child(2) {
	background-color: #ffa800;
  }
  
  /* ボタンごとの色設定（クライアント用） */
  #client-inner div:nth-of-type(1) {
	background-color: #ffa800;
  }
  #client-inner div:nth-of-type(2) {
	background-color: #0096ff;
  }
  
  /* spanタグ 大きな文字 */
  #rule-inner span {
	display: block;
	font-size: 1.5rem;
  }
  
  /* アイコン画像（Font Awesome使用） */
  #rule-inner i {
	opacity: 0.7;
	margin-left: 10px;
	margin-right: 0.4em;
  }
  

/*---------------------------------------------------------------------------
都道府県
---------------------------------------------------------------------------*/
.history-list-title {
	color: #fff;
	background-color: #0096ff;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px 20px;
	width: 180px;
	box-sizing: border-box;
}






/*---------------------------------------------------------------------------
ここから下は画面幅600px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	.history-new {
		padding-top: 30px;
		box-sizing: border-box;
	}
	#rule-inner {
		margin: 20px auto 60px;
		display: flex;
		flex-direction: column;
		gap: 20px;
		justify-content: center;
		align-items: center;
	}
	#rule-inner div {
		width: 100%;
		max-width: 400px;
		min-width: 290px;
		text-align: center;
	}
	/* .frame-style {
		display: none;
	} */
}

/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {}
/* .style_block_top {
	height: 15vh;
}

.style_block_bottom {
	height: 5vh;
}

.subtitle {
	margin-bottom: 48px;
} */


