@charset "utf-8";
@import url("./font/font.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
ol,
li {
  list-style: none;
}
a {
  color: #191919;
  text-decoration: none;
}
img {
  vertical-align: top;
  border: 0;
}
html {
  font-size: 12px;
}
body {
  font-size: 12px;
  font-family: Poppins, Pretendard, verdana, gulim, dotum;
  line-height: 1;
  font-weight: 400;
  color: #131313;
  word-break: keep-all;
  letter-spacing: normal;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  background-clip: padding-box;
  border: 2px solid transparent;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #131313;
}

body::-webkit-scrollbar-track {
  background-color: #fafafa;
}

/* 고정메뉴 */
.gotop {
  position: fixed;
  right: 60px;
  bottom: 50px;
  width: 60px;
  height: 60px;
  border: 0;
  background: #000;
  z-index: 99999;
  font-size: 0;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.gotop.active {
  opacity: 1;
  visibility: visible;
}

.gotop::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 17px;
  margin-left: -9px;
  margin-top: -5px;
  border-top: #fff solid 1px;
  border-right: #fff solid 1px;
  transform: rotate(-45deg);
}

.gosns {
  position: fixed;
  left: 60px;
  bottom: 60px;
  width: 30px;
  z-index: 99999;
}

.gosns .gnb-mb-sns {
  flex-wrap: wrap;
  gap: 10px 0;
}
.gosns .gnb-mb-sns li {
  width: 100%;
}

.wrap {
  position: relative;
  display: block;
}
.inner {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100px;
  z-index: 999999;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
  padding: 0 8.33%;
  padding-top: 60px;
  transition: padding-top 0.3s;
  background-color: #fff;
}
.header .inner.active {
  padding-top: 40px;
}
.logo {
}
.nav {
  display: flex;
  justify-content: flex-end;
  gap: 0 50px;
  padding-bottom: 20px;
}

.gnb {
  display: flex;
  align-items: center;
  gap: 0 50px;
}
.gnb > li {
}
.gnb > li > a {
  font-size: 18px;
  font-weight: 600;
  color: #131313;
  line-height: 40px;
  letter-spacing: -1px;
}
.gnb > li > a > span {
  position: relative;
}
.gnb > li > a > span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  display: block;
  width: 0;
  height: 3px;
  background: #000;
  transition: width 0.3s;
}
.gnb > li > a:hover > span::after {
  width: 100%;
}

.nav-mb {
  position: relative;
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 0;
  width: 40px;
  height: 39px;
  padding: 10px;
  margin-top: -10px;
}
.nav-mb i {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.nav-mb i::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  transform-origin: 0% 50%;
  transition: all 0.3s;
}

.nav-mb i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  display: block;
  width: 50%;
  height: 3px;
  background: #000;
  transition: width 0.3s;
  transform-origin: 0% 50%;
  transition: all 0.3s;
}

.nav-mb:hover i::after {
  width: 100%;
}

.nav-mb i span {
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  opacity: 1;
  transition: opacity 0.3s;
}
.nav-mb.active i::before {
  left: 3px !important;
  top: 3px !important;
  transform: rotate(45deg) !important;
}
.nav-mb.active i::after {
  right: -3px !important;
  top: calc(100% - 2px) !important;
  width: 100% !important;
  transform: rotate(-45deg) !important;
}
.nav-mb.active i span {
  opacity: 0 !important;
}

/* 모바일 메뉴 */
.mb-wrap {
  position: relative;
  display: none;
  width: 100%;
  height: calc(100vh - 100px);
  min-height: 550px;
  margin: 0 auto;
  background: #fff;
}
.mb-wrap.active {
  display: block !important;
}
.mb-inner {
  display: flex;
  justify-content: space-between;
  padding: 0 8.33%;
  align-items: center;

  width: 100%;
  /* max-width: 1280px; */
  height: 100%;
  margin: 0 auto;
}
.gnb-mb {
}
.gnb-mb li {
}
.gnb-mb li a {
  position: relative;
  display: inline-block;
  font-size: 80px;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: -1px;
  color: transparent;
  -webkit-text-stroke: 1px #131313;
  text-stroke: 1px #131313;
}
.gnb-mb li a:hover {
  color: #131313;
}
.gnb-mb li a::after {
  content: "";
  position: absolute;
  left: calc(100% + 15px);
  top: 55px;
  width: 0;
  height: 12px;
  background: #131313;
  transition: 0.2s;
}
.gnb-mb li a:hover::after {
  width: 30px;
}

