@charset "UTF-8";
/* reset.scss */
*,
*:before,
*:after {
  box-sizing: border-box;
  flex-shrink: 1;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-wrap: break-word;
  box-sizing: border-box;
  word-break: keep-all;
}

:lang(ko) {
  word-break: keep-all;
  word-wrap: break-word;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
hr {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

html {
  /* 스크롤 바의 색상 지정 */
  /* 스크롤 바 호버 시 색상 지정 */
}
html ::-webkit-scrollbar {
  width: 17px;
  /* 스크롤 바의 너비 */
  background-color: #f6f6f6;
  /* 스크롤 바의 배경색 */
}
html ::-webkit-scrollbar-thumb {
  background-color: #c4c4c4;
  /* 스크롤 바의 색상 */
}
html ::-webkit-scrollbar-thumb:hover {
  /* 스크롤 바의 색상 */
}
html ::-webkit-scrollbar-button {
  width: 17px;
  height: 16px;
}

body {
  color: var(--color-darken);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

caption,
legend {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}

table {
  border-spacing: 0;
  table-layout: fixed;
}

picture {
  display: inline-block;
}

picture > img {
  display: block;
}

img,
picture,
video,
canvas {
  max-width: 100%;
  border: none;
}

img {
  vertical-align: top;
}

hr.type-dashed {
  border-top-style: dashed;
}
hr.type-hide {
  display: none;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}
button:disabled {
  cursor: default;
}

input,
select,
textarea {
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;
}

svg {
  fill: transparent;
}

:root {
  /* gray */
  --gray-1: #fcfcfd;
  --gray-2: #f9f9fb;
  --gray-3: #eff0f3;
  --gray-4: #e7e8ec;
  --gray-5: #e0e1e6;
  --gray-6: #d8d9e0;
  --gray-7: #cdced7;
  --gray-8: #b9bbc6;
  --gray-9: #8b8d98;
  --gray-10: #80828d;
  --gray-11: #62636c;
  --gray-12: #1e1f24;
  /* green */
  --green-1: #f9fefa;
  --green-2: #f2fcf4;
  --green-3: #d8fddd;
  --green-4: #befac8;
  --green-5: #a5f4b3;
  --green-6: #92e6a2;
  --green-7: #7fd38f;
  --green-8: #68bb79;
  --green-9: #2b5d36;
  --green-10: #1a4d27;
  --green-11: #287e40;
  --green-12: #134721;
  /* yellow */
  /* color */
  --color-darken: #111;
  --color-black: #000;
  --color-point: #ebf5e1;
  --color-primary: var(--green-9);
  --color-secondary: var(--yellow-9);
  --color-lightgray: var(--gray-6);
  --color-darkgray: var(--gray-9);
  --border-primary: var(--color-primary);
  --border-gray: var(--color-lightgray);
  --border-darken: var(--color-darken);
  --border-point: var(--color-point);
  --bg-primary: var(--color-primary);
  --bg-secondary: var(--color-secondary);
  --bg-darken: var(--color-darken);
  --bg-point: var(--color-point);
  --bg-lightgray: var(--gray-2);
  --disabled: var(--gray-8);
  --disabled-bg: var(--gray-2);
  --disabled-border: var(--gray-3);
}

/* class */
.color-primary {
  color: var(--color-primary);
}

.color-secondary {
  color: var(--color-secondary);
}

.color-gray {
  color: var(--color-darkgray);
}

/* Pretendard */
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Black.woff") format("woff"), url("fonts/Pretendard-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Bold.woff") format("woff"), url("fonts/Pretendard-Bold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-ExtraBold.woff") format("woff"), url("fonts/Pretendard-ExtraBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-ExtraLight.woff") format("woff"), url("fonts/Pretendard-ExtraLight.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Light.woff") format("woff"), url("fonts/Pretendard-Light.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Medium.woff") format("woff"), url("fonts/Pretendard-Medium.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Regular.woff") format("woff"), url("fonts/Pretendard-Regular.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-SemiBold.woff") format("woff"), url("fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Thin.woff") format("woff"), url("fonts/Pretendard-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}
.container {
  width: 1400px;
  max-width: 1400px;
  margin: 0 auto;
}
.container.fluid {
  width: 100%;
  max-width: 100%;
}

/* mediaquery */
@media screen and (max-width: 1400px) {
  .container {
    width: 100%;
    padding: 0 5rem;
  }
}
@media screen and (max-width: 720px) {
  .container {
    padding: 0 2rem;
  }
}
.text-field {
  /* enabled */
  border: 1px solid var(--border-gray);
  box-sizing: border-box;
  padding: 0 1rem;
  font-size: 16px;
  color: var(--color-darken);
  /* hover */
  /* focus */
  /* error */
  /* disabled */
  /* size */
}
.text-field::-moz-placeholder {
  font-size: 16px;
  color: var(--disabled);
}
.text-field::placeholder {
  font-size: 16px;
  color: var(--disabled);
}
.text-field:hover {
  border: 1px solid var(--border-primary);
}
.text-field:focus {
  border: 2px solid var(--border-primary);
}
.text-field:disabled {
  background-color: var(--disabled-bg);
  border: 1px solid var(--disabled-border);
}
.text-field.size-lg {
  width: 12rem;
  height: 3rem;
  border-radius: 1rem;
  padding: 1rem;
}
.text-field.size-md {
  height: 5rem;
  border-radius: 1rem;
  padding: 1rem;
}
.text-field.size-sm {
  width: 8rem;
  height: 1.5rem;
  border-radius: 1rem;
  padding: 0.5rem;
}

.badge {
  /* color */
  /* size */
}
.badge.primary {
  background-color: var(--bg-primary);
}
.badge.secondary {
  background-color: var(--bg-secondary);
}
.badge.point {
  background-color: var(--bg-point);
}
.badge.size-lg {
  width: 12rem;
  height: 3rem;
  border-radius: 1rem;
  padding: 1rem;
}
.badge.size-md {
  width: 10rem;
  height: 2rem;
  border-radius: 1rem;
  padding: 1rem;
}
.badge.size-sm {
  width: 8rem;
  height: 1.5rem;
  border-radius: 1rem;
  padding: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 2rem;
  height: 2rem;
  border-radius: 5px;
  font-style: normal;
  flex-shrink: 0;
  /* color */
  /* size */
}
.chip.primary {
  background-color: var(--bg-primary);
  color: #fff;
}
.chip.secondary {
  background-color: var(--bg-secondary);
  color: #fff;
}
.chip.point {
  background-color: var(--bg-point);
  color: #fff;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  /* color */
  /* line */
  /* size */
  /* icon button */
  /* with icon */
  /* motion */
}
.btn.primary {
  background-color: var(--bg-primary);
  color: #fff;
}
.btn.primary .icon {
  background-color: #fff;
}
.btn.secondary {
  background-color: var(--bg-secondary);
  color: #fff;
}
.btn.secondary .icon {
  background-color: #fff;
}
.btn.dark {
  background-color: var(--bg-dark);
  color: #fff;
}
.btn.dark .icon {
  background-color: #fff;
}
.btn.line-btn {
  border: 1px solid var(--border-darken);
}
.btn.size-md {
  min-width: 17rem;
  height: 5rem;
  padding: 0 1rem;
  font-size: 16px;
}
.btn.with-icon {
  gap: 1rem;
}
.btn.with-icon .icon {
  width: 24px;
  height: 24px;
  display: block;
  background-color: #fff;
}
.btn.motion .icon {
  margin-right: 15px;
  width: 1.3rem;
  height: 2px;
  transform: rotate(360deg);
  transition: 0.3s ease-in-out;
}
.btn.motion:hover .icon {
  transform: none;
}

/* btn-wrap */
.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.icon {
  /* size */
  /* shape */
}
.icon:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.icon.size-24 {
  width: 24px;
  height: 24px;
}
.icon.size-36 {
  width: 36px;
  height: 36px;
}
.icon.icon-doc:before {
  background-image: url(/resources/forestgoodfood/images/icon/icon-doc.svg);
}
.icon.icon-hwp:before {
  background-image: url(/resources/forestgoodfood/images/icon/icon-hwp.svg);
}
.icon.icon-jpg:before {
  background-image: url(/resources/forestgoodfood/images/icon/icon-jpg.svg);
}
.icon.icon-pdf:before {
  background-image: url(/resources/forestgoodfood/images/icon/icon-pdf.svg);
}
.icon.icon-png:before {
  background-image: url(/resources/forestgoodfood/images/icon/icon-png.svg);
}
.icon.icon-xls:before {
  background-image: url(/resources/forestgoodfood/images/icon/icon-xls.svg);
}
.icon.icon-zip:before {
  background-image: url(/resources/forestgoodfood/images/icon/icon-zip.svg);
}
.icon.icon-down:before {
  background-image: url(/resources/forestgoodfood/images/icon/icon-down.svg);
}
.icon.icon-download:before {
  background-image: url(/resources/forestgoodfood/images/icon/icon-download.svg);
}
.icon.icon-clip:before {
  background-image: url(/resources/forestgoodfood/images/icon/icon-clip.svg);
}

header {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 4px 2px 15px rgba(102, 102, 102, 0.1);
  transition: all 0.4s;
}
header.menu-on .gnb-wrap {
  opacity: 1;
  height: 100vh;
  visibility: visible;
  transform: translateY(0%);
}
header.menu-on .header-inner {
  position: fixed;
  z-index: 999;
  width: 1400px;
}
header.menu-on .header-inner h1,
header.menu-on .header-inner .util-menu {
  display: none;
}
header.menu-on .header-inner #menu-btn {
  --bar-color: #fff;
  margin-top: 2rem;
}
header.active .util-menu {
  opacity: 0;
  visibility: hidden;
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
}
.header-inner h1 {
  width: 17.6rem;
  flex-shrink: 0;
}
.header-inner nav {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.header-inner nav li {
  display: inline-block;
  width: 20rem;
}
.header-inner nav li > a {
  font-size: 2rem;
  font-weight: bold;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-inner .util-menu {
  margin-left: 10rem;
  transition: all 0.4s;
  display: flex;
  align-items: flex-start;
  margin-left: 30rem;
}
.header-inner .util-menu li {
  width: 20rem;
  position: relative;
}
.header-inner .util-menu li:hover .depth2 {
  opacity: 1;
  transform: translateY(0%);
}
.header-inner .util-menu .depth2 {
  opacity: 0;
  width: 100%;
  padding: 2rem;
  border-radius: 2rem;
  background-color: var(--bg-point);
  box-shadow: 4px 2px 15px rgba(102, 102, 102, 0.1);
  position: absolute;
  top: 84px;
  transform: translateY(-100%);
  transition: all 0.4s;
  z-index: 90;
}
.header-inner .util-menu .depth2 a {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}
.header-inner .util-menu .depth2 a:hover {
  background: #ebf5e1;
  box-sizing: border-box;
  border-radius: 5px;
  font-weight: bold;
}

.gnb-wrap {
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 100;
  top: 0;
  transform: translateY(-100%);
  transition: all 0.4s;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background-color: rgba(0, 0, 0, 0.7);
}
.gnb-wrap .container {
  height: 100vh;
  display: flex;
  align-items: center;
}
.gnb-wrap li {
  display: flex;
}
.gnb-wrap li + li {
  margin-top: 10rem;
}
.gnb-wrap li p {
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
  width: 33rem;
}
.gnb-wrap li .depth2 {
  margin-left: 10rem;
}
.gnb-wrap li a {
  font-size: 2.4rem;
  padding: 0 1rem;
  color: #fff;
  margin-top: 2rem;
  margin-left: 5rem;
  position: relative;
}
.gnb-wrap li a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  position: absolute;
  left: -10px;
  top: 0;
  opacity: 0;
}
.gnb-wrap li a:hover {
  color: var(--bg-secondary);
}
.gnb-wrap li a:hover::after {
  opacity: 1;
}

/* Menu Button */
#menu-btn {
  margin-left: auto;
  /* 
  Start Tweakable Presets
  */
  --animation-duration: 0.6s;
  --animation-timing-function: ease-in-out;
  --bar-color: #000000;
  --btn-size: 50px;
  /*
  End Tweakable Presets 
  */
  --bar-spacing: calc(var(--btn-size) * 0.15);
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: var(--bar-spacing);
  height: var(--btn-size);
  justify-content: center;
  padding: 0;
  width: var(--btn-size);
  transition: calc(var(--animation-duration) / 2) transform var(--animation-timing-function);
  /* Bars */
  /* State: X */
  /* State: Hamburger */
}
#menu-btn span {
  --bar-height: calc(var(--btn-size) * 0.15);
  animation-duration: var(--animation-duration);
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  background: var(--bar-color);
  border-radius: var(--bar-height);
  height: var(--bar-height);
  width: 100%;
}
#menu-btn[data-state=x] {
  transform: rotate(-90deg);
}
#menu-btn[data-state=x] span:nth-child(1) {
  animation-name: to-x-top;
}
#menu-btn[data-state=x] span:nth-child(2) {
  animation-name: to-x-mid;
}
#menu-btn[data-state=x] span:nth-child(3) {
  animation-name: to-x-btm;
}
#menu-btn[data-state=hamburger] span:nth-child(1) {
  animation-name: to-hamburger-top;
}
#menu-btn[data-state=hamburger] span:nth-child(2) {
  animation-name: to-hamburger-mid;
}
#menu-btn[data-state=hamburger] span:nth-child(3) {
  animation-name: to-hamburger-btm;
}

