@import url("https://fonts.googleapis.com/earlyaccess/notosanskr.css");

:root {
  --font-light: 200;
  --font-regular: 300;
  --font-medium: 400;
  --font-bold: 500;
  --font-black: 900;

  --navy: #003349;
}

* {
  /*outline: 0;*/
  box-sizing: border-box;
}
pre {
  margin: 0;
  white-space: pre-line;
  font-family: "Noto Sans KR", sans-serif;
}
input {
  min-width: 0;
}
img {
  max-width: 100%;
}
input {
  border: none;
}

html,
body {
  color: #222;
  font-size: 16px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: var(--font-regular);
  line-height: 1.25;
  letter-spacing: -0.02em;
  scroll-behavior: smooth;
}
@media all and (max-width: 620px) {
  html,
  body {
    font-size: 15px;
  }
}
@media all and (max-width: 520px) {
  html,
  body {
    font-size: 13px;
  }
}
@media all and (max-width: 420px) {
  html,
  body {
    font-size: 11px;
  }
}
@media all and (max-width: 360px) {
  html,
  body {
    font-size: 10px;
  }
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 5rem;
  height: 5rem;
}

.lds-ellipsis div {
  position: absolute;
  top: 2.0625rem;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  background: #a0a0a0;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 0.5rem;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 0.5rem;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 2rem;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 3.5rem;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(1.5rem, 0);
  }
}

