* {
  box-sizing: border-box;
  font-family: sans-serif;
}
html {
  font-size: 16px;
  overflow-x: hidden;
}
@media screen and (max-width: 1680px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
}
body {
  margin: 0;
  overflow-x: hidden;
}
body.is-dialog-open {
  overflow: hidden;
}
.container {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: 1185px;
}
.pic {
  width: 100%;
  font-size: 0;
  line-height: 0;
}
.pic img {
  width: 100%;
  display: block;
}
.btn-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn-box {
  border-radius: 50px;
  border: 1px solid #C67764;
  padding: 0.75rem 1.875rem;
  font-size: 1rem;
  text-decoration: none;
  color: #C67764;
  transition: all 0.3s ease;
}
.btn-box.fill {
  background-color: #C67764;
  color: #fff;
}
.btn-box.fill:hover {
  background-color: #fff;
  color: #C67764;
}
.btn-box.circle {
  border-radius: 50%;
  padding: 0;
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-box:hover {
  background-color: #C67764;
  color: #fff;
}