/* Keyframes */
/* To X Animation */
@keyframes to-x-top {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(calc(var(--bar-height) + var(--bar-spacing))) rotate(0);
  }
  100% {
    transform: translateY(calc(var(--bar-height) + var(--bar-spacing))) rotate(-45deg);
  }
}
@keyframes to-x-mid {
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-45deg);
  }
}
@keyframes to-x-btm {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(calc(-1 * (var(--bar-height) + var(--bar-spacing)))) rotate(0);
  }
  100% {
    transform: translateY(calc(-1 * (var(--bar-height) + var(--bar-spacing)))) rotate(-135deg);
  }
}
/* To Hamburger Animation */
@keyframes to-hamburger-top {
  0% {
    transform: translateY(calc(var(--bar-height) + var(--bar-spacing))) rotate(-45deg);
  }
  50% {
    transform: translateY(calc(var(--bar-height) + var(--bar-spacing))) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes to-hamburger-mid {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(0);
  }
}
@keyframes to-hamburger-btm {
  0% {
    transform: translateY(calc(-1 * (var(--bar-height) + var(--bar-spacing)))) rotate(-135deg);
  }
  50% {
    transform: translateY(calc(-1 * (var(--bar-height) + var(--bar-spacing)))) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
/* mediaquery */
@media screen and (max-width: 1400px) {
  header.menu-on .header-inner {
    width: 100%;
    left: 0;
  }
  header.menu-on .header-inner #menu-btn {
    margin-right: 2rem;
  }
  .header-inner .util-menu {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .gnb-wrap li {
    flex-direction: column;
  }
  .gnb-wrap li p {
    width: 100%;
    font-size: 4rem;
  }
  .gnb-wrap li .depth2 {
    margin-left: 0;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 720px) {
  #menu-btn {
    --btn-size: 30px;
  }
  .gnb-wrap li p {
    font-size: 3rem;
  }
  .gnb-wrap li a {
    font-size: 2rem;
    margin-top: 1rem;
  }
  .gnb-wrap li .depth2 {
    margin-top: 1rem;
  }
  .gnb-wrap li + li {
    margin-top: 5rem;
  }
}
#visual {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#visual .title-box {
  padding-top: 17rem;
}
#visual h3 {
  color: var(--color-primary);
  font-size: 2.4rem;
  transition: color 1s cubic-bezier(0.68, 0.03, 0.33, 1);
}
#visual .title {
  font-size: 5.8rem;
  font-weight: bold;
  line-height: 8.5rem;
  margin: 3rem auto;
  transition: color 1s cubic-bezier(0.68, 0.03, 0.33, 1);
}
#visual .title-content {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 4.8rem;
  transition: color 1s cubic-bezier(0.68, 0.03, 0.33, 1);
}
#visual .bg-box {
  width: 100%;
  max-width: 140rem;
  position: absolute;
  top: 65%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  transition: all 1s cubic-bezier(0.68, 0.03, 0.33, 1);
}
#visual .bg-box img {
  width: auto;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#visual .bg-box .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.4s;
}
#visual.active .title-box h3,
#visual.active .title-box .title,
#visual.active .title-box .title-content {
  color: #fff;
}
#visual.active .bg-box {
  width: 100vw;
  max-width: 100vw;
  top: 0;
}
#visual.active .bg {
  background-color: rgba(0, 0, 0, 0.5);
}
#visual.active #breadcrumb svg {
  fill: #fff;
}
#visual.active #breadcrumb .icon::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(2120%) hue-rotate(263deg) brightness(118%) contrast(100%);
}
#visual.active #breadcrumb .depth1,
#visual.active #breadcrumb .depth2 {
  color: #fff;
}

