@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,200,0,0");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  font-weight: inherit;
  box-sizing: border-box;
  color: inherit;
}

*::before,
*::after {
  box-sizing: border-box;
}

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

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

a {
  text-decoration: none;
}

body {
  line-height: 1;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

address,
em,
i {
  font-style: normal;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body,
input,
button {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  letter-spacing: -0.0025em;
  word-break: keep-all;
}

.sec {
  padding: 100px 0;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.inner {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

p {
  font-size: 16px;
  line-height: 22px;
  color: #444;
}

.title {
  text-align: center;
  margin: 0 0 48px 0;
}
.title h3 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Noto Serif KR";
  margin: 0 0 8px 0;
}
.title p {
  font-size: 16px;
}

@media (max-width: 768px) {
  .title h3 {
    font-size: 22px;
  }
  .title p {
    font-size: 15px;
    padding: 0 9px;
  }
}
.btn1 {
  position: absolute;
  display: inline-block;
  font-size: 16px;
  color: #007fb2;
}
.btn1::after {
  content: "\e145";
  font-family: "material symbols outlined";
  vertical-align: -2px;
}

a.more {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 32px 11px 32px;
  border-radius: 24px;
  color: #444;
  border: 1px solid #ed1b23;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 90%);
  transition: 0.3s;
}
.header .head_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header .head_wrap h1 {
  width: 230px;
}
.header .gnb > ul {
  display: flex;
  gap: 40px;
}
.header .gnb > ul > li {
  position: relative;
}
.header .gnb > ul > li > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 80px;
  color: #fff;
}
.header .gnb > ul > li > a::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -8px;
  z-index: 1000;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ed1b23;
  opacity: 0;
  transition: 0.3s;
}
.header .gnb > ul > li .sub_menu {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, 10px);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.header .gnb > ul > li .sub_menu > li > a {
  display: block;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  width: 150px;
  background: #fff;
  border: 1px solid #f2f2f2;
  transition: 0.3s;
}
.header .gnb > ul > li .sub_menu > li:not(:first-child) {
  border-top: none;
}
.header .gnb > ul > li .sub_menu > li:hover > a {
  color: #ed1b23;
}
.header .gnb > ul > li:hover a::after {
  opacity: 1;
}
.header .gnb > ul > li:hover .sub_menu {
  transform: translate(-50%, -15px);
  visibility: visible;
  opacity: 1;
}
.header:hover {
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
}
.header:hover .head_wrap h1 {
  filter: brightness(0%);
}
.header:hover .gnb > ul > li a {
  color: #333;
}
.header.on {
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
}
.header.on .head_wrap h1 {
  filter: brightness(0%);
}
.header.on .gnb > ul > li a {
  color: #333;
}
.header .mopen {
  display: none;
}

@media (max-width: 768px) {
  .header .head_wrap {
    position: relative;
  }
  .header .head_wrap::before {
    content: "";
    position: absolute;
    inset: -100vh 0 0 0;
    z-index: -1;
    height: 0;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .header .head_wrap h1 {
    width: 200px;
  }
  .header .head_wrap.on {
    background: #fff;
  }
  .header .head_wrap.on::before {
    inset: 0 0 0 0;
    height: 100vh;
    transition: 0.5s;
  }
  .header .gnb {
    position: absolute;
    top: -480px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 480px;
    background: #f7f8f9;
  }
  .header .gnb > ul {
    position: relative;
    flex-direction: column;
    gap: 0px;
    padding: 100px 24px 0;
  }
  .header .gnb > ul > li > a {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .gnb > ul > li > a::after {
    display: none;
  }
  .header .gnb > ul > li .sub_menu {
    position: static;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
    transition: 0s;
    display: none;
  }
  .header .gnb > ul > li .sub_menu > li {
    position: relative;
  }
  .header .gnb > ul > li .sub_menu > li > a {
    font-size: 14px;
    line-height: 40px;
    width: 100%;
    background: #fff;
    border: none;
    transition: 0s;
    color: #666;
  }
  .header .gnb > ul > li .sub_menu > li:not(:first-child) > a {
    border-top: 1px solid #f2f2f2;
  }
  .header .gnb > ul > li:hover .sub_menu {
    transform: translate(0, 0);
  }
  .header .gnb.on {
    top: 0;
    transition: 0.5s;
  }
  .header .mopen {
    position: absolute;
    top: 24px;
    right: 15px;
    z-index: 999;
    display: block;
  }
  .header .mopen span {
    font-size: 32px;
    color: #fff;
    transition: 0.3s;
  }
  .header .mopen.on span {
    color: #ed1b23;
  }
  .header:hover .mopen span {
    color: #000;
  }
  .header:hover .mopen.on span {
    color: #ed1b23;
  }
  .header.on .mopen span {
    color: #000;
  }
}
.main_visual {
  position: relative;
}
.main_visual .main_slide .itm {
  position: relative;
  height: 700px;
  -webkit-clip-path: ellipse(150% 100% at 50% 0%);
          clip-path: ellipse(150% 100% at 50% 0%);
}
.main_visual .main_slide .itm.itm01 {
  background: url(../images/mainvisual02.jpg) no-repeat center center/cover;
}
.main_visual .main_slide .itm.itm02 {
  background: url(../images/mainvisual01.jpg) no-repeat center center/cover;
}
.main_visual .main_slide .itm.itm03 {
  background: url(../images/mainvisual03.jpg) no-repeat center center/cover;
}
.main_visual .main_slide .itm::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.7) 100%);
}
.main_visual .slogan {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  text-align: center;
}
.main_visual .slogan h3 {
  font-size: 56px;
  font-weight: 100;
  color: #fff;
  margin: 0 0 14px 0;
  font-family: "Noto Serif KR";
}
.main_visual .slogan p {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ddd;
}
.main_visual .arrows {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main_visual .arrows span {
  display: block;
  font-size: 32px;
  color: #fff;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.main_visual::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 80px;
  background: #ed1b23;
}

@media (max-width: 768px) {
  .main_visual .main_slide .itm {
    height: 400px;
  }
  .main_visual .slogan h3 {
    font-size: 48px;
  }
  .main_visual .slogan p {
    letter-spacing: 1px;
  }
  .main_visual .arrows {
    top: auto;
    bottom: 150px;
    right: 50%;
    width: calc(100% - 48px);
    transform: translate(50%, 0);
  }
  .main_visual .arrows span {
    display: block;
    font-size: 24px;
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    cursor: pointer;
  }
  .main_visual .arrows .left {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    margin: 0;
  }
  .main_visual .arrows .right {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
}
.main_company {
  position: relative;
}
.main_company .content .tit {
  text-align: center;
  margin: 0 0 48px 0;
}
.main_company .content .tit strong {
  position: relative;
  display: block;
  font-size: 72px;
  font-weight: 700;
  font-family: "Noto Serif KR";
  margin: 0 0 8px 0;
  color: #999;
}
.main_company .content .tit strong::after {
  content: "";
  position: absolute;
  top: 8px;
  left: calc(50% - 40px);
  transform: translate(-50%, 0);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ed1b23;
}
.main_company .content .tit p {
  text-transform: uppercase;
}
.main_company .company {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  margin: 0 0 24px 0;
}
.main_company .company .com_left ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.main_company .company .com_left ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  text-align: left;
  background: #f7f8f9;
  width: 240px;
  font-size: 18px;
  font-weight: 300;
  border-radius: 32px 0 0 32px;
}
.main_company .company .com_left ul li span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #ed1b23;
}
.main_company .company .com_left ul li.on {
  background: #ed1b23;
  color: #fff;
  font-weight: 700;
  width: 300px;
}
.main_company .company .com_right figure {
  border-radius: 8px;
  overflow: hidden;
}
.main_company .company .txt {
  width: 100%;
}
.main_company .company_txt {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.main_company .company_txt li {
  position: relative;
  padding: 32px 32px 88px;
  border: 1px solid rgba(108, 177, 204, 0.5);
  border-radius: 8px;
  background: #fff;
}
.main_company .company_txt li:not(.txt_tit)::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ed1b23;
}
.main_company .company_txt li strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: #007fb2;
}
.main_company .company_txt li.txt_tit {
  font-size: 18px;
  background: #007fb2;
  color: #ddd;
}
.main_company .company_txt li.txt_tit strong {
  font-size: 40px;
  margin: 0 0 8px 0;
  color: #fff;
}
.main_company::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 80px;
  background: #ed1b23;
}

