@charset "utf-8";

*{/* 全てのタグに適用 */
	margin: 0;
    padding: 0;
}

 :root {
     --skyblue: #8bd3dd;
     --gray: #646e57;
	 --pink: #f582ae;
	 --navy: #001858;
	 --coralpink: #FF9888;
	 --brown: #271c19;
	 --lightgray: #a2997f;
	 --lightpink: #ffcfa7;
}


body {
	font-family: "Montserrat","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif ;
	background-color: var(--lightpink);
	max-width: 100vw;
	min-height: 100vh;
	margin: 0 auto;
	padding-bottom: 50px;
	position: relative;
	box-sizing: border-box;
}

a {
	color: white;
	text-decoration: none;
}

a:hover {
	color: white;
	cursor: pointer;
}

header {
	margin: 0;
    padding: 10px auto;
	width: 100vw;
	height: 40px;
	background: var(--lightgray);
	position: fixed;
	top: 0;
	z-index: 1;
}

header::after {
	content: '';
	display: block;
	clear: both;
}

.glob-menu {
	display: flex;
	white-space: nowrap;
	justify-content: flex-end;
}

.glob-menu li {
	padding: 10px 0 10px 5px;
	width: 100px;
	list-style: none;
	font-weight: bold;
	font-size: 1.1rem;
	text-align: center;
	color: white;
	letter-spacing: 2px;
}

/* .hamb {
	display: none;
}

.hambmenu {
	position: relative;
	top: 20px;
	list-style-type: none;
	float: right;
	display: none;


.hambmenu li {
	margin: 0 8px;
	padding: 10px;
	background: #271c19;
	width: 80px;
	opacity: 0.7;
	text-align: center;
}
} */
.glob-menu :last-child {
	margin-right: 15px;
}

main {
	color: var(--brown);
	padding-top: 80px;
}

#top_img {
	margin: 20px;
}

#top_img p {
	color: var(--brown);
	float: left;
	font-size: 3rem;
	position: relative;
	top: 20vh;
	right: -15vw;
	font-family: 'Pacifico', cursive;
}

#top_img img {
	width: 400px;
	float: right;
}

#top_img::after {
	content: '';
	display: block;
	clear: both;
}

main h1,main h2,.main h3 {
	text-align: center;
	font-family: 'Pacifico', cursive;
}

main h1 {
	margin-bottom: 30px;
	font-size: 2.2rem;
}

main h2 {
	margin: 30px 0 15px 0;
	font-size: 2rem;
}

main h3 {
	margin: 15px 0;
	font-size: 1.2rem;
}

.prof_img {
	margin: 60px auto;
	align-items: center;
	width: 65vw;
}

.prof_img img {
	display: block;
	text-align: center;
	margin: 0 auto;
	width: 150px;
}

.prof_img p {
	margin-top: 15px;
}

.font1 {
	font-weight: bold;
	font-size: 1.1rem;
}

.pd-h {
	font-family: "Montserrat","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif ;
	font-size: 1.5rem;
}

.pd-h a {
	color: var(--brown);
}

.product img {
	width: 400px;
}


footer {
	display: block;
	color: white;
	background: var(--brown);
	height: 50px;
	width: 100vw;
	text-align: center;
	line-height: 50px;
	position: absolute;
	bottom:0;
}

@media screen and (max-width: 480px) {
	.glob-menu li {
		padding: 8px 0 5px 0;
		width: 18vw;
		font-size: 1rem;
	}

	.glob-menu li:last-child {
		padding-left: 10px;
	}

}

@media screen and (max-width: 800px) {

	#top_img p {
		position: relative;
		top: 0;
		left: 0;
		text-align: center;
		margin: 10px auto;
		float: none;
	}
	
	#top_img img {
		display: block;
		float: none;
		text-align: center;
		margin: 0 auto;
		width: 65vw;
	}

	.product img {
		width: 40vw;
	}

	footer {
		height: 50px;
		line-height: 20px;
		padding: 20px auto;
	}

	footer p {
		font-size: 0.8rem;
		padding-top: 8px;
	}
		/* 
	.hamb {
		display: flex;
		flex-direction: column;
		justify-content: right;
		margin: 8px;
		position: absolute;
		top: 0;
		right: 15px;
		cursor: pointer;
	} */

/* 	.hamb span,.hamb::before,.hamb::after {
		display: block;
		margin-top: 5px;
		content: '';
		border-radius: 5px;
		box-sizing: border-box;
		background-color: white;
		width: 25px;
		height: 1px;
		position: relative;
	} */

/* 	.hamb:hover + .hambmenu {
		display: block;
	} */
	
/* 	.glob-menu li :not(.hamb-li){
		display: none;
	} */

}