.head-wrapper {
  padding: 40px 20px 0;
}
.head-wrapper .main-visual {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 120px;
}
@media screen and (max-width: 768px) {
  .head-wrapper .main-visual {
    display: block;
  }
}
.head-wrapper .main-visual .text-wrapper {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .head-wrapper .main-visual .text-wrapper {
    width: auto;
  }
}
.head-wrapper .main-visual .text-wrapper h2 {
  font-size: 35px;
  color: #F73F13;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .head-wrapper .main-visual .text-wrapper h2 {
    font-size: 20px;
    text-align: center;
  }
}
.head-wrapper .main-visual .text-wrapper h3 {
  margin-bottom: 15px;
  font-size: 60px;
  color: #F73F13;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .head-wrapper .main-visual .text-wrapper h3 {
    font-size: 20px;
    text-align: center;
  }
}
.head-wrapper .main-visual .text-wrapper p {
  color: #333;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .head-wrapper .main-visual .text-wrapper p {
    margin: 20px 0 40px;
    font-size: 16px;
  }
  .head-wrapper .main-visual .text-wrapper p br {
    display: none;
  }
}
.head-wrapper .main-visual .image-wrapper img {
  margin: 0 auto;
  display: block;
}
.head-wrapper .main-visual .image-wrapper .item {
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .head-wrapper .main-visual .image-wrapper .item img {
    width: 50%;
  }
}
.head-wrapper .main-visual .image-wrapper .recipe-item {
  position: relative;
  margin-top: -60px;
}
.head-wrapper .main-visual .image-wrapper .recipe-item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.head-wrapper .main-visual .image-wrapper .recipe-item img:first-child {
  position: relative;
}
.head-wrapper .main-visual .image-wrapper .recipe-item img.is-active {
  opacity: 1;
}
.head-wrapper .main-visual {
  /* Fade-in animation */
}
.head-wrapper .main-visual .fade-in-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.head-wrapper .main-visual .fade-in-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

.main-content .nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.95) 80%, rgba(255, 255, 255, 0) 100%);
  padding: 20px 0 30px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (max-width: 768px) {
  .main-content .nav {
    padding: 15px 0 25px;
  }
}
.main-content .nav ul {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 20px;
  scrollbar-width: thin;
  scrollbar-color: #FF6900 #f0f0f0;
}
@media screen and (max-width: 768px) {
  .main-content .nav ul {
    gap: 8px;
    padding: 8px 15px;
  }
}
.main-content .nav ul::-webkit-scrollbar {
  height: 4px;
}
.main-content .nav ul::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}
.main-content .nav ul::-webkit-scrollbar-thumb {
  background: #FF6900;
  border-radius: 4px;
}
.main-content .nav ul li {
  flex-shrink: 0;
}
.main-content .nav ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 25px;
  line-height: 1;
  background: #F3F4F6;
  color: #4A5565;
  font-size: 14px;
  padding: 8px 18px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .main-content .nav ul li a {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.main-content .nav ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 768px) {
  .main-content .nav ul li a span {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
}
.main-content .nav ul li a:hover {
  background: #FF6900;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 105, 0, 0.4);
  transform: translateY(-2px);
}
.main-content .nav ul li a:hover span {
  color: #FF6900;
  background: #fff;
}
.main-content .nav ul li a.is-active {
  background: #FF6900;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
}
.main-content .nav ul li a.is-active span {
  color: #FF6900;
  background: #fff;
}
.main-content .step {
  margin: 100px 0;
  background: #fff;
  padding: 60px 100px;
  border-radius: 500px;
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-content .step[id] {
  scroll-margin-top: 120px;
}
.main-content .step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .main-content .step {
    padding: 40px 30px;
    border-radius: 30px;
    margin: 60px 15px;
  }
}
.main-content .step:nth-child(odd) {
  background: #FFFEF4;
}
.main-content .step .step-no {
  position: absolute;
  left: 0;
  top: -60px;
  font-family: "Arial";
  font-weight: bold;
  font-size: 60px;
  color: rgba(245, 73, 0, 0.4);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .main-content .step .step-no {
    font-size: 40px;
    top: -40px;
  }
}
.main-content .step .step-no span {
  font-size: 80px;
}
@media screen and (max-width: 768px) {
  .main-content .step .step-no span {
    font-size: 50px;
  }
}
.main-content .step.is-visible .step-no {
  opacity: 1;
  transform: translateX(0);
}
.main-content .step .duo-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .main-content .step .duo-area {
    flex-direction: column;
  }
}
.main-content .step .duo-area .text-area {
  width: 60%;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out 0.3s, transform 0.7s ease-out 0.3s;
}
@media screen and (max-width: 768px) {
  .main-content .step .duo-area .text-area {
    width: 100%;
  }
}
.main-content .step .duo-area .text-area h3 {
  font-size: 30px;
  color: #F54900;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .main-content .step .duo-area .text-area h3 {
    font-size: 22px;
  }
}
.main-content .step .duo-area .text-area h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #F54900, #FF8C00);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.main-content .step .duo-area .text-area .note {
  border-left: solid 3px #999;
  padding-left: 20px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
}
.main-content .step .duo-area .text-area .note p {
  color: #444;
  margin-top: 10px;
}
.main-content .step .duo-area .illust-area {
  width: 30%;
  opacity: 0;
  transform: translateX(40px) scale(0.9);
  transition: opacity 0.7s ease-out 0.4s, transform 0.7s ease-out 0.4s;
}
@media screen and (max-width: 768px) {
  .main-content .step .duo-area .illust-area {
    width: 100%;
    margin-top: 30px;
  }
}
.main-content .step .duo-area .illust-area img {
  mix-blend-mode: multiply;
}
.main-content .step.is-visible .duo-area .text-area {
  opacity: 1;
  transform: translateX(0);
}
.main-content .step.is-visible .duo-area .text-area h3::after {
  width: 100%;
}
.main-content .step.is-visible .duo-area .text-area .note {
  opacity: 1;
  transform: translateY(0);
}
.main-content .step.is-visible .duo-area .illust-area {
  opacity: 1;
  transform: translateX(0) scale(1);
}/*# sourceMappingURL=fs500.css.map */