.gnb-mb-etc {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  height: 75.53%;
}
.gnb-mb-txt {
  width: 100%;
  text-align: right;
}
.gnb-mb-txt * {
  display: block;
}
.gnb-mb-txt span {
  font-size: 24px;
  font-weight: 100;
  color: #131313;
  line-height: 40px;
  letter-spacing: -1px;
}
.gnb-mb-txt b {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #131313;
  line-height: 40px;
  letter-spacing: -1px;
}

.gnb-mb-sns {
  display: flex;
  gap: 0 10px;
  margin-left: auto;
}
.gnb-mb-sns li {
}
.gnb-mb-sns li a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0;

  transition: background 0.3s;
  overflow: hidden;
}
.gnb-mb-sns li a:hover {
  background: #000;
}
.gnb-mb-sns li a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: background-position 0.3s;
}
.i-fb::before {
  background: url("../images/icon_sns.svg") no-repeat;
  background-position: 0 0;
}
.i-fb:hover::before {
  background-position: -30px 0;
}
.i-is::before {
  background: url("../images/icon_sns.svg") no-repeat;
  background-position: 0 -30px;
}
.i-is:hover::before {
  background-position: -30px -30px;
}
.i-yt::before {
  background: url("../images/icon_sns.svg") no-repeat;
  background-position: 0 -60px;
}
.i-yt:hover::before {
  background-position: -30px -60px;
}

/* 반응형 코드 */
@media screen and (max-width: 1280px) {
  .gnb {
    gap: 0 30px;
  }
  .gnb-mb li a {
    font-size: 70px;
    line-height: 100px;
  }
  .gnb-mb-etc {
    height: 66.53%;
  }
}

@media screen and (max-width: 1024px) {
  .gnb {
    display: none;
  }

  .gnb-mb li a {
    font-size: 62px;
    line-height: 85px;
  }
  .gnb-mb-etc {
    height: 58.53%;
  }
}
@media screen and (max-width: 760px) {
  .gnb-mb-txt {
    visibility: hidden;
  }
}
@media screen and (max-width: 540px) {
  .gnb-mb li a {
    font-size: 50px;
    line-height: 74px;
  }
  .gnb-mb-etc {
    height: 90.53%;
  }
}
/* 비주얼 */
.visual {
  position: relative;
  display: block;
}
.visual .inner {
  display: flex;
  justify-content: flex-start;
  padding-top: 220px;
  z-index: 9;
  width: 83.3333%;
  max-width: 1920px;
}
.sw-visual-control {
  margin-right: 17%;
}

.sw-visual-control li {
  position: relative;
  display: block;
  padding: 12px 0;
  padding-left: 30px;
  cursor: pointer;

  font-size: 18px;
  font-weight: 300;
  color: #131313;
  letter-spacing: 1px;
}
.sw-visual-control li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 3px;
  background: #999;
  transition: all 0.3s;
}
.sw-visual-control li.active {
  font-weight: 700;
}
.sw-visual-control li.active::before {
  width: 20px;
  background: #000;
}

.visual-wrap {
  position: relative;
  width: 70%;
}
.visual-wrap h2 {
  font-size: 80px;
  font-weight: 200;
  color: #131313;
  line-height: 100px;
  letter-spacing: -3px;
  margin-bottom: 60px;

  white-space: nowrap;
}
.visual-wrap h3 {
  font-size: 80px;
  font-weight: 800;
  color: #131313;
  letter-spacing: -3px;
}

.sw-visual-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}
.sw-visual-prev {
  position: relative;
  border: 0;
  background: #131313;
  width: 80px;
  height: 80px;
  cursor: pointer;
  font-size: 0;
}
.sw-visual-prev::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: calc(50% + 6px);
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 24px;
  height: 24px;
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
  border-radius: 2px;
  opacity: 1;
  transition: 0.2s;
}

