@charset "utf-8";

.GARLIC_STORY {
  padding: 0;
}

.GARLIC_STORY section {
  margin-bottom: 0;
}

.section01 {
  padding: 8rem 0 12rem;
}

.section01 .hero_wrap {
  width: 100%;
  margin-bottom: 8rem;
}

.section01 .hero_image {
  position: relative;
  width: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section01 .hero_image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.section01 .hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42, 51, 67, 0.6) 0%);
}

.section01 .hero_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: var(--white-color);
}

.section01 .hero_title {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.section01 .hero_subtitle {
  font-size: 2rem;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.section01 .feature_wrap {
  display: flex;
  gap: 4rem;
  max-width: 1420px;
  margin: 0 auto;
}

.section01 .feature_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--white-color);
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section01 .feature_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.section01 .feature_img {
  width: 100%;
  overflow: hidden;
}

.section01 .feature_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.section01 .feature_item:hover .feature_img img {
  transform: scale(1.05);
}

.section01 .feature_content {
  padding: 3.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section01 .feature_title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: var(--body-color);
  line-height: 1.4;
}

.section01 .feature_desc {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: var(--body-color);
  flex: 1;
}

.section02 {
  padding: 12rem 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(250, 248, 245, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

.section02 .section_header {
  text-align: center;
  margin-bottom: 8rem;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.section02 .section_title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: var(--body-color);
  line-height: 1.2;
}

.section02 .section_subtitle {
  font-size: 1.8rem;
  color: var(--secondary-color);
  line-height: 1.6;
  opacity: 0.8;
}

.section02 .history_wrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section02 .history_timeline {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  position: relative;
}

.section02 .history_timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(42, 51, 67, 0.3) 0%, rgba(241, 192, 93, 0.3) 100%);
  transform: translateX(-50%);
}

.section02 .timeline_item {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.section02 .timeline_item:nth-child(even) {
  flex-direction: row-reverse;
}

.section02 .timeline_year {
  flex: 0 0 12rem;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--primary-color);
  /* padding: 2rem; */
  /* background: var(--white-color); */
  /* border-radius: 1.2rem; */
  /* box-shadow: 0 4px 16px rgba(42, 51, 67, 0.2); */
  position: relative;
  z-index: 2;
}

.section02 .timeline_content {
  flex: 1;
  padding: 3.2rem;
  background: var(--white-color);
  border-radius: 1.6rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section02 .timeline_title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: var(--body-color);
  line-height: 1.3;
}

.section02 .timeline_desc {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: var(--body-color);
}

.section02 .timeline_image {
  flex: 0 0 50rem;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.section02 .timeline_image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section03 {
  padding: 12rem 0;
  background: var(--white-color);
}

.section03 .section_header {
  text-align: center;
  margin-bottom: 8rem;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.section03 .section_title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: var(--body-color);
  line-height: 1.2;
}

.section03 .section_subtitle {
  font-size: 1.8rem;
  color: var(--secondary-color);
  line-height: 1.6;
  opacity: 0.8;
}

.section03 .necessity_wrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.6rem;
}

.section03 .necessity_item {
  display: flex;
  flex-direction: column;
  padding: 4rem;
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: 1.6rem;
  position: relative;
  overflow: hidden;
}

.section03 .necessity_icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 16rem;
  height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.section03 .necessity_icon svg {
  width: 100%;
  height: 100%;
}

.section03 .necessity_content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.section03 .necessity_label {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  opacity: 0.8;
}

.section03 .necessity_title {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--body-color);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section03 .necessity_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.section03 .necessity_list li {
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: var(--body-color);
  position: relative;
  padding-left: 2.4rem;
  font-weight: 400;
}

.section03 .necessity_list li::before {
  content: '';
  position: absolute;
  top: 1.4rem;
  left: 0.8rem;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.6;
}

.section03 .necessity_desc {
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: var(--body-color);
}

.section04 {
  padding: 12rem 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(250, 248, 245, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-top: 1px solid var(--line-color);
}

.section04 .section_header {
  text-align: center;
  margin-bottom: 8rem;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.section04 .section_title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: var(--body-color);
  line-height: 1.2;
}

.section04 .section_subtitle {
  font-size: 1.8rem;
  color: var(--secondary-color);
  line-height: 1.6;
  opacity: 0.8;
}

.section04 .effect_wrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
}

.section04 .effect_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: 1.6rem;
  transition: border-color 0.3s ease;
}

