:root {
  --text-color: #4F4037;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
  display: inline-block;
}

body {
  background-color: #f9f2e8;
  color: var(--text-color);
}

main {
  padding-top: 100px;
  padding-inline: 20px;
  max-width: 1800px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  main {
    padding-top: 80px;
  }
}
@media (max-width: 500px) {
  main {
    padding-top: 70px;
    padding-inline: 16px;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.faq-fixed {
  position: fixed;
  right: 25px;
  bottom: 30px;
  z-index: 100;
}
@media (max-width: 768px) {
  .faq-fixed {
    right: 20px;
    bottom: 24px;
  }
}
@media (max-width: 500px) {
  .faq-fixed {
    right: 12px;
    bottom: 16px;
  }
}
.faq-fixed .faq-link {
  display: flex;
  align-items: center;
}
.faq-fixed .faq-link .faq-bubble {
  width: 120px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: #f7f3ee;
  border: 1px solid #8B6B4F;
}
@media (max-width: 768px) {
  .faq-fixed .faq-link .faq-bubble {
    width: 100px;
    height: 48px;
  }
}
@media (max-width: 500px) {
  .faq-fixed .faq-link .faq-bubble {
    width: 85px;
    height: 42px;
  }
}
.faq-fixed .faq-link .faq-bubble span {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text-color);
}
@media (max-width: 500px) {
  .faq-fixed .faq-link .faq-bubble span {
    font-size: 12px;
  }
}
.faq-fixed .faq-link img {
  width: 55px;
  margin-left: -15px;
}
@media (max-width: 768px) {
  .faq-fixed .faq-link img {
    width: 48px;
    margin-left: -12px;
  }
}
@media (max-width: 500px) {
  .faq-fixed .faq-link img {
    width: 42px;
    margin-left: -10px;
  }
}
.faq-fixed .faq-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #8B6B4F;
  border-radius: 50%;
  background-color: white;
  font-size: 14px;
  line-height: 1;
  color: #8B6B4F;
  cursor: pointer;
  transition: all 0.3s;
}
.faq-fixed .faq-close:hover {
  background-color: #8B6B4F;
  color: #fff;
}

header {
  width: 100%;
  height: 100px;
  padding-right: 24px;
  background-color: #f9f2e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 768px) {
  header {
    height: 80px;
    padding-right: 16px;
  }
}
@media (max-width: 500px) {
  header {
    height: 70px;
    padding-inline: 16px;
  }
}
header h1 {
  width: 150px;
}
@media (max-width: 768px) {
  header h1 {
    width: 100px;
  }
}
@media (max-width: 500px) {
  header h1 {
    width: 100px;
  }
}
header .header-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  header .header-menu {
    gap: clamp(10px, 10px + 14 * (100vw - 500px) / 268, 24px);
    font-size: clamp(14px, 14px + 2 * (100vw - 500px) / 268, 16px);
  }
}
@media (max-width: 500px) {
  header .header-menu {
    display: none;
  }
}
header .header-menu a {
  transition: 0.3s;
}
header .header-menu a:hover {
  color: #8B6B4F;
}
header .header-button {
  padding: 12px 24px;
  border: 1px solid #8B6B4F;
  border-radius: 24px;
  background-color: #8B6B4F;
  color: white;
  transition: 0.3s;
}
@media (max-width: 768px) {
  header .header-button {
    padding: 8px 14px;
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  header .header-button {
    padding: 8px 14px;
    font-size: 12px;
    margin-left: auto;
  }
}
header .header-button:hover {
  background-color: #f9f2e8;
  color: #8B6B4F;
}
header .toggle_btn {
  display: none;
}
@media (max-width: 500px) {
  header .toggle_btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    margin-left: 12px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
  }
  header .toggle_btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #4F4037;
    transition: 0.3s;
  }
  header .toggle_btn.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  header .toggle_btn.open span:nth-child(2) {
    opacity: 0;
  }
  header .toggle_btn.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
@media (max-width: 500px) {
  header .header-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 30px;
    background-color: #f9f2e8;
    display: none;
  }
  header .header-nav.active {
    display: block;
  }
  header .header-nav .header-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