.sw-visual-prev:hover::before {
  opacity: 0.8;
}

.sw-visual-next {
  position: relative;
  border: 0;
  background: #131313;
  width: 80px;
  height: 80px;
  cursor: pointer;
  font-size: 0;
}

.sw-visual-next::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: calc(50% - 6px);
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 24px;
  height: 24px;
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
  border-radius: 2px;
  opacity: 1;
  transition: 0.2s;
}
.sw-visual-next:hover::before {
  opacity: 0.8;
}

.visual-wrap p {
  position: absolute;
  left: 0;
  top: calc(100% + 66px);

  width: 45%;

  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  word-wrap: normal;
  word-break: keep-all;
}
.visual-wrap p b {
  font-weight: 700;
  display: block;

  margin-bottom: 20px;
}
/* 비주얼 Swiper */
.swVisual-wrap {
  position: relative;
  display: block;

  width: 83.3333%;
  margin: 0 auto;
  overflow: hidden;

  margin-top: -40px;

  height: 720px;
}

.swVisual {
  width: 100%;
  height: 100%;
}
.v-box {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.v-bg-1 {
  background: url("../images/bg01.jpg") no-repeat center;
  background-size: cover;
}
.v-bg-2 {
  background: url("../images/bg02.jpg") no-repeat center;
  background-size: cover;
}
.v-bg-3 {
  background: url("../images/bg03.jpg") no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 1440px) {
  .sw-visual-control {
    margin-right: 14%;
  }
}

@media screen and (max-width: 1280px) {
  .visual-wrap h2 {
    font-size: 55px;
    line-height: 65px;
    margin-bottom: 10px;
  }
  .visual-wrap h3 {
    font-size: 55px;
    font-weight: 800;
  }
  .visual-wrap p {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    margin-top: 50px;
  }

  .swVisual-wrap {
    /* margin-top: 30px; */
  }
  .sw-visual-nav {
    position: relative;
    float: right;
    right: auto;
    bottom: auto;
  }
  .swVisual-wrap {
    height: 648px;
  }
}

@media screen and (max-width: 1024px) {
  .visual .inner {
    padding-top: 190px;
  }
  .visual-wrap p {
    font-size: 15px;
    line-height: 25px;
    margin-top: 20px;
  }
  .swVisual-wrap {
    height: 576px;
  }
}

@media screen and (max-width: 760px) {
  .visual .inner {
    padding-top: 170px;
  }

  .sw-visual-control {
    margin-right: 10%;
  }
  .visual-wrap h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .visual-wrap h3 {
    font-size: 40px;
  }

  .visual-wrap p {
    font-size: 0px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .visual-wrap p b {
    font-size: 15px;
  }
  .sw-visual-nav {
    display: none;
  }
  .swVisual-wrap {
    height: 400px;
  }
}

@media screen and (max-width: 540px) {
  .visual .inner {
    padding-top: 140px;
  }

  .visual-wrap h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .visual-wrap h3 {
    font-size: 35px;
  }
}
/* 소개 */
.about {
  position: relative;
  display: block;
  padding: 10.41vw 0;
  margin-top: 130px;
}
.about .inner {
  width: 83.3333%;
  max-width: 83.3333%;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
}
.about-left {
  width: 50%;
}

.about-left span {
  display: block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-left h2 {
  font-size: 70px;
  line-height: 80px;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 60px;
}
.about-left p {
  width: 64%;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}
.about-left a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 12px;
  margin-top: 100px;

  min-width: 180px;
  max-width: 180px;
  height: 60px;
  padding: 0 80px 0 30px;
  background-color: #131313;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 60px;
  text-align: left;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  border: 1px solid #fff;
}
.about-left a::after {
  content: "";
  display: block;
  width: 40px;
  min-width: 40px;
  height: 3px;
  background-color: #fff;
  margin-left: auto;
}
.about-left a:hover {
  border: 1px solid #000;
  background: #fff;
  color: #000;
}
.about-left a:hover:after {
  background-color: #000;
}

.about-right {
  width: 45%;
}
.about-right img {
  width: 100%;
}

@media screen and (max-width: 1680px) {
}

@media screen and (max-width: 1600px) {
  .about-left h2 {
    font-size: 55px;
    line-height: 65px;
  }
  .about-left p {
    width: 90%;
    font-size: 18px;
    line-height: 30px;
  }
}

@media screen and (max-width: 1440px) {
  .about .inner {
    padding: 0;
  }
  .about-left h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .about-left p {
    font-size: 17px;
  }
  .about-right {
    text-align: right;
  }
  .about-right img {
    width: 95%;
  }
}
@media screen and (max-width: 1280px) {
  .about-left h2 {
    font-size: 45px;
    line-height: 55px;
  }
  .about-left p {
    font-size: 16px;
  }
  .about-right img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .about-left h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .about-left p {
    font-size: 15px;
    line-height: 25px;
  }
  .about-left a {
    margin-top: 50px;
  }
}
@media screen and (max-width: 900px) {
  .about .inner {
    flex-wrap: wrap;
  }
  .about-left {
    width: 100%;
    margin-bottom: 50px;
  }
  .about-left p {
    width: 100%;
  }
  .about-right {
    width: 100%;
    text-align: center;
  }

  .about-right img {
    width: 50%;
  }
}
@media screen and (max-width: 760px) {
  .about-left a {
    min-width: 160px;
    font-size: 16px;
    height: 60px;
    padding: 0 20px 0 20px;
  }
  .about-left a::after {
    width: 25px;
  }

  .about-right img {
    width: 70%;
  }
}

@media screen and (max-width: 540px) {
  .about-left a {
    min-width: 120px;
    height: 50px;
  }
}

/* 텍스트 효과 */
.effect {
  position: relative;
  display: block;
  margin: 50px 0;
  overflow: hidden;
}
.effect-01 {
  font-size: 140px;
  font-weight: 400;
  line-height: 160px;
  word-break: keep-all;
  word-wrap: break-word;
  white-space: nowrap;
  color: #131313;
  opacity: 0.1;
}
.effect-02 {
  font-size: 140px;
  font-weight: 400;
  line-height: 160px;
  word-break: keep-all;
  word-wrap: break-word;
  white-space: nowrap;
  opacity: 0.3;
  color: transparent;
  -webkit-text-stroke: 1px #131313;
}

/* 브랜드 */
.brand {
  position: relative;
  display: block;
  padding-top: 100px;
}

.brand .inner {
  width: 83.3333%;
  max-width: 83.3333%;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 100px auto;
}

.brand-cate {
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  word-wrap: normal;
  word-break: keep-all;
}
.brand-left {
  width: 50%;
}
.brand-left h2 {
  font-weight: 700;
  font-size: 70px;
  line-height: 80px;
  word-break: keep-all;
  white-space: nowrap;
}
.brand-right {
  width: 50%;
}
.brand-right p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  word-wrap: normal;
  word-break: keep-all;
}

.swBrandWrap {
  position: relative;
  display: block;

  max-width: 83.3333%;
  height: 835px;

  margin: 0 auto;
  opacity: 1 !important;
  transition: all 0.3s ease-out !important;
}
.swBrandWrap.aos-animate {
  max-width: 100%;
}

.swBrand {
  height: 100%;
}
.swBrand-good {
  position: relative;
  width: 100%;
  height: 100%;
}
.swBrand-good-1 {
  background: url("../images/bg_gola.jpg") no-repeat center;
  background-size: cover;
}
.swBrand-good-2 {
  background: url("../images/bg_comoninoz.jpg") no-repeat center;
  background-size: cover;
}
.swBrand-good-3 {
  background: url("../images/bg_w.standard.jpg") no-repeat center;
  background-size: cover;
}
.swBrand-good-4 {
  background: url("../images/bg_deliccent.jpg") no-repeat center;
  background-size: cover;
}
.swBrand-good-5 {
  background: url("../images/bg_outdoor_products.jpg") no-repeat center;
  background-size: cover;
}
.swBrand-good-6 {
  background: url("../images/bg_ocean_pacific.jpg") no-repeat center;
  background-size: cover;
}
.swBrand-good-7 {
  background: url("../images/bg_ordinary_holiday.jpg") no-repeat center;
  background-size: cover;
}
.swBrand-good-8 {
  background: url("../images/bg_field_worker.jpg") no-repeat center;
  background-size: cover;
}
.swBrand-good-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 83.3333%;

  padding: 0 8%;

  height: 100%;
  color: #fff;
  margin: 0 auto;
}
.swBrand-good-wrap span {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
}
.swBrand-good-wrap h3 {
  font-size: 70px;
  line-height: 80px;
  margin-bottom: 50px;
}