/* mediaquery */
@media screen and (max-width: 1400px) {
  #visual .title-content {
    font-size: 3rem;
    line-height: 4rem;
  }
}
@media screen and (max-width: 720px) {
  #visual .title {
    font-size: 4rem;
    line-height: 5rem;
  }
}
#breadcrumb {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 7rem auto;
}
#breadcrumb a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#breadcrumb svg {
  width: 24px;
  height: 24px;
  font-weight: bold;
  fill: var(--color-darken);
  transition: fill 1s cubic-bezier(0.68, 0.03, 0.33, 1);
}
#breadcrumb .icon {
  transform: rotate(-90deg);
}
#breadcrumb .icon::before {
  filter: brightness(0) saturate(100%) invert(2%) sepia(4%) saturate(9%) hue-rotate(314deg) brightness(89%) contrast(90%);
  transition: filter 1s cubic-bezier(0.68, 0.03, 0.33, 1);
}
#breadcrumb .depth1,
#breadcrumb .depth2 {
  color: var(--color-darken);
  font-weight: bold;
  transition: color 1s cubic-bezier(0.68, 0.03, 0.33, 1);
}

#boardList {
  margin-top: 14rem;
}
#boardList .board-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-darken);
  border-bottom: 1px solid var(--border-darken);
  margin-top: 2rem;
}
#boardList .board-list .board-item:last-child {
  border-bottom: 0;
}
#boardList .board-item {
  width: 100%;
  flex-grow: 1;
  border-bottom: 1px solid var(--border-gray);
}
#boardList .board-item:hover {
  background-color: var(--bg-point);
}
#boardList .content-box {
  display: flex;
  align-items: center;
  padding: 3.2rem 0;
}
#boardList .content-box .number {
  width: 6.2rem;
  text-align: center;
  flex-shrink: 0;
}
#boardList .content-box .title-box {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  margin-left: 6rem;
}
#boardList .content-box .board-foot {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
#boardList .content-box .board-foot .icon {
  display: block;
}
#boardList .content-box .chip {
  margin-left: 1rem;
  margin-right: 1rem;
}
#boardList .content-box .date {
  padding: 0 1rem;
}
#boardList .content-box .number,
#boardList .content-box .title-box {
  font-size: 2rem;
  font-weight: bold;
  line-height: 3.4rem;
}
#boardList .no-data {
  padding: 10rem 0;
  margin: 0 auto;
  font-size: 3rem;
  color: var(--color-lightgray);
}

