@charset "utf-8";
/* CSS Document */
*, ::before, ::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
body {
	color: #5A4032;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	line-height: 1.7;
}

a {
	color: #5A4032;
	text-decoration: none;
	position: relative;
	display: inline-block;
}
a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #5A4032;
    transform: scaleX(0);
    transform-origin: left top;
    transition: transform 0.5s ease;
}
a:hover {
	text-decoration: none;
}
a:hover::after {
    transform: scaleX(1);
}
.container {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

ul {
	list-style-type: none;
}
nav ul {
	font-size: 1.6rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 3rem;
	padding-right: 3rem;
}
header {
	padding: 2rem 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header img {
	width: 18rem;
	height: auto;
}
.none a::after {
    content: none;
}

section {
	padding-bottom: 18rem;
}
footer ul {
	font-size: 1.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	padding-top: 5rem;
	padding-bottom: 5rem;
}
footer {
	width: 100%;
	height: 12rem;
	background-color: #F4EFE9;
}

.copy {
	font-size: 1.2rem;
	text-align: center;
}
.show {
	opacity: 0;
	transform: translateY(100px);
}
.show.fade-in {
	opacity: 1;
	transform: translateY(0);
	transition: 1s;
}
@media (max-width:640px){
nav ul{
 font-size: 1rem;
}
header{
	padding: 1rem;
}
header img {
	width: 14rem;
	height: auto;
}
section {
	padding-bottom: 10rem;
}
/*.sp{font-size: 1.8rem;}*/
}