footer {
  padding-block: 40px;
  background-color: #f9f2e8;
  text-align: center;
}
@media (max-width: 768px) {
  footer {
    padding-block: 32px;
  }
}
@media (max-width: 500px) {
  footer {
    padding-block: 24px;
  }
}
footer .footer-logo {
  width: 150px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  footer .footer-logo {
    width: 120px;
  }
}
@media (max-width: 500px) {
  footer .footer-logo {
    width: 100px;
  }
}
footer .footer-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer .footer-menu {
    gap: 24px;
  }
}
@media (max-width: 500px) {
  footer .footer-menu {
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 16px;
  }
}
footer .footer-menu a {
  transition: 0.3s;
}
footer .footer-menu a:hover {
  color: #8B6B4F;
}
@media (max-width: 500px) {
  footer .footer-menu a {
    font-size: 14px;
  }
}
footer .footer-link {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  footer .footer-link {
    gap: 24px;
    margin-bottom: 32px;
  }
}
@media (max-width: 500px) {
  footer .footer-link {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
}
footer .footer-link a {
  font-size: 14px;
  transition: 0.3s;
}
@media (max-width: 500px) {
  footer .footer-link a {
    font-size: 12px;
  }
}
footer .footer-link a:hover {
  color: #8B6B4F;
}
footer small {
  display: block;
  font-size: 12px;
  color: #554435;
}
@media (max-width: 500px) {
  footer small {
    font-size: 10px;
  }
}

.main-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 100px);
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .main-visual {
    min-height: calc(100vh - 80px);
  }
}
@media (max-width: 500px) {
  .main-visual {
    min-height: auto;
    margin-bottom: 40px;
    flex-direction: column;
  }
}
.main-visual .main-visual-text {
  width: 45%;
  margin-left: 50px;
}
@media (max-width: 768px) {
  .main-visual .main-visual-text {
    width: 48%;
    margin-left: 30px;
  }
}
@media (max-width: 500px) {
  .main-visual .main-visual-text {
    width: 100%;
    margin-bottom: 40px;
    margin-left: 0;
    text-align: center;
  }
}
.main-visual .main-visual-title {
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .main-visual .main-visual-title {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .main-visual .main-visual-title {
    margin-bottom: 16px;
    font-size: 24px;
  }
}
.main-visual p {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .main-visual p {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .main-visual p {
    font-size: 14px;
  }
}
.main-visual .main-visual-image {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .main-visual .main-visual-image {
    width: 48%;
  }
}
@media (max-width: 500px) {
  .main-visual .main-visual-image {
    width: 100%;
  }
  .main-visual .main-visual-image::before {
    display: none;
  }
}
.main-visual .main-visual-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, #f9f2e8, rgba(247, 243, 238, 0));
}
.main-visual .main-visual-image img {
  display: block;
  border-radius: 28px;
}

#story .story-title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  #story .story-title {
    margin-bottom: 32px;
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  #story .story-title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
#story .story-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  #story .story-content {
    gap: 30px;
  }
}
@media (max-width: 500px) {
  #story .story-content {
    flex-direction: column;
    gap: 30px;
  }
}
#story .story-text {
  width: 45%;
}
@media (max-width: 768px) {
  #story .story-text {
    width: 48%;
  }
}
@media (max-width: 500px) {
  #story .story-text {
    width: 100%;
  }
}
#story .story-text h3 {
  margin-bottom: 32px;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  #story .story-text h3 {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  #story .story-text h3 {
    margin-bottom: 16px;
    font-size: 18px;
  }
}
#story .story-text p {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 768px) {
  #story .story-text p {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  #story .story-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}
#story .story-image {
  width: 50%;
}
@media (max-width: 768px) {
  #story .story-image {
    width: 48%;
  }
}
@media (max-width: 500px) {
  #story .story-image {
    width: 100%;
  }
}
#story .story-image img {
  height: 500px;
  border-radius: 24px;
}
@media (max-width: 768px) {
  #story .story-image img {
    height: 400px;
  }
}
@media (max-width: 500px) {
  #story .story-image img {
    height: auto;
    aspect-ratio: 4/3;
  }
}