.swBrand-good-wrap p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 50px;
}

.swBrand-good-wrap a {
  position: relative;
  display: inline-block;
  background-color: #fff;
  color: #131313;
  box-shadow: inset 0px 0px 1px 1px #fff;
  width: 180px;
  min-width: 180px;
  height: 60px;
  padding: 0 80px 0 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 60px;
  cursor: pointer;
  transition: 0.2s;
}
.swBrand-good-wrap a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 50%;
  width: 40px;
  height: 3px;
  margin-top: -2px;
  background-color: #131313;
  transition: 0.2s;
}
.swBrand-good-wrap a:hover {
  background-color: transparent;
  color: #fff;
}
.swBrand-good-wrap a:hover::after {
  background-color: #fff;
  color: #fff;
}

.swBrandMenu {
  position: absolute;
  top: 50%;
  left: 83.3333%;
  transform: translateY(-50%);
  z-index: 99;
}
.swBrandMenu li {
}
.swBrandMenu li a {
  position: relative;
  display: block;
  margin-right: 30px;
  margin-bottom: 28px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  opacity: 0.3;
  transition: 0.2s;
}
.swBrandMenu li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -30px;
  top: 4px;
  width: 10px;
  height: 3px;
  background-color: #fff;
  opacity: 0.5;
  transition: 0.2s;
}
.swBrandMenu li a:hover {
  opacity: 1;
}
.swBrandMenu li a:hover::after {
  opacity: 1;
  width: 20px;
}
.swBrandMenu li.active a {
  opacity: 1 !important;
}
.swBrandMenu li.active a::after {
  opacity: 1 !important;
  width: 20px !important;
}
.swBrand-pg {
  position: absolute;
  display: none;
  left: 0 !important;
  bottom: 20px !important;
  width: 100%;
  z-index: 999999;
  text-align: center;
}
.swBrand-pg .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 3px;
  opacity: 0.3;
  background: #fff;
}
.swBrand-pg .swiper-pagination-bullet-active {
  opacity: 1;
}