.layout {
  width: 1300px;
  max-width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.h-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.spread {
  justify-content: space-between;
}
.h-end {
  justify-content: flex-end;
}
.v-end {
  align-items: flex-end;
}
.flex-column {
  flex-direction: column;
}
.truncate {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dbl-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  height: 3em;
  max-height: 3em;
  white-space: normal;
  word-break: keep-all !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
@media all and (min-width: 1301px) {
  .m-only {
    display: none !important;
  }
}
@media all and (max-width: 1300px) {
  .m-hidden {
    display: none !important;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.5rem;
  transition: all 0.35s;
  z-index: 20;
}
.header .hd-layout {
  height: 100%;
}
.header .logo {
  flex: 0 0 auto;
}
.header .logo > a {
  display: block;
}
.header .logo img {
  width: auto;
  height: 5rem;
}
.header .logo img.active-img {
  display: none;
}
body.scroll .header {
  background-color: white;
  border-bottom: 0.0625rem solid #f1f2f3;
}
body.scroll .header .logo img {
  display: none;
}
body.scroll .header .logo img.active-img {
  display: block;
}
.main-nav {
  height: 100%;
}
.main-nav > a {
  height: 100%;
  color: white;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  transition: color 0.5s;
  display: flex;
  align-items: center;
}
body.scroll .header .main-nav > a {
  color: black;
}
.main-nav__grid {
  display: grid;
  grid-template-columns: 190px 214px 163px 186px 143px;
}

.bar-title {
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: var(--navy);
  line-height: 1;
}
.bar-title::before {
  content: "";
  display: block;
  width: 1.875rem;
  height: 0.375rem;
  background-color: var(--navy);
  margin-bottom: 1rem;
  margin-left: 0.125rem;
}

.detail-nav__wrap {
  height: 0;
  overflow: hidden;
  width: 100%;
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
}
.main-nav.on .detail-nav__wrap {
  height: auto;
  border: 0.0625rem solid #e4e4e4;
}
.main-nav .detail-nav__wrap .detail-nav__list {
  width: 896px;
  min-height: 28.125rem;
  margin-left: auto;
  padding: 3rem 0;
}
.main-nav .detail-nav > li {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: #666;
  padding-right: 1rem;
}
.main-nav .detail-nav > li:is(:hover, :focus) {
  color: var(--navy);
  font-weight: var(--font-medium);
}
.main-nav .detail-nav > li > a {
  display: block;
}
.main-nav .detail-nav > li + li {
  margin-top: 1.25rem;
}
.top-slider .swiper-slide {
  width: 100%;
  height: 820px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top-slider__wrap {
  position: relative;
  min-height: 32rem;
}
.top-slider__title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-top: -2rem;
  color: white;
  z-index: 10;
}
.top-slider__title > p {
  font-size: 2rem;
  font-weight: var(--font-medium);
  opacity: 0.7;
  margin-bottom: 2rem;
}
.top-slider__title > h2 {
  font-size: 3.25rem;
  font-weight: var(--font-bold);
  line-height: normal;
  padding: 0 5.625rem;
  position: relative;
}
.top-slider__title > h2::before,
.top-slider__title > h2::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3.5rem;
  width: 1.875rem;
  height: 7rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top-slider__title > h2::before {
  left: 0;
  background-image: url("../images/sq-left.png");
}
.top-slider__title > h2::after {
  right: 0;
  background-image: url("../images/sq-right.png");
}
.c-tab {
  font-size: 1.75rem;
  font-weight: var(--font-regular);
  color: #666;
  display: flex;
  width: fit-content;
}
.c-tab[aria-selected="true"] {
  padding-left: 5.125rem;
  background-image: url("../images/ico-sub-title.png");
  background-size: 3.875rem;
  background-position: left center;
  background-repeat: no-repeat;
  font-weight: var(--font-medium);
  color: var(--navy);
}

.main-intro {
  background-color: white;
  padding-top: 6.875rem;
  padding-bottom: 4.375rem;
}
.main-intro__title {
  color: var(--navy);
  font-size: 3rem;
  font-weight: var(--font-medium);
}
.main-intro__title > small {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  margin-top: 1.75rem;
}
.main-intro__txt {
  font-size: 1.75rem;
  font-weight: var(--font-regular);
  line-height: 1.57;
}
.more-btn {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  padding-right: 5.25rem;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url("../images/ico-more.png");
  background-size: 4.0625rem;
  display: inline-block;
  min-height: 1.25rem;
}
.more-btn.bottom {
  background-position: right bottom 0.4rem;
}
.more-btn:empty {
  padding-right: 4.125rem;
}
.main-intro__txt > .more-btn {
  margin-top: 1.125rem;
}

.main-banner {
  width: 100%;
  min-height: 28.125rem;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  /*background-image: url('../images/main-banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
}
.main-banner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.main-banner__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/main-banner_full.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.main-banner__content {
  width: 100%;
  margin-top: -0.5rem;
  position: relative;
  z-index: 1;
}
.main-banner__content > h3 {
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: white;
}
.main-banner__content > img {
  margin-top: 3.25rem;
  width: auto;
  height: 5rem;
}

.main-sect__title {
  font-size: 2.75rem;
  font-weight: var(--font-medium);
  color: var(--navy);
}
.main-sect__txt {
  color: black;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  line-height: 1.5;
}
.main-sect__title + .main-sect__txt {
  margin-top: 2.25rem;
}

.main-platform {
  padding-top: 6.75rem;
  padding-bottom: 9.625rem;
  background-image: url("../images/dotted_brown.png");
  background-position: left bottom -375px;
  background-repeat: no-repeat;
}
.main-platform .main-sect__left {
  width: 28.875rem;
  flex: 0 0 auto;
}
.main-platform .main-sect__right {
  flex: 1 1 auto;
  overflow: hidden;
}
.main-platform .platform-img {
  width: 100%;
  padding-top: 56.5%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.main-platform .platform-txt {
  background-color: white;
  width: 37.5rem;
  max-width: 90%;
  padding-top: 3.875rem;
  margin-top: -3.875rem;
  transform: translateX(-1px);
}
.main-platform .platform-txt > h4 {
  padding-right: 4.25rem;
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 1.25rem;
}
.main-platform .platform-txt > h4 > a > img {
  width: 4.1875rem;
  height: auto;
}
.main-platform .platform-txt > p {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.6666;
  word-break: keep-all;
}
.main-platform .tab-list {
  margin-top: 10rem;
}
.main-platform .tab-list .c-tab {
  margin-bottom: 2.25rem;
}

.tab-list {
  width: 100%;
  display: flex;
}
.tab-list .tab {
  display: block;
  flex: 1;
  border-top: 0.0625rem solid #666;
  text-align: center;
  position: relative;
  padding-top: 2rem;
  font-size: 1.375rem;
  font-weight: var(--font-regular);
  color: #666;
  word-break: keep-all;
}
.tab-list .tab[aria-selected="true"] {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: var(--navy);
}
.tab-list .tab[aria-selected="true"]::before {
  content: "";
  display: block;
  background-color: #9a825a;
  width: 100%;
  height: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
}

.main-product {
  width: 100%;
  background-color: white;
  padding-top: 6.875rem;
  padding-bottom: 8.75rem;
  position: relative;
}
.main-product > .layout {
  position: relative;
}
.main-product::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background-color: #f3f3f3;
  position: absolute;
  top: 0;
  left: 0;
}
.main-product .main-sect__left {
  width: 24.375rem;
  flex: 0 0 auto;
  /*position: absolute;
    top: 6.5rem;
    left: 0;*/
}
.main-product .slider-place {
  flex: 1 1 auto;
  /*height: 36.25rem;*/
}

.product-slider__wrap {
  position: absolute;
  right: 0;
  top: 6.875rem;
}
.product-slider {
  width: 100%;
  padding-right: 5rem;
}
.product-slider .swiper-slide {
  width: 25rem;
}
.product-slider .swiper-slide > a {
  display: block;
}
.product-slider .swiper-slide .product-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 36.25rem;
}
.product-slider .swiper-slide .product-info {
  width: 15.625rem;
  padding: 1.25rem 0.5rem 1.25rem 2.625rem;
  background-color: white;
  border-top-left-radius: 0.625rem;
  position: absolute;
  bottom: -1px;
  right: 0;
}
.product-slider .swiper-slide .product-info .prd-name {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
}
.product-slider .swiper-slide .product-info .prd-category {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  margin-top: 0.375rem;
}
.prd-slide__btns {
  position: absolute;
  left: -2.5rem;
  bottom: 11.25rem;
  transform: translateX(-100%);
}
.prd-slide__btns .swiper-button-next,
.prd-slide__btns .swiper-button-prev {
  position: static;
  width: 3.5rem;
  height: 3.5rem;
  border: 0.125rem solid #a0a0a0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.8125rem;
  background-color: white;
}
.prd-slide__btns .swiper-button-next {
  background-image: url("../images/ico-next.png");
}
.prd-slide__btns .swiper-button-prev {
  background-image: url("../images/ico-prev.png");
}
.prd-slide__btns .swiper-button-next::after,
.prd-slide__btns .swiper-button-prev::after {
  display: none;
}

.main-history-search {
  width: 100%;
  padding-top: 3.75rem;
  padding-bottom: 6.125rem;
  background: linear-gradient(to right, #2872b5, var(--navy));
  text-align: center;
}
.main-history-search .history-title {
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}
.main-history-search .history-filter {
  /*display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 3.25rem;*/
}
.main-history-search .history-filter > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.main-history-search .history-filter > li > span {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: white;
  width: 8.5rem;
  flex: 0 0 auto;
}
.main-history-search .history-filter > li .history-btn {
  /*margin-left: 3.375rem;
    flex: 0 0 auto;*/
}
.main-history-search .history-filter > li .filter-inp {
  flex: 1 1 auto;
}
.main-history-search .history-filter > li input:not([type="radio"]) {
  border-radius: 300rem;
  background-color: white;
  width: 100%;
  height: 3.75rem;
  border: none;
  padding: 0 4.5rem;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
}
.main-history-search .history-filter > li .filter-inp.filter-radio {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.625rem;
}
.main-history-search .history-filter > li .radio-wrap > label {
  width: 100%;
  height: 3.75rem;
  display: block;
  text-align: center;
  line-height: 3.75rem;
  background-color: #e3e3e3;
  border-radius: 0.9375rem;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: #666;
  cursor: pointer;
}
.main-history-search .history-filter > li .radio-wrap > input:checked + label {
  background-color: #a08c6a;
  color: white;
  font-weight: var(--font-medium);
}
.history-filter__bottom {
  width: 100%;
  margin-top: 2.8125rem;
}
.main-history-search .history-btn {
  border: 0.0625rem solid #e3e3e3;
  border-radius: 0.9375rem;
  height: 3.75rem;
  background-color: transparent;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: white;
  padding-left: 3rem;
  padding-right: 5.875rem;
  background-image: url("../images/ico-search.png");
  background-repeat: no-repeat;
  background-position: right 1.875rem center;
  background-size: 1.875rem;
  margin-top: 3.125rem;
}
.main-recipe-notice {
  padding-top: 6.75rem;
  padding-bottom: 6.125rem;
  background-image: url("../images/dotted_black.png");
  background-position: right bottom 21.375rem;
  background-repeat: no-repeat;
}
.main-recipe-notice .layout + .layout {
  margin-top: 16.375rem;
}

.recipe-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6875rem;
  margin-top: 3.75rem;
}
.recipe-list > li > a {
  display: block;
  width: 100%;
}
.recipe-list > li .recipe-img {
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 2.625rem;
}
.recipe-list > li .recipe-title {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
}
.recipe-list > li .recipe-txt {
  color: #222;
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  margin-top: 1rem;
}
.main-notice__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.5rem;
}
.main-notice__list > li > a {
  width: 100%;
  display: block;
  border: 0.0625rem solid #d0d0d0;
  padding: 2.25rem 2.5rem;
}
.main-notice__list > li + li {
  border-left: 0;
}
.main-notice__list > li .notice-title {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 1.375rem;
}
.main-notice__list > li .notice-txt {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: #222;
  margin-bottom: 1.5rem;
}

.main-direct-link {
  position: relative;
  width: 100%;
  height: 22.8125rem;
}
.main-direct-link .direct-link {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}
.main-direct-link .direct-link.link-1 {
  background-image: url("../images/link-1.png");
  left: 0;
}
.main-direct-link .direct-link.link-2 {
  background-image: url("../images/link-2.png");
  right: 0;
}
.main-direct-link .link-txt {
  width: 50%;
  color: white;
}
.main-direct-link .link-txt + .link-txt {
  padding-left: 4.25rem;
}
.main-direct-link > .layout {
  height: 100%;
  position: relative;
  z-index: 1;
}
.main-direct-link .link-txt > h4 {
  font-size: 2.5rem;
  font-weight: var(--font-medium);
  margin-bottom: 1.5rem;
}
.main-direct-link .link-txt > p {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
}
.main-direct-link .link-txt > a {
  margin-top: 3.25rem;
  border: 0.0625rem solid white;
  display: flex;
  align-items: center;
  width: fit-content;
  color: white;
  font-size: 1.25rem;
  font-weight: 300;
  padding: 0 2.25rem;
  height: 3.625rem;
}

.footer {
  padding-block: 3.75rem;
  background-color: #f8f8f8;
}
.footer .ft-logo {
  width: 6.9375rem;
  height: auto;
  margin-bottom: 2.375rem;
}
.footer .ft-link {
  margin-bottom: 1.75rem;
}
.footer .ft-link > a {
  display: block;
  font-size: 1.1875rem;
  font-weight: var(--font-regular);
  color: #222;
}
.footer .ft-link > a.active {
  color: var(--navy);
  font-weight: var(--font-bold);
}
.footer .ft-link > a + a {
  margin-left: 2.75rem;
}
.footer .ft-info {
  margin-bottom: 1rem;
}
.footer .ft-info > p {
  font-size: 1.0625rem;
  font-weight: var(--font-regular);
  color: black;
}
.footer .ft-info > p + p {
  margin-left: 1.75rem;
}
.footer .ft-copyright {
  font-size: 1.0625rem;
  font-weight: var(--font-regular);
  color: black;
}
.footer .sns-list > li + li {
  margin-left: 0.625rem;
}
.footer .sns-list > li > a {
  display: block;
  width: 2.875rem;
  height: 2.875rem;
}

.page-top .top-background {
  width: 100%;
  height: 28.125rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-top.news-top .top-background {
  background-image: url("../images/notice-top.png");
}
.page-top.intro-top .top-background {
  background-image: url("../images/intro-top.png");
}
.page-top.prd-top .top-background {
  background-image: url("../images/img-prd-intro.png");
}
.page-top.marine-top .top-background {
  background-image: url("../images/img-marine-info.png");
}
.page-top.k-jeju-top .top-background {
  background-image: url("../images/k-jeju-top.png");
}
.page-top .page-title {
  font-size: 4rem;
  font-weight: var(--font-bold);
  color: white;
}
.page-top__nav {
  /*background-color: var(--navy);*/
  background: linear-gradient(to right, #2872b5, var(--navy));
  height: 6.25rem;
}
.page-top__nav > li > a {
  display: block;
  padding: 0 2.5rem;
  color: white;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  opacity: 0.5;
}
.page-top__nav > li.active > a {
  font-weight: var(--font-medium);
  opacity: 1;
}
.page-top__nav > li.active > a::before {
  content: "";
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background-color: #a08c6a;
  margin: 0 auto;
  margin-bottom: 0.75rem;
}
.page-top .top-nav__wrap {
  margin-top: -3.125rem;
}
.page-top .page-path {
  margin-top: 1.5rem;
  color: #333;
  font-size: 1.125rem;
  font-weight: var(--font-regular);
}

.page-contents {
  padding-top: 2.25rem;
  padding-bottom: 11.125rem;
}
.page-contents.greeting-page__contents {
  padding-bottom: 0;
}
.page-contents__title {
  font-size: 3rem;
  font-weight: var(--font-medium);
  color: black;
  text-align: center;
  margin-bottom: 4.5rem;
}

.search-wrap > .search-inp__wrap {
  border-bottom: 0.125rem solid #222;
}
.search-wrap .search-inp {
  width: 17.3125rem;
  outline: none;
}
.search-wrap .search-btn {
  width: 3.125rem;
  height: 3.125rem;
  background-image: url("../images/ico-search_bl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem;
}

.promotion-list__wrap .search-wrap,
.notice-list__wrap .search-wrap {
  margin-bottom: 1.875rem;
}
.promotion-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4.375rem 1.875rem;
}
.promotion-list > li > a {
  display: block;
  width: 100%;
  height: 100%;
}
.promotion-list > li .promotion-img {
  width: 100%;
  padding-top: 70%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.promotion-list > li .promotion-txt {
  width: 100%;
  padding-top: 2rem;
}
.promotion-list > li .promotion-title {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: black;
  line-height: 1.25;
  letter-spacing: normal;
}
.promotion-list > li .promotion-date {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: #444;
  margin-top: 1.25rem;
  letter-spacing: normal;
}
.pagination-pn {
  width: 3.125rem;
  height: 3.125rem;
  border: 0.0625rem solid #acacac;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.75rem;
}
.pagination-pn.prev {
  background-image: url("../images/ico-page_prev.png");
}
.pagination-pn.next {
  background-image: url("../images/ico-page_next.png");
}
.pagination-nums > a {
  padding: 0.5rem 1.25rem;
  font-size: 1.25rem;
  font-weight: var(--font-medium);
  color: #888;
}
.pagination-nums {
  padding: 0 1.25rem;
}
.pagination-nums > a.active {
  color: var(--navy);
}

.promotion-list__wrap .pagination,
.notice-list__wrap .pagination {
  margin-top: 4.5rem;
}

.detail-content {
  border-top: 0.0625rem solid #c4c4c4;
}
.detail-content .detail-hd {
  padding: 3.25rem 0;
  border-bottom: 0.0625rem solid #c4c4c4;
}
.detail-content .detail-hd .detail-title {
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: black;
  letter-spacing: normal;
}
.detail-content .detail-hd .detail-date {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: #444;
  margin-top: 1.25rem;
  letter-spacing: normal;
}
.detail-content .detail-body {
  padding: 3.125rem 0;
  min-height: 37.5rem;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  border-bottom: 0.0625rem solid #c4c4c4;
  letter-spacing: normal;
}
.detail-content .detail-body pre img {
  height: auto !important;
}

.detail-content .detail-ft {
  width: 100%;
  margin-top: 3.125rem;
}
.ft-btn + .f-btn {
  margin-left: 0.5rem;
}
.ft-btn {
  min-width: 13.75rem;
  height: 5rem;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: normal;
}
.ft-btn.confirm {
  background-color: var(--navy);
  color: white;
}
.ft-btn.cancel {
  background-color: #a0a0a0;
  color: white;
}
.detail-content .detail-more {
  /*margin-top: 3.125rem;*/
  margin-top: 5rem;
}
.detail-content .detail-more .dm-pn {
  width: 50%;
  padding-right: 3.875rem;
  position: relative;
  background-repeat: no-repeat;
  background-size: 2.25rem;
  min-height: 6.25rem;
  display: block;
}
.detail-content .detail-more .dm-pn .pn-label {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: #888;
  margin-bottom: 2rem;
  letter-spacing: normal;
}
.detail-content .detail-more .dm-pn .pn-title {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: black;
}
.detail-content .detail-more .detail-prev {
  padding-left: 6.25rem;
  background-image: url("../images/ico-arrow_left.png");
  background-position: left center;
}
.detail-content .detail-more .detail-next {
  padding-left: 5rem;
  background-image: url("../images/ico-arrow_right.png");
  background-position: right center;
}
.detail-content .detail-more .detail-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  background-color: #c4c4c4;
  width: 1px;
  height: 6.25rem;
  transform: translateY(-50%);
}
.detail-content .detail-files {
  width: 100%;
  padding: 2rem 0.5rem 2rem 0;
  border-bottom: 0.0625rem solid #c4c4c4;
}
.detail-content .detail-files .detail-files__label {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  letter-spacing: normal;
  width: 11rem;
  flex: 0 0 auto;
}
.detail-content .detail-files .file-list {
  gap: 1rem;
}
.detail-content .detail-files .file-list > a {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: #0c6dd0;
  letter-spacing: normal;
  text-decoration: underline;
}

.notice-list__wrap .notice-list {
  border-top: 0.0625rem solid #c4c4c4;
  border-bottom: 0.0625rem solid #c4c4c4;
}
.notice-list__wrap .notice-list > li > a {
  display: block;
  padding: 2.25rem 0;
  padding-right: 7.5rem;
  background-image: url("../images/ico-arrow_right.png");
  background-position: right 4.375rem center;
  background-repeat: no-repeat;
  background-size: 2.25rem;
}
.notice-list__wrap .notice-list > li + li {
  border-top: 0.0625rem solid #c4c4c4;
}
.notice-list__wrap .notice-list > li .notice-title {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: black;
  letter-spacing: normal;
}
.notice-list__wrap .notice-list > li .notice-date {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: #444;
  letter-spacing: normal;
  margin-top: 1.25rem;
}

.general-status__contents .page-contents__title {
  margin-bottom: 7.5rem;
}
.general-status__back {
  width: 100%;
  padding-top: 23.81%;
  background-image: url("../images/general-status_back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 4.375rem;
}
.general-status__list {
  border-top: 0.125rem solid var(--navy);
  border-bottom: 0.125rem solid var(--navy);
}
.general-status__list > li {
  display: flex;
}
.general-status__list > li + li {
  border-top: 0.0625rem solid #c4c4c4;
}
.general-status__list > li > span {
  width: 21.875rem;
  flex: 0 0 auto;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.75rem 0;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: black;
}
.general-status__list > li > div {
  flex: 1 1 auto;
  padding: 1.75rem 1.5rem 1.75rem 2.5rem;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.5;
  word-break: keep-all;
}
.general-status__list > li > div > p {
  position: relative;
  padding-left: 1.125rem;
}
.general-status__list > li > div > p::before {
  content: "·";
  position: absolute;
  top: 0.125rem;
  left: 0;
}

.direction-page__contents .page-contents__title {
  margin-bottom: 7rem;
}
.map {
  width: 100%;
  height: 39.375rem;
  background-color: #cacaca;
}
.contact-info {
  margin-top: 2.25rem;
}
.contact-info > li {
  display: flex;
  font-size: 1.25rem;
  color: black;
}
.contact-info > li + li {
  margin-top: 1rem;
}
.contact-info > li > span {
  width: 10.875rem;
  flex: 0 0 auto;
  padding-left: 2.25rem;
  background-position: left center;
  background-repeat: no-repeat;
  font-weight: var(--font-medium);
  display: flex;
  align-items: center;
}
.contact-info > li > p {
  flex: 1 1 auto;
  font-weight: var(--font-regular);
}

.contact-info > li.addr > span {
  background-image: url("../images/ico-pin.png");
  background-size: 1rem;
}
.contact-info > li.phone > span {
  background-image: url("../images/ico-phone.png");
  background-size: 1.0625rem;
}
.contact-info > li.fax > span {
  background-image: url("../images/ico-fax.png");
  background-size: 1.0625rem;
}
.contact-info > li.email > span {
  background-image: url("../images/ico-email.png");
  background-size: 1.25rem;
}

.greeting-title {
  font-size: 3.25rem;
  font-weight: var(--font-medium);
  color: var(--navy);
  margin-bottom: 5.625rem;
  text-align: center;
}

.greeting-img {
  position: relative;
  flex: 0 0 auto;
}
.greeting-img > img {
  /*position: absolute;
    top: 0;
    left: -20.625rem;
    max-width: unset;*/
  width: 28.375rem;
}
.greeting-txt {
  flex: 1 1 auto;
  padding-left: 10rem;
  word-break: keep-all;
}
.greeting-txt > h5 {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
  line-height: 1.57;
  margin-bottom: 2.8125rem;
}
.greeting-txt > p {
  font-size: 1.375rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.618;
  word-break: keep-all;
}
.greeting-txt > p > strong {
  font-size: 1.625rem;
  font-weight: var(--font-medium);
}

.greeting-profile {
  background-color: var(--navy);
  margin-top: 5.75rem;
  padding-top: 5.75rem;
  padding-bottom: 4.0625rem;
  min-height: 34.375rem;
  position: relative;
}
.greeting-profile::before {
  content: "";
  background-image: url("../images/logo_back.png");
  background-repeat: no-repeat;
  background-position: right -3.25rem bottom -1.5625rem;
  background-size: 42.875rem;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  display: block;
  opacity: 0.21;
}
.greeting-profile .profile-list > li {
  font-size: 1.375rem;
  font-weight: var(--font-regular);
  color: white;
}
.greeting-profile .profile-list > li + li {
  margin-top: 1rem;
}
.greeting-profile .profile-list > li::before {
  content: "· ";
}
.greeting-profile .profile-title {
  width: 21.875rem;
  flex: 0 0 auto;
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: white;
}

.brand-intro {
  padding-top: 3rem;
  padding-bottom: 8.75rem;
}
.brand-intro .brand-title {
  font-size: 2.5rem;
  font-weight: var(--font-medium);
  color: black;
  line-height: 1.6;
  width: 50%;
}
.brand-intro .brand-content {
  width: 50%;
}
.brand-intro .brand-content .brand-logo {
  margin-top: 6.875rem;
}
.brand-intro .brand-content .brand-logo > p {
  font-size: 1.75rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: normal;
  margin-top: 3rem;
}
.brand-intro .brand-content .brand-logo > p > b {
  font-weight: var(--font-medium);
}
.brand-intro .brand-content .brand-logo > p.brand-naming {
  margin-top: 3.5rem;
  line-height: 1.618;
}

.master-goal {
  width: 25rem;
  height: 25rem;
  flex: 0 0 auto;
  background-image: url("../images/img-goal.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding-top: 3.75rem;
  margin-right: 4.375rem;
  position: relative;
}
.master-goal::after {
  content: "";
  display: block;
  width: 4.375rem;
  height: 2px;
  background-color: var(--navy);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -1px;
  transform: translateX(100%);
}
.master-goal .master-goal__top {
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: white;
  margin-bottom: 2rem;
}
.master-goal .master-goal__top::before {
  content: "";
  display: block;
  margin: 0 auto;
  margin-bottom: 1rem;
  width: 1.875rem;
  height: 0.375rem;
  background-color: white;
}
.master-goal > p {
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: white;
  line-height: 1.625;
}

.brand-goal {
  background-color: #f7f7f7;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.brand-goal .goal-list {
  padding-left: 3.75rem;
  flex: 1 1 auto;
  position: relative;
}
.brand-goal .goal-list::before {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 9rem - 4px);
  background-color: var(--navy);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.brand-goal .goal-list > li {
  background-color: #67a6f2;
  border-radius: 2.5rem 0 2.5rem 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 9.375rem;
  position: relative;
}
.brand-goal .goal-list > li + li {
  margin-top: 2.5rem;
}
.brand-goal .goal-list > li:nth-child(2) {
  background-color: #4b8fe1;
}
.brand-goal .goal-list > li:nth-child(3) {
  background-color: #3676c4;
}
.brand-goal .goal-list > li .goal-icon > img {
  width: 5.4375rem;
  height: auto;
}
.brand-goal .goal-list > li:nth-child(2) .goal-icon > img {
  width: 1.9375rem;
}
.brand-goal .goal-list > li:nth-child(3) .goal-icon > img {
  width: 4.1875rem;
}
.brand-goal .goal-list > li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background-color: var(--navy);
  width: 3.75rem;
  height: 2px;
  margin-top: -1px;
  transform: translateX(-100%);
}
.brand-goal .goal-list > li::after {
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  background-color: var(--navy);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.brand-goal .goal-list > li .goal-icon {
  width: 15rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-goal .goal-list > li > p {
  flex: 1 1 auto;
  font-size: 2rem;
  font-weight: var(--font-regular);
  color: white;
  word-break: keep-all;
}
.brand-goal .goal-list > li > p > b {
  font-weight: var(--font-medium);
}

.brand-value {
  padding-top: 8rem;
}

.brand-value .brand-value__list {
  counter-reset: brand-values;
}
.brand-value .brand-value__list > li {
  display: flex;
  justify-content: space-between;
}
.brand-value .brand-value__list > li + li {
  margin-top: 6.25rem;
}
.brand-value .brand-value__list > li:nth-child(even) .value-txt {
  padding-left: 5rem;
}
.brand-value .brand-value__list > li:nth-child(odd) .value-img {
  order: 1;
}
.brand-value .brand-value__list > li .value-img {
  flex: 0 0 auto;
  width: 40.625rem;
  height: auto;
}
.brand-value .brand-value__list > li .value-txt__wrap .value-txt + .value-txt {
  margin-top: 5rem;
}
.brand-value .brand-value__list > li .value-txt {
  flex: 1 1 auto;
  padding-top: 1.375rem;
}
.brand-value .brand-value__list > li .value-txt > h4 {
  font-size: 2.5rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 2.5rem;
}
.brand-value .brand-value__list > li .value-txt > h4::before {
  counter-increment: brand-values;
  content: "Value " counter(brand-values) ". ";
  color: #666;
  font-size: 2.5rem;
  font-weight: var(--font-regular);
  margin-right: 2rem;
}
.brand-value .brand-value__list > li .value-txt > p {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.5;
  word-break: keep-all;
}

.brand-value .brand-value__top {
  margin-bottom: 6.5rem;
}
.brand-value .brand-value__top .bar-title {
  margin-bottom: 3rem;
}
.brand-value .brand-value__top .value-top__title {
  font-size: 2.75rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 1.25rem;
}
.brand-value .brand-value__top > p {
  font-size: 2rem;
  font-weight: var(--font-regular);
  line-height: 1.5;
}

.inquiry-form__title {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 3.25rem;
}
.inquiry-form > li {
  display: flex;
}
.inquiry-form > li + li {
  margin-top: 1.5rem;
}
.inquiry-form > li > span {
  width: 16.125rem;
  flex: 0 0 auto;
  padding-top: 1rem;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: black;
}
.inquiry-form > li.required > span::after {
  content: "*";
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: #ff0303;
  margin-left: 0.5rem;
}
.inquiry-form > li .inp-wrap {
  flex: 1 1 auto;
}
.inquiry-form > li .inp-wrap > input {
  width: 100%;
  height: 4rem;
  border-bottom: 0.0625rem solid #c4c4c4;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
}
.inquiry-form > li .inp-wrap > textarea {
  padding: 2.25rem 2.5rem;
  border: 0.125rem solid #e3e3e3;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  resize: none;
  width: 100%;
  height: 25rem;
}
.inquiry-form > li .inp-file {
  position: relative;
  flex: 1 1 auto;
}
.inquiry-form > li .inp-file .file-name {
  width: 100%;
  height: 4rem;
  line-height: 4rem;
  border-bottom: 0.0625rem solid #c4c4c4;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  padding-right: 13rem;
}
.inquiry-form > li .inp-file .file-btn {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  width: 12.5rem;
  height: 3.75rem;
  background-color: #666;
  color: white;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  display: flex;
  align-items: center;
  justify-content: center;
}
.inquiry-agreement__wrap {
  background-color: #f7f7f7;
  border: 0.0625rem solid #c4c4c4;
  padding: 2.25rem 1.25rem 2.25rem 2.5rem;
  margin-top: 4.375rem;
}
.inquiry-agreement__wrap .agreement-list > li {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.618;
  letter-spacing: normal;
}
.inquiry-agreement__wrap .agreement-list > li > b {
  font-weight: var(--font-medium);
}
.inquiry-agreement__wrap .agreement-alert {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: black;
  margin-top: 2.25rem;
  letter-spacing: normal;
}
.checkbox-wrap .checkbox-label {
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  display: flex;
  align-items: center;
}
.checkbox-wrap .checkbox-label::before {
  content: "";
  width: 2.25rem;
  height: 2.25rem;
  display: block;
  border: 0.0625rem solid #888;
  background-image: url("../images/ico-check_wh.png");
  background-size: 1.3125rem;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 1.375rem;
  flex: 0 0 auto;
}
.checkbox-wrap > input:checked + .checkbox-label::before {
  background-color: var(--navy);
}

.agreement-check {
  width: 100%;
  margin-top: 1.75rem;
}

.inquiry-ft {
  width: 100%;
  margin-top: 5.9375rem;
}

.prd-intro__wrap {
  padding-bottom: 6.875rem;
}
.prd-intro__title {
  font-size: 2.25rem;
  font-weight: var(--font-medium);
  color: black;
  line-height: 1.777;
  letter-spacing: -0.02em;
  margin-bottom: 4.5rem;
  word-break: keep-all;
}
.prd-img__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 3rem 1.25rem;
}
.prd-img__grid > li > a {
  display: block;
}
.prd-img__grid > li > a > p {
  border: 0.0625rem solid #8a8a8a;
  width: fit-content;
  padding: 0.75rem 1.1875rem;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  margin: 0 auto;
  margin-top: 1.875rem;
}

.prd-img__grid > li .prd-sub__img {
  width: 100%;
  padding-top: 120%;
  background-color: #f4f4f4;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.prd-intro__mid {
  width: 100%;
  height: 48.75rem;
  position: relative;
}
.prd-intro__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/img-prd-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.prd-intro__mid > .layout {
  position: relative;
  z-index: 1;
}
.prd-intro__mid::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.45;
  z-index: 1;
}

.prd-intro__mid > .layout {
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prd-intro__mid .mid-txt > h5 {
  font-size: 3.25rem;
  font-weight: var(--font-medium);
  color: white;
  margin-bottom: 3.25rem;
  word-break: keep-all;
}

.prd-intro__mid .mid-txt > p {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  line-height: 1.666;
  color: white;
}

.prd-intro__bottom {
  padding-top: 7.1875rem;
}

.prd-intro__bottom .bottom-txt {
  text-align: center;
  margin-bottom: 6.75rem;
}

.prd-intro__bottom .bottom-txt > h5 {
  font-size: 2.75rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 2.5rem;
}

.prd-intro__bottom .bottom-txt > p {
  font-size: 2rem;
  font-weight: var(--font-regular);
  color: #222222;
  line-height: 1.5;
  word-break: keep-all;
}

.prd-intro__bottom .prd-bottom__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: 6.25rem;
}

.prd-intro__bottom .prd-bottom__grid > li {
}

.prd-intro__bottom .prd-bottom__grid > li .prd-bottom__img {
  width: 100%;
  padding-top: 56%;
  background-color: #f4f4f4;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 2rem;
}

.prd-intro__bottom .prd-bottom__grid > li .prd-bottom__info > h6 {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
  border-bottom: 0.1875rem solid var(--navy);
  padding-bottom: 1.5rem;
  margin-bottom: 1.875rem;
}

.prd-intro__bottom .prd-bottom__grid > li .prd-bottom__info > p {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: #222222;
  line-height: 1.666;
  word-break: keep-all;
}

.prd-intro__bottom .prd-bottom__grid > li .prd-bottom__info > h6 > strong {
  font-size: 2.5rem;
  font-weight: var(--font-medium);
  color: #a08c6a;
  display: block;
}

.br-title {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 2rem;
}

.br-title::before {
  content: "";
  width: 0.3125rem;
  height: 1.375rem;
  background-color: #a08c6a;
  display: inline-block;
  margin-right: 1.25rem;
}

.prd-link__wrap .link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.8125rem;
}
.prd-link__wrap .link-grid > a {
  display: flex;
  background-color: var(--navy);
  font-size: 1.5rem;
  font-weight: var(—font-medium);
  color: white;
  padding: 1.5rem 0.5rem;
  text-align: center;
  border-radius: 0.625rem;
  word-break: keep-all;
  justify-content: center;
  align-items: center;
}

.prd-link__wrap + .prd-link__wrap {
  margin-top: 3.125rem;
}

.prd-detail__wrap .prd-detail__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.875rem;
  margin-bottom: 3.875rem;
}
.prd-detail__content .prd-detail__img {
  width: 100%;
  padding-top: 80%;
  background-color: #f4f4f4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.prd-detail__wrap .prd-detail__title {
  font-size: 2.25rem;
  font-weight: var(--font-medium);
  color: black;
  text-align: center;
  margin-bottom: 4.375rem;
}
.prd-detail__wrap .prd-detail__info > li {
  display: flex;
}
.prd-detail__wrap .prd-detail__info > li + li {
  margin-top: 0.625rem;
}
.prd-detail__wrap .prd-detail__info > li > span {
  width: 8.375rem;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: black;
}
.prd-detail__wrap .prd-detail__info > li > p {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.618;
  flex: 1 1 auto;
  word-break: keep-all;
}

.panel-title {
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 2.5rem;
}
.marine-tab__panel {
  padding-top: 7rem;
}
.sts-page__contents .page-contents__title,
.right-marine-product__contents .page-contents__title {
  margin-bottom: 7rem;
}
.sts-intro {
  margin-bottom: 6.25rem;
}
.sts-intro > img {
  width: 100%;
}
.sts-intro > p {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  margin-top: 2rem;
}

.sts-need {
  padding-bottom: 6.25rem;
  border-bottom: 0.0625rem solid #666;
}
.sts-need > img {
  width: 33.125rem;
  height: auto;
  flex: 0 0 auto;
}
.sts-need__txt {
  padding-left: 3.75rem;
  padding-top: 1.5rem;
  flex: 1 1 auto;
}
.sts-need__txt > h5 {
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 1.75rem;
}
.sts-need__txt > p {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  word-break: keep-all;
}

.sts-benefit {
  padding-top: 6.5rem;
  padding-bottom: 11rem;
}
.sts-benefit__title {
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: black;
  text-align: center;
  margin-bottom: 10.75rem;
}
.sts-benefit__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.875rem;
}
.sts-benefit__list > li .benefit-category {
  width: 100%;
  height: 5.875rem;
  border-radius: 1.875rem;
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 4.375rem;
}
.sts-benefit__list > li .benefit-category > img {
  position: absolute;
  bottom: 0;
  right: 2.5rem;
  width: 8.9375rem;
  height: auto;
}
.sts-benefit__list > li.benefit-1 .benefit-category {
  background-color: #f1632b;
}
.sts-benefit__list > li.benefit-2 .benefit-category {
  background-color: #129d5c;
}
.sts-benefit__list > li.benefit-2 .benefit-category > img {
  right: 1.875rem;
  width: 10rem;
}
.sts-benefit__list > li.benefit-3 .benefit-category {
  background-color: #0051ac;
}
.sts-benefit__list > li.benefit-3 .benefit-category > img {
  right: 0.625rem;
  width: 10.75rem;
}
.sts-benefit__list > li .benefit-info {
  padding: 1.875rem 0 0 1rem;
  font-size: 1.375rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.618;
  word-break: keep-all;
}
.sts-history {
  margin-bottom: 6.5625rem;
}
.sts-history .sts-history__list {
  padding-inline: 2.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.125rem;
}
.sts-history .sts-history__list > li > img {
  width: 100%;
}
.sts-guide .sts-guide__img {
  padding-left: 3.3125rem;
}
.sts-guide .sts-guide__img > img {
  width: 20.75rem;
  height: auto;
}
.sts-page__contents {
  padding-bottom: 0;
}
.sts-page__contents .main-history-search {
  margin-top: 7.5rem;
}

.recipe-page__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4.5rem 1.75rem;
  margin-bottom: 5rem;
}
.recipe-page__list > li .recipe-img {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 2.625rem;
}
.recipe-page__list > li .recipe-title {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 0.5rem;
}
.recipe-page__list > li .recipe-txt {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
}
.recipe-detail__top .recipe-detail__img {
  width: 31.25rem;
  height: 31.25rem;
  flex: 0 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.recipe-detail__top {
  align-items: flex-start;
  margin-bottom: 5rem;
}
.recipe-detail__top .recipe-detail__txt {
  padding-left: 4.5rem;
  flex: 1 1 auto;
  min-height: 31.25rem;
}
.recipe-detail__top .recipe-detail__txt .rdt > h3 {
  font-size: 2.25rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 2.25rem;
}
.recipe-detail__top .recipe-detail__txt .rdt > p {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  word-break: keep-all;
}
.recipe-detail__top .recipe-detail__txt .rdi {
  margin-top: auto;
  padding-top: 1rem;
}
.recipe-detail__top .recipe-detail__txt .rdi > p {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  word-break: keep-all;
}
.recipe-detail__desc .desc-editor {
  /*font-size: 1.5rem;
    font-weight: var(--font-regular);
    color: #222;*/
  line-height: 1.618;
  white-space: normal;
  min-height: 46.875rem;
  border-bottom: 1px solid #c4c4c4;
  margin-bottom: 3.125rem;
  padding-bottom: 3.5rem;
}
.recipe-detail__desc .desc-editor img {
  height: auto !important;
}

.right-prd__panel {
  padding-top: 7.5rem;
}
.right-prd__panel .info-top {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  margin-bottom: 4.5rem;
}
.right-prd__panel .info-top > b {
  font-weight: var(--font-medium);
}

.anchovy-naming {
  margin-bottom: 4.375rem;
}
.anchovy-naming > img {
  width: 37.5rem;
  flex: 0 0 auto;
}
.anchovy-naming .anchovy-naming__txt {
  flex: 1 1 auto;
  padding-left: 3.125rem;
  padding-top: 1rem;
}
.anchovy-naming .anchovy-naming__txt > h4 {
  font-size: 2.75rem;
  font-weight: var(--font-medium);
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.anchovy-naming .anchovy-naming__txt > p {
  font-size: 1.625rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  word-break: keep-all;
}
.anchovy-detail + .anchovy-detail {
  margin-top: 4.25rem;
}
.anchovy-detail__list > li {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: black;
  word-break: keep-all;
}
.anchovy-detail__list > li + li {
  margin-top: 0.5rem;
}

.anchovy-kind__wrap {
  padding-block: 6rem 4.625rem;
  background-image: url("../images/dotted-background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 5.625rem;
  text-align: center;
}
.anchovy-kind__wrap .kind-title {
  font-size: 2.75rem;
  font-weight: var(--font-medium);
  color: var(--navy);
  margin-bottom: 1rem;
}
.anchovy-kind__wrap .kind-txt {
  font-size: 1.75rem;
  font-weight: var(--font-regular);
  margin-bottom: 3rem;
}
.anchovy-kind__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}
.anchovy-kind__list > li {
  word-break: keep-all;
}
.anchovy-kind__list > li > img {
  width: calc(100% + 1rem);
  max-width: unset;
  transform: translateX(-0.5rem);
}
.anchovy-kind__list > li > h5 {
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.anchovy-kind__list > li > p {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.618;
}
.anchovy-sup__wrap {
  padding-top: 6.25rem;
}
.anchovy-sup__title {
  font-size: 2.75rem;
  font-weight: var(--font-medium);
  color: var(--navy);
  margin-bottom: 1rem;
}
.anchovy-sup__map .map-content {
  position: relative;
}
.anchovy-sup__map .map-content .map-list {
  position: absolute;
  top: 5.125rem;
  left: -7.5rem;
  transform: translateX(-100%);
}
.anchovy-sup__map .map-content .map-list:last-child {
  top: 1.25rem;
  left: auto;
  right: -7.5rem;
  transform: translateX(100%);
}
.anchovy-sup__map .map-content .map-list > li {
  width: 7.5rem;
  height: 3.5rem;
  background-color: var(--navy);
  color: white;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  position: relative;
}
.anchovy-sup__map .map-content .map-list > li + li {
  margin-top: 3.5rem;
}
.anchovy-sup__map .map-content .map-list > li::before,
.anchovy-sup__map .map-content .map-list > li::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: var(--navy);
  display: block;
  right: 0;
  transform: translate(100%, -50%);
}
.anchovy-sup__map .map-content .map-list:last-child > li::before,
.anchovy-sup__map .map-content .map-list:last-child > li::after {
  left: 0;
  right: auto;
  transform: translate(-100%, -50%);
}
.anchovy-sup__map .map-content .map-list > li::before {
  width: 7.5rem;
  height: 0.0625rem;
}
.anchovy-sup__map .map-content .map-list > li::after {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  right: -7.5rem;
}
.anchovy-sup__map .map-content .map-list:last-child > li::after {
  right: auto;
  left: -7.5rem;
}
.anchovy-sup__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.875rem;
  margin-top: 3rem;
}
.anchovy-sup__list > li {
  border: 0.0625rem solid var(--navy);
  border-radius: 0.9375rem;
  overflow: hidden;
}
.anchovy-sup__list > li > span {
  display: block;
  background-color: var(--navy);
  text-align: center;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: white;
  padding: 1.25rem 0.25rem;
}
.anchovy-sup__list > li > p {
  padding: 1.625rem 1.25rem;
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  word-break: keep-all;
}
.mack-info {
  margin-bottom: 5.75rem;
}
.mack-info__title,
.mack-everything__title {
  font-size: 2.75rem;
  font-weight: var(--font-medium);
  color: var(--navy);
  margin-bottom: 2.5rem;
}
.mack-info__list > li {
  display: flex;
  width: 100%;
  min-height: 6.25rem;
}
.mack-info__list > li + li {
  margin-top: 1.25rem;
}
.mack-info__list > li > span {
  width: 12.5rem;
  flex: 0 0 auto;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--navy);
  border-top-left-radius: 1.875rem;
}
.mack-info__list > li > p {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: black;
  word-break: keep-all;
  padding: 0.5rem 2.25rem;
  border: 0.0625rem solid var(--navy);
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
.mack-everything__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.875rem 3.75rem;
}
.mack-everything__list > li .everything-img {
  width: 100%;
  padding-top: 46.5%;
  border-radius: 0.625rem;
  margin-bottom: 2.25rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.mack-everything__list > li .everything-txt > h5 {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 1.25rem;
}
.mack-everything__list > li .everything-txt > p {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.618;
  word-break: keep-all;
}

.page-contents.marine-pnp__contents {
  /*padding-bottom: 0;*/
}
.marine-pnp__top {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: black;
  line-height: 1.618;
  word-break: keep-all;
  margin-bottom: 5.75rem;
  text-align: center;
}
.marine-pnp__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.125rem 2rem;
}
.marine-pnp__list > li > img {
  width: 100%;
  display: block;
  margin-bottom: 1.25rem;
}
.marine-pnp__list > li .pnp-txt {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  word-break: keep-all;
}
.marine-pnp__imgs + .marine-pnp__imgs {
  margin-top: 4.375rem;
}
.yt-video {
  padding: 7rem 10.625rem 11.25rem;
  background-color: #f7f7f7;
  margin-top: 5.625rem;
}
.yt-video .video-wrap {
  width: 100%;
  padding-top: 56.24%;
  position: relative;
}
.yt-video .video-wrap > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.k-jeju-hd {
  position: relative;
  padding: 3.75rem 0 10.25rem 10rem;
  margin-bottom: 6.25rem;
}
.k-jeju-hd > img {
  position: absolute;
  left: -20.625rem;
  top: 0;
  width: 47.625rem;
  height: auto;
  display: block;
}
.k-jeju-hd__txt {
  padding: 4.375rem 3.75rem 3.75rem;
  background-color: rgba(0, 0, 0, 0.45);
  width: 100%;
  position: relative;
  z-index: 1;
}
.k-jeju-hd__txt > h4 {
  color: white;
  font-size: 2rem;
  font-weight: var(--font-medium);
  margin-bottom: 1.5rem;
}
.k-jeju-hd__txt > p {
  color: white;
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  word-break: keep-all;
}
.sfpf-wrap,
.kjsp-wrap {
  padding-top: 6.25rem;
  padding-bottom: 11.125rem;
}
.sfpf-info {
  position: relative;
  min-height: 9.625rem;
  font-size: 1.75rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  margin-bottom: 5rem;
  padding-inline: 3.5rem;
  word-break: keep-all;
}
.sfpf-info::before,
.sfpf-info::after {
  content: "";
  width: 2.25rem;
  height: 9.625rem;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sfpf-info::before {
  background-image: url("../images/sq-left_blue.png");
  left: 0;
}
.sfpf-info::after {
  background-image: url("../images/sq-right_blue.png");
  right: 0;
}
.sfpf-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.125rem 2.125rem;
}
.sfpf-list > li > img {
  width: 100%;
}
.sfpf-list > li > p {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  margin-top: 1.25rem;
}
.kjsp-graph__wrap {
  padding-bottom: 5.625rem;
  margin-bottom: 5rem;
  border-bottom: 0.0625rem solid var(--navy);
}
.kjsp-graph__wrap > img {
  width: 35.3125rem;
  height: auto;
  flex: 0 0 auto;
}
.kjsp-info__wrap {
  padding-left: 2.8125rem;
  flex: 1 1 auto;
}
.kjsp-info__list {
  width: 100%;
}
.kjsp-info__list > li {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: white;
  padding: 1rem 1.875rem;
  background-color: var(--navy);
}
.kjsp-info__list > li + li {
  margin-top: 0.9375rem;
}
.kjsp-info__list > li:first-child {
  border-radius: 0.9375rem 0.9375rem 0 0;
}
.kjsp-info__list > li:last-child {
  border-radius: 0 0 0.9375rem 0.9375rem;
}
.kjsp-info__list > li:nth-child(even) {
  background-color: #9a825a;
}
.kjsp-role__list > li {
  display: flex;
  min-height: 12.5rem;
}
.kjsp-role__list > li + li {
  margin-top: 1.875rem;
}
.kjsp-role__list > li > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  flex: 0 0 auto;
  background-color: #f2f2f2;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  line-height: 1.618;
  text-align: center;
}
.kjsp-role__list > li > span > img {
  width: 2.5rem;
  height: auto;
}
.kjsp-role__list > li > p {
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  padding: 0.25rem 6.25rem 0.25rem 3.25rem;
  flex: 1 1 auto;
  word-break: keep-all;
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: #444;
}
.effect-wrap {
  padding-top: 9.375rem;
}
.effect-wrap .effect-title {
  text-align: center;
  font-size: 3.75rem;
  font-weight: var(--font-bold);
  color: var(--navy);
  margin-bottom: 6rem;
}
.effect-wrap .effect-title > small {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 1.25rem;
}
.effect-wrap .effect-list > li > h4 {
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 2rem;
}
.effect-wrap .effect-list > li .effect-sub > li {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
  position: relative;
  padding-left: 1.125rem;
  word-break: keep-all;
}
.effect-wrap .effect-list > li .effect-sub > li::before {
  content: "·";
  position: absolute;
  top: 0.125rem;
  left: 0;
}
.effect-wrap .effect-list > li > img {
  width: 100%;
  display: block;
  margin-top: 1.875rem;
}
.effect-wrap .effect-list > li + li {
  margin-top: 5.75rem;
}