@media (max-width: 768px) {
  .main_company .content .tit {
    margin: 0 0 40px 0;
  }
  .main_company .content .tit strong {
    font-size: 56px;
  }
  .main_company .content .tit strong::after {
    top: 6px;
    left: calc(50% - 32px);
    width: 10px;
    height: 10px;
  }
  .main_company .company {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    margin: 0 0 16px 0;
  }
  .main_company .company .com_left {
    order: 2;
  }
  .main_company .company .com_left ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 8px;
  }
  .main_company .company .com_left ul li {
    display: flex;
    gap: 10px;
    padding: 16px 24px;
    text-align: center;
    background: #fff;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    border-radius: 4px;
    border: 1px solid rgba(237, 27, 35, 0.3);
  }
  .main_company .company .com_left ul li span {
    display: inline-block;
    font-size: 14px;
  }
  .main_company .company .com_left ul li.on {
    justify-content: center;
    grid-column: 1/span 2;
    text-align: center;
    width: 100%;
  }
  .main_company .company .com_right {
    margin: 0 0 16px 0;
  }
  .main_company .company_txt {
    grid-template-columns: repeat(1, 1fr);
  }
  .main_company .company_txt li {
    padding: 24px 24px 32px 24px;
  }
  .main_company .company_txt li:not(.txt_tit)::before {
    top: 18px;
    left: 18px;
  }
  .main_company .company_txt li strong {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
  }
  .main_company .company_txt li.txt_tit {
    font-size: 18px;
    background: #007fb2;
    color: #ddd;
  }
  .main_company .company_txt li.txt_tit strong {
    font-size: 32px;
    margin: 0 0 8px 0;
    color: #fff;
  }
}
.main_information .info_con {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 16px;
}
.main_information .info_con .itm figure {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 32px 0;
}
.main_information .info_con .itm figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_information .info_con .itm .desc {
  padding: 0 8px;
}
.main_information .info_con .itm .desc strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 24px 0;
}
.main_information .info_con .itm .desc p {
  font-size: 16px;
  line-height: 22px;
}