@media screen and (max-width: 1600px) {
  .brand .inner {
    padding: 0;
  }
  .brand-left h2 {
    font-size: 55px;
    line-height: 65px;
  }

  .swBrandWrap {
    height: 771px;
  }
  .swBrand-good-wrap {
    padding: 0;
  }
  .swBrand-good-wrap h3 {
    font-size: 55px;
    line-height: 65px;
  }
}

@media screen and (max-width: 1440px) {
  .brand-left h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .brand-right p {
    font-size: 17px;
  }

  .swBrand-good-wrap h3 {
    font-size: 50px;
    line-height: 60px;
  }
}

@media screen and (max-width: 1280px) {
  .brand-left h2 {
    font-size: 45px;
    line-height: 55px;
  }
  .brand-right p {
    font-size: 16px;
  }

  .swBrand-good-wrap h3 {
    font-size: 45px;
    line-height: 55px;
  }

  .swBrand-good-wrap p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1050px) {
  .brand-left h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .swBrand-good-wrap h3 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .brand-right p {
    font-size: 15px;
    line-height: 25px;
  }

  .swBrand-good-wrap p {
    font-size: 15px;
    line-height: 25px;
  }
}

@media screen and (max-width: 900px) {
  .brand-left {
    width: 100%;
    margin-bottom: 10px;
  }

  .brand-left h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .brand-right {
    width: 100%;
  }

  .swBrand-good-wrap h3 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media screen and (max-width: 760px) {
  .brand-left h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .swBrandWrap {
    height: 791px;
  }

  .swBrand-good-wrap span {
    font-size: 15px;
    line-height: 25px;
  }

  .swBrand-good-wrap h3 {
    font-size: 35px;
    line-height: 45px;
  }

  .swBrand-good-wrap a {
    width: 160px;
    line-height: 50px;
    min-width: 160px;
    height: 50px;
    padding: 0 65px 0 25px;
    color: #7e7f7a;
    font-size: 16px;
  }
  .swBrand-good-wrap a::after {
    width: 25px;
    background: #7e7f7a;
  }
  .swBrandMenu {
    display: none;
  }
  .swBrand-pg {
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .brand-left h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .swBrand-good-wrap h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

/* 위치 */
.location {
  position: relative;
  display: block;
  background: #f5f5f5;
  padding: 160px 0;
}
.location .inner {
  width: 83.3333%;
  max-width: 83.3333%;
  padding: 0 8%;
}
.location-title {
}
.location-title span {
  display: block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.location-title h3 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 60px;
}
.location-map {
  position: absolute;
  right: 0;
  top: 50px;
  width: 50%;
  min-height: 495px;
  box-shadow: 0 30px 90px rgba(19, 19, 19, 0.2);
}

.location-map img {
  width: 100%;
}

.location-addr {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.location-addr a {
  display: inline-block;
  margin-top: 20px;
  color: #131313;
}
.location-kko {
  position: relative;
  display: inline-block;
  min-width: 180px;
  height: 60px;
  padding: 0 80px 0 30px;
  background-color: #131313;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 60px;
  text-align: left;
  transition: 0.2s;
  margin-top: 97px;
  white-space: nowrap;
}
.location-kko::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 30px;
  top: 50%;
  width: 40px;
  height: 3px;
  margin-top: -2px;
  background-color: #fff;
  transition: 0.2s;
}
.location-kko:hover {
  background-color: transparent;
  color: #131313;
  box-shadow: inset 0px 0px 1px 1px #131313;
}
.location-kko:hover::after {
  background-color: #131313;
  color: #131313;
}

@media screen and (max-width: 1600px) {
  .location .inner {
  }
  .location-title {
  }
  .location-title span {
  }
  .location-title h3 {
    font-size: 45px;
    line-height: 55px;
  }
  .location-map {
  }
  .location-addr {
  }
  .location-addr a {
  }
  .location-kko {
  }
}

@media screen and (max-width: 1440px) {
  .location .inner {
    padding: 0;
  }
  .location-title {
  }
  .location-title span {
  }
  .location-title h3 {
    font-size: 40px;
    line-height: 50px;
  }
  .location-map {
    min-height: 465px;
  }
  .location-addr {
    font-size: 17px;
  }
  .location-addr a {
  }
  .location-kko {
  }
}

@media screen and (max-width: 1280px) {
  .location .inner {
    padding: 60px 0;
  }
  .location-title {
  }
  .location-title span {
  }
  .location-title h3 {
    font-size: 35px;
    line-height: 45px;
  }
  .location-map {
  }
  .location-addr {
    font-size: 16px;
  }
  .location-addr a {
  }
  .location-kko {
    margin-top: 97px;
  }
}

@media screen and (max-width: 1080px) {
  .location .inner {
  }
  .location-title {
  }
  .location-title span {
  }
  .location-title h3 {
  }
  .location-map {
  }
  .location-addr {
  }
  .location-addr a {
  }
  .location-kko {
  }
}

@media screen and (max-width: 1024px) {
  .location .inner {
  }
  .location-title {
  }
  .location-title span {
  }
  .location-title h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .location-map {
    min-height: 435px;
  }
  .location-addr {
    font-size: 15px;
    line-height: 25px;
  }
  .location-addr a {
  }
  .location-kko {
  }
}

@media screen and (max-width: 900px) {
  .location .inner {
  }
  .location-title {
  }
  .location-title span {
  }
  .location-title h3 {
  }
  .location-map {
    position: relative;
    width: 100%;
    min-height: auto;
    top: 0px;
  }
  .location-addr {
    display: none;
  }
  .location-addr a {
  }
  .location-kko {
    margin-top: 50px;
  }
}

@media screen and (max-width: 760px) {
  .location .inner {
  }
  .location-title {
  }
  .location-title span {
  }
  .location-title h3 {
    font-size: 25px;
    line-height: 35px;
  }
  .location-map {
  }
  .location-addr {
  }
  .location-addr a {
  }
  .location-kko {
    margin-top: 40px;
    min-width: 160px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    width: 160px;
    padding: 0 65px 0 25px;
  }

  .location-kko::after {
    width: 15px;
    right: 15px;
  }
}

@media screen and (max-width: 540px) {
  .location .inner {
  }
  .location-title {
  }
  .location-title span {
  }
  .location-title h3 {
  }
  .location-map {
  }
  .location-addr {
  }
  .location-addr a {
  }
  .location-kko {
    min-width: 160px;
    height: 45px;
    font-size: 16px;
    line-height: 45px;
    width: 160px;
    padding: 0 65px 0 20px;
  }
}

.footer {
  position: relative;
  display: block;
  padding: 60px 0;
}
.footer .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  width: 83.3333%;
  max-width: 83.3333%;
}
.footer-sns {
  width: 17%;
}
.footer-sns a {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #131313;
  line-height: 40px;
  letter-spacing: 2px;
}
.footer-sns a:hover {
  text-decoration: underline;
}

.footer-copy {
  width: 21%;
  font-size: 15px;
  font-weight: 400;
  color: #131313;
  line-height: 40px;
  letter-spacing: 2px;
}
.footer-copy strong {
  display: block;
  font-weight: 700;
}
.footer-address {
  width: 42%;
  font-size: 15px;
  font-weight: 400;
  color: #131313;
  line-height: 40px;
  letter-spacing: 2px;
}
.footer-address dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-address dl dt {
  width: 25%;
  font-weight: 700;
}
.footer-address dl dd {
  width: 75%;
}

.footer-address dl dd a:hover {
  text-decoration: underline;
}
.footer-address dl dd address {
  line-height: 25px;
}
.footer-info {
  width: 20%;
  font-size: 15px;
  font-weight: 400;
  color: #131313;
  line-height: 40px;
  white-space: nowrap;
}
.footer-info a:hover {
  text-decoration: underline;
}
.footer-info span {
  display: block;
}

@media screen and (max-width: 1280px) {
  .footer-sns a {
    font-size: 15px;
  }
  .footer-copy {
    font-size: 12px;
    line-height: 35px;
    letter-spacing: 1px;
  }

  .footer-address {
    font-size: 12px;
    line-height: 35px;
    letter-spacing: 1px;
  }

  .footer-info {
    font-size: 12px;
    line-height: 35px;
    letter-spacing: 0px;
  }
}

@media screen and (max-width: 1024px) {
  .footer-sns {
    width: 100%;
  }
  .footer-sns ul {
    display: flex;
    justify-content: flex-start;
    gap: 0 20px;
  }
  .footer-sns a {
    font-size: 17px !important;
  }

  .footer-copy {
    width: 100%;
    font-size: 15px;
  }
  .footer strong {
    display: inline-block;
    margin: 0 20px;
  }

  .footer-address {
    width: 100%;
    font-size: 15px;
  }
  .footer-address dl dt {
    width: 15%;
    white-space: nowrap;
  }
  .footer-address dl dd {
    width: 85%;
  }
  .footer-info {
    width: 100%;
    padding-left: 15%;
    font-size: 15px;
  }
}

@media screen and (max-width: 900px) {
  .footer-copy {
    font-size: 13px;
  }

  .footer-address {
    font-size: 14px;
  }
  .footer-address dl dt {
    width: 20%;
  }
  .footer-address dl dd {
    width: 80%;
    font-size: 13px;
  }
  .footer-info {
    padding-left: 20%;
    font-size: 13px;
  }
}