.page-contents.k-jeju-intro__contents {
  padding-bottom: 0;
}
.k-jeju-intro__panel .yt-video {
  margin-top: 11.25rem;
  padding-top: 0;
}
.k-jeju-intro__panel .yt-video .yt-video__txt {
  transform: translateY(-5rem);
}
.k-jeju-intro__panel .yt-video .yt-video__txt > h4 {
  font-size: 3rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 2.625rem;
}
.k-jeju-intro__panel .yt-video .yt-video__txt > h4 > small {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 0.75rem;
}
.k-jeju-intro__panel .yt-video .yt-video__txt > div {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.618;
}
.k-jeju-intro__panel .yt-video .yt-video__txt > div > p {
  position: relative;
  padding-left: 1.125rem;
}
.k-jeju-intro__panel .yt-video .yt-video__txt > div > p::before {
  content: "·";
  position: absolute;
  top: 0.125rem;
  left: 0;
}
.k-jeju-innovation__contents .page-contents__title {
  margin-bottom: 6.25rem;
}
.innovation-top {
  padding-bottom: 4.375rem;
  border-bottom: 0.0625rem solid #666;
}
.innovation-top > h4 {
  font-size: 2.5rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 1.75rem;
}
.innovation-top > p {
  font-size: 1.5rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
}

