@charset "UTF-8";
/* s: reset 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: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: rgb(11, 19, 43);
}

input,
button {
  outline: 0;
}

/* e: reset css */
/* s: 스크롤바 커스텀 */
::-webkit-scrollbar {
  width: 6px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  height: 17%;
  background-color: rgba(80, 79, 79, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgba(41, 41, 41, 0.2);
}

/* e: 스크롤바 커스텀 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(../../fonts/Poppins-Thin.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../../fonts/Poppins-Light.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../../fonts/Poppins-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../../fonts/Poppins-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../../fonts/Poppins-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../../fonts/Poppins-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../../fonts/Poppins-ExtraBold.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(../../fonts/Poppins-Black.ttf) format("truetype");
}
body {
  font-size: 16px;
  font-weight: 400;
  color: rgb(11, 19, 43);
  width: 100%;
  font-family: "Poppins", serif;
  line-height: 1.2;
  word-break: break-all;
}
body.bg {
  background-color: #FFF;
}

button {
  display: block;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font-family: "Poppins", serif;
  cursor: pointer;
}
button.btn {
  transition: all 0.3s;
}
button.btn.arr {
  border-radius: 10px;
  height: 37px;
  line-height: 37px;
  padding: 0 46px 0 22px;
  font-size: 14px;
  font-weight: 500;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: right 22px center;
}
button.btn.arr.gray {
  background-color: rgb(75, 69, 70);
  color: #fff;
  background-image: url(../../assets/images/main/icon_arr_w.svg);
}
button.btn.arr.gray:hover {
  background-color: #f52439;
}
button.btn.arr.white {
  padding: 0 46px 0 22px;
  background-color: rgb(255, 255, 255);
  color: rgb(44, 35, 38);
  background-image: url(../../assets/images/main/icon_arr_b_20.svg);
}
button.btn.shadow {
  position: relative;
  width: 320px;
}
button.btn.shadow span {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid rgb(11, 19, 43);
  border-radius: 10px;
  height: 40px;
  line-height: 38px;
  background: #fff;
  position: relative;
  z-index: 10;
  transition: all 120ms;
}
button.btn.shadow::before {
  content: "";
  width: calc(100% - 8px);
  height: 100%;
  border-radius: 10px;
  background: rgb(172, 186, 235);
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  transition: all 120ms;
}
button.btn.shadow::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid rgb(11, 19, 43);
  border-radius: 10px;
  background: rgb(26, 79, 255);
  position: absolute;
  bottom: -8px;
  left: 0;
  box-sizing: border-box;
  transition: all 120ms;
}
button.btn.shadow:hover span {
  transform: translateY(4px);
}
button.btn.shadow:hover::before {
  transform: translate(-50%, -4px);
}
button.btn.shadow:active span {
  transform: translateY(8px);
}
button.btn.shadow:active::before {
  transform: translate(-50%, -8px);
}
button.btn.shadow.blue span {
  background: rgb(61, 104, 254);
  color: #fff;
  font-weight: 600;
}
button.btn.shadow.blue:hover span {
  background: #4d58ff;
}
button.btn.shadow.blue:active span {
  background: #002cbd;
}
button.btn.shadow.red span {
  background: rgb(255, 89, 111);
  color: #fff;
  font-weight: 600;
}
button.btn.shadow.red::before {
  background: rgb(253, 211, 215);
}
button.btn.shadow.red::after {
  background: rgb(216, 11, 31);
}
button.btn.shadow.red:hover span {
  background: #f52439;
}
button.btn.shadow.red:active span {
  background: #d80b1f;
}
button.btn.shadow.green span {
  background: rgb(23, 228, 180);
  font-weight: 600;
}
button.btn.shadow.green::before {
  background: rgb(209, 235, 172);
}
button.btn.shadow.green::after {
  background: rgb(0, 136, 104);
}
button.btn.shadow.green:hover span {
  background: #00daae;
}
button.btn.shadow.green:active span {
  background: #00daae;
}

/* s: header_wr */
.header_wr {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(202, 208, 216);
  z-index: 100;
}
.header_wr header {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.header_wr .logo {
  width: 188px;
  height: 80px;
}
.header_wr .logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_wr .logo img {
  width: 140px;
  height: 40px;
}
.header_wr ul {
  display: flex;
  align-items: center;
}
.header_wr ul li a {
  padding: 0 16px;
  line-height: 80px;
  display: block;
}
.header_wr ul li.shop a {
  color: rgb(255, 89, 111);
}
.header_wr nav {
  margin: 0 auto 0 190px;
  display: flex;
  align-items: center;
  gap: 37px;
}
.header_wr nav ul:first-child {
  position: relative;
}
.header_wr nav ul:first-child::after {
  content: "|";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}
.header_wr .btn_menu {
  display: none;
}
@media (max-width: 1350px) {
  .header_wr nav {
    margin: 0 20px 0 auto;
  }
}
@media (max-width: 1180px) {
  .header_wr nav {
    margin: 0 auto;
  }
}
@media (max-width: 1160px) {
  .header_wr header {
    justify-content: center;
  }
  .header_wr nav,
  .header_wr .my {
    display: none;
  }
  .header_wr .btn_menu {
    display: block;
    width: 64px;
    height: 64px;
    background: url(../../assets/images/main/icon_menu.svg) no-repeat center/contain;
    text-indent: -999999px;
    color: transparent;
    font-size: 0;
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* e: header_wr */
.main_wr {
  padding-top: 80px;
}

/* s:section_01 */
.section_01 .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}
.section_01 .keyvisual_wr {
  width: 100%;
  height: 464px;
  border: 1px solid rgb(11, 19, 43);
  border-radius: 10px;
  background: url(../../assets/images/main/keyvisual_bg.png) no-repeat left center/cover;
  padding-left: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}
.section_01 .keyvisual_wr h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}
.section_01 .keyvisual_wr .btn.shadow {
  width: 315px;
}
.section_01 .notice_wr {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 54px;
  padding: 10px 0;
  margin-bottom: 20px;
}
.section_01 .notice_wr h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  flex-shrink: 0;
}
.section_01 .notice_wr .notice_slide_wr {
  width: calc(100% - 167px);
}
.section_01 .notice_wr .notice_slide_wr .noti_swiper {
  height: 34px;
}
.section_01 .notice_wr .notice_slide_wr .noti_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgb(92, 107, 126);
  line-height: 1.25;
  cursor: pointer;
}
.section_01 .notice_wr .notice_slide_wr .noti_item h4 {
  color: rgb(34, 82, 248);
}
.section_01 .notice_wr .notice_slide_wr .noti_item p {
  font-family: "Poppins";
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 500;
}
.section_01 .page_link_wr {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section_01 .page_link_wr .link_bx {
  border: 1px solid rgb(149, 161, 178);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.section_01 .page_link_wr .link_bx.row {
  flex-direction: row;
  flex: 1;
}
.section_01 .page_link_wr .link_bx.row h3 {
  border-bottom: 0;
  border-right: 1px solid rgb(149, 161, 178);
}
.section_01 .page_link_wr .link_bx h3 {
  padding: 20px;
  background: rgb(248, 248, 249);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  min-height: 128px;
  border-bottom: 1px solid rgb(149, 161, 178);
}
.section_01 .page_link_wr .link_bx ul {
  flex: 1;
}
.section_01 .page_link_wr .link_bx ul li {
  padding: 20px 20px 20px 126px;
  height: 128px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: 96px 96px;
  background-position: left 20px center;
  font-size: 16px;
  line-height: 1.2;
  color: rgb(41, 47, 56);
}
.section_01 .page_link_wr .link_bx ul li.payment {
  background-image: url(../../assets/images/main/buy_payment.png);
  border-bottom: 1px solid rgb(149, 161, 178);
}
.section_01 .page_link_wr .link_bx ul li.purchase {
  background-image: url(../../assets/images/main/buy_purchase.png);
}
.section_01 .page_link_wr .link_bx ul li.warehouse {
  background-image: url(../../assets/images/main/shipping_warehouse.png);
}
.section_01 .page_link_wr .link_bx ul li h4 {
  font-size: 24px;
  font-weight: 600;
  padding-right: 28px;
  background: url(../../assets/images/main/icon_arr.svg) no-repeat right center;
  margin-bottom: 6px;
}
.section_01 .page_link_wr .link_bx ul li h4.tit {
  cursor: pointer;
}
@media (max-width: 900px) {
  .section_01 .page_link_wr {
    flex-direction: column;
  }
  .section_01 .page_link_wr .link_bx {
    width: 100%;
  }
  .section_01 .page_link_wr .link_bx.row {
    flex-direction: column;
  }
  .section_01 .page_link_wr .link_bx.row h3 {
    border-right: 0;
    border-bottom: 1px solid rgb(149, 161, 178);
  }
  .section_01 .page_link_wr .link_bx h3 {
    height: auto;
    min-height: initial;
  }
}
.section_01 .notice_wr,
.section_01 .page_link_wr {
  transition: all 0.5s;
  transform: translateY(20%);
  opacity: 0;
}
.section_01.on .notice_wr,
.section_01.on .page_link_wr {
  transform: translateY(0);
  opacity: 1;
}

/* e:section_01 */
/* s:section_02 */
.section_02 {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f9 100%);
  width: 100%;
}
.section_02 .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
}
.section_02 h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.section_02 .event_slide_wr {
  margin-bottom: 200px;
}
.section_02 .event_item {
  cursor: pointer;
}
.section_02 .event_item .img_bx {
  width: 100%;
  border: 1px solid rgb(149, 161, 178);
  border-radius: 10px;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 20px;
}
.section_02 .event_item .img_bx img {
  width: 100%;
  height: 100%;
}
.section_02 .event_item .txt_bx {
  font-size: 20px;
  line-height: 1.2;
  padding-bottom: 16px;
}
.section_02 .event_item .txt_bx span {
  color: rgb(92, 107, 126);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}
