@charset "utf-8";

@import url("../style/variables.css");/*変数定義*/
	
:root{
}

article#about_juku{/*塾の紹介*/
	> div{
		&:nth-of-type(1){
			width:min(760px,100%);
			display:grid;
			grid-template-columns: 200px 1fr;
			gap:40px;
			align-items: center;
			margin:30px auto 0 auto;
			p{
				text-align: left;
				min-width: 0;
			}
		}
		&:nth-of-type(2){
			width:min(760px,100%);
			margin:80px auto 0 auto;
			article{
				margin:50px auto 0 auto;
				h3{
					font-size: 1.3rem;
					font-weight: 600;
					text-align: left;
					padding-left:10px;
					color:#ff4531;
				}
				p{
					margin:.7em 0 0 1.7em;
					text-align: left;
				}
			}
		}
	}
	@media (max-width: 768px) {
		> div{
			&:nth-of-type(1){
				display:block;
				figure{
					display:none;
				}
			}
		}
	}
}