.innovation-content {
  padding-top: 6rem;
}
.innovation-master {
  width: 15.625rem;
  height: 15.625rem;
  border-radius: 50%;
  position: relative;
  font-size: 2rem;
  color: black;
  border: 0.0625rem solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 5.375rem;
}
.innovation-master::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1.5625rem solid #ececec;
  border-radius: 50%;
  position: absolute;
  top: -1.5625rem;
  left: -1.5625rem;
  z-index: -1;
}
.innovation-content .innovation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.innovation-content .innovation-list > li {
}
.innovation-content .innovation-list > li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 1.25rem);
  height: 6.25rem;
  border-radius: 300rem;
  background-color: rgba(0, 51, 73, 0.8);
  color: white;
  font-size: 1.75rem;
  font-weight: var(--font-medium);
}
.innovation-content .innovation-list > li:nth-child(2n) > span {
  margin-left: -0.625rem;
  background-color: rgba(68, 68, 68, 0.8);
}
.innovation-content .innovation-list > li:nth-child(3n) > span {
  margin-left: -1.25rem;
}
.innovation-content .innovation-list > li > div {
  padding-left: 1.875rem;
  font-size: 1.375rem;
  font-weight: var(--font-regular);
  color: black;
  line-height: 1.618;
  margin-top: 2.25rem;
  word-break: keep-all;
}
.innovation-content .innovation-list > li:nth-child(3n + 1) > div {
  padding-left: 2.75rem;
}
.innovation-content .innovation-list > li > div > p {
  position: relative;
  padding-left: 1.125rem;
}
.innovation-content .innovation-list > li > div > p::before {
  content: "·";
  position: absolute;
  top: 0.125rem;
  left: 0;
}
.marine-news__list {
  border-top: 0.0625rem solid #222;
  margin-bottom: 3.75rem;
}
.marine-news__list > li > a {
  display: block;
  width: 100%;
  padding-block: 2.25rem 1.75rem;
  border-bottom: 0.0625rem solid #c4c4c4;
}
.marine-news__list > li .news-title {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: black;
}
.marine-news__list > li .news-date {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: #444;
  flex: 0 0 auto;
}
.marine-news__list > li .news-txt {
  margin-top: 1.25rem;
}
.marine-news__list > li .news-txt > p {
  font-size: 1.375rem;
  font-weight: var(--font-regular);
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.5em;
  max-height: 4.5em;
  white-space: normal;
  word-break: keep-all !important;
  flex: 1 1 auto;
}
.marine-news__list > li .news-img {
  width: 6.25rem;
  height: 6.25rem;
  flex: 0 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 1rem;
}

