/* CSS Document */

#logo{
	padding-top: 0;
	}
	#logo section{
		padding-bottom: 0;
		}

#about{}
	#about figure{
		margin-bottom: 2em;
		text-align: center;
		}
	#about img{
		max-width: 580px;
		}

#concept{}
	#concept dl{
		display: flex;
		flex-wrap: wrap;
		}
	#concept dt,
	#concept dd{
		line-height: 1.4em;
		}
		#concept dt:nth-of-type(n+2),
		#concept dd:nth-of-type(n+2){
			margin-top: 0.5em;
			}
	#concept dt{
		width: 5em;
		}
	#concept dd{
		width: calc(100% - 5em);
		}
	#concept .column{
		border: 1px solid #ccc;
		padding: 1em;
		margin-top: 1em;
		list-style: none;
		}
		#concept .column li+li{
			margin-top: 1em;
			}
		#concept .column li:first-letter{
			font-weight: bold;
			}

#regulation{}
	#regulation ul{
		border-top: 1px solid #ccc;
		list-style: none;
		}
	#regulation li{
		padding: 1em 0;
		border-bottom: 1px solid #ccc;
		}
		#regulation li a{
			position: relative;
			display: block;
			padding-left: 1.2em;
			line-height: 1.4em;
			}
		#regulation li i{
			position: absolute;
			top: 0.2em;
			left: 0;
			}


/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767px) {
/*767以下px*/
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
#concept{}
	#concept .column{
		column-count: 2;
		}
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 1199px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
#concept{}
	#concept .column{
		column-count: 3;
		}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
#concept{}
	#concept .column{
		column-count: 3;
		}
}
@media (min-width: 1200px) {
/*1200px以上*/
#concept{}
	#concept .column{
		column-count: 4;
		}
}


/* Edge */
@supports (-ms-ime-align:auto) {
}


/* ie */
@media all and (-ms-high-contrast: none) {
}