@media (max-width: 768px) {
  .main_information .info_con {
    grid-template-columns: 1fr;
  }
}
.main_slogan {
  position: relative;
  z-index: 1;
  padding: 100px 0 180px 0;
  background: url(../images/bg02.jpg) no-repeat fixed center center/cover;
}
.main_slogan::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: grayscale(0.7);
          backdrop-filter: grayscale(0.7);
}
.main_slogan .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main_slogan .content h2 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 650px;
  margin: 0 0 24px 0;
}
.main_slogan .content p {
  font-weight: 100;
  text-align: center;
  color: #fff;
  letter-spacing: 30px;
}

@media (max-width: 768px) {
  .main_slogan .content h2 {
    width: 100%;
  }
  .main_slogan .content p {
    font-size: 14px;
    letter-spacing: 5px;
  }
}
.main_brand {
  position: relative;
  z-index: 2;
  margin: -100px 0 0;
}
.main_brand::before {
  content: "";
  position: absolute;
  inset: 100px 0 0 0;
  z-index: -2;
  background: #f2f2f2;
}
.main_brand::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: calc((100vw - 1170px) / 2 + 1240px);
  background: #fff;
  border-radius: 24px 0 0 0;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.main_brand .content {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
}
.main_brand .content .brand_set {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 0 40px 0;
}
.main_brand .content .brand_set > li {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.main_brand .content .brand_set > li span {
  position: relative;
  color: #222;
  transition: 0.5s;
}
.main_brand .content .brand_set > li.on span {
  color: #ed1b23;
}
.main_brand .content .brand_set > li.on span::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #ed1b23;
}
.main_brand .content .brand_set > li.on span::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ed1b23;
}
.main_brand .content .brand_set > li:hover span {
  color: #007fb2;
}
.main_brand .brand_story > li {
  display: none;
}
.main_brand .brand_story > li.on {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  height: 100%;
}
.main_brand .b_left {
  order: 2;
}
.main_brand .b_left figure {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.main_brand .b_left figure img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.5);
}
.main_brand .b_right {
  position: relative;
  display: flex;
  flex-direction: column;
  order: 1;
}
.main_brand .b_right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -32px;
  width: 1px;
  height: 100%;
  background: #ddd;
}
.main_brand .b_right .title {
  text-align: left;
  text-indent: -2px;
  margin: 0 0 24px 0;
}
.main_brand .b_right .txt {
  margin: 0 0 auto 0;
}
.main_brand .b_right .txt p {
  margin: 0 0 24px 0;
}
.main_brand .b_right .txt a {
  transform: translate(-2px, 0);
}
.main_brand .b_right .num {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  text-align: center;
}
.main_brand .b_right .num li {
  position: relative;
  flex: 1;
}
.main_brand .b_right .num li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translate(0, -50%);
  width: 1px;
  height: 70px;
  background: #ddd;
}
.main_brand .b_right .num span {
  display: block;
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 6px 0;
}
.main_brand .b_right .num strong {
  font-size: 32px;
  font-weight: 700;
  color: #ed1b23;
}

