@charset "UTF-8";
/*
Theme Name: Cocoon Child（ケータリング）
Template: cocoon-master
*/
.syashoku-lp {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.8;
  background: #fff;
  --sy-container-width: 1100px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .syashoku-lp {
    --sy-container-width: 780px;
  }
}
html {
  scroll-behavior: smooth;
}

.br-sp {
  display: none;
}

.br-pc {
  display: block;
}

@media (max-width: 768px) {
  .br-sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
}
.sy-site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.sy-site-header.is-hidden {
  transform: translateY(-100%);
}

.sy-site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sy-site-header__brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-decoration: none;
  text-transform: lowercase;
  width: 100px;
}
@media (max-width: 768px) {
  .sy-site-header__brand {
    width: 60px;
  }
}

.sy-site-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}
.sy-site-header__nav a {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0.92;
  transition: color 0.3s;
}
.sy-site-header__nav a.is-active:not(.is-cta) {
  color: #F5A623;
}
.sy-site-header__nav a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.sy-site-header__nav a.is-cta {
  background: #F5A623;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  opacity: 1;
}
.sy-site-header__nav a.is-cta:hover {
  text-decoration: none;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .sy-site-header__nav {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 918px) {
  .sy-site-header__inner {
    padding: 12px 12px;
    gap: 10px;
  }
  .sy-site-header__brand {
    width: 84px;
  }
  .sy-site-header__nav {
    gap: 10px;
  }
  .sy-site-header__nav a {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
}
.sy-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: #000;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 768px) {
  .sy-hamburger {
    display: flex;
  }
}

.sy-hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

body.is-drawer-open .sy-hamburger__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.is-drawer-open .sy-hamburger__bar:nth-child(2) {
  opacity: 0;
}

body.is-drawer-open .sy-hamburger__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.sy-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s;
}
.sy-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.sy-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}
.sy-drawer.is-open .sy-drawer__overlay {
  opacity: 1;
}

.sy-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #f8f8f8;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 40px 24px 40px;
}
.sy-drawer.is-open .sy-drawer__panel {
  transform: translateX(0);
}

.sy-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sy-drawer__nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: #333333;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: none;
}
.sy-drawer__nav a:first-child {
  color: #a96e39;
  font-weight: 700;
}
.sy-drawer__nav a:hover {
  opacity: 0.8;
}

body.is-drawer-open {
  overflow: hidden;
}

.sy-container {
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sy-container {
    padding: 0 20px;
  }
}

.sy-label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #F5A623;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  position: relative;
}
.sy-label--center {
  text-align: center;
}
@media (max-width: 768px) {
  .sy-label {
    font-size: 18px;
    z-index: 1;
  }
}

.sy-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .sy-section__title {
    font-size: 22px;
    margin-bottom: 32px;
  }
}

