@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
  font-size: 62.5%;
}
/* font-sizeは16pxの62.5%の10px */
body {
  font-size: 1.6rem;
  padding: 0px;
  margin: 0px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}
header {
  position: fixed;
  top: 0px;
  right: 0px;
}
.wrapper {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.title {
	background-image: url("../img/03.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 70px 0;
}
.title-img {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}
.main {
	background: #51483C;
	margin: -31px 0;
	padding: 70px 0;
}
.main h1, .main p {
	color: white;
}
.main p {
	text-align: justify;
}
.square-1 {
	position: relative;
	text-align: center;
	margin: -25px 0 0 0;
	padding: 0;
	background: none;
}
.square-2 {
	margin: 70px 0;
}
.products {
	text-align: center;
	margin-top: -150px;
	padding-bottom: 50px;
}
.products img {
	max-width: 400px;
	width: 100%;
}
.price {
	padding-bottom: 70px;
}
.price-box {
	display: inline-block;
	max-width: 600px;
	width: 90%;
	border: 2px solid #7FE1E2;
	padding: 1.5rem 1rem;
	margin: 1rem;
	background: white;
	box-shadow: 0 0 8px 2px #5BDAFF;
}
.price-box__noshadow {
	box-shadow: none;
}
.price-box__prod {
	font-size: 2rem;
}
.price-box__price {
	font-size: 1.9rem;
	font-weight: bold;
	color: red;
}
footer {
	background: #51483C;
	padding: 50px 0;
	color: white;
}
.btn-area {
	display: flex;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	padding: 0 0 50px;
}
.btn {
	display: inline-block;
	background: #7FE1E2;
	text-decoration: none;
	color: #51483C;
	padding: 1.5rem 0;
	width: 45%;
	margin: 2%;
}
.br-sm {
    display: none;
  }
@media (max-width: 800px) {
	.title-img {
	width: 70%;
	margin: 0 0 0 15px;
}
	.title-img img {
		width: 100%;
	}
	.title {
		background-size: cover 
	}
}
@media (max-width: 576px) {
  header img {
    width: 90px;
    height: auto;
  }
  .title img {
    width: 90%;
	}
	.br-sm {
    display:inline;
  }
	h1, h2 {
		font-size: 2.0rem;
	}
	footer p {
		text-align: left;
	}
	.btn-area {
		flex-wrap: wrap;
	}
	.btn {
	width: 100%;
	margin: 2%;
}
	.br {
		display: none;
	}
}