.top-btn {
  background-color: #6c6f86;
  width: 5rem;
  height: 5rem;
  position: fixed;
  right: 10rem;
  bottom: 3.125rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s;
  z-index: 10;
}
.top-btn::before {
  content: "▲";
  font-size: 1rem;
  font-weight: var(--font-regular);
  color: white;
  display: block;
  margin-bottom: 0.5rem;
}
.top-btn::after {
  content: "TOP";
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: white;
}
body.scroll .top-btn {
  opacity: 1;
  pointer-events: all;
}

.modal-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
.modal-wrap:not(.active) {
  display: none;
}
.modal-wrap .modal-body {
  width: 1260px;
  max-width: 100%;
  max-height: 100%;
  background-color: white;
  border-radius: 0.9375rem;
  padding: 5.625rem;
  position: relative;
  overflow-y: auto;
}
.modal-wrap .modal-close {
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("../images/ico-close.png");
  background-size: 1.75rem;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 3.75rem;
  right: 3.75rem;
}
/* 231216 */
.modal-wrap.customize .modal-body {
  width: 80rem;
  height: 45.625rem;
  padding: 3.75rem 1.25rem 3.75rem 3.75rem;
  border-radius: 2.5rem;
  overflow: visible;
}
.modal-wrap.customize .modal-close {
  top: -3.125rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  background-color: #fff;
  background-size: 50%;
}
.customize .prd-detail__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.customize .sec {
  width: 27.875rem;
}
.customize .sec .item {
  border: 0.0625rem solid #e4e4e4;
  line-height: 1;
}
.customize .sec .btn-wrap {
  display: flex;
  gap: 0 0.625rem;
  margin-top: 2.5rem;
}
.customize .sec .btn-wrap .btns {
  flex: 1 1 0;
  height: 4.375rem;
  border-radius: 0.75rem;
  background-color: #003349;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.customize .detail {
  width: 44rem;
  height: 38.125rem;
  padding-right: 1.875rem;
  overflow-y: scroll;
}
.customize .detail::-webkit-scrollbar {
  width: 0.625rem;
  height: 0.3125rem;
}
.customize .detail::-webkit-scrollbar-thumb {
  height: 30%;
  border-radius: 0.625rem;
  background-color: #ccc;
}
.customize .detail::-webkit-scrollbar-track {
  background-color: transparent;
}
.customize .detail h1 {
  font-size: 2.625rem;
  font-weight: 700;
  color: #000;
}
.customize .detail dl {
  margin-top: 1.875rem;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.5;
  letter-spacing: -0.03125rem;
  word-wrap: break-word;
  word-break: keep-all;
}
.customize .detail dl dt {
  margin-top: 1.25rem;
  font-weight: 700;
}
.customize .detail dl dd {
  margin-top: 0.625rem;
}
.customize .detail dl dd .img {
  margin-top: 1.25rem;
}
.customize .detail table {
  width: 100%;
  margin-top: 1.25rem;
  border-top: 0.125rem solid #999;
}
.customize .detail table th,
.customize .detail table td {
  padding: 0.9375rem 1.25rem;
  border-bottom: 0.0625rem solid #e4e4e4;
  font-size: 1.125rem;
  color: #555;
}
.customize .detail table th {
  text-align: left;
  background-color: #f8f8f8;
}
.customize .detail table tr:last-child td {
  text-align: center;
}
.customize .detail .sts {
  margin-top: 1.25rem;
  padding: 1.25rem 3.125rem 1.25rem 5rem;
  background-color: #f5f5f5;
  font-size: 1.125rem;
  color: #555;
}
.customize .detail .sts::before {
  content: "";
  display: inline-block;
  float: left;
  width: 4.625rem;
  height: 4.6875rem;
  margin-right: 3.125rem;
  background: url("../images/sts-logo.png") 0 0 no-repeat;
  background-size: 100%;
}
.customize .detail .sts strong {
  display: block;
  margin-bottom: 0.3125rem;
  font-weight: 700;
}
.customize .detail .connect {
  margin-top: 1.25rem;
  padding: 1.875rem 3.125rem;
  background-color: #f5f5f5;
  font-size: 1.5rem;
  color: #555;
}
.customize .detail .connect strong {
  display: block;
  margin-bottom: 0.625rem;
}
@media all and (max-width: 1340px) {
  .modal-wrap.customize .modal-body {
    width: 95.5223vw;
    height: 54.4776vw;
    padding: 4.4776vw 1.4925vw 4.4776vw 4.4776vw;
    border-radius: 2.985vw;
    overflow: visible;
  }
  .modal-wrap.customize .modal-close {
    top: -3.7313vw;
    right: 0;
    width: 2.985vw;
    height: 2.985vw;
    border-radius: 100%;
    background-color: #fff;
    background-size: 50%;
  }
  .customize .prd-detail__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .customize .sec {
    width: 33.2835vw;
  }
  .customize .sec .item {
    border: 0.07462vw solid #e4e4e4;
    line-height: 1;
  }
  .customize .sec .btn-wrap {
    display: flex;
    gap: 0 0.74626vw;
    margin-top: 2.985vw;
  }
  .customize .sec .btn-wrap .btns {
    flex: 1 1 0;
    height: 5.2238vw;
    border-radius: 0.8955vw;
    background-color: #003349;
    font-size: 1.34328vw;
    font-weight: 700;
    color: #fff;
  }
  .customize .detail {
    width: 52.5373vw;
    height: 45.5223vw;
    padding-right: 2.2388vw;
    overflow-y: scroll;
  }
  .customize .detail::-webkit-scrollbar {
    width: 0.74626vw;
    height: 0.37313vw;
  }
  .customize .detail::-webkit-scrollbar-thumb {
    height: 30%;
    border-radius: 0.74626vw;
    background-color: #ccc;
  }
  .customize .detail::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .customize .detail h1 {
    font-size: 3.13432vw;
    font-weight: 700;
    color: #000;
  }
  .customize .detail dl {
    margin-top: 2.2388vw;
    font-size: 1.79104vw;
    color: #555;
    line-height: 1.5;
    letter-spacing: -0.0373vw;
    word-wrap: break-word;
    word-break: keep-all;
  }
  .customize .detail dl dt {
    margin-top: 1.4925vw;
    font-weight: 700;
  }
  .customize .detail dl dd {
    margin-top: 0.74626vw;
  }
  .customize .detail dl dd .img {
    margin-top: 1.4925vw;
  }
  .customize .detail table {
    width: 100%;
    margin-top: 1.4925vw;
    border-top: 0.1492vw solid #999;
  }
  .customize .detail table th,
  .customize .detail table td {
    padding: 1.1194vw 1.4925vw;
    border-bottom: 0.07462vw solid #e4e4e4;
    font-size: 1.3432vw;
    color: #555;
  }
  .customize .detail table th {
    text-align: left;
    background-color: #f8f8f8;
  }
  .customize .detail table tr:last-child td {
    text-align: center;
  }
  .customize .detail .sts {
    margin-top: 1.4925vw;
    padding: 1.4925vw 3.7313vw 1.4925vw 5.9701vw;
    background-color: #f5f5f5;
    font-size: 1.3432vw;
    color: #555;
  }
  .customize .detail .sts::before {
    content: "";
    display: inline-block;
    float: left;
    width: 5.5223vw;
    height: 5.597vw;
    margin-right: 3.7313vw;
    background: url("../images/sts-logo.png") 0 0 no-repeat;
    background-size: 100%;
  }
  .customize .detail .sts strong {
    display: block;
    margin-bottom: 0.37313vw;
    font-weight: 700;
  }
  .customize .detail .connect {
    margin-top: 1.4925vw;
    padding: 2.2388vw 3.7313vw;
    background-color: #f5f5f5;
    font-size: 1.79104vw;
    color: #555;
  }
  .customize .detail .connect strong {
    display: block;
    margin-bottom: 0.74626vw;
  }
}
@media all and (max-width: 800px) {
  .modal-wrap.customize .modal-body {
    width: 90vw;
    height: 85vh;
    padding: 7.5vw 2.5vw 7.5vw 7.5vw;
    border-radius: 2.985vw;
    overflow: visible;
  }
  .modal-wrap.customize .modal-close {
    top: -6.25vw;
    right: 0;
    width: 5vw;
    height: 5vw;
    border-radius: 100%;
    background-color: #fff;
    background-size: 50%;
  }
  .customize .prd-detail__wrap {
    display: block;
    height: 75.625vh;
    padding-right: 3.75vw;
    overflow-y: scroll;
  }
  .customize .prd-detail__wrap::-webkit-scrollbar {
    width: 1.25vw;
    height: 0.625vw;
  }
  .customize .prd-detail__wrap::-webkit-scrollbar-thumb {
    height: 30%;
    border-radius: 1.25vw;
    background-color: #ccc;
  }
  .customize .prd-detail__wrap::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .customize .sec {
    width: 100%;
    text-align: center;
  }
  .customize .sec .item {
    border: 0.125vw solid #e4e4e4;
    line-height: 1;
  }
  .customize .sec .btn-wrap {
    display: flex;
    gap: 0 1.25vw;
    margin-top: 5vw;
  }
  .customize .sec .btn-wrap .btns {
    flex: 1 1 0;
    height: 8.75vw;
    border-radius: 1.5vw;
    background-color: #003349;
    font-size: 2.25vw;
    font-weight: 700;
    color: #fff;
  }
  .customize .detail {
    width: 100%;
    height: auto;
    margin-top: 6.25vw;
    padding-right: 0;
    overflow-y: visible;
  }
  .customize .detail h1 {
    font-size: 4vw;
    font-weight: 700;
    color: #000;
  }
  .customize .detail dl {
    margin-top: 3.75vw;
    font-size: 2.5vw;
    color: #555;
    line-height: 1.5;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    word-break: keep-all;
  }
  .customize .detail dl dt {
    margin-top: 2.5vw;
    font-weight: 700;
  }
  .customize .detail dl dd {
    margin-top: 1.25vw;
  }
  .customize .detail dl dd .img {
    margin-top: 2.5vw;
  }
  .customize .detail table {
    width: 100%;
    margin-top: 2.5vw;
    border-top: 0.25vw solid #999;
  }
  .customize .detail table th,
  .customize .detail table td {
    padding: 1.875vw 2.5vw;
    border-bottom: 0.125vw solid #e4e4e4;
    font-size: 2.25vw;
    color: #555;
  }
  .customize .detail table th {
    text-align: left;
    background-color: #f8f8f8;
  }
  .customize .detail table tr:last-child td {
    text-align: center;
  }
  .customize .detail .sts {
    margin-top: 2.5vw;
    padding: 2.5vw 6.25vw 2.5vw 10vw;
    background-color: #f5f5f5;
    font-size: 2vw;
    color: #555;
  }
  .customize .detail .sts::before {
    content: "";
    display: inline-block;
    float: left;
    width: 9.25vw;
    height: 9.375vw;
    margin-right: 6.25vw;
    background: url("../images/sts-logo.png") 0 0 no-repeat;
    background-size: 100%;
  }
  .customize .detail .sts strong {
    display: block;
    margin-bottom: 0.625vw;
    font-weight: 700;
  }
  .customize .detail .connect {
    margin-top: 2.5vw;
    padding: 3.75vw;
    background-color: #f5f5f5;
    font-size: 2.5vw;
    color: #555;
  }
  .customize .detail .connect strong {
    display: block;
    margin-bottom: 1.25vw;
  }
}
/* //231216 */
.policy-content > h4 {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: black;
  margin-bottom: 2rem;
}
.policy-content > p {
  white-space: pre-line;
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  line-height: 1.618;
}

