@charset "utf-8";
/* CSS Document */

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family:Arial, Helvetica, "sans-serif"
}

header {
	padding: 32px;
}

.limelight-regular {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
}


body{
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	padding: 0 16px;
	
}

#wrapper{
	background-color: #F1ACAD;
	min-height: 100vh; /* 画面の高さに満たないときでも背景が下まで伸びる */

}

#wrapper::after {
  content: "";
  display: block;
  clear: both;
}


img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

footer{
	padding: 20px 30px;

}


.style-nav ul {
	list-style-type: none; 
	display: flex;
  	flex-wrap: wrap;
 	justify-content: center;
  	gap: 12px;
  	padding: 0;
}

.style-nav ul li {
  	flex: 1 1 100%;
  	max-width: 300px;
}


.style-nav ul li a {
	text-decoration: none;
	color: #2f322a;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding:  10px;
	margin: 10px 0;
	background-color: #fff;
  	border-radius: 8px;
  	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: all 0.3s ease;

}


.style-nav ul li a:hover {
  	transform: translateY(-4px);
  	background-color: #3B4C7A;
	color: #fff;
  	box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}


.hero {
	background-image: url("images/an abstract backgrou.png");
	background-size: cover;
	background-position: center;
  	color: #fff;
  	text-align: center;
  	padding: 60px 20px 50px 20px;
  	min-height: 400px;
}

h1 {
	font-size: 28px;
	font-weight: 200;
	margin-bottom: 30px;
}


.footer-text {
	font-size: 11px;
	margin-bottom: 20px;
	text-align: right;
}




/*tablet View*/
@media (min-width: 768px){
	
	body{
		max-width: 778px;
	}
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
	}	
		
}


/*Desktop View*/
@media (min-width: 1024px){
	
	body{
		max-width: 1000px;
	}	
}