.sy-section__bg-text {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  top: 0;
  left: calc(50% - var(--sy-container-width) / 2);
  color: #FFF4DD;
}
@media (max-width: 768px) {
  .sy-section__bg-text {
    font-size: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.sy-section__bg-text--vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: normal;
  top: 10px;
  right: 12px;
  left: auto;
  transform: none;
  line-height: 1;
}
@media (max-width: 768px) {
  .sy-section__bg-text--vertical {
    top: 386px;
    right: auto;
    left: 20px;
    font-size: 60px;
  }
}

.sy-section__bg-text--vertical-left {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: normal;
  top: 180px;
  left: calc(50% - var(--sy-container-width) / 2);
  right: auto;
  transform: none;
  line-height: 1;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sy-section__bg-text--vertical-left {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    top: 0;
  }
}

.sy-anim-from-top .sy-bg-text-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
@media (min-width: 769px) {
  .sy-anim-from-top .sy-bg-text-char {
    display: none;
  }
}
@media (min-width: 1025px) {
  .sy-anim-from-top .sy-bg-text-char {
    display: inline-block;
  }
}

.sy-anim-from-top.is-inview .sy-bg-text-char {
  opacity: 1;
  transform: translateY(0);
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(1) {
  transition-delay: 0s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(2) {
  transition-delay: 0.05s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(3) {
  transition-delay: 0.1s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(4) {
  transition-delay: 0.15s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(5) {
  transition-delay: 0.2s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(6) {
  transition-delay: 0.25s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(7) {
  transition-delay: 0.3s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(8) {
  transition-delay: 0.35s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(9) {
  transition-delay: 0.4s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(10) {
  transition-delay: 0.45s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(11) {
  transition-delay: 0.5s;
}

.sy-anim-from-top.is-inview .sy-bg-text-char:nth-child(12) {
  transition-delay: 0.55s;
}

.sy-anim-clip-left {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
.sy-anim-clip-left .sy-bg-text-char {
  display: inline-block;
  opacity: 1;
  transform: none;
  transition: none;
}
@media (min-width: 769px) {
  .sy-anim-clip-left .sy-bg-text-char {
    display: none;
  }
}
@media (min-width: 1025px) {
  .sy-anim-clip-left .sy-bg-text-char {
    display: inline-block;
  }
}
.sy-anim-clip-left.is-inview {
  animation: sy-clip-left-reveal 0.9s ease-out both;
}

@keyframes sy-clip-left-reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.sy-section__bg-text-white {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  top: 0;
  left: calc(50% - var(--sy-container-width) / 2);
  color: #FFF;
}
@media (max-width: 768px) {
  .sy-section__bg-text-white {
    font-size: 60px;
    left: 0;
  }
}

.sy-anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sy-anim-fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.sy-btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sy-btn:hover {
  opacity: 0.85;
}
.sy-btn--primary {
  background: linear-gradient(to bottom, #F5A623 0%, #ffffff 120%);
  color: #ffffff;
  max-width: 320px;
  width: 100%;
}
.sy-btn--primary:hover {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
  color: #F5A623;
}
.sy-btn--outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.sy-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  padding-top: 48px;
}
@media (max-width: 768px) {
  .sy-hero {
    height: 80svh;
    min-height: 520px;
  }
}
.sy-hero__bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  z-index: 0;
}
.sy-hero__bg--1 {
  background-image: url("../images/hero-bg.avif");
  animation: sy-hero-bg-1 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.sy-hero__bg--2 {
  background-image: url("../images/hero-bg-2.avif");
  animation: sy-hero-bg-2 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.sy-hero__bg--3 {
  background-image: url("../images/hero-bg-3.avif");
  animation: sy-hero-bg-3 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 768px) {
  .sy-hero__bg {
    min-width: 320px;
    min-height: 520px;
    height: 80svh;
  }
  .sy-hero__bg--1 {
    background-image: url("../images/hero-bg-sp.avif");
  }
  .sy-hero__bg--2 {
    background-image: url("../images/hero-bg-2-sp.avif");
  }
  .sy-hero__bg--3 {
    background-image: url("../images/hero-bg-3-sp.avif");
  }
}
.sy-hero__inner {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1;
  text-align: left;
  color: #ffffff;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .sy-hero__inner {
    left: 50%;
    right: auto;
    bottom: 35%;
    transform: translateX(-50%);
    width: auto;
    max-width: calc(100vw - 32px);
    padding: 0;
  }
}
.sy-hero__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .sy-hero__title {
    font-size: 28px;
    white-space: nowrap;
    margin-bottom: 0px;
  }
}
@media (min-width: 769px) {
  .sy-hero__title {
    font-size: 36px;
  }
}
@media (min-width: 1025px) {
  .sy-hero__title {
    font-size: 48px;
  }
}
@media (min-width: 1280px) {
  .sy-hero__title {
    font-size: 56px;
  }
}

@keyframes sy-hero-bg-1 {
  0%, 20% {
    opacity: 1;
  }
  30%, 90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sy-hero-bg-2 {
  0%, 20% {
    opacity: 0;
  }
  30%, 55% {
    opacity: 1;
  }
  65%, 100% {
    opacity: 0;
  }
}
@keyframes sy-hero-bg-3 {
  0%, 55% {
    opacity: 0;
  }
  65%, 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.sy-concept {
  position: relative;
  padding: 200px 0 0;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 768px) {
  .sy-concept {
    padding: 180px 0 0;
  }
}
.sy-concept .sy-section__bg-text {
  font-size: 100px;
}
@media (max-width: 768px) {
  .sy-concept .sy-section__bg-text {
    top: 50px;
    line-height: 1;
    font-size: 60px;
  }
}
.sy-concept__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 768px) {
  .sy-concept__inner {
    flex-direction: column;
    gap: 32px;
  }
}
.sy-concept__img {
  position: relative;
  flex: 0 0 450px;
}
.sy-concept__img::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 100%;
  height: 100%;
  background: #F5A623;
  border-radius: 24px;
  z-index: 0;
}
.sy-concept__img img {
  position: relative;
  width: 100%;
  border-radius: 24px;
  z-index: 1;
}
@media (max-width: 768px) {
  .sy-concept__img {
    flex: none;
    width: 100%;
  }
  .sy-concept__img::before {
    right: -10px;
    bottom: -10px;
    border-radius: 18px;
  }
}
.sy-concept__body {
  flex: 1;
}
.sy-concept__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
}
.sy-concept__title em {
  color: #F5A623;
  font-style: normal;
}
@media (max-width: 768px) {
  .sy-concept__title {
    font-size: 20px;
  }
}
.sy-concept__text {
  font-size: 15px;
  color: #666666;
  line-height: 2;
}
.sy-concept__chef {
  position: absolute;
  bottom: 0;
  right: 0;
}
.sy-concept__chef img {
  max-width: 100px;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .sy-concept__chef {
    padding: 0 20px;
    margin-bottom: 0;
  }
  .sy-concept__chef img {
    max-width: 50px;
  }
}
.sy-concept__fullimg {
  width: 100%;
  height: 400px;
  background-image: url("../images/concept-full.jpg");
  background-image: -webkit-image-set(url("../images/concept-full.avif") type('image/avif'), url("../images/concept-full.webp") type('image/webp'), url("../images/concept-full.jpg") type('image/jpeg'));
  background-image: image-set(url("../images/concept-full.avif") type('image/avif'), url("../images/concept-full.webp") type('image/webp'), url("../images/concept-full.jpg") type('image/jpeg'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .sy-concept__fullimg {
    height: 260px;
    background-image: url("../images/concept-full-sp.jpg");
    background-image: -webkit-image-set(url("../images/concept-full-sp.avif") type('image/avif'), url("../images/concept-full-sp.webp") type('image/webp'), url("../images/concept-full-sp.jpg") type('image/jpeg'));
    background-image: image-set(url("../images/concept-full-sp.avif") type('image/avif'), url("../images/concept-full-sp.webp") type('image/webp'), url("../images/concept-full-sp.jpg") type('image/jpeg'));
    background-attachment: scroll;
  }
}

.sy-anim-reveal > * {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.75s ease, transform 0.5s ease;
}

.sy-anim-reveal.is-inview > * {
  opacity: 1;
  transform: translateX(0);
}

.sy-anim-reveal > *:nth-child(1) {
  transition-delay: 0s;
}

.sy-anim-reveal > *:nth-child(2) {
  transition-delay: 0.12s;
}

.sy-anim-reveal > *:nth-child(3) {
  transition-delay: 0.24s;
}

.sy-anim-topleft > * {
  opacity: 0;
  transform-origin: bottom left;
  transform: rotate(-8deg) translateY(-24px) translateX(-16px);
  transition: transform 0.8s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.7s ease;
}

.sy-anim-topleft.is-inview > * {
  opacity: 1;
  transform: rotate(0) translateY(0) translateX(0);
}

.sy-anim-topleft > *:nth-child(1) {
  transition-delay: 0s;
}

.sy-anim-topleft > *:nth-child(2) {
  transition-delay: 0.15s;
}

.sy-anim-topleft > *:nth-child(3) {
  transition-delay: 0.3s;
}

.sy-anim-topleft > *:nth-child(4) {
  transition-delay: 0.45s;
}

.sy-anim-fade > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.75s ease, transform 0.6s ease;
}

.sy-anim-fade.is-inview > * {
  opacity: 1;
  transform: translateY(0);
}

.sy-anim-fade > *:nth-child(1) {
  transition-delay: 0s;
}

.sy-anim-fade > *:nth-child(2) {
  transition-delay: 0.08s;
}

.sy-anim-fade > *:nth-child(3) {
  transition-delay: 0.16s;
}

.sy-anim-fade > *:nth-child(4) {
  transition-delay: 0.24s;
}

.sy-anim-fade > *:nth-child(5) {
  transition-delay: 0.32s;
}

.sy-anim-fade > *:nth-child(6) {
  transition-delay: 0.4s;
}

.sy-anim-fade > *:nth-child(7) {
  transition-delay: 0.48s;
}

.sy-service {
  padding: 100px 0;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sy-service {
    padding: 60px 0;
  }
}
.sy-service__inner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .sy-service__inner {
    flex-direction: column;
    gap: 32px;
  }
}
.sy-service__body {
  flex: 1;
}
.sy-service__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .sy-service__title {
    font-size: 25px;
  }
}
.sy-service__lead {
  font-size: 18px;
  color: #666666;
  margin-bottom: 24px;
  line-height: 2;
}
.sy-service__list {
  padding-left: 0;
  list-style: none;
  counter-reset: service-counter;
}
@media (max-width: 768px) {
  .sy-service__list {
    padding-left: 20%;
  }
}
.sy-service__list li {
  counter-increment: service-counter;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  font-size: 15px;
}
.sy-service__list li::before {
  content: counter(service-counter);
  color: #F5A623;
  font-family: "Teko", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  font-style: italic;
  letter-spacing: 0.02em;
}
.sy-service__note {
  font-size: 18px;
  color: #666666;
  margin-top: 20px;
  line-height: 2;
}
.sy-service__img {
  flex: 0 0 420px;
}
@media (max-width: 768px) {
  .sy-service__img {
    flex: none;
    width: 100%;
    height: 355px;
  }
}
.sy-service__img img {
  width: 100%;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .sy-service__img img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.sy-menu {
  margin-bottom: 80px;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.sy-menu__title {
  font-size: 32px;
  font-weight: 700;
  padding-left: 12px;
  border-left: 8px solid #F5A623;
  margin-bottom: 24px;
}
.sy-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sy-menu__grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }
}
.sy-menu__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.sy-menu__item img {
  width: 100%;
  min-width: 0;
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
.sy-menu__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.sy-menu__item:hover::after {
  opacity: 1;
}

.sy-menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
}

.sy-menu-lightbox.is-open {
  display: flex;
}

.sy-menu-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.sy-menu-lightbox__content {
  position: relative;
  z-index: 1;
  max-width: min(960px, 96vw);
  max-height: 90vh;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.sy-menu-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  height: auto;
}

body.is-menu-lightbox-open {
  overflow: hidden;
}

.sy-nutrition {
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.sy-nutrition__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 768px) {
  .sy-nutrition__inner {
    flex-direction: column;
    gap: 32px;
  }
}
.sy-nutrition__body {
  flex: 1;
}
.sy-nutrition__title {
  font-size: 32px;
  font-weight: 700;
  padding-left: 12px;
  border-left: 8px solid #F5A623;
  margin-bottom: 16px;
}
.sy-nutrition__catch {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}
.sy-nutrition__catch span {
  color: #F5A623;
}
.sy-nutrition__text {
  font-size: 14px;
  color: #666666;
  line-height: 2;
}
.sy-nutrition__tags {
  flex: 0 0 500px;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.sy-nutrition__tags li {
  background: #ffffff;
  border: 2px solid #F5A623;
  border-radius: 16px;
  padding: 24px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .sy-nutrition__tags {
    flex: none;
    width: 100%;
    grid-template-columns: 1fr;
    font-size: 18px;
  }
}

.sy-anim-drop li {
  transform-origin: bottom left;
  transform: rotate(-8deg) translateY(-24px) translateX(-16px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.7s ease;
}

.sy-anim-drop li:nth-child(2),
.sy-anim-drop li:nth-child(4) {
  transform: rotate(8deg) translateY(-24px) translateX(16px);
  transform-origin: bottom right;
}

.sy-anim-drop.is-inview li {
  transform: rotate(0) translateY(0);
  opacity: 1;
}

.sy-anim-drop li:nth-child(1) {
  transition-delay: 0s;
}

.sy-anim-drop li:nth-child(2) {
  transition-delay: 0.15s;
}

.sy-anim-drop li:nth-child(3) {
  transition-delay: 0.3s;
}

.sy-anim-drop li:nth-child(4) {
  transition-delay: 0.45s;
}

.sy-anim-drop .sy-voice__item {
  --sy-voice-stagger-y: 0px;
  --sy-voice-start-rot: -10deg;
  --sy-voice-overshoot-rot: 4deg;
  --sy-voice-start-x: -32px;
  transform-origin: bottom left;
  opacity: 0;
  transform: translateY(var(--sy-voice-stagger-y)) translateX(var(--sy-voice-start-x)) rotate(var(--sy-voice-start-rot));
}

.sy-anim-drop .sy-voice__item:nth-child(2),
.sy-anim-drop .sy-voice__item:nth-child(4) {
  --sy-voice-stagger-y: 80px;
  --sy-voice-start-rot: 10deg;
  --sy-voice-overshoot-rot: -4deg;
  --sy-voice-start-x: 32px;
  transform-origin: bottom right;
}
@media (max-width: 768px) {
  .sy-anim-drop .sy-voice__item:nth-child(2),
  .sy-anim-drop .sy-voice__item:nth-child(4) {
    --sy-voice-stagger-y: 0px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sy-anim-drop .sy-voice__item:nth-child(2),
  .sy-anim-drop .sy-voice__item:nth-child(4) {
    --sy-voice-stagger-y: 0px;
  }
}

.sy-anim-drop.is-inview .sy-voice__item {
  animation: sy-voice-bounce 1.2s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.sy-anim-drop.is-inview .sy-voice__item:nth-child(1) {
  animation-delay: 0s;
}

.sy-anim-drop.is-inview .sy-voice__item:nth-child(2) {
  animation-delay: 0.4s;
}

.sy-anim-drop.is-inview .sy-voice__item:nth-child(3) {
  animation-delay: 0.8s;
}

.sy-anim-drop.is-inview .sy-voice__item:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes sy-voice-bounce {
  0% {
    opacity: 0;
    transform: translateY(var(--sy-voice-stagger-y)) translateX(var(--sy-voice-start-x)) rotate(var(--sy-voice-start-rot));
  }
  78% {
    opacity: 1;
    /* X移動しながら、そのまま1回揺れる（止まらずオーバーシュートへ） */
    transform: translateY(var(--sy-voice-stagger-y)) translateX(0) rotate(var(--sy-voice-overshoot-rot));
  }
  100% {
    opacity: 1;
    transform: translateY(var(--sy-voice-stagger-y)) translateX(0) rotate(0deg);
  }
}
.sy-merit {
  position: relative;
  padding: 100px 0;
  background: #f5f5f5;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sy-merit {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .sy-merit .sy-section__title {
    font-size: 25px;
  }
}
.sy-merit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .sy-merit__grid {
    grid-template-columns: 1fr;
  }
}
.sy-merit__grid.sy-anim-merit {
  perspective: 800px;
}
.sy-anim-merit .sy-merit__item {
  transform-origin: top center;
  transform: perspective(800px) rotateX(-88deg);
  opacity: 0;
  backface-visibility: hidden;
}
.sy-anim-merit.is-inview .sy-merit__item {
  animation: sy-merit-swing 0.8s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}
.sy-anim-merit.is-inview .sy-merit__item:nth-child(1) {
  animation-delay: 0s;
}
.sy-anim-merit.is-inview .sy-merit__item:nth-child(2) {
  animation-delay: 0.12s;
}
.sy-anim-merit.is-inview .sy-merit__item:nth-child(3) {
  animation-delay: 0.24s;
}
.sy-anim-merit.is-inview .sy-merit__item:nth-child(4) {
  animation-delay: 0.36s;
}
.sy-merit__item {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
}
.sy-merit__item img {
  width: 155px;
  height: 138px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}
.sy-merit__item p {
  font-size: 18px;
  line-height: 1.6;
}
.sy-merit__item p span {
  color: #F5A623;
  font-weight: 700;
}

@keyframes sy-merit-swing {
  0% {
    opacity: 0;
    transform: perspective(800px) rotateX(-88deg);
  }
  100% {
    opacity: 1;
    transform: perspective(800px) rotateX(0);
  }
}
.sy-voice {
  position: relative;
  overflow: hidden;
  padding: 140px 0 180px;
  background-image: url("../images/voice-bg.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
@media (max-width: 768px) {
  .sy-voice {
    padding: 60px 0;
  }
}
.sy-voice .sy-section__bg-text {
  left: auto;
  right: calc(50% - var(--sy-container-width) / 2);
}
@media (max-width: 768px) {
  .sy-voice .sy-section__bg-text {
    right: 0;
    transform: none;
    font-size: 50px;
    top: -20px;
  }
}
.sy-voice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .sy-voice__grid {
    grid-template-columns: 1fr;
  }
}
.sy-voice__item {
  display: flex;
  flex-direction: column;
}
.sy-voice__item:nth-child(2), .sy-voice__item:nth-child(4) {
  transform: translateY(80px);
}
@media (max-width: 768px) {
  .sy-voice__item:nth-child(2), .sy-voice__item:nth-child(4) {
    transform: none;
  }
}
.sy-voice__card {
  color: #000;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px 12px 12px 0;
  padding: 32px;
  flex: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  font-size: 16px;
}
.sy-voice__heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .sy-voice__heading {
    font-size: 22px;
  }
}
.sy-voice__heading span {
  color: #F5A623;
}
.sy-voice__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 0 8px;
}
.sy-voice__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.sy-voice__author span {
  font-size: 13px;
  color: #666666;
}

.sy-flow {
  position: relative;
  padding: 160px 0 0;
  background: #F5A623;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sy-flow {
    padding: 60px 0 0;
  }
}
.sy-flow .sy-section__bg-text {
  left: auto;
  right: calc(50% - var(--sy-container-width) / 2);
}
.sy-flow .sy-section__bg-text:not(.sy-anim-fade-up) {
  transform: none;
}
.sy-flow .sy-section__bg-text.sy-anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.sy-flow .sy-section__bg-text.sy-anim-fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.sy-flow__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .sy-flow__card {
    padding: 32px 20px;
  }
}
@media (min-width: 769px) {
  .sy-flow__card {
    margin-right: 20px;
    margin-left: 20px;
  }
}
.sy-flow__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .sy-flow__steps {
    gap: 2px;
    flex-direction: column;
  }
}
.sy-flow__step {
  text-align: center;
}
.sy-flow__step p {
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
}
.sy-flow__icon {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #F5A623;
}
.sy-flow__icon-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.sy-flow__icon-circle circle {
  stroke-dasharray: 553;
  stroke-dashoffset: 553;
  transition: stroke-dashoffset 0.9s ease-out;
}
.sy-anim-draw.is-inview .sy-flow__icon-circle circle {
  stroke-dashoffset: 0;
}
.sy-anim-draw.is-inview .sy-flow__step:nth-child(1) .sy-flow__icon-circle circle {
  transition-delay: 0s;
}
.sy-anim-draw.is-inview .sy-flow__step:nth-child(3) .sy-flow__icon-circle circle {
  transition-delay: 0.15s;
}
.sy-anim-draw.is-inview .sy-flow__step:nth-child(5) .sy-flow__icon-circle circle {
  transition-delay: 0.3s;
}
.sy-anim-draw.is-inview .sy-flow__step:nth-child(7) .sy-flow__icon-circle circle {
  transition-delay: 0.45s;
}
.sy-flow__icon img {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .sy-flow__icon {
    width: 150px;
    height: 150px;
  }
  .sy-flow__icon img {
    width: 60px;
    height: 60px;
  }
}
.sy-flow__arrow {
  font-size: 24px;
  color: #F5A623;
  font-weight: 700;
  display: inline-block;
}
@media (max-width: 768px) {
  .sy-flow__arrow {
    transform: rotate(90deg);
  }
}
.sy-flow__cta {
  margin-top: 60px;
  padding: 80px 0;
  background: url("../images/flow-cta-bg.avif") center/cover no-repeat;
  position: relative;
}
.sy-flow__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.sy-flow__cta .sy-container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}
.sy-flow__cta h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .sy-flow__cta h3 {
    font-size: 20px;
  }
}
.sy-flow__cta p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 32px;
  opacity: 0.9;
}

.sy-plan {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 768px) {
  .sy-plan {
    padding: 60px 0;
  }
}
.sy-plan .sy-section__bg-text {
  left: auto;
  right: calc(50% - var(--sy-container-width) / 2);
}
@media (max-width: 768px) {
  .sy-plan .sy-section__bg-text {
    right: auto;
    left: 60px;
  }
}
.sy-plan .sy-section__bg-text.sy-anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.sy-plan .sy-section__bg-text.sy-anim-fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.sy-plan__lead {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-bottom: 48px;
}
.sy-plan__row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 24px;
}
@media (max-width: 768px) {
  .sy-plan__row {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) {
  .sy-plan__row {
    margin-right: 20px;
    margin-left: 20px;
  }
}
.sy-plan__label {
  background: #f5f5f5;
  border-radius: 10px;
  color: #1a2a4a;
  padding: 24px 20px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  height: 120px;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .sy-plan__label {
    writing-mode: horizontal-tb;
    border-radius: 10px;
    max-width: 140px;
    margin: 0 auto;
    padding: 10px 16px;
    height: auto;
  }
}
.sy-plan__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 768px) {
  .sy-plan__cards {
    grid-template-columns: 1fr;
  }
}
.sy-plan__card {
  position: relative;
  padding: 20px 10px;
  text-align: center;
  border-radius: 12px;
}
.sy-plan__card--custom {
  background: #fff4dd;
}
.sy-plan__chip {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a2a4a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  width: 117px;
}
@media (max-width: 768px) {
  .sy-plan__chip {
    top: -25px;
    width: 210px;
    font-size: 16px;
  }
}
.sy-plan__card-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sy-plan__card-name {
    width: 210px;
    margin: 0 auto 20px;
  }
}
.sy-plan__card-name--daily {
  background: #fff4dd;
}
.sy-plan__card-name--weekly1 {
  background: #fff4dd;
}
.sy-plan__card-name--weekly3 {
  background: #F5A623;
}
.sy-plan__card-name--custom {
  background: #F5A623;
}
.sy-plan__price {
  font-size: 26px;
  font-weight: 700;
}
.sy-plan__price span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.9;
}
.sy-plan__desc {
  font-size: 13px;
  line-height: 1.8;
}
.sy-plan__desc small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.85;
}
.sy-plan__note {
  font-size: 12px;
  color: #666666;
  margin-top: 16px;
  text-align: center;
  line-height: 2;
}

.sy-badge {
  display: inline-block;
  background: #ffffff;
  color: #1a2a4a;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}

.sy-faq {
  position: relative;
  padding: 100px 0;
  background: #f5f5f5;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sy-faq {
    padding: 80px 0;
  }
}
.sy-faq__list {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  padding: 24px 41px;
}
@media (max-width: 768px) {
  .sy-faq__list {
    padding: 24px;
  }
}
@media (min-width: 769px) {
  .sy-faq__list {
    margin-right: 20px;
    margin-left: 20px;
  }
}
.sy-faq__item {
  border-bottom: 1px solid #e0e0e0;
}
.sy-faq__q {
  font-size: 20px;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .sy-faq__q {
    font-size: 16px;
  }
}
.sy-faq__q::after {
  content: "›";
  font-size: 20px;
  color: #F5A623;
  transform: rotate(90deg);
  transition: transform 0.5s ease;
}
.sy-faq__q.is-open::after {
  transform: rotate(270deg);
}
.sy-faq dd.sy-faq__a {
  display: block;
  max-height: 0;
  margin: 0;
  margin-inline: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.72s cubic-bezier(0.33, 1, 0.68, 1);
}
.sy-faq__a-inner {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  padding-bottom: 40px;
}

.sy-company {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 768px) {
  .sy-company {
    padding: 60px 0;
  }
}
.sy-company__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.sy-company__inner img {
  border-radius: 24px;
}
.sy-company__body {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 20px;
}
.sy-company__body p {
  font-size: 14px;
  color: #333333;
  line-height: 2;
  margin-bottom: 24px;
  text-align: left;
}
.sy-company__table-title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: left;
}
.sy-company__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: none;
}
.sy-company__table tr {
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
.sy-company__table th {
  padding: 16px 16px 16px 0;
  font-weight: 700;
  width: 160px;
  min-width: 140px;
  color: #333333;
  vertical-align: top;
  text-align: left;
  background: #fff;
}
.sy-company__table td {
  padding: 16px 0 16px 16px;
  color: #666666;
  vertical-align: top;
  line-height: 1.8;
  background: #fff;
}
.sy-company__table td a {
  color: #0066cc;
  text-decoration: none;
}
.sy-company__table td a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .sy-company__table tr {
    display: block;
    padding: 12px 0;
  }
  .sy-company__table th,
  .sy-company__table td {
    display: block;
    width: 100%;
  }
  .sy-company__table th {
    padding-bottom: 4px;
    font-size: 13px;
  }
  .sy-company__table td {
    padding-top: 0;
    font-size: 13px;
  }
}