@media (max-width: 768px) {
  .main_brand::before {
    display: none;
  }
  .main_brand::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: auto;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 200px;
    background: #fff;
    border-radius: 0;
    -webkit-clip-path: ellipse(100% 100% at 50% 100%);
            clip-path: ellipse(100% 100% at 50% 100%);
  }
  .main_brand .content {
    display: block;
  }
  .main_brand .content .brand_set {
    flex-direction: row;
    justify-content: center;
  }
  .main_brand .content .brand_set > li span {
    font-size: 16px;
    transition: 0s;
  }
  .main_brand .content .brand_set > li.on span {
    color: #ed1b23;
  }
  .main_brand .content .brand_set > li.on span::before {
    display: none;
  }
  .main_brand .content .brand_set > li:hover span {
    color: inherit;
  }
  .main_brand .brand_story > li.on {
    grid-template-columns: 1fr;
  }
  .main_brand .b_left {
    order: 0;
  }
  .main_brand .b_left figure img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main_brand .b_right .title {
    text-align: center;
    margin: 0 0 24px 0;
  }
  .main_brand .b_right .txt {
    margin: 0 0 48px 0;
  }
  .main_brand .b_right .num span {
    font-size: 14px;
  }
  .main_brand .b_right .num strong {
    font-size: 24px;
    font-weight: 700;
    color: #ed1b23;
  }
}
.main_product {
  position: relative;
}
.main_product::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  z-index: -2;
  background: #f2f2f2;
}
.main_product::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -40px;
  right: 0;
  z-index: -1;
  width: calc((100vw - 1170px) / 2 + 1240px);
  background: #fff;
  border-radius: 0 0 0 24px;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main_product .prod {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 40px 0;
}
.main_product .prod li a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.main_product .prod li a .img_box img {
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_product .prod li a .desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  transition: 0.3s;
  padding: 30px 0;
  background: #f7f8f9;
  -webkit-clip-path: ellipse(100% 100% at 50% 100%);
          clip-path: ellipse(100% 100% at 50% 100%);
}
.main_product .prod li a .desc strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
  transition: 0.3s;
}
.main_product .prod li a .desc span {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  color: #999;
}
.main_product .prod li:hover a .desc {
  padding: 50px 0;
}
.main_product .prod li:hover a .desc strong {
  color: #ed1b23;
}
.main_product .more {
  display: flex;
  justify-content: center;
}
.main_product .more a {
  position: relative;
  display: inline-block;
  font-weight: 500;
  padding: 12px 28px 12px 32px;
  color: #666;
  border: 1px solid #ddd;
  transition: 0.5s;
}
.main_product .more a::after {
  content: "\e145";
  font-family: "material symbols outlined";
  font-size: 16px;
  vertical-align: -3px;
  padding: 0 0 0 8px;
}
.main_product .more a:hover {
  color: #ed1b23;
  border: 1px solid #ed1b23;
}

