.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, .head-wrapper .main-visual .text-wrapper h3 {
  color: #F73F13;
}
@media screen and (max-width: 768px) {
  .head-wrapper .main-visual .text-wrapper h2, .head-wrapper .main-visual .text-wrapper h3 {
    font-size: 20px;
    text-align: center;
  }
}
.head-wrapper .main-visual .text-wrapper h2 {
  font-size: 35px;
  font-weight: bold;
}
.head-wrapper .main-visual .text-wrapper h3 {
  margin-bottom: 15px;
  font-size: 60px;
  font-weight: bold;
}
.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-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);
}

.main-content section {
  margin-bottom: 80px;
}
.main-content section h3 {
  font-size: 30px;
  color: #F54900;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .main-content section h3 {
    font-size: 18px;
  }
}
.main-content section p {
  margin-bottom: 20px;
}
.main-content section .float-area figure {
  display: block;
  float: right;
  width: 520px;
  margin: 0 0 40px 40px;
}
@media screen and (max-width: 768px) {
  .main-content section .float-area figure {
    width: 40%;
    margin: 0 0 20px 20px;
  }
}
.main-content section .float-area figure img {
  border-radius: 10px;
}
.main-content section .float-area figure figcaption {
  margin-top: 15px;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .main-content section .float-area figure figcaption {
    font-size: 11px;
  }
}
.main-content section .duo-area {
  margin: 60px 0;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .main-content section .duo-area {
    margin: 30px 0;
    display: block;
  }
}
.main-content section .duo-area figure {
  width: 45%;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
@media screen and (max-width: 768px) {
  .main-content section .duo-area figure {
    width: auto;
    margin-bottom: 20px;
  }
}
.main-content section .duo-area figure div {
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  height: 100%;
}
.main-content section .duo-area figure div img {
  margin: 0 auto;
}
.main-content section .duo-area figure figcaption {
  margin-top: 15px;
  font-size: 12px;
  color: #666;
}
.main-content section .history-step {
  margin: 60px 0;
}
.main-content section .history-step ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .main-content section .history-step ul {
    gap: 20px;
  }
}
.main-content section .history-step ul li {
  position: relative;
  width: 30%;
  background: #fff;
  border-radius: 10px;
  padding: 20px 10px 10px;
  text-align: center;
  box-shadow: 2px 2px 1px #ccc;
}
@media screen and (max-width: 1000px) {
  .main-content section .history-step ul li {
    width: 47%;
  }
}
.main-content section .history-step ul li::before {
  display: block;
  content: "";
  width: 100%;
  height: 32px;
  position: absolute;
  top: -15px;
  left: 0;
  background-size: contain;
  background: url(../img/fs600-illust.png) center top no-repeat;
}
.main-content section .history-step ul li h3 {
  font-size: 18px;
  margin: 20px 0;
}
.main-content section .history-step ul li p small {
  display: block;
}
.main-content section.history-list h3 {
  text-align: center;
}
.main-content section.history-list {
  margin-bottom: 100px;
}
.main-content .table-container {
  max-width: 90%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .main-content .table-container {
    max-width: 100%;
  }
}
.main-content table {
  width: 100%;
  border-collapse: collapse;
}
.main-content thead {
  background-color: #f26522;
  color: #fff;
}
.main-content th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.main-content th:first-child {
  width: 15%;
}
.main-content th:nth-child(2) {
  width: 55%;
}
.main-content th:last-child {
  width: 30%;
}
.main-content tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.main-content tbody tr:nth-child(odd) {
  background: #F9FAFB;
}
.main-content tbody tr:last-child {
  border-bottom: none;
}
.main-content td {
  padding: 16px;
  vertical-align: top;
  line-height: 1.6;
}
.main-content td:first-child {
  color: #f26522;
  font-weight: 600;
  white-space: nowrap;
  vertical-align: middle;
}
.main-content td:last-child {
  color: #f26522;
  font-weight: 600;
  text-align: center;
}
.main-content td:last-child:not(.highlight) {
  color: #333;
}
.main-content .highlight {
  color: #f26522 !important;
}
.main-content .bold {
  font-weight: 600;
}
.main-content .event-detail {
  color: #333;
  font-weight: normal;
}
.main-content .sub-text {
  display: block;
  margin-top: 4px;
}/*# sourceMappingURL=fs600.css.map */