#lineup {
  padding-top: 100px;
}
@media (max-width: 768px) {
  #lineup {
    padding-top: 80px;
  }
}
@media (max-width: 500px) {
  #lineup {
    padding-top: 80px;
  }
}
#lineup .lineup-content {
  max-width: 1500px;
  margin: 0 auto;
}
#lineup .lineup-intro {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  #lineup .lineup-intro {
    margin-bottom: 64px;
  }
}
@media (max-width: 500px) {
  #lineup .lineup-intro {
    margin-bottom: 40px;
  }
}
#lineup .lineup-title {
  margin-bottom: 24px;
}
@media (max-width: 500px) {
  #lineup .lineup-title {
    margin-bottom: 20px;
  }
}
#lineup .lineup-title h2 {
  margin-bottom: 8px;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  #lineup .lineup-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  #lineup .lineup-title h2 {
    font-size: 24px;
  }
}
#lineup .lineup-title p {
  color: #8B6B4F;
  letter-spacing: 0.08em;
}
@media (max-width: 500px) {
  #lineup .lineup-title p {
    font-size: 16px;
  }
}
#lineup .lineup-text p {
  line-height: 2;
  color: #6B5D52;
}
@media (max-width: 500px) {
  #lineup .lineup-text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
#lineup .lineup-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  #lineup .lineup-list {
    gap: 20px;
  }
}
@media (max-width: 500px) {
  #lineup .lineup-list {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
#lineup .lineup-item {
  text-align: center;
}
#lineup .lineup-item h3 {
  position: relative;
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--text-color);
}
@media (max-width: 768px) {
  #lineup .lineup-item h3 {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  #lineup .lineup-item h3 {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
#lineup .lineup-item h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 16px auto;
  background-color: #8B6B4F;
  border-radius: 24px;
}
#lineup .lineup-item .lineup-flavor {
  margin-bottom: 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #8B6B4F;
}
@media (max-width: 768px) {
  #lineup .lineup-item .lineup-flavor {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  #lineup .lineup-item .lineup-flavor {
    margin-bottom: 16px;
    font-size: 14px;
  }
}
#lineup .lineup-item .lineup-description {
  line-height: 1.8;
  color: #6B5D52;
}
@media (max-width: 500px) {
  #lineup .lineup-item .lineup-description {
    font-size: 14px;
  }
}
#lineup .lineup-image {
  width: 240px;
  height: 240px;
  margin: 0 auto 32px;
  overflow: hidden;
  border-radius: 50%;
}
@media (max-width: 768px) {
  #lineup .lineup-image {
    width: clamp(140px, 22vw, 160px);
    height: clamp(140px, 22vw, 160px);
    margin-bottom: 24px;
  }
}
@media (max-width: 500px) {
  #lineup .lineup-image {
    width: 220px;
    height: 220px;
    margin-bottom: 24px;
  }
}

#promise {
  padding-top: 100px;
}
@media (max-width: 768px) {
  #promise {
    padding-top: 80px;
  }
}
@media (max-width: 500px) {
  #promise {
    padding-top: 80px;
  }
}
#promise .promise-title {
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 768px) {
  #promise .promise-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 500px) {
  #promise .promise-title {
    margin-bottom: 32px;
  }
}
#promise .promise-title h2 {
  margin-bottom: 12px;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  #promise .promise-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  #promise .promise-title h2 {
    margin-bottom: 8px;
    font-size: 24px;
  }
}
#promise .promise-title p {
  color: #8B6B4F;
  letter-spacing: 0.08em;
}
@media (max-width: 500px) {
  #promise .promise-title p {
    font-size: 16px;
  }
}
#promise .promise-list {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  #promise .promise-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 500px) {
  #promise .promise-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#promise .promise-item {
  padding: 40px 24px;
  border-radius: 24px;
  background-color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  #promise .promise-item {
    padding: 32px 20px;
  }
}
@media (max-width: 500px) {
  #promise .promise-item {
    padding: 28px 16px;
  }
}
#promise .promise-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}
@media (max-width: 500px) {
  #promise .promise-item img {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }
}
#promise .promise-item h3 {
  margin-bottom: 16px;
  font-size: 24px;
  color: var(--text-color);
}
@media (max-width: 768px) {
  #promise .promise-item h3 {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  #promise .promise-item h3 {
    margin-bottom: 12px;
    font-size: 18px;
  }
}
#promise .promise-item p {
  font-size: 16px;
  text-align: left;
  line-height: 1.9;
  color: #6B5D52;
}
@media (max-width: 768px) {
  #promise .promise-item p {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  #promise .promise-item p {
    font-size: 12px;
  }
}