/* detail */
#boardDetail {
  margin-top: 14rem;
}
#boardDetail .post-title {
  font-size: 4.5rem;
  font-weight: bold;
}
#boardDetail .post-info {
  margin-top: 1rem;
  color: var(--disabled);
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--border-darken);
}
#boardDetail .post-box {
  padding: 10rem 0;
  font-size: 16px;
}
#boardDetail .post-box iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
#boardDetail .post-attachment {
  display: flex;
  gap: 1rem;
}
#boardDetail .post-attachment .attachment-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  width: 120px;
  height: 64px;
  flex-shrink: 0;
}
#boardDetail .post-attachment .attachment-title::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(/resources/forestgoodfood/images/icon/icon-clip.svg);
}
#boardDetail .post-attachment .attachment-list {
  flex-grow: 1;
}
#boardDetail .post-attachment .attachment-list ul {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
#boardDetail .post-attachment .attachment-list a {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--border-gray);
  border-radius: 1rem;
  min-height: 64px;
  transition: all 0.5s;
}
#boardDetail .post-attachment .attachment-list a:hover {
  background-color: var(--bg-point);
  border: 1px solid var(--border-primary);
}
#boardDetail .post-attachment .attachment-list .icon {
  flex-shrink: 0;
}
#boardDetail .post-attachment .attachment-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
#boardDetail .post-attachment .attachment-list p::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url(/resources/forestgoodfood/images/icon/icon-download.svg);
}
#boardDetail .post-btn {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border-darken);
  padding-top: 3rem;
  margin-top: 3rem;
}
#boardDetail .post-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6rem;
}
#boardDetail .post-navigation .box {
  display: flex;
  align-items: center;
  width: 40%;
}
#boardDetail .post-navigation .box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border: 1px solid var(--border-darken);
  border-radius: 100%;
  transition: fill 0.5s;
  overflow: hidden;
  flex-shrink: 0;
}
#boardDetail .post-navigation .box .icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-darken);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
#boardDetail .post-navigation .box .icon svg {
  width: 40%;
  height: 40%;
  fill: var(--border-darken);
}
#boardDetail .post-navigation .box.prev .icon {
  margin-right: 1.8rem;
}
#boardDetail .post-navigation .box.next {
  flex-direction: row-reverse;
}
#boardDetail .post-navigation .box.next .tit-box {
  text-align: right;
}
#boardDetail .post-navigation .box.next .icon {
  margin-left: 1.8rem;
}
#boardDetail .post-navigation .box.none {
  pointer-events: none;
}
#boardDetail .post-navigation .box.none .icon {
  border-color: var(--disabled);
}
#boardDetail .post-navigation .box.none .icon svg {
  fill: var(--disabled);
}
#boardDetail .post-navigation .box.none .desc,
#boardDetail .post-navigation .box.none .tit {
  color: var(--disabled);
}
#boardDetail .post-navigation .box:hover .icon::before {
  opacity: 1;
}
#boardDetail .post-navigation .box:hover .icon svg {
  fill: #fff;
}
#boardDetail .post-navigation .tit-box {
  display: flex;
  flex-direction: column;
}
#boardDetail .post-navigation .tit-box .desc {
  font-weight: bold;
}
#boardDetail .post-navigation .tit-box .tit {
  margin-top: 0.3rem;
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}