.js-clip:not(.js-complete) {
  overflow: hidden;
  height: fit-content;
}
.js-scroll {
  opacity: 0;
  transition-duration: 0.8s;
  transition-property: transform, opacity;
}
.js-scroll.d-100 {
  transition-duration: 0.1s;
}
.js-scroll.d-200 {
  transition-duration: 0.2s;
}
.js-scroll.d-300 {
  transition-duration: 0.3s;
}
.js-scroll.d-400 {
  transition-duration: 0.4s;
}
.js-scroll.d-500 {
  transition-duration: 0.5s;
}
.js-scroll.d-600 {
  transition-duration: 0.6s;
}
.js-scroll.d-700 {
  transition-duration: 0.7s;
}
.js-scroll.d-800 {
  transition-duration: 0.8s;
}
.js-scroll.d-900 {
  transition-duration: 0.9s;
}
.js-scroll.d-1000 {
  transition-duration: 1s;
}

.js-scroll.dl-100 {
  transition-delay: 0.1s;
}
.js-scroll.dl-200 {
  transition-delay: 0.2s;
}
.js-scroll.dl-300 {
  transition-delay: 0.3s;
}
.js-scroll.dl-400 {
  transition-delay: 0.4s;
}
.js-scroll.dl-500 {
  transition-delay: 0.5s;
}

.js-scroll:not(.js-scroll.scrolled) {
  transform: translateY(3rem);
}
.js-scroll.scrolled {
  opacity: 1;
}