#ingredients {
  padding-block: 120px;
  background: #f8f5ef;
}
@media (max-width: 768px) {
  #ingredients {
    padding-block: 90px;
  }
}
@media (max-width: 500px) {
  #ingredients {
    padding-block: 60px;
  }
}
#ingredients .ingredients-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
#ingredients .ingredients-title {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  #ingredients .ingredients-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 500px) {
  #ingredients .ingredients-title {
    margin-bottom: 32px;
  }
}
#ingredients .ingredients-title h2 {
  margin-bottom: 8px;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  #ingredients .ingredients-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  #ingredients .ingredients-title h2 {
    font-size: 24px;
  }
}
#ingredients .ingredients-title p {
  color: #8B6B4F;
  letter-spacing: 0.08em;
}
@media (max-width: 500px) {
  #ingredients .ingredients-title p {
    font-size: 14px;
  }
}
#ingredients .ingredients-text h3 {
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 32px;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  #ingredients .ingredients-text h3 {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media (max-width: 500px) {
  #ingredients .ingredients-text h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
#ingredients .ingredients-text p {
  font-size: 16px;
  line-height: 2.2;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  #ingredients .ingredients-text p {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  #ingredients .ingredients-text p {
    font-size: 12px;
    line-height: 1.8;
  }
}
#ingredients .ingredients-text .button {
  display: inline-block;
  margin-top: 45px;
  padding: 15px 45px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.15em;
  transition: 0.3s;
}
@media (max-width: 768px) {
  #ingredients .ingredients-text .button {
    margin-top: 36px;
    padding: 13px 36px;
  }
}
@media (max-width: 500px) {
  #ingredients .ingredients-text .button {
    margin-top: 28px;
    padding: 12px 30px;
    font-size: 13px;
  }
}
#ingredients .ingredients-text .button:hover {
  background: #616060;
  color: white;
}

.page-title {
  text-align: center;
  padding-block: 80px;
}
@media (max-width: 768px) {
  .page-title {
    padding-block: 64px;
  }
}
@media (max-width: 500px) {
  .page-title {
    padding-block: 40px;
  }
}
.page-title h2 {
  margin-bottom: 8px;
  font-size: 40px;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  .page-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .page-title h2 {
    font-size: 24px;
  }
}
.page-title p {
  font-size: 20px;
  color: #8B6B4F;
  letter-spacing: 0.08em;
}
@media (max-width: 500px) {
  .page-title p {
    font-size: 16px;
  }
}

.ingredients-intro {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .ingredients-intro {
    margin-bottom: 64px;
  }
}
@media (max-width: 500px) {
  .ingredients-intro {
    margin-bottom: 40px;
  }
}
.ingredients-intro .ingredients-intro-text h3 {
  margin-bottom: 32px;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  .ingredients-intro .ingredients-intro-text h3 {
    margin-bottom: 24px;
    font-size: 26px;
  }
}
@media (max-width: 500px) {
  .ingredients-intro .ingredients-intro-text h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.ingredients-intro .ingredients-intro-text p {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 2;
  color: #666;
  letter-spacing: 0.05em;
}
@media (max-width: 500px) {
  .ingredients-intro .ingredients-intro-text p {
    font-size: 14px;
  }
}

.ingredients-list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  border-top: 1px solid #dfd6c9;
}
@media (max-width: 500px) {
  .ingredients-list {
    flex-direction: column;
  }
}

.ingredients-item {
  padding: 60px 40px;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .ingredients-item {
    padding: 45px 30px;
  }
}
@media (max-width: 500px) {
  .ingredients-item {
    padding: 32px 16px;
  }
}
.ingredients-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: #dfd6c9;
}
@media (max-width: 500px) {
  .ingredients-item:not(:last-child)::after {
    right: 10%;
    left: 10%;
    top: auto;
    bottom: 0;
    width: 80%;
    height: 1px;
    transform: none;
  }
}
.ingredients-item .ingredients-item-text h3 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  .ingredients-item .ingredients-item-text h3 {
    margin-bottom: 16px;
    font-size: 26px;
  }
}
@media (max-width: 500px) {
  .ingredients-item .ingredients-item-text h3 {
    margin-bottom: 12px;
    font-size: 22px;
  }
}
.ingredients-item .ingredients-item-text p {
  font-size: 16px;
  line-height: 2;
  color: #666;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .ingredients-item .ingredients-item-text p {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .ingredients-item .ingredients-item-text p {
    font-size: 12px;
  }
}

