@charset "UTF-8";

/* ==================================================

WEB FONT

*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@900&display=swap');

/* ==================================================

RESET

*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
ul, ol {
	list-style-type: none;
}
a {
	cursor: pointer;
}
img {
	vertical-align: top;
	width: 100%;
	height: auto;
}

/* ==================================================

HTML

*/
html {
  background-color: #e3d3b4;
	font-size: 10px;
}
@media screen and (max-width: 1000px) {
  html {
    font-size: calc(10 / 1000 * 100vw);
  }
}
@media screen and (max-width: 768px) {
	html {
		font-size: calc(10 / 768 * 100vw);
	}
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 2rem;
	line-height: 1.7;
	color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
main {
  background: linear-gradient(0deg, rgba(227,211,180,1) 0%, rgba(255,255,255,1) 80%);
}
h2 {
  padding: 3rem 0 1rem 0;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 3.4rem;
  color: #9b0404;
  letter-spacing: 0.062em;
}
h2.sp {
  display: none;
}
.link {
  display: flex;
  justify-content: center;
  padding: 0 0 5rem 0;
}
.link a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46.6rem;
  height: 8.6rem;
  background-image: url(../img/lp/btn.png);
  background-size: contain;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.1em;
  filter: drop-shadow(0.8rem 0.8rem 0.6rem rgba(0,0,0,0.3));
}
.link a::after {
  content: '＞';
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
footer {
  display: block;
  position: relative;
  padding: 1.8rem 2rem 5rem 2rem;
}
footer::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 1.8rem;
  right: 1.8rem;
  height: 3px;
  background-color: #aaa37b;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
	font-size: 13px;
}
footer nav ul a {
  display: block;
  position: relative;
  color: #54503c;
}
footer nav ul a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #54503c;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 2.4rem;
  }
  h2 {
    padding: 4rem 0 2rem 0;
    font-size: 4.4rem;
    line-height: 1.4;
  }
  h2.sp {
    display: block;
  }
  h2.pc {
    display: none;
  }
  .link a {
    width: calc(1.2 * 46.6rem);
    height: calc(1.2 * 8.6rem);
    font-size: 3rem;
  }
  footer {
    padding: 3rem 40px 5rem 40px;
  }
}