.section_02 .event_slide_wr,
.section_02 h3 {
  transition: all 0.5s;
  transform: translateY(20%);
  opacity: 0;
}
.section_02 h3 {
  transition: all 0.5s 0.5s;
}
.section_02.on .event_slide_wr,
.section_02.on h3 {
  transform: translateY(0);
  opacity: 1;
}

/* e:section_02 */
/* s:section_03 */
.section_03 {
  width: 100%;
  background: #fff;
}
.section_03 .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
}
.section_03 .service_bx {
  display: flex;
  align-items: stretch;
  border: 1px solid rgb(149, 161, 178);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 80px;
}
.section_03 .service_bx:last-child {
  margin-bottom: 0;
}
.section_03 .service_bx .img_bx {
  background: rgb(248, 248, 249);
  border-right: 1px solid rgb(149, 161, 178);
  padding: 40px;
  width: 400px;
}
.section_03 .service_bx .img_bx h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 52px;
  border: 1px solid rgb(149, 161, 178);
  border-radius: 100px;
  text-align: center;
  width: 100%;
  background: #fff;
  margin-bottom: 20px;
}
.section_03 .service_bx .img_bx img {
  width: 100%;
}
.section_03 .service_bx .txt_bx {
  padding: 40px;
}
.section_03 .service_bx .txt_bx h4 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 600px;
}
.section_03 .service_bx .txt_bx h4 .blue {
  color: rgb(34, 82, 248);
}
.section_03 .service_bx .txt_bx h4 .red {
  color: rgb(255, 89, 111);
}
.section_03 .service_bx .txt_bx ul {
  margin-bottom: 102px;
}
.section_03 .service_bx .txt_bx ul li {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 8px;
  color: rgb(41, 47, 56);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section_03 .service_bx .txt_bx ul li::before {
  content: "";
  width: 28px;
  height: 28px;
  background: url(../../assets/images/main/icon_plus.svg) no-repeat center/contain;
  display: block;
}
.section_03 .service_bx .txt_bx ul li:first-child {
  margin-top: 0;
}
@media (max-width: 1000px) {
  .section_03 .service_bx .img_bx h3 {
    font-size: 20px;
  }
}
.section_03 .service_bx {
  transition: all 0.5s1s;
  transform: translateY(20%);
  opacity: 0;
}
.section_03 .service_bx:nth-child(2) {
  transition: all 0.5s 0.5s;
}
.section_03.on .service_bx {
  transform: translateY(0);
  opacity: 1;
}

/* e:section_03 */
/* s:section_04 */
.section_04 {
  width: 100%;
  background: linear-gradient(180deg, #f8f8f9 0%, #ffffff 100%);
}
.section_04 .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 240px;
}
.section_04 .warehouse_wr .title {
  display: flex;
  padding: 12px 0;
  word-break: break-all;
  margin-bottom: 40px;
}
.section_04 .warehouse_wr .title h4 {
  font-size: 28px;
  font-weight: 600;
  color: rgb(0, 176, 135);
  margin-bottom: 10px;
  width: 580px;
}
.section_04 .warehouse_wr .title h3 {
  width: 560px;
  font-size: 48px;
  font-weight: 700;
}
.section_04 .warehouse_wr .title h3 em {
  color: rgb(0, 176, 135);
}
.section_04 .warehouse_wr .title .img_bx {
  width: 300px;
}
.section_04 .warehouse_wr .title .img_bx img {
  width: 100%;
}
.section_04 .warehouse_wr .warehouse_item {
  padding: 25px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid rgb(202, 208, 216);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}
.section_04 .warehouse_wr .warehouse_item img {
  width: 160px;
  height: 160px;
}
.section_04 .warehouse_wr .warehouse_item p {
  font-weight: 600;
  text-align: center;
}
.section_04 .title,
.section_04 .warehouse_slide,
.section_04 .btn {
  transition: all 0.5s;
  transform: translateY(20%);
  opacity: 0;
}
.section_04 .warehouse_slide {
  transition: all 0.5s 0.5s;
}
.section_04 .btn {
  transition: all 0.5s 1s;
}
.section_04.on .title,
.section_04.on .warehouse_slide,
.section_04.on .btn {
  transform: translateY(0);
  opacity: 1;
}

/* e:section_04 */
/* s:section_05 */
.section_05 {
  width: 100%;
  background: #ffdbda;
}
.section_05 .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
}
.section_05 .offline_service_wr {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.section_05 .offline_service_wr > div {
  flex: 1;
  height: 580px;
}
.section_05 .offline_service_wr .txt_bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.section_05 .offline_service_wr .txt_bx h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4px;
}
.section_05 .offline_service_wr .txt_bx h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
.section_05 .offline_service_wr .txt_bx .tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgb(92, 107, 126);
  font-size: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section_05 .offline_service_wr .img_bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section_05 .offline_service_wr .img_bx .mo {
  display: none;
}
.section_05 .offline_service_wr {
  transition: all 0.5s;
  transform: translateY(20%);
  opacity: 0;
}
.section_05.on .offline_service_wr {
  transform: translateY(0);
  opacity: 1;
}