#voice {
  padding-top: 100px;
}
@media (max-width: 768px) {
  #voice {
    padding-top: 80px;
  }
}
@media (max-width: 500px) {
  #voice {
    padding-top: 80px;
  }
}
#voice .voice-title {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  #voice .voice-title {
    margin-bottom: 64px;
  }
}
@media (max-width: 500px) {
  #voice .voice-title {
    margin-bottom: 40px;
  }
}
#voice .voice-title h2 {
  margin-bottom: 8px;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  #voice .voice-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  #voice .voice-title h2 {
    font-size: 24px;
  }
}
#voice .voice-title p {
  color: #8B6B4F;
  letter-spacing: 0.08em;
}
@media (max-width: 500px) {
  #voice .voice-title p {
    font-size: 14px;
  }
}
#voice .voice-slider .voice-list .voice-item {
  box-sizing: border-box;
  margin-inline: 20px;
  padding: 30px;
}
@media (max-width: 768px) {
  #voice .voice-slider .voice-list .voice-item {
    margin-inline: 10px;
    padding: 20px;
  }
}
@media (max-width: 500px) {
  #voice .voice-slider .voice-list .voice-item {
    margin-inline: 8px;
    padding: 16px;
  }
}
#voice .voice-slider .voice-list .voice-item img {
  aspect-ratio: 1/1;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  #voice .voice-slider .voice-list .voice-item img {
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  #voice .voice-slider .voice-list .voice-item img {
    margin-bottom: 16px;
  }
}
#voice .voice-slider .voice-list .voice-item .voice-item-text p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 2;
  color: #555;
}
@media (max-width: 768px) {
  #voice .voice-slider .voice-list .voice-item .voice-item-text p {
    font-size: 13px;
    line-height: 1.8;
  }
}
@media (max-width: 500px) {
  #voice .voice-slider .voice-list .voice-item .voice-item-text p {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.5;
  }
}
#voice .voice-slider .voice-list .voice-item .voice-item-text span {
  font-size: 13px;
  color: #8B6B4F;
  letter-spacing: 0.05em;
}
@media (max-width: 500px) {
  #voice .voice-slider .voice-list .voice-item .voice-item-text span {
    font-size: 12px;
  }
}