/* mediaquery */
@media screen and (max-width: 720px) {
  #boardList {
    margin-top: 0;
  }
  #boardDetail {
    margin-top: 0;
  }
  #boardDetail .post-title {
    font-size: 2.5rem;
  }
  #boardDetail .post-attachment {
    flex-direction: column;
  }
}
#boardsearch {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#boardsearch .search_bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#boardsearch .board-searchbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  border-bottom: 1px solid var(--border-darken);
}
#boardsearch .board-searchbox .text-field {
  min-width: 30rem;
  border: 0;
}

#pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}
#pagination > a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: fill 0.3s;
}
#pagination > a svg {
  fill: var(--gray-8);
}
#pagination > a:first-child {
  margin-right: 2rem;
  font-size: 2em;
}
#pagination > a:last-child {
  margin-left: 2rem;
  font-size: 2em;
}
#pagination > a + a {
  margin-left: 1rem;
}
#pagination .num-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
}
#pagination .num-list li {
  margin: 0 0.2rem;
}
#pagination .num-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  color: #000;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
#pagination .num-list li.active a {
  background: var(--bg-primary);
  color: #fff;
}

.accordion-item .active,
.accordion-item .accordion-title:hover {
  background-color: var(--bg-primary);
  color: #fff;
}
.accordion-item .active:after,
.accordion-item .accordion-title:hover:after {
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(7445%) hue-rotate(114deg) brightness(98%) contrast(108%);
}
.accordion-item .active .color-gray,
.accordion-item .accordion-title:hover .color-gray {
  color: #fff;
}
.accordion-item .panel {
  padding: 2rem;
  font-size: 2rem;
  background-color: #fff;
  overflow: hidden;
}
.accordion-item .text-sm {
  font-size: 1.6rem;
}
.accordion-item .list-type li {
  padding-top: 1rem;
}
.accordion-item .list-type li::before {
  top: 2.2rem;
}

