body {
  margin: 0;
  box-sizing: border-box;
  background-color: #feddd7;
}
.hero {
  width: 100vw;
  height: 100vh;
  background: #ff6347;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  width: 60%;
}
main {
  max-width: 720px;
  margin: 120px auto;
  padding: 0 16px;
}
main.toppage {
  margin: 180px auto;
}
h1 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 28px;
  border-left: 10px #000 solid;
  padding-left: 8px;
}
h2 {
  font-size: 25px;
  line-height: 27px;
  letter-spacing: 5%;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 3px #000 solid;
  margin-top: 0px;
  margin-bottom: 18px;
  display: inline-block;
}
section {
  margin-top: 28px;
}
p {
  margin: 0;
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: 5%;
}
.link-wrapper {
  width: 300px;
  position: relative;
  margin-top: 70px;
  padding-top: 20px;
}
.link-label {
  position: absolute;
  top: 0%;
  left: 20px;
  background: #ff6347;
  border-radius: 9999px;
  padding: 6px 10px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 28px;
}
.link-list {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.link-list a {
  text-decoration: none;
  font-size: 20px;
  line-height: 24px;
  color: #313030;
}
.link-list a:hover {
  color: #000;
}
.link-list div {
  background: #d2b4af;
  width: 100%;
  height: 1px;
}
.back-link {
  transition: all 0.2s;
  position: fixed;
  left: -10px;
  bottom: 50px;
  background: #fff;
  border-radius: 0px 40px 40px 0px;
  padding: 5px 20px;
  font-size: 14px;
  line-height: 17px;
  color: #000;
  text-decoration: none;
}
.back-link:hover {
  left: 0px;
}