.cta {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .cta {
    margin-bottom: 64px;
  }
}
@media (max-width: 500px) {
  .cta {
    margin-bottom: 40px;
  }
}
.cta .cta-message h2 {
  margin-bottom: 16px;
  font-size: 40px;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  .cta .cta-message h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .cta .cta-message h2 {
    font-size: 24px;
  }
}
.cta .cta-message p {
  color: #8B6B4F;
  letter-spacing: 0.08em;
}
@media (max-width: 500px) {
  .cta .cta-message p {
    font-size: 14px;
  }
}
.cta .cta-message .button {
  padding: 16px 40px;
  margin-block: 48px;
  border: 1px solid #8B6B4F;
  border-radius: 24px;
  background-color: #8B6B4F;
  color: white;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .cta .cta-message .button {
    margin-block: 40px;
  }
}
@media (max-width: 500px) {
  .cta .cta-message .button {
    padding: 12px 32px;
    margin-block: 32px;
    font-size: 14px;
  }
}
.cta .cta-message .button:hover {
  background-color: #f9f2e8;
  color: #8B6B4F;
}
.cta .cta-list {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding-top: 48px;
  border-top: 1px solid #dfd6c9;
}
@media (max-width: 768px) {
  .cta .cta-list {
    gap: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 500px) {
  .cta .cta-list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
  }
}
.cta .service-item h3 {
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  .cta .service-item h3 {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .cta .service-item h3 {
    font-size: 16px;
  }
}
.cta .service-item p {
  font-size: 12px;
  color: #8B6B4F;
}
@media (max-width: 500px) {
  .cta .service-item p {
    font-size: 12px;
  }
}
.cta .service-item .service-image {
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .cta .service-item .service-image {
    margin-bottom: 12px;
  }
}
.cta .service-item .service-image img {
  width: 70px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 500px) {
  .cta .service-item .service-image img {
    width: 60px;
    height: 45px;
  }
}

.privacy h1 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 40px;
}
@media (max-width: 768px) {
  .privacy h1 {
    margin-bottom: 32px;
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .privacy h1 {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.privacy .privacy-intro {
  margin-bottom: 40px;
  line-height: 2;
}
@media (max-width: 768px) {
  .privacy .privacy-intro {
    margin-bottom: 32px;
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .privacy .privacy-intro {
    margin-bottom: 24px;
    font-size: 14px;
  }
}
.privacy section {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .privacy section {
    margin-bottom: 32px;
  }
}
@media (max-width: 500px) {
  .privacy section {
    margin-bottom: 28px;
  }
}
.privacy section:last-child {
  margin-bottom: 0;
}
.privacy section h2 {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d9cfc4;
  font-size: 24px;
}
@media (max-width: 768px) {
  .privacy section h2 {
    margin-bottom: 14px;
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .privacy section h2 {
    margin-bottom: 12px;
    padding-bottom: 6px;
    font-size: 18px;
  }
}
.privacy section p {
  line-height: 2;
}
@media (max-width: 768px) {
  .privacy section p {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .privacy section p {
    font-size: 14px;
  }
}

.contact .page-title {
  margin-block: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact .page-title {
    margin-block: 32px;
  }
}
@media (max-width: 500px) {
  .contact .page-title {
    margin-block: 24px;
  }
}
.contact .page-title h2 {
  margin-bottom: 8px;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
@media (max-width: 768px) {
  .contact .page-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .contact .page-title h2 {
    font-size: 24px;
  }
}
.contact .page-title p {
  color: #8B6B4F;
  letter-spacing: 0.08em;
}
@media (max-width: 500px) {
  .contact .page-title p {
    font-size: 14px;
  }
}
.contact .contact-intro {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact .contact-intro {
    margin-bottom: 64px;
  }
}
@media (max-width: 500px) {
  .contact .contact-intro {
    margin-bottom: 40px;
  }
}
.contact .contact-intro p {
  line-height: 2;
  color: #555;
}
@media (max-width: 500px) {
  .contact .contact-intro p {
    font-size: 14px;
  }
}
.contact .contact-intro p:first-child {
  margin-bottom: 8px;
}
.contact .contact-form {
  max-width: 800px;
  margin: 0 auto 80px;
}
@media (max-width: 768px) {
  .contact .contact-form {
    margin-bottom: 64px;
  }
}
@media (max-width: 500px) {
  .contact .contact-form {
    margin-bottom: 40px;
  }
}
.contact .contact-form .form-item {
  margin-bottom: 32px;
}
@media (max-width: 500px) {
  .contact .contact-form .form-item {
    margin-bottom: 24px;
  }
}
.contact .contact-form .form-item label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-color);
}
@media (max-width: 500px) {
  .contact .contact-form .form-item label {
    font-size: 14px;
  }
}
.contact .contact-form .form-item label span {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 20px;
  background: #8B6B4F;
  font-size: 12px;
  color: white;
}
@media (max-width: 500px) {
  .contact .contact-form .form-item label span {
    font-size: 10px;
  }
}
.contact .contact-form .form-item input,
.contact .contact-form .form-item select,
.contact .contact-form .form-item textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #dfd6c9;
  border-radius: 8px;
  background-color: white;
  font-size: 16px;
}
@media (max-width: 500px) {
  .contact .contact-form .form-item input,
  .contact .contact-form .form-item select,
  .contact .contact-form .form-item textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
}
.contact .contact-form .form-item input:focus,
.contact .contact-form .form-item select:focus,
.contact .contact-form .form-item textarea:focus {
  outline: none;
  border-color: #8B6B4F;
}
.contact .contact-form .form-item textarea {
  resize: vertical;
}
.contact .contact-form .button {
  display: block;
  width: 220px;
  margin: 40px auto 0;
  padding-block: 16px;
  border: 1px solid #8B6B4F;
  border-radius: 32px;
  background: #8B6B4F;
  color: white;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .contact .contact-form .button {
    width: 180px;
    margin-top: 32px;
    padding-block: 14px;
    font-size: 14px;
  }
}
.contact .contact-form .button:hover {
  background: white;
  color: #8B6B4F;
}/*# sourceMappingURL=main.css.map */