@media (max-width: 768px) {
  .main_product .prod {
    grid-template-columns: 1fr;
  }
  .main_product .prod li a .img_box img {
    width: 100%;
    height: 100px;
  }
  .main_product .prod li a .desc {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0s;
    padding: 0;
    background: none;
    -webkit-clip-path: none;
            clip-path: none;
    box-shadow: none;
  }
  .main_product .prod li a .desc strong {
    color: #fff;
  }
  .main_product .prod li a .desc span {
    color: #ddd;
  }
  .main_product .prod li a::before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    background: rgba(0, 0, 0, 0.5);
  }
  .main_product .prod li:hover a .desc {
    padding: 0;
  }
  .main_product .prod li:hover a .desc strong {
    color: #fff;
  }
}
.main_customer {
  position: relative;
  z-index: 1;
}
.main_customer .sns_feed {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 24px;
  margin: 0 0 24px 0;
}
.main_customer .sns_feed li {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f2f2f2;
}
.main_customer .sns_feed li a.sns {
  position: relative;
  display: block;
}
.main_customer .sns_feed li a.sns::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s;
}
.main_customer .sns_feed li a.sns::after {
  content: "\e3e0";
  font-family: "material symbols outlined";
  position: absolute;
  top: 8px;
  right: 8px;
  transform: translate(0, -100%);
  z-index: 10;
  font-size: 42px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.main_customer .sns_feed li a.sns:hover::before {
  background: rgba(0, 0, 0, 0.3);
}
.main_customer .sns_feed li a.sns:hover::after {
  transform: translate(0, 0);
}
.main_customer .sns_feed li a.sns figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_customer .sns_feed li.insta {
  padding: 24px 0 0;
  border: none;
}
.main_customer .sns_feed li.insta span {
  display: block;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 56px 0;
}
.main_customer .sns_feed li.insta span strong {
  font-size: 22px;
  font-weight: 700;
  color: #ed1b23;
}
.main_customer .need_help {
  display: flex;
  gap: 24px;
}
.main_customer .need_help > li {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  width: 100%;
  height: 100px;
  background: #6cb1cc;
  border-radius: 8px;
}
.main_customer .need_help > li strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #f7f8f9;
}
.main_customer .need_help > li strong span {
  font-size: 14px;
  font-weight: 400;
  color: #f2f2f2;
}
.main_customer .need_help > li a {
  display: inline-block;
  padding: 10px 10px 8px;
  color: #f7f8f9;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: 0.5s;
}
.main_customer .need_help > li a span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.main_customer .need_help > li:nth-child(2) {
  background: #007fb2;
}
.main_customer .need_help > li:hover a {
  transform: translate(10px, 0);
}

@media (max-width: 768px) {
  .main_customer {
    background: #fff;
  }
  .main_customer::before {
    width: 100%;
  }
  .main_customer::after {
    display: none;
  }
  .main_customer .sns_feed {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .main_customer .need_help {
    flex-direction: column;
    gap: 8px;
  }
  .main_customer .need_help > li {
    padding: 32px 24px;
  }
  .main_customer .need_help > li strong {
    line-height: 24px;
  }
  .main_customer .need_help > li strong span {
    display: block;
  }
}
.footer {
  position: relative;
  padding: 50px 0;
  background: #333;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
}
.footer .foot_customer {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0 0 40px 0;
}
.footer .foot_customer li {
  position: relative;
}
.footer .foot_customer li a {
  display: block;
  color: #f2f2f2;
}
.footer .foot_customer li a.strong {
  color: #6cb1cc;
  font-size: 18px;
  font-weight: 600;
}
.footer .foot_customer li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0, -50%);
  width: 1px;
  height: 12px;
  background: #444;
  opacity: 70%;
}
.footer .foot_customer::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 1px;
  background: #444;
  opacity: 70%;
}
.footer address .foot_addr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 0 0 16px 0;
}
.footer address .foot_addr li {
  position: relative;
  font-weight: 300;
  color: #ddd;
}
.footer address .foot_addr li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translate(0, -50%);
  width: 1px;
  height: 12px;
  background: #444;
  opacity: 70%;
}
.footer address .copy {
  font-size: 14px;
  text-align: center;
  color: #999;
}

@media (max-width: 768px) {
  .footer .foot_customer {
    flex-wrap: wrap;
    margin: 0 0 80px 0;
  }
  .footer .foot_customer li a {
    text-align: center;
  }
  .footer .foot_customer li:not(:first-child)::before {
    display: none;
  }
  .footer .foot_customer::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 1px;
    background: #444;
    opacity: 70%;
  }
  .footer address .foot_addr {
    display: block;
    margin: 0;
    text-align: center;
  }
  .footer address .foot_addr li {
    margin: 0 0 16px 0;
  }
}
.top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.top span {
  display: block;
  width: 64px;
  height: 64px;
  text-align: center;
  font-weight: 700;
  line-height: 64px;
  background: #999;
  color: #f7f8f9;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .top {
    bottom: 0;
    right: 0;
  }
  .top span {
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 0;
  }
}/*# sourceMappingURL=style.css.map */