/* e:section_05 */
/* s:section_06 */
.section_06 {
  width: 100%;
  background: #fff;
}
.section_06 .inner {
  max-width: 1200px;
  padding: 120px 20px;
  margin: 0 auto;
}
.section_06 .why_wr h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
.section_06 .why_bx ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 97px;
}
.section_06 .why_bx li {
  width: 160px;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
}
.section_06 .why_bx li img {
  width: 100%;
}
.section_06 h3,
.section_06 .why_bx {
  transition: all 0.5s;
  transform: translateY(20%);
  opacity: 0;
}
.section_06 .why_bx {
  transition: all 0.5s 0.5s;
}
.section_06.on h3,
.section_06.on .why_bx {
  transform: translateY(0);
  opacity: 1;
}

/* e:section_06 */
/* s:section_07 */
.section_07 {
  width: 100%;
  background: rgb(255, 225, 143);
}
.section_07 .inner {
  width: 100%;
  max-width: 1200px;
  padding: 120px 20px;
  margin: 0 auto;
}
.section_07 .events_wr {
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.section_07 .events_wr .img_bx {
  width: 360px;
}
.section_07 .events_wr .img_bx img {
  width: 100%;
}
.section_07 .events_wr .txt_bx {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.section_07 .events_wr .txt_bx h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.section_07 .events_wr .txt_bx h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}
.section_07 .img_bx,
.section_07 .txt_bx {
  transition: all 0.5s;
  transform: translateY(20%);
  opacity: 0;
}
.section_07 .txt_bx {
  transition: all 0.5s 0.5s;
}
.section_07.on .img_bx,
.section_07.on .txt_bx {
  transform: translateY(0);
  opacity: 1;
}

/* e:section_07 */
/* s:section_08 */
.section_08 {
  width: 100%;
  background: rgb(248, 248, 249);
}
.section_08 .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
}
.section_08 .reviews_wr h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
.section_08 .reviews_slide_wr {
  position: relative;
}
.section_08 .reviews_slide_wr .swiper-button-next,
.section_08 .reviews_slide_wr .swiper-button-prev {
  width: 32px;
  height: 32px;
  background: url(../../assets/images/main/slide_next.svg) no-repeat center/contain;
  right: -37px;
}
.section_08 .reviews_slide_wr .swiper-button-next::after,
.section_08 .reviews_slide_wr .swiper-button-prev::after {
  display: none;
}
.section_08 .reviews_slide_wr .swiper-button-prev {
  transform: rotate(180deg);
  right: inherit;
  left: -37px;
}
.section_08 .reviews_slide {
  padding: 12px 0;
}
.section_08 .reviews_item {
  border: 1px solid rgb(149, 161, 178);
  border-radius: 10px;
  padding: 20px;
  background: #fff;
}
.section_08 .reviews_item .user {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: rgb(34, 82, 248);
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.section_08 .reviews_item .rate {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section_08 .reviews_item .rate ul {
  width: 100px;
  flex-shrink: 0;
  display: flex;
}
.section_08 .reviews_item .rate ul li {
  width: 20px;
  height: 20px;
  background: url(../../assets/images/main/icon_star.svg) no-repeat center/contain;
}
.section_08 .reviews_item .rate p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(34, 82, 248);
}
.section_08 .reviews_item .cont {
  font-size: 14px;
  font-weight: 300;
  color: rgb(41, 47, 56);
  line-height: 1.5;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  min-height: 84px;
}
.section_08 .reviews_item .date {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: rgb(122, 138, 159);
}
@media (max-width: 1240px) {
  .section_08 .reviews_slide_wr {
    padding: 0 37px;
  }
  .section_08 .reviews_slide_wr .swiper-button-next {
    right: 0;
  }
  .section_08 .reviews_slide_wr .swiper-button-prev {
    left: 0;
  }
}
.section_08 h3,
.section_08 .reviews_slide_wr {
  transition: all 0.5s;
  transform: translateY(20%);
  opacity: 0;
}
.section_08 .reviews_slide_wr {
  transition: all 0.5s 0.5s;
}
.section_08.on h3,
.section_08.on .reviews_slide_wr {
  transform: translateY(0);
  opacity: 1;
}

/* e:section_08 */
/* s: section_09 */
.section_09 {
  width: 100%;
  background: linear-gradient(90deg, #bcffd4 0%, #f3f6db 100%);
}
.section_09 .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
}
.section_09 .sign_up_wr {
  display: flex;
  padding: 40px;
  gap: 40px;
}
.section_09 .sign_up_wr .txt_bx h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.section_09 .sign_up_wr .txt_bx .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 24px;
  margin-bottom: 10px;
}
.section_09 .sign_up_wr .txt_bx .btn {
  margin-top: 40px;
}
.section_09 .sign_up_wr .img_bx {
  width: 420px;
}
.section_09 .sign_up_wr .img_bx img {
  width: 100%;
}
@media (max-width: 1100px) {
  .section_09 .sign_up_wr {
    align-items: center;
  }
}
.section_09 .img_bx,
.section_09 .txt_bx {
  transition: all 0.5s;
  transform: translateY(20%);
  opacity: 0;
}
.section_09 .img_bx {
  transition: all 0.5s 0.5s;
}
.section_09.on .img_bx,
.section_09.on .txt_bx {
  transform: translateY(0);
  opacity: 1;
}