.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-point);
  color: var(--color-darken);
  cursor: pointer;
  padding: 2rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 2rem;
  border-bottom: 1px solid var(--border-gray);
}
.accordion-title.active {
  border-bottom: none;
}
.accordion-title.active + .panel {
  height: 100%;
  border-bottom: 1px solid var(--border-gray);
}
.accordion-title:after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.4s;
  background-image: url(/resources/forestgoodfood/images/icon/icon-down.svg);
  background-position: center;
}

footer {
  background-color: var(--color-black);
  display: flex;
  position: relative;
  padding-top: 15px;
}
footer::before, footer::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
}
footer::before {
  top: -15px;
  left: 0;
}
footer::after {
  top: -15px;
  right: 0;
}
footer .bg-line {
  width: calc(100% - 30px);
  height: 15px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
footer .container {
  display: flex;
  align-items: center;
  padding: 82px 0;
  position: relative;
}
footer .container h3 a {
  width: 11.4rem;
  height: 15.5rem;
  display: block;
  position: relative;
}
footer .container h3 a::after {
  content: "";
  display: block;
  width: 11.4rem;
  height: 15.5rem;
  background-image: url(/resources/forestgoodfood/images/img-footerlogo.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
footer .container address {
  color: #fff;
  font-style: normal;
  font-size: 2rem;
  margin-left: 115px;
}
footer .container address p + p {
  padding-top: 10px;
}
footer .sns-box {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .sns-box .icon {
  width: 3.2rem;
  height: 3.2rem;
}
footer .sns-box .icon.facebook {
  background-image: url(/resources/forestgoodfood/images/icon-facebook.png);
}
footer .sns-box .icon.insta {
  background-image: url(/resources/forestgoodfood/images/icon-insta.png);
}
footer .sns-box .icon.youtube {
  background-image: url(/resources/forestgoodfood/images/icon-youtube.png);
}

/* mediaquery */
@media screen and (max-width: 1400px) {
  footer .container {
    padding: 8rem 5rem;
  }
  footer .container address {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 720px) {
  footer .container {
    padding: 5rem 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .container h3 a {
    width: 6rem;
    height: 10rem;
  }
  footer .container h3 a::after {
    width: 6rem;
    height: 10rem;
    background-size: contain;
    background-repeat: no-repeat;
  }
  footer .container address {
    font-size: 1.4rem;
  }
  footer .container .sns-box {
    width: 100%;
    justify-content: center;
  }
  footer .container .sns-box .icon {
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 500px) {
  footer .container {
    flex-direction: column;
    gap: 2rem;
  }
  footer .container address {
    text-align: center;
  }
  footer .container .sns-box {
    margin-top: 2rem;
  }
}
html {
  font-size: 62.5%;
}

body {
  overflow: auto;
  -ms-overflow-style: none;
  font-size: 1.6rem;
}
body.menu-on {
  overflow: hidden;
}

::-webkit-scrollbar {
  display: none;
}

/* common style */
#contents {
  overflow: hidden;
}

.section {
  overflow: hidden;
}

.sub-section {
  padding-bottom: 16rem;
}

.relative {
  position: relative;
}

.blind {
  position: absolute;
  left: -99999px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-indent: -99999px;
  clip: rect(0, 0, 0, 0);
}

.flex {
  display: flex;
}
.flex.align-center {
  align-items: center;
}
.flex.align-start {
  align-items: flex-start;
}
.flex.align-ent {
  align-items: flex-end;
}
.flex.justify-center {
  justify-content: center;
}
.flex.justify-start {
  justify-content: start;
}
.flex.justify-space-between {
  justify-content: space-between;
}

/* text */
.text-bold {
  font-weight: bold;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

/* color */
.point {
  color: var(--color-point);
}

/* custom select */
.custom-select {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 20px;
}
.custom-select.active .triangle {
  transform: rotate(180deg) translateY(50%);
}

.triangle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.triangle-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #000;
  transition: border-top-color 1s cubic-bezier(0.68, 0.03, 0.33, 1);
}

/* list type */
.list-type li {
  padding-left: 2rem;
  position: relative;
}
.list-type li::before {
  content: "";
  width: 6px;
  height: 2px;
  background-color: var(--bg-darken);
  position: absolute;
  top: 2.4rem;
  left: 0;
}
.list-type li.no-bar {
  padding-left: 0;
}
.list-type li.no-bar::before {
  display: none;
}
.list-type li + li {
  padding-top: 1rem;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 9.5px;
  }
}
@media screen and (max-width: 720px) {
  html {
    font-size: 8px;
  }
}