.controls-layout {
  position: absolute;
  bottom: 4.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.top-slider__controls .swiper-pagination {
  position: static;
  width: auto;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: white;
  margin-right: 1.875rem;
}
.top-slider__controls .swiper-pagination > span::before {
  content: "0";
}
.top-slider__controls .swiper-pagination .swiper-pagination-total {
  color: #97a9e0;
}
.top-slider__controls .swiper-button-next,
.top-slider__controls .swiper-button-prev {
  position: static;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.6875rem;
  height: 1.6875rem;
  margin-top: 0;
}
.top-slider__controls .swiper-button-next {
  background-image: url("../images/top-slider_right.png");
}
.top-slider__controls .swiper-button-prev {
  background-image: url("../images/top-slider_left.png");
}
.top-slider__controls .swiper-button-prev:after,
.top-slider__controls .swiper-button-next:after {
  display: none;
}
.pp-btn {
  background-image: url("../images/ico-pause.png");
  background-size: 0.9375rem;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 1rem;
}
.pp-btn.run {
  background-image: url("../images/ico-play.png");
}

.history-modal__content {
  padding-top: 2.625rem;
}
.history-modal__content .history-num {
  border-bottom: 0.0625rem solid var(--navy);
  margin-bottom: 3.125rem;
}
.history-modal__content .history-num > p {
  padding: 1rem 4.25rem 1rem 2rem;
  border-top-left-radius: 0.9375rem;
  background-color: var(--navy);
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: white;
  display: flex;
  width: fit-content;
  max-width: 100%;
}
.history-modal__content .history-num > p > span {
  margin-right: 3.4375rem;
  flex: 0 0 auto;
}
.history-modal__box + .history-modal__box {
  margin-top: 1.875rem;
}
.history-modal__box .h-left {
  width: 15.625rem;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.history-modal__box .h-left > p {
  font-size: 1.375rem;
  font-weight: var(--font-medium);
  color: #2dbbda;
  margin-bottom: 1rem;
}
.history-modal__box.h-box-2 .h-left > p {
  color: #eb6735;
}
.history-modal__box.h-box-3 .h-left > p {
  color: #38a327;
}
.history-modal__box .h-left > img {
  width: auto;
  height: 8.75rem;
}
.history-modal__box .h-right {
  flex: 1 1 auto;
}
.history-modal__box .h-right > li {
  word-break: keep-all;
}
.history-modal__box .h-right > li.h-right__top {
  border-radius: 0.9375rem 0.9375rem 0 0;
  min-height: 3.125rem;
  background-color: #2dbbda;
  display: flex;
  align-items: center;
  color: white;
  font-size: 1.375rem;
  font-weight: var(--font-medium);
  padding: 0.5rem 2rem;
}
.history-modal__box.h-box-2 .h-right > li.h-right__top {
  background-color: #eb6735;
}
.history-modal__box.h-box-3 .h-right > li.h-right__top {
  background-color: #38a327;
}
.history-modal__box .h-right > li + li {
  border-inline: 0.125rem solid #e5e5e5;
  border-bottom: 0.0625rem solid #c8c8c8;
  padding: 1rem 1.875rem;
  font-size: 1.25rem;
  font-weight: var(--font-regular);
  color: black;
}
.history-modal__box .h-right > li:last-child {
  border-bottom: 0.125rem solid #e5e5e5;
}

.spinner {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.35);
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.spinner.active {
  display: flex;
}
.dimmer {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
}

@media all and (max-width: 1800px) {
  .top-btn {
    right: 1.25rem;
  }
}
@media all and (max-width: 1700px) {
  .main-recipe-notice {
    background-size: 12.5rem;
    background-position: right bottom 25rem;
  }
}
@media all and (max-width: 1500px) {
  .main-recipe-notice {
    background-image: none;
  }
}
@media all and (max-width: 1400px) {
  .greeting-img > img {
    width: 100%;
  }
  .greeting-txt {
    padding-left: 5rem;
  }
  .k-jeju-hd > img {
    position: static;
  }
  .k-jeju-hd__txt {
    position: absolute;
    width: calc(100% - 3rem);
    top: 50%;
    right: 0;
    background-color: rgba(0, 0, 0, 0.55);
    transform: translateY(-50%);
  }
  .k-jeju-hd {
    padding: 0;
    margin-bottom: 3rem;
  }
}

@media all and (max-width: 1350px) {
  /*.main-nav__grid {
        display: flex;
    }
    .main-nav > a {
        margin-right: 4rem;
    }*/
  .main-platform {
    background-position: left bottom -15rem;
    background-size: 15rem;
  }
  .main-recipe-notice {
    background-image: none;
  }
  .main-history-search .history-filter > li .filter-inp {
    width: 28rem;
  }
}
@media all and (min-width: 1301px) {
  .top-slider__wrap {
    height: auto !important;
  }
  .main-platform .tab-list {
    flex-direction: column;
  }
}
@media all and (max-width: 1300px) {
  .main-direct-link .link-txt + .link-txt {
    margin-top: 0.25rem;
  }
  .controls-layout {
    padding: 0 4.375rem;
    bottom: 10rem;
  }
  .top-slider__wrap {
    height: 100vh;
  }
  .m-menu__btn {
    width: 2.5rem;
    height: 2.5rem;
    background-image: url("../images/ico-menu.png");
    background-size: 2.5rem;
    background-position: center;
    background-repeat: no-repeat;
  }
  body.scroll .header .m-menu__btn {
    background-image: url("../images/ico-menu_gray.png");
  }
  .header.m-nav-active .m-menu__btn {
    background-image: url("../images/ico-close_gray.png");
    background-size: 1.6875rem;
  }
  .header {
    height: 6.875rem;
  }
  .header.m-nav-active {
    background-color: white;
    border-bottom: 0.0625rem solid #f1f2f3;
  }
  .header.m-nav-active .logo img {
    display: none;
  }
  .header.m-nav-active .logo img.active-img {
    display: block;
  }
  .m-main-nav__wrap {
    position: fixed;
    top: 6.875rem;
    left: 0;
    width: 100%;
    background-color: white;
    height: 0;
    overflow: hidden;
    transition: all 0.35s;
  }
  .header.m-nav-active .m-main-nav__wrap {
    height: calc(100% - 6.875rem);
    overflow-y: auto;
  }
  .m-main-nav {
    padding: 3.75rem 1.5rem;
  }

  .m-main-nav > li + li {
    margin-top: 3rem;
  }
  .m-main-nav__btn {
    font-size: 1.875rem;
    font-weight: var(--font-medium);
    color: black;
    display: block;
    width: 100%;
    background-image: url("../images/ico-plus.png");
    background-size: 1.3125rem;
    background-position: right 1.75rem center;
    background-repeat: no-repeat;
  }
  .m-main-nav > li.active .m-main-nav__btn {
    background-image: url("../images/ico-minus.png");
  }
  .m-main-sub__nav {
    display: none;
    padding-top: 1rem;
  }
  .m-main-sub__nav > li > a {
    font-size: 1.625rem;
    font-weight: var(--font-regular);
    color: black;
    display: block;
    width: 100%;
  }
  .m-main-sub__nav > li + li {
    margin-top: 0.75rem;
  }
  .m-main-nav > li.active .m-main-sub__nav {
    display: block;
  }

  .top-slider.swiper-container,
  .top-slider .swiper-slide {
    height: 100%;
  }
  .main-history-search .history-filter {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    padding-inline: 1.75rem;
  }
  .main-history-search .history-filter > li > span {
    width: 6.875rem;
    flex: 0 0 auto;
  }
  .main-history-search .history-filter > li .filter-inp {
    flex: 1 1 auto;
    width: auto;
  }

  .main-intro {
    padding-block: 6.25rem;
  }
  .main-intro > .layout {
    display: block;
  }
  .main-intro__txt {
    margin-top: 2.25rem;
  }
  .main-intro__txt > .more-btn {
    margin-top: 2rem;
  }
  .main-platform {
    background-image: none;
    padding-block: 6.25rem 8.75rem;
  }
  .main-platform > .layout {
    display: block;
  }
  .main-platform .tab-list {
    margin-top: 2.625rem;
  }
  .main-platform .tab-list {
    display: flex;
    gap: 4.5rem;
  }
  .c-tab {
    padding-top: 1rem;
    position: relative;
  }
  .c-tab[aria-selected="true"] {
    padding-left: 0;
    padding-top: 1rem;
    background-image: none;
  }
  .c-tab[aria-selected="true"]::before {
    content: "";
    display: block;
    width: 3.75rem;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #a08c6a;
  }
  .main-platform .main-sect__left {
    width: 100%;
    margin-bottom: 1.875rem;
  }
  .main-platform .platform-txt {
    padding-top: 3.5rem;
    margin-top: -4.75rem;
  }
  .main-platform .platform-img {
    padding-top: 67%;
  }
  .main-platform .platform-txt > h4 {
    margin-bottom: 1rem;
  }
  .product-slider__wrap {
    max-width: calc(100% - 12.25rem) !important;
  }
  .main-product {
    padding-block: 6.5rem 9.375rem;
  }
  .main-product > .layout {
    display: block;
  }
  .main-product .main-sect__left {
    width: 100%;
    text-align: center;
  }
  .product-slider__wrap {
    top: 17.5rem;
  }
  .product-slider {
    padding-right: 3.125rem;
  }
  .main-sect__txt br {
    display: none;
  }
  .prd-slide__btns {
    left: -11rem;
    bottom: 21.875rem;
    transform: none;
  }
  .main-product .slider-place {
    margin-top: 3rem;
  }
  .main-product::before {
    height: 25.9375rem;
  }
  .main-sect__title + .main-sect__txt {
    margin-top: 1.75rem;
  }
  .recipe-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.75rem 2rem;
  }
  .main-notice__list {
    display: block;
  }

  .main-direct-link {
    height: auto;
  }
  .main-direct-link > .layout {
    display: block;
  }
  .main-direct-link .direct-link {
    width: 100%;
    height: 16.5625rem;
    right: auto !important;
  }
  .main-direct-link .link-txt {
    width: 100%;
    height: 16.5625rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 1.875rem !important;
  }
  .main-direct-link .direct-link.link-1 {
    top: 0;
    left: 0;
  }
  .main-direct-link .direct-link.link-2 {
    top: auto;
    bottom: 0;
    left: 0;
  }
  .footer .sns-list {
    justify-content: center;
    margin-top: 2.25rem;
  }
  .footer .ft-info {
    margin-bottom: 0.625rem;
  }
  .footer .ft-link > a + a {
    margin-left: 1.75rem;
  }
  .footer .ft-info > p,
  .footer .ft-copyright {
    font-size: 1.125rem;
  }
  .footer .ft-logo {
    margin-bottom: 2.25rem;
  }
  .footer {
    padding-block: 2.5rem 4.25rem;
  }
  .main-notice__list > li .notice-title {
    margin-bottom: 0.625rem;
  }
  .main-notice__list > li + li {
    margin-top: 0.5rem;
  }
  .page-top__nav {
    display: none;
  }
  .page-top .top-nav__wrap {
    margin-top: 0;
  }
  .greeting-title {
    font-size: 2.5rem;
  }
  .prd-img__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .prd-intro__bottom .prd-bottom__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-btn {
    right: 1.25rem;
  }

  .prd-detail__wrap .prd-detail__content {
    display: flex;
    flex-direction: column;
  }

  .anchovy-sup__list > li > span {
    font-size: 1.35rem;
  }
  .brand-value .brand-value__list > li .value-txt > p > br {
    display: none;
  }
}

@media all and (max-width: 1250px) {
  .brand-goal > .layout {
    display: block;
  }
  .master-goal {
    margin-inline: auto;
    margin-bottom: 2.5rem;
  }
  .master-goal::after {
    display: none;
  }
  .brand-goal .goal-list {
    padding-inline: 3.75rem;
  }
  .brand-goal .goal-list::before,
  .brand-goal .goal-list > li::before,
  .brand-goal .goal-list > li::after {
    display: none;
  }
  .brand-goal .goal-list > li + li {
    margin-top: 1.25rem;
  }
  .brand-value .brand-value__list > li {
    flex-direction: column;
  }
  .brand-value .brand-value__list > li .value-img {
    width: 100%;
  }
  .brand-value .brand-value__list > li .value-txt > p {
    font-size: 1.75rem;
  }
  .brand-value .brand-value__list > li .value-txt > h4 {
    font-size: 2.625rem;
  }
  .brand-value .brand-value__list > li:nth-child(odd) .value-txt__wrap {
    order: 1;
  }
  .brand-value .brand-value__top {
    margin-bottom: 3rem;
  }
  .brand-value .brand-value__list > li:nth-child(even) .value-txt {
    padding-left: 0;
  }
  .brand-value .brand-value__list > li .value-txt {
    padding-top: 2.5rem;
  }
  .yt-video {
    padding-inline: 0;
  }
}

@media all and (max-width: 1100px) {
  .sts-benefit__list > li .benefit-category > img {
    width: 7rem;
  }
  .sts-benefit__list > li.benefit-2 .benefit-category > img {
    width: 8rem;
  }
  .sts-benefit__list > li.benefit-3 .benefit-category > img {
    width: 9rem;
  }
}

@media all and (min-width: 1025px) {
  .main-banner__back,
  .prd-intro__back {
    background-attachment: fixed;
  }
}
@media all and (max-width: 1024px) {
  .main-intro {
    background-color: white;
  }
  .greeting-info {
    display: block;
  }
  .greeting-img {
    width: 30rem;
    display: block;
    margin-inline: auto;
  }
  .greeting-img > img {
  }

  .main-history-search .history-filter > li input:not([type="radio"]) {
    padding-inline: 2rem;
  }
  .greeting-txt {
    width: 100%;
    padding-left: 0;
    margin-top: 2.5rem;
  }
  .greeting-title {
    margin-bottom: 3rem;
  }
  .greeting-profile > .layout {
    display: block;
  }
  .greeting-profile .profile-title {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .contact-info > li {
    font-size: 1.5rem;
  }
  .prd-intro__bottom .bottom-txt > p br {
    display: none;
  }

  .main-history-search .history-filter > li {
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-history-search .history-filter > li .filter-inp {
    width: calc(100% - 6.875rem);
  }
  .main-history-search .history-filter > li .history-btn {
    margin-left: 0;
    margin-top: 2.5rem;
  }
  .main-history-search {
    padding-block: 3.75rem;
  }
  .anchovy-naming {
    display: block;
  }
  .anchovy-naming > img {
    width: 100%;
  }
  .anchovy-naming .anchovy-naming__txt {
    padding-left: 0;
  }
  .anchovy-detail__list > li {
    font-size: 1.35rem;
  }
  .anchovy-kind__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .anchovy-kind__list > li > p {
    font-size: 1.35rem;
  }
  .anchovy-sup__list {
    display: block;
  }
  .anchovy-sup__list > li + li {
    margin-top: 1rem;
  }
  .anchovy-sup__list > li > p {
    text-align: center;
  }
  .mack-everything__list {
    gap: 2.5rem;
  }
  .marine-pnp__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sts-need {
    display: block;
  }
  .sts-need > img {
    width: 100%;
  }
  .sts-need__txt {
    padding-left: 0;
  }
  .sts-benefit__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .sts-benefit__title {
    margin-bottom: 5rem;
  }
  .recipe-page__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recipe-detail__top {
    display: block;
  }
  .recipe-detail__top .recipe-detail__img {
    width: 100%;
    height: auto;
    padding-top: 55%;
  }
  .recipe-detail__top .recipe-detail__txt {
    padding-left: 0;
    min-height: unset;
    margin-top: 2.5rem;
  }
  .recipe-detail__top .recipe-detail__txt .rdi {
    padding-top: 3rem;
  }
  .recipe-detail__desc .desc-editor {
    min-height: unset;
  }
  .modal-wrap {
    padding: 1.25rem;
  }
  .modal-wrap .modal-body {
    padding-inline: 2.5rem;
  }
  .marine-pnp__top br {
    display: none;
  }
  .tab-list .tab {
    padding-inline: 1rem;
  }
  .sfpf-info {
    padding: 0;
  }
  .sfpf-info::before,
  .sfpf-info::after {
    display: none;
  }
  .sfpf-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kjsp-graph__wrap {
    display: block;
  }
  .kjsp-graph__wrap > img {
    display: block;
    margin-inline: auto;
    margin-bottom: 2rem;
  }
  .kjsp-info__wrap {
    padding-left: 0;
  }
  .kjsp-info__list > li {
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
  }
  .kjsp-role__list > li > p {
    padding-inline: 1.5rem;
  }
  .innovation-content .innovation-list {
    display: block;
  }
  .innovation-content .innovation-list > li > span {
    width: 100%;
    margin-left: 0 !important;
  }
  .innovation-content .innovation-list > li > p {
    padding-left: 1rem !important;
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
  .innovation-content .innovation-list > li + li {
    margin-top: 2.5rem;
  }

  .main-nav .detail-nav > li,
  .product-slider .swiper-slide .product-info .prd-category,
  .recipe-list > li .recipe-txt,
  .main-notice__list > li .notice-txt,
  .pagination-nums > a,
  .recipe-page__list > li .recipe-txt,
  .anchovy-sup__list > li > p,
  .mack-info__list > li > p,
  .mack-everything__list > li .everything-txt > p,
  .marine-pnp__list > li .pnp-txt,
  .sfpf-list > li > p,
  .marine-news__list > li .news-date,
  .policy-content > p {
    font-size: 1.35rem;
  }

  .tab-list .tab[aria-selected="true"] {
    font-size: 1.375rem;
  }

  .k-jeju-hd > img {
    display: none;
  }
  .k-jeju-hd__txt {
    position: relative;
    transform: none;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .k-jeju-hd__txt::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.55);
    display: block;
  }
  #k-jeju-intro-panel-1 .k-jeju-hd__txt {
    background-image: url("../images/img-sfpf.png");
  }
  #k-jeju-intro-panel-2 .k-jeju-hd__txt {
    background-image: url("../images/img-kjsp.png");
  }
  .k-jeju-hd__txt > h4,
  .k-jeju-hd__txt > p {
    position: relative;
    z-index: 1;
  }
}

@media all and (max-width: 900px) {
  .anchovy-sup__map .map-content .map-list {
    left: -2.5rem;
  }
  .anchovy-sup__map .map-content .map-list:last-child {
    right: -2.5rem;
  }
  .anchovy-sup__map .map-content .map-list > li::before {
    width: 2.5rem;
  }
  .anchovy-sup__map .map-content .map-list:last-child > li::after {
    left: -2.5rem;
  }
  .anchovy-sup__map .map-content .map-list > li::after {
    right: -2.5rem;
  }
  .brand-intro > .layout {
    display: block;
  }
  .brand-intro .brand-title {
    width: 100%;
  }
  .brand-intro .brand-content {
    width: 100%;
    margin-top: 5rem;
  }
  .brand-intro .brand-content .brand-logo {
    margin-top: 3rem;
  }
  .brand-goal .goal-list {
    padding-inline: 0;
  }
  .brand-goal .goal-list > li .goal-icon {
    width: 10rem;
  }
  .k-jeju-hd {
  }
  .k-jeju-hd > img {
    max-width: 90%;
  }

  .history-modal__box {
    flex-direction: column;
  }
  .history-modal__box .h-left {
    margin-bottom: 2rem;
  }
  .history-modal__box .h-right {
    width: 100%;
  }
  .history-modal__box .h-right > li.h-right__top {
    text-align: center;
  }

  .effect-wrap .effect-list > li .effect-sub > li + li {
    margin-top: 0.25rem;
  }

  .page-top .top-background {
    height: 24rem;
  }

  .general-status__list > li > div {
    padding-inline: 1.25rem;
  }
}

@media all and (max-width: 750px) {
  .general-status__list > li > span {
    width: 12.5rem;
  }
  .prd-intro__bottom .prd-bottom__grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .prd-link__wrap .link-grid {
    gap: 1.5rem;
  }
  .prd-detail__wrap .prd-detail__info > li {
    display: block;
  }
  .prd-detail__wrap .prd-detail__info > li + li {
    margin-top: 1.5rem;
  }
  .prd-detail__wrap .prd-detail__info > li > span {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.5rem;
    display: block;
  }

  .anchovy-sup__map .map-content .map-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    position: static;
    transform: none !important;
  }
  .anchovy-sup__map .map-content .map-list > li {
    width: 100%;
  }
  .anchovy-sup__map .map-content .map-list > li + li {
    margin-top: 0;
  }
  .anchovy-sup__map .map-content > img {
    display: block;
    margin-inline: auto;
    width: 20rem;
    transform: rotate(90deg);
  }
  .anchovy-sup__map .map-content .map-list > li::before {
    width: 0.0625rem;
    height: 2.5rem;
    top: 100%;
    left: 50%;
    transform: none;
  }
  .anchovy-sup__map .map-content .map-list:last-child > li::before {
    bottom: 100%;
    top: auto;
    transform: translateX(-0.5px);
    left: 50%;
    right: auto;
  }
  .anchovy-sup__map .map-content .map-list > li::after {
    top: calc(100% + 2.5rem);
    transform: translateY(-50%);
    right: auto;
  }
  .anchovy-sup__map .map-content .map-list:last-child > li::after {
    top: auto;
    bottom: calc(100% + 2.5rem);
    transform: translateX(-50%);
    left: 50%;
  }
  .anchovy-sup__title {
    margin-bottom: 2.5rem;
  }
  .mack-everything__list {
    display: flex;
    flex-direction: column;
  }
  .sts-history .sts-history__list {
    display: flex;
    flex-direction: column;
  }

  .promotion-list__wrap .search-wrap,
  .notice-list__wrap .search-wrap {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 3.75rem;
  }
  .search-wrap > .search-inp__wrap {
    width: 100%;
  }
  .search-wrap .search-inp {
    width: 100%;
    height: 4rem;
    font-size: 1.625rem;
  }
  .search-wrap .search-btn {
    background-size: 2rem;
    width: 4rem;
    height: 4rem;
  }
  .notice-list__wrap .notice-list > li > a {
    background-image: none;
    padding: 2.8125rem 0;
  }
  .notice-list__wrap .notice-list > li .notice-title {
    font-size: 2rem;
  }
  .notice-list__wrap .notice-list > li .notice-date {
    font-size: 1.5rem;
  }
  .detail-content .detail-more .dm-pn .pn-title {
    display: none;
  }
  .detail-content .detail-more .dm-pn .pn-label {
    margin-bottom: 0;
    font-size: 1.75rem;
  }
  .detail-content .detail-more .dm-pn {
    align-items: center;
    display: flex;
  }
  .detail-content .detail-more .detail-next::before {
    display: none;
  }
  .detail-content .detail-more .detail-next {
    justify-content: flex-end;
  }
  .detail-content .detail-more .detail-prev {
    padding-inline: 4.25rem 0;
  }
  .detail-content .detail-more .detail-next {
    padding-inline: 0 4.25rem;
  }
  .promotion-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .promotion-list > li .promotion-title {
    font-size: 2rem;
  }
  .promotion-list > li .promotion-date {
    font-size: 1.5rem;
  }
  .promotion-list {
    gap: 5.375rem;
  }
  .detail-content .detail-hd .detail-date {
    font-size: 1.5rem;
  }
  .inquiry-form__title {
    font-size: 2rem;
  }
  .inquiry-form > li {
    display: block;
  }
  .inquiry-form > li > span {
    width: 100%;
    font-size: 1.625rem;
    display: block;
    padding-top: 0;
    margin-bottom: 0.5rem;
  }
  .inquiry-form > li .inp-wrap > input {
    font-size: 1.625rem;
    height: 4.625rem;
  }
  .inquiry-form > li + li {
    margin-top: 2.8125rem;
  }
  .inquiry-form > li .inp-wrap > textarea {
    margin-top: 0.75rem;
    font-size: 1.625rem;
  }
  .inquiry-form > li .inp-file .file-name {
    font-size: 1.625rem;
    height: 4.625rem;
  }
  .inquiry-form > li .inp-file .file-btn {
    width: 10rem;
  }
  .inquiry-agreement__wrap {
    margin-top: 5rem;
    padding: 2.625rem 1.875rem;
  }
  .inquiry-agreement__wrap .agreement-list > li {
    font-size: 1.625rem;
  }
  .inquiry-agreement__wrap .agreement-alert {
    font-size: 1.5rem;
  }
  .checkbox-wrap .checkbox-label::before {
    width: 2.8125rem;
    height: 2.8125rem;
  }
  .checkbox-wrap .checkbox-label {
    /*font-size: 1.625rem;*/
  }
  .checkbox-wrap .checkbox-label::before {
    background-size: 1.6875rem;
  }
  .anchovy-sup__map .map-content {
    width: 100%;
  }

  .greeting-title {
    font-size: 2.25rem;
  }
  .prd-intro__title br {
    display: none;
  }

  .brand-goal .goal-list > li > p {
    font-size: 1.75rem;
  }
}

@media all and (min-width: 721px) {
  .main-product .slider-place {
    height: 36.25rem !important;
  }
}
@media all and (max-width: 720px) {
  .product-slider .swiper-slide .product-img {
    height: auto;
    padding-top: 144%;
  }
}