.section04 .effect_item:hover {
  border-color: var(--primary-color);
}

.section04 .effect_icon {
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section04 .effect_icon svg {
  width: 100%;
  height: 100%;
}

.section04 .effect_content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.section04 .effect_title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--body-color);
  line-height: 1.3;
}

.section04 .effect_desc {
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: var(--body-color);
  margin-bottom: 2.4rem;
  flex: 1;
}

.section04 .effect_result {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  padding-top: 2rem;
  border-top: 1px solid var(--line-color);
}

@media (max-width: 1024px) {
  .section01 .feature_wrap {
    flex-direction: column;
    gap: 2.4rem;
  }

  .section02 .history_timeline::before {
    display: none;
  }

  .section02 .timeline_item,
  .section02 .timeline_item:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .section02 .timeline_year {
    flex: none;
    width: 100%;
    max-width: 20rem;
  }

  .section02 .timeline_image {
    flex: none;
    width: 100%;
  }

  .section03 .necessity_wrap {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .section03 .necessity_item {
    flex-direction: column;
    gap: 2.4rem;
    padding: 2.8rem;
  }

  .section03 .necessity_media {
    flex: none;
    max-width: 100%;
  }

  .section03 .necessity_media img {
    height: auto;
  }

  .section03 .necessity_content {
    gap: 1.4rem;
  }

  .section03 .necessity_title {
    font-size: 2.2rem;
  }

  .section04 .effect_wrap {
    flex-direction: column;
    gap: 2.4rem;
  }
}

@media (max-width: 768px) {
  .section01 {
    padding: 4rem 0 8rem;
  }

  .section01 .hero_image img {
    height: auto;
  }

  .section01 .hero_title {
    font-size: 3.2rem;
  }

  .section01 .hero_subtitle {
    font-size: 1.6rem;
  }

  .section01 .feature_content {
    padding: 2.4rem;
  }

  .section01 .feature_title {
    font-size: 2rem;
  }

  .section01 .feature_desc {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }

  .section02,
  .section03,
  .section04 {
    padding: 8rem 0;
  }

  .section02 .section_title,
  .section03 .section_title,
  .section04 .section_title {
    font-size: 2.8rem;
  }

  .section02 .section_subtitle,
  .section03 .section_subtitle,
  .section04 .section_subtitle {
    font-size: 1.6rem;
  }

  .section02 .history_timeline {
    gap: 4rem;
  }

  .section02 .timeline_year {
    font-size: 2.8rem;
    padding: 1.6rem;
  }

  .section02 .timeline_content {
    padding: 2.4rem;
  }

  .section02 .timeline_title {
    font-size: 2.2rem;
  }

  .section02 .timeline_desc {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }

  .section02 .timeline_image img {
    height: auto;
  }

  .section03 .necessity_item {
    padding: 3.2rem;
  }

  .section03 .necessity_icon {
    top: 1.6rem;
    right: 1.6rem;
    width: 12rem;
    height: 12rem;
  }

  .section03 .necessity_content {
    gap: 1.4rem;
  }

  .section03 .necessity_title {
    font-size: 2.2rem;
  }

  .section03 .necessity_list li,
  .section03 .necessity_desc {
    font-size: 1.5rem;
    line-height: 2.4rem;
  }

  .section04 .effect_item {
    padding: 3.2rem;
  }

  .section04 .effect_icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.6rem;
  }

  .section04 .effect_title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }

  .section04 .effect_desc {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 2rem;
  }

  .section04 .effect_result {
    font-size: 1.6rem;
    padding-top: 1.6rem;
  }
}