table tr:nth-of-type(2n+1) {
  background: #fff;
}

.sy-contact {
  position: relative;
  padding: 100px 0;
  background: url("../images/contact-bg.avif") center/cover no-repeat;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sy-contact .sy-section__bg-text--vertical-left {
    display: none;
  }
}
.sy-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.sy-contact .sy-container {
  max-width: 800px;
  margin: 0 auto;
}
.sy-contact .sy-label,
.sy-contact .sy-section__title {
  position: relative;
  z-index: 1;
}
.sy-contact .sy-section__bg-text {
  z-index: 0;
}
.sy-contact .sy-label {
  color: #ffffff;
  text-align: left;
}
.sy-contact .sy-section__title {
  color: #ffffff;
  text-align: left;
}
@media (max-width: 768px) {
  .sy-contact {
    padding: 60px 0;
  }
}
.sy-contact__form-wrap {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 48px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sy-contact__form-wrap {
    padding: 32px 20px;
  }
}

.sy-fixed-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(180deg, #F5A623 0%, #FFD54F 100%);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sy-fixed-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}
.sy-fixed-cta__icon {
  display: block;
  line-height: 0;
}
.sy-fixed-cta__icon svg {
  display: block;
  width: 63px;
  height: 63px;
}
.sy-fixed-cta__text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  max-width: 90%;
}
@media (max-width: 768px) {
  .sy-fixed-cta {
    display: none;
  }
}