/* e: section_09 */
@media (max-width: 768px) {
  button.btn.arr {
    border-radius: 2.7778vw;
    height: 7.7778vw;
    line-height: 7.7778vw;
    padding: 0 11.6667vw 0 5vw;
    font-size: 3.3333vw;
    background-size: 5.5556vw;
    background-position: right 5vw center;
  }
  button.btn.arr.white {
    padding: 0 19.4444vw 0 12.5vw;
    background-position: right 12.5vw center;
  }
  button.btn.shadow {
    width: 100%;
  }
  button.btn.shadow span {
    font-weight: 600;
    font-size: 3.3333vw;
    border-radius: 2.7778vw;
    height: 8.8889vw;
    line-height: 8.3333vw;
  }
  button.btn.shadow::before {
    content: "";
    width: calc(100% - 2.2222vw);
    bottom: -4.4444vw;
  }
  button.btn.shadow::after {
    border-radius: 2.7778vw;
    bottom: -2.2222vw;
  }
  button.btn.shadow:hover span {
    transform: translateY(2.2222vw);
  }
  button.btn.shadow:hover::before {
    transform: translate(-50%, -2.2222vw);
  }
  button.btn.shadow:active span {
    transform: translateY(2.2222vw);
  }
  button.btn.shadow:active::before {
    transform: translate(-50%, -2.2222vw);
  }
  /* s: header_wr */
  .header_wr {
    height: 11.1111vw;
    background: rgb(250, 250, 250);
    border-bottom: 0;
  }
  .header_wr header {
    height: 100%;
  }
  .header_wr .logo {
    width: 47.7778vw;
    height: 5.5556vw;
  }
  .header_wr .logo img {
    width: 100%;
    height: 100%;
  }
  .header_wr .btn_menu {
    width: 8.8889vw;
    height: 8.8889vw;
    right: 2.7778vw;
  }
  /* e: header_wr */
  .main_wr {
    padding-top: 11.1111vw;
  }
  /* s:section_01 */
  .section_01 .inner {
    padding: 5.5556vw 5.5556vw 11.1111vw;
  }
  .section_01 .keyvisual_wr {
    width: 100%;
    height: 133.3333vw;
    border: 0.2778vw solid rgb(149, 161, 178);
    border-radius: 2.7778vw;
    background: url(../../assets/images/main/keyvisual_bg_mo.png) no-repeat left center/cover;
    padding-left: 26.6667vw;
    padding: 7.7778vw 0 0 0;
    margin-bottom: 11.1111vw;
    justify-content: flex-start;
    align-items: center;
  }
  .section_01 .keyvisual_wr h2 {
    font-size: 7.7778vw;
    text-align: center;
    line-height: 1.22;
    margin-bottom: 7.7778vw;
  }
  .section_01 .keyvisual_wr .btn.shadow {
    width: 50.8333vw;
  }
  .section_01 .notice_wr {
    height: 13.3333vw;
    padding: 0;
    margin-bottom: 11.1111vw;
  }
  .section_01 .notice_wr h3 {
    display: none;
  }
  .section_01 .notice_wr .notice_slide_wr {
    width: 100%;
  }
  .section_01 .notice_wr .notice_slide_wr .noti_swiper {
    height: 13.3333vw;
  }
  .section_01 .notice_wr .notice_slide_wr .noti_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6667vw;
    font-size: 3.3333vw;
    height: 13.3333vw;
    position: relative;
  }
  .section_01 .notice_wr .notice_slide_wr .noti_item p {
    flex: initial;
    width: 100%;
    font-weight: 600;
    white-space: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .section_01 .notice_wr .notice_slide_wr .noti_item .date {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2.7778vw;
  }
  .section_01 .page_link_wr {
    gap: 11.1111vw;
  }
  .section_01 .page_link_wr .link_bx {
    border: 1px solid rgb(149, 161, 178);
    border-radius: 2.7778vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .section_01 .page_link_wr .link_bx h3 {
    padding: 3.3333vw 5.5556vw;
    font-size: 5.5556vw;
    font-weight: 600;
  }
  .section_01 .page_link_wr .link_bx ul {
    flex: 1;
  }
  .section_01 .page_link_wr .link_bx ul li {
    padding: 4.4444vw 3.8889vw 4.4444vw 26vw;
    height: 28.8889vw;
    background-size: 20vw 20vw;
    background-position: left 3.8889vw center;
    font-size: 3.3333vw;
    color: rgb(92, 107, 126);
  }
  .section_01 .page_link_wr .link_bx ul li h4 {
    font-size: 4.4444vw;
    padding-right: 5.5556vw;
    background-size: 5.5556vw;
    margin-bottom: 1.6667vw;
    color: rgb(11, 19, 43);
  }
  /* e:section_01 */
  /* s:section_02 */
  .section_02 {
    word-break: keep-all;
  }
  .section_02 .inner {
    padding: 11.1111vw 0 33.3333vw;
  }
  .section_02 h3 {
    font-size: 5.5556vw;
    padding: 0 5.5556vw;
  }
  .section_02 .event_slide_wr {
    margin-bottom: 55.5556vw;
  }
  .section_02 .event_swiper {
    padding: 0 5.5556vw;
  }
  .section_02 .event_item {
    width: 33.3333vw;
    margin-left: 2.7778vw;
  }
  .section_02 .event_item:first-child {
    margin-left: 0;
  }
  .section_02 .event_item .img_bx {
    margin-bottom: 2.7778vw;
  }
  .section_02 .event_item .txt_bx {
    font-size: 3.3333vw;
    padding-bottom: 0;
    font-weight: 400;
  }
  .section_02 .event_item .txt_bx span {
    font-size: 3.3333vw;
    margin-bottom: 1.6667vw;
  }
  /* e:section_02 */
  /* s:section_03 */
  .section_03 {
    word-break: keep-all;
  }
  .section_03 .inner {
    padding: 22.2222vw 5.5556vw;
  }
  .section_03 .service_bx {
    flex-direction: column;
    border-radius: 2.7778vw;
    margin-bottom: 17.7778vw;
  }
  .section_03 .service_bx .img_bx {
    border: 0;
    border-bottom: 1px solid rgb(149, 161, 178);
    padding: 5.5556vw;
    width: 100%;
  }
  .section_03 .service_bx .img_bx h3 {
    font-size: 5.5556vw;
    line-height: 11.6667vw;
    margin-bottom: 5.5556vw;
  }
  .section_03 .service_bx .img_bx img {
    width: 33.3333vw;
    display: block;
    margin: 0 auto;
  }
  .section_03 .service_bx .txt_bx {
    padding: 5.5556vw 5.5556vw 16.6667vw;
  }
  .section_03 .service_bx .txt_bx h4 {
    font-size: 5.5556vw;
    font-weight: 600;
    margin-bottom: 5.5556vw;
    max-width: initial;
    text-align: center;
  }
  .section_03 .service_bx .txt_bx ul {
    margin-bottom: 11.1111vw;
  }
  .section_03 .service_bx .txt_bx ul li {
    font-size: 3.3333vw;
    margin-top: 2.2222vw;
    gap: 1.1111vw;
    justify-content: center;
    color: rgb(92, 107, 126);
  }
  .section_03 .service_bx .txt_bx ul li::before {
    width: 4.4444vw;
    height: 4.4444vw;
  }
  /* e:section_03 */
  /* s:section_04 */
  .section_04 .inner {
    padding: 22.2222vw 0;
  }
  .section_04 .warehouse_wr .title {
    flex-direction: column;
    align-items: center;
    word-break: keep-all;
    text-align: center;
    padding: 0 5.5556vw;
    margin-bottom: 11.1111vw;
  }
  .section_04 .warehouse_wr .title h4 {
    font-size: 5.5556vw;
    margin-bottom: 2.7778vw;
    width: 100%;
  }
  .section_04 .warehouse_wr .title h3 {
    width: 100%;
    font-size: 5.5556vw;
    font-weight: 600;
    margin-bottom: 5.5556vw;
  }
  .section_04 .warehouse_wr .title h3 br {
    display: none;
  }
  .section_04 .warehouse_wr .title .img_bx {
    width: 55.5556vw;
  }
  .section_04 .warehouse_wr .warehouse_slide {
    width: 100%;
    padding: 0 5.5556vw;
  }
  .section_04 .warehouse_wr .warehouse_item {
    width: 33.3333vw;
    margin-left: 2.7778vw;
    padding: 2.2222vw 0;
    gap: 2.7778vw;
    border-radius: 2.7778vw;
    margin-bottom: 11.1111vw;
  }
  .section_04 .warehouse_wr .warehouse_item:first-child {
    margin-left: 0;
  }
  .section_04 .warehouse_wr .warehouse_item img {
    width: 22.2222vw;
    height: 22.2222vw;
  }
  .section_04 .warehouse_wr .warehouse_item p {
    font-size: 3.3333vw;
  }
  .section_04 .warehouse_wr button.btn.shadow {
    width: calc(100% - 11.1111vw);
    margin: 0 auto;
  }
  /* e:section_04 */
  /* s:section_05 */
  .section_05 .inner {
    padding: 22.2222vw 5.5556vw;
  }
  .section_05 .offline_service_wr {
    flex-direction: column-reverse;
    border-radius: 2.7778vw;
  }
  .section_05 .offline_service_wr > div {
    flex: initial;
    width: 100%;
    height: auto;
  }
  .section_05 .offline_service_wr .txt_bx {
    align-items: flex-start;
    padding: 5.5556vw;
  }
  .section_05 .offline_service_wr .txt_bx h4 {
    font-size: 3.8889vw;
    margin-bottom: 1.1111vw;
  }
  .section_05 .offline_service_wr .txt_bx h3 {
    font-size: 5.5556vw;
    margin-bottom: 2.7778vw;
  }
  .section_05 .offline_service_wr .txt_bx .tags {
    gap: 5.5556vw;
    font-size: 3.3333vw;
    margin-bottom: 7.7778vw;
  }
  .section_05 .offline_service_wr .img_bx {
    width: 100%;
    height: 55.5556vw;
  }
  .section_05 .offline_service_wr .img_bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .section_05 .offline_service_wr .img_bx .pc {
    display: none;
  }
  .section_05 .offline_service_wr .img_bx .mo {
    display: block;
  }
  /* e:section_05 */
  /* s:section_06 */
  .section_06 {
    word-break: keep-all;
  }
  .section_06 .inner {
    padding: 11.1111vw 5.5556vw;
  }
  .section_06 .why_wr h3 {
    font-size: 5.5556vw;
    margin-bottom: 5.5556vw;
    font-weight: 600;
  }
  .section_06 .why_bx ul {
    flex-wrap: wrap;
    gap: 5.5556vw;
  }
  .section_06 .why_bx li {
    width: calc(50% - 2.7778vw);
    font-size: 3.8889vw;
    font-weight: 600;
  }
  .section_06 .why_bx li img {
    width: 22.2222vw;
    display: block;
    margin: 0 auto;
  }
  /* e:section_06 */
  /* s:section_07 */
  .section_07 {
    word-break: keep-all;
  }
  .section_07 .inner {
    padding: 11.1111vw 5.5556vw;
  }
  .section_07 .events_wr {
    padding: 0;
    gap: 11.1111vw;
    flex-direction: column;
  }
  .section_07 .events_wr .img_bx {
    width: 44.4444vw;
  }
  .section_07 .events_wr .img_bx img {
    width: 100%;
  }
  .section_07 .events_wr .txt_bx {
    align-items: center;
    justify-content: flex-start;
  }
  .section_07 .events_wr .txt_bx h3 {
    font-size: 5.5556vw;
    font-weight: 600;
    margin-bottom: 205.5556vwpx;
  }
  .section_07 .events_wr .txt_bx h5 {
    font-size: 3.8889vw;
    font-weight: 400;
    margin-bottom: 11.1111vw;
    text-align: center;
  }
  .section_07 .events_wr .btn {
    width: 55.5556vw;
  }
  /* e:section_07 */
  /* s:section_08 */
  .section_08 {
    word-break: keep-all;
  }
  .section_08 .inner {
    padding: 33.3333vw 0;
  }
  .section_08 .reviews_wr h3 {
    font-size: 5.5556vw;
    margin-bottom: 5.5556vw;
    font-weight: 600;
  }
  .section_08 .reviews_slide_wr {
    padding: 0;
  }
  .section_08 .reviews_slide_wr .swiper-button-next,
  .section_08 .reviews_slide_wr .swiper-button-prev {
    width: 8.8889vw;
    height: 8.8889vw;
    right: 38.3333vw;
    top: initial;
    bottom: 0;
  }
  .section_08 .reviews_slide_wr .swiper-button-next::after,
  .section_08 .reviews_slide_wr .swiper-button-prev::after {
    display: none;
  }
  .section_08 .reviews_slide_wr .swiper-button-prev {
    transform: rotate(180deg);
    right: inherit;
    left: 38.3333vw;
  }
  .section_08 .reviews_slide {
    padding: 0 5.5556vw 11.6667vw;
  }
  .section_08 .reviews_item {
    border-radius: 2.7778vw;
    padding: 5.5556vw;
    margin-left: 2.7778vw;
    width: 78.3333vw;
  }
  .section_08 .reviews_item:first-child {
    margin-left: 0;
  }
  .section_08 .reviews_item .user {
    font-size: 4.4444vw;
    margin-bottom: 4.4444vw;
  }
  .section_08 .reviews_item .rate {
    gap: 2.7778vw;
    margin-bottom: 5.5556vw;
  }
  .section_08 .reviews_item .rate ul {
    width: 27.7778vw;
    flex-shrink: 0;
    display: flex;
  }
  .section_08 .reviews_item .rate ul li {
    width: 5.5556vw;
    height: 5.5556vw;
  }
  .section_08 .reviews_item .rate p {
    font-size: 3.8889vw;
  }
  .section_08 .reviews_item .cont {
    font-size: 3.3333vw;
    margin-bottom: 6.6667vw;
  }
  .section_08 .reviews_item .date {
    font-size: 3.3333vw;
  }
  /* e:section_08 */
  /* s: section_09 */
  .section_09 {
    word-break: keep-all;
  }
  .section_09 .inner {
    padding: 22.2222vw 5.5556vw;
  }
  .section_09 .sign_up_wr {
    flex-direction: column-reverse;
    padding: 0;
    gap: 5.5556vw;
  }
  .section_09 .sign_up_wr .txt_bx h3 {
    font-weight: 600;
    font-size: 5.5556vw;
    margin-bottom: 5.5556vw;
    text-align: center;
  }
  .section_09 .sign_up_wr .txt_bx .tags {
    gap: 2.7778vw 5.5556vw;
    font-size: 3.8889vw;
    margin-bottom: 2.7778vw;
    justify-content: center;
  }
  .section_09 .sign_up_wr .txt_bx .btn {
    margin-top: 11.1111vw;
  }
  .section_09 .sign_up_wr .img_bx {
    width: 55.5556vw;
  }
  /* e: section_09 */
}
.main-popup {
  padding: 0;
}
.main-popup .main-popup-img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.main-popup .main-popup-btn-container {
  display: flex;
  gap: 8px;
  padding: 16px 16px 28px 16px;
  justify-content: center;
  align-items: center;
}
.main-popup .main-popup-close-img {
  position: fixed;
  cursor: pointer;
  left: 95%;
  top: -5%;
}
@media (max-width: 768px) {
  .main-popup .main-popup-close-img {
    width: 5%;
  }
}

/*# sourceMappingURL=main-v2.css.map */
