@charset "utf-8";

h1{
	margin: 0;
}

.circle-image img {
  object-fit: cover; /* 縦横比を維持してトリミングする */
  border-radius: 50%; /* 50%で画像を円形に切り抜く */
  box-shadow: 6px 6px 3px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem
}
.circle-image figcaption{font-size: 0.9rem}

/*３列 シンプル
---------------------------------------------------------------------------*/
.list-grid-simple .list{text-align: center}

.list-grid-simple .list {
	margin-bottom: 1rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;			/*ボックス内の余白*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*listブロック全体を囲むブロック*/
	.list-grid-simple {
		display: flex;		/*flexボックスを使う指定*/
		flex-wrap: wrap;	/*折り返す指定*/
	}

	/*１個あたりのボックス設定*/
	.list-grid-simple .list {
		width: 32%;			/*幅。３列になります。*/
		margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	}
	
	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid-simple .list:nth-of-type(3n) {
		margin-right: 0;
	}

	/*ボックス内のtextブロック*/
	.list-grid-simple .list .text {
		flex: 1;
	}

	}/*画面幅900px以上の追加指定ここまで*/

/*footer
---------------------------------------------------------------------------*/
footer div,footer p,footer li{
	text-align: left;
}
footer h3 {
  border-bottom: solid 2px #5472cd;
  position: relative;
  text-align: left;
}

footer h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #cce4ff;
  bottom: -2px;
  width: 20%;
}
footer a:hover {
	color: #CCE4FF	/*文字色*/
}
.cr{
	background: #7E8BB6;
	color: #0e1b55;
	padding: 0.2rem;
	font-size: 0.6rem;
	text-align: center;
}
	/*画面幅100px以上で狭く*/
	@media screen and (min-width:1000px) {
.narrow{
	padding: 0 5rem;
}
}
.footerBnr li{
	list-style-type: none;
	margin-left: -35px;
	margin-bottom: 10px
}
.footerBnr li img{
	width: 50%
}
/*welcome*/
#welcome .date {
	justify-content: space-between;
	margin: 3rem;		/*h2の外側にとるスペース。上、左右、下への順番。*/
	position: relative;		/*ulineを配置する為に必要な指定*/
	font-weight: 500;	
	text-align: center;	
	background-position: center bottom;
	padding-bottom: 1.2rem;
	color: #000;
	font-size: 2rem;
	line-height: 1.2;
}
.soon {
  display: grid;
}
.soonText {
  width: 100%;
  height: 100%;
  padding-top: 5%;
}
.soonText2 {
  height: 500px;
}
.margin-left-20{margin-left: 20px;}
.list-none li{
	list-style: none;	
}

/*600未満*/
@media screen and (max-width:600px) {
.br::before {
	content: "\A" ;
	white-space: pre ;
}
}