.sy-mobile-sticky-cta {
  display: none;
}

@media screen and (max-width: 768px) {
  .syashoku-lp {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }
  .sy-mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 10000;
    height: 76px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.14);
  }
  .sy-mobile-sticky-cta__contact, .sy-mobile-sticky-cta__tel {
    flex: 1;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .sy-mobile-sticky-cta__contact {
    background: linear-gradient(180deg, #F5A623 0%, #f2b233 100%);
  }
  .sy-mobile-sticky-cta__tel {
    background: #1a2a4a;
  }
  .sy-mobile-sticky-cta__contact:hover {
    color: #1a2a4a;
  }
  .sy-mobile-sticky-cta__tel:hover {
    color: #F5A623;
  }
  .sy-mobile-sticky-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .sy-mobile-sticky-cta__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
}
.contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-col, .form-col-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-col-full {
  grid-column: 1/-1;
}

.form-submit {
  text-align: center;
}

.wpcf7 label {
  font-size: 14px;
  color: #333;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #e8a000;
  outline: none;
}

.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7 input[type=submit]:hover {
  background: #fff;
  color: #e8a000;
  border: 1.5px solid #e8a000;
}

.wpcf7 input[type=submit] {
  background: #e8a000;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 60px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.wpcf7 input[type=submit]:hover {
  background: #fff;
  color: #e8a000;
  border: 1.5px solid #e8a000;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.sy-footer {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
  background-color: #000;
}

.sy-footer__inner {
  max-width: 800px;
  margin: 0 auto;
}

.sy-footer__text {
  font-size: 10px;
  color: #fff;
  line-height: 2;
  text-align: center;
}/*# sourceMappingURL=style.css.map */