@charset "UTF-8";
/* ====== RESET ====== */
html,
body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  height: 100%;
  line-height: 1;
  font-family: inherit;
}

main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
blockquote,
fieldset,
form,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.5;
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

textarea {
  resize: none;
  display: block;
  line-height: 1.5;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

/* ========== 工具樣式 ========== */
/* 清除浮動用法 */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* #container 版型基本設定 */
#container {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* ====== RESET end ====== */
.block-btn {
  font-size: 1rem;
  width: 120px;
  height: 45px;
  cursor: pointer;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .block-btn {
    width: 100px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .block-btn {
    font-size: 0.875rem;
    width: 85px;
    height: 40px;
  }
}

.holkee-header-wrap {
  width: 100%;
  min-width: 320px;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-mid-cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 60px;
  margin-right: 15px;
}
.logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header-menu {
  display: flex;
  gap: 8px;
}
.header-menu li {
  font-size: 1rem;
}
.header-menu li a {
  width: 100%;
  height: 100%;
  padding: 10px 20px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .header-menu li a {
    padding: 10px 15px;
  }
}
@media (max-width: 768px) {
  .header-menu {
    display: none;
  }
}

.header-tools {
  display: flex;
}
.header-tools .dropdown-menu {
  position: relative;
}
.header-tools .header-tools-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.header-tools .shopping-cart {
  position: relative;
}
.header-tools .shopping-cart span {
  background-color: #f65339;
  color: #fff;
  position: absolute;
  top: 2px;
  left: 22px;
  font-size: 0.688rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 3px 6px;
  border-radius: 10px;
}
.header-tools .dropdown-list {
  width: 100px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
}
.header-tools .dropdown-list.active {
  opacity: 1;
  visibility: visible;
}
.header-tools .dropdown-list li {
  cursor: pointer;
  text-align: center;
}
.header-tools .dropdown-list li a {
  display: block;
  padding: 15px;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .header-tools {
    margin-left: auto;
  }
}

.header-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  background: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .header-menu-toggle {
    display: block;
  }
}

.pushy ul {
  margin-top: 20px;
}

.pushy-link a {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 1.125rem;
  padding: 20px;
  gap: 1vw;
}
@media (max-width: 768px) {
  .pushy-link a {
    padding: 20px;
  }
}
.pushy-link a::after {
  content: "";
  width: 100%;
  height: 2px;
}

.main-block-wrapper,
.video-wrapper {
  gap: 30px;
  display: flex;
  flex-direction: column;
  padding: 0 32px 60px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .main-block-wrapper,
  .video-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-block-wrapper,
  .video-wrapper {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .main-block-wrapper,
  .video-wrapper {
    padding: 0 24px 48px;
  }
}
@media (max-width: 768px) {
  .main-block-wrapper,
  .video-wrapper {
    padding: 0 24px 48px;
  }
}

.main-title {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
}
.main-title h2 {
  font-weight: 700;
  font-size: 1.625rem;
  padding: 30px 0;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .main-title h2 {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .main-title h2 {
    font-size: 1.5rem;
  }
}

.main-grid-block {
  width: 1200px;
  height: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin: 0 auto;
  row-gap: 100px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  min-height: 200px;
  grid-auto-rows: auto;
  margin-bottom: 100px;
  margin-top: 30px;
}
@media (max-width: 1439px) {
  .main-grid-block {
    width: calc(100% - 60px);
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .main-grid-block {
    width: calc(100% - 50px);
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .main-grid-block {
    row-gap: 50px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-grid-block {
    row-gap: 50px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.social-embed-grid {
  width: 1200px;
  height: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin: 0 auto;
  gap: 30px;
  grid-auto-rows: auto;
}
@media (max-width: 1439px) {
  .social-embed-grid {
    width: calc(100% - 60px);
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .social-embed-grid {
    width: calc(100% - 50px);
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .social-embed-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .social-embed-grid {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .social-embed-grid {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .social-embed-grid {
    width: 100%;
  }
}

.item-grid-block {
  width: 1200px;
  height: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin: 0 auto;
  gap: 30px;
  max-width: 1200px;
}
@media (max-width: 1439px) {
  .item-grid-block {
    width: calc(100% - 60px);
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-grid-block {
    width: calc(100% - 50px);
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-grid-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-grid-block {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-grid-block {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .item-grid-block {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .item-grid-block {
    display: flex;
    flex-direction: column;
  }
}

.card-stack-lg-longer {
  grid-row: span 3;
  grid-column: span 12;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .card-stack-lg-longer {
    width: 100%;
    grid-column: span 12;
  }
}
.card-stack-lg-longer .card-img {
  height: 600px;
  overflow: hidden;
}
.card-stack-lg-longer .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-stack-lg-longer .card-content {
  margin: 30px;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-stack-lg-longer .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-stack-lg-longer .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-stack-lg-longer {
    min-height: 500px;
  }
  .card-stack-lg-longer .card-img {
    width: 100%;
    height: 255px;
  }
}

.card-stack-rev-lg-longer {
  grid-row: span 3;
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .card-stack-rev-lg-longer {
    width: 100%;
    grid-column: span 12;
  }
}
.card-stack-rev-lg-longer .card-content {
  margin: 30px;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-stack-rev-lg-longer .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-stack-rev-lg-longer .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
.card-stack-rev-lg-longer .card-img {
  height: 600px;
  overflow: hidden;
}
.card-stack-rev-lg-longer .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .card-stack-rev-lg-longer {
    min-height: 500px;
  }
  .card-stack-rev-lg-longer .card-img {
    width: 100%;
    height: 255px;
  }
}

.card-stack-lg-long {
  grid-row: span 2;
  grid-column: span 12;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .card-stack-lg-long {
    width: 100%;
    grid-column: span 12;
  }
}
.card-stack-lg-long .card-img {
  height: 500px;
  overflow: hidden;
}
.card-stack-lg-long .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-stack-lg-long .card-content {
  margin: 30px;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-stack-lg-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-stack-lg-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-stack-lg-long {
    min-height: 500px;
  }
  .card-stack-lg-long .card-img {
    width: 100%;
    height: 255px;
  }
}

.card-stack-rev-lg-long {
  grid-row: span 2;
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .card-stack-rev-lg-long {
    width: 100%;
    grid-column: span 12;
  }
}
.card-stack-rev-lg-long .card-content {
  margin: 30px;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-stack-rev-lg-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-stack-rev-lg-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
.card-stack-rev-lg-long .card-img {
  height: 600px;
  overflow: hidden;
}
.card-stack-rev-lg-long .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .card-stack-rev-lg-long {
    min-height: 500px;
  }
  .card-stack-rev-lg-long .card-img {
    width: 100%;
    height: 255px;
  }
}

.card-lg-long,
.card-rev-lg-long {
  grid-row: span 2;
  grid-column: span 12;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .card-lg-long,
  .card-rev-lg-long {
    width: 100%;
    grid-column: span 12;
  }
}
.card-lg-long .card-img,
.card-rev-lg-long .card-img {
  overflow: hidden;
  width: 50%;
}
.card-lg-long .card-img img,
.card-rev-lg-long .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-lg-long .card-content,
.card-rev-lg-long .card-content {
  margin: 30px;
  font-size: 1rem;
  overflow-y: overlay;
  width: 50%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-lg-long .card-content,
  .card-rev-lg-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-lg-long .card-content,
  .card-rev-lg-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-lg-long .card-content,
  .card-rev-lg-long .card-content {
    overflow-y: auto;
  }
  .card-lg-long .card-content::-webkit-scrollbar-button,
  .card-rev-lg-long .card-content::-webkit-scrollbar-button {
    display: none;
  }
  .card-lg-long .card-content::-webkit-scrollbar-track-piece,
  .card-rev-lg-long .card-content::-webkit-scrollbar-track-piece {
    background: transparent;
  }
  .card-lg-long .card-content::-webkit-scrollbar-thumb,
  .card-rev-lg-long .card-content::-webkit-scrollbar-thumb {
    -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
    transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
    border-radius: 4px;
    background-color: transparent;
  }
  .card-lg-long .card-content:hover::-webkit-scrollbar-thumb,
  .card-rev-lg-long .card-content:hover::-webkit-scrollbar-thumb {
    background-color: #ebebeb;
  }
}
@media (max-width: 1023px) and (min-width: 769px) and (max-width: 768px) {
  .card-lg-long .card-content,
  .card-rev-lg-long .card-content {
    max-height: none;
    overflow-y: visible;
  }
}
@media (max-width: 768px) {
  .card-lg-long,
  .card-rev-lg-long {
    min-height: 500px;
    flex-direction: column;
  }
  .card-lg-long .card-img,
  .card-rev-lg-long .card-img {
    width: 100%;
    height: 255px;
  }
  .card-lg-long .card-content,
  .card-rev-lg-long .card-content {
    width: auto;
  }
}

.card-bgtext-lg-long {
  grid-row: span 2;
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .card-bgtext-lg-long {
    width: 100%;
    grid-column: span 12;
  }
}
.card-bgtext-lg-long .card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-bgtext-lg-long .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}
.card-bgtext-lg-long .card-content {
  z-index: 2;
  margin: 30px;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-lg-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-lg-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-lg-long {
    min-height: 500px;
  }
  .card-bgtext-lg-long .card-img img {
    opacity: 0.1;
  }
}

.card-lg,
.card-rev-lg {
  grid-row: span 1;
  grid-column: span 12;
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .card-lg,
  .card-rev-lg {
    width: 100%;
    grid-column: span 12;
  }
}
.card-lg .card-img,
.card-rev-lg .card-img {
  overflow: hidden;
  width: 40%;
}
.card-lg .card-img img,
.card-rev-lg .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-lg .card-content,
.card-rev-lg .card-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px;
  font-size: 1rem;
  width: 60%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-lg .card-content,
  .card-rev-lg .card-content {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .card-lg .card-content,
  .card-rev-lg .card-content {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-lg .card-content,
  .card-rev-lg .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-lg .card-content,
  .card-rev-lg .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
.card-lg .card-content h3,
.card-rev-lg .card-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-lg .card-content h3,
  .card-rev-lg .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-lg .card-content h3,
  .card-rev-lg .card-content h3 {
    font-size: 1rem;
  }
}
.card-lg .card-content p:last-child,
.card-rev-lg .card-content p:last-child {
  overflow-y: auto;
}
.card-lg .card-content p:last-child::-webkit-scrollbar-button,
.card-rev-lg .card-content p:last-child::-webkit-scrollbar-button {
  display: none;
}
.card-lg .card-content p:last-child::-webkit-scrollbar-track-piece,
.card-rev-lg .card-content p:last-child::-webkit-scrollbar-track-piece {
  background: transparent;
}
.card-lg .card-content p:last-child::-webkit-scrollbar-thumb,
.card-rev-lg .card-content p:last-child::-webkit-scrollbar-thumb {
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
  transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
  border-radius: 4px;
  background-color: transparent;
}
.card-lg .card-content p:last-child:hover::-webkit-scrollbar-thumb,
.card-rev-lg .card-content p:last-child:hover::-webkit-scrollbar-thumb {
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .card-lg .card-content p:last-child,
  .card-rev-lg .card-content p:last-child {
    max-height: none;
    overflow-y: visible;
  }
}
@media (max-width: 768px) {
  .card-lg,
  .card-rev-lg {
    min-height: 500px;
    flex-direction: column;
  }
  .card-lg .card-img,
  .card-rev-lg .card-img {
    width: 100%;
    height: 255px;
  }
  .card-lg .card-content,
  .card-rev-lg .card-content {
    width: auto;
  }
}

.card-bgtext-lg {
  grid-row: span 1;
  grid-column: span 12;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .card-bgtext-lg {
    width: 100%;
    grid-column: span 12;
  }
}
.card-bgtext-lg .card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-bgtext-lg .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}
.card-bgtext-lg .card-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px;
  font-size: 1rem;
  z-index: 2;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-lg .card-content {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .card-bgtext-lg .card-content {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-lg .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-lg .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
.card-bgtext-lg .card-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-lg .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-lg .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-lg {
    min-height: 500px;
  }
  .card-bgtext-lg .card-img img {
    opacity: 0.1;
  }
}

.card-base,
.card-rev-base {
  grid-row: span 1;
  grid-column: span 8;
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .card-base,
  .card-rev-base {
    grid-column: span 12;
  }
}
.card-base .card-img,
.card-rev-base .card-img {
  overflow: hidden;
  width: 50%;
}
.card-base .card-img img,
.card-rev-base .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-base .card-content,
.card-rev-base .card-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px;
  font-size: 1rem;
  width: 50%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-base .card-content,
  .card-rev-base .card-content {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .card-base .card-content,
  .card-rev-base .card-content {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-base .card-content,
  .card-rev-base .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-base .card-content,
  .card-rev-base .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
.card-base .card-content h3,
.card-rev-base .card-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-base .card-content h3,
  .card-rev-base .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-base .card-content h3,
  .card-rev-base .card-content h3 {
    font-size: 1rem;
  }
}
.card-base .card-content p,
.card-rev-base .card-content p {
  overflow-y: auto;
}
.card-base .card-content p::-webkit-scrollbar-button,
.card-rev-base .card-content p::-webkit-scrollbar-button {
  display: none;
}
.card-base .card-content p::-webkit-scrollbar-track-piece,
.card-rev-base .card-content p::-webkit-scrollbar-track-piece {
  background: transparent;
}
.card-base .card-content p::-webkit-scrollbar-thumb,
.card-rev-base .card-content p::-webkit-scrollbar-thumb {
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
  transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
  border-radius: 4px;
  background-color: transparent;
}
.card-base .card-content p:hover::-webkit-scrollbar-thumb,
.card-rev-base .card-content p:hover::-webkit-scrollbar-thumb {
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .card-base .card-content p,
  .card-rev-base .card-content p {
    max-height: none;
    overflow-y: visible;
  }
}
@media (max-width: 768px) {
  .card-base,
  .card-rev-base {
    min-height: 500px;
    flex-direction: column;
  }
  .card-base .card-img,
  .card-rev-base .card-img {
    width: 100%;
    height: 255px;
  }
  .card-base .card-content,
  .card-rev-base .card-content {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.card-bgtext-base {
  grid-row: span 1;
  grid-column: span 8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .card-bgtext-base {
    grid-column: span 12;
  }
}
.card-bgtext-base .card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-bgtext-base .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}
.card-bgtext-base .card-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px;
  font-size: 1rem;
  z-index: 2;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-base .card-content {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .card-bgtext-base .card-content {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-base .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-base .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
.card-bgtext-base .card-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-base .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-base .card-content h3 {
    font-size: 1rem;
  }
}
.card-bgtext-base .card-content p {
  overflow-y: auto;
}
.card-bgtext-base .card-content p::-webkit-scrollbar-button {
  display: none;
}
.card-bgtext-base .card-content p::-webkit-scrollbar-track-piece {
  background: transparent;
}
.card-bgtext-base .card-content p::-webkit-scrollbar-thumb {
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
  transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
  border-radius: 4px;
  background-color: transparent;
}
.card-bgtext-base .card-content p:hover::-webkit-scrollbar-thumb {
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .card-bgtext-base .card-content p {
    max-height: none;
    overflow-y: visible;
  }
}
@media (max-width: 768px) {
  .card-bgtext-base {
    min-height: 500px;
  }
  .card-bgtext-base .card-img img {
    opacity: 0.1;
  }
}

.card-bgtext-half {
  grid-row: span 1;
  grid-column: span 6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .card-bgtext-half {
    grid-column: span 12;
  }
}
.card-bgtext-half .card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-bgtext-half .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}
.card-bgtext-half .card-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px;
  font-size: 1rem;
  z-index: 2;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-half .card-content {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .card-bgtext-half .card-content {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-half .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-half .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
.card-bgtext-half .card-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-half .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-half .card-content h3 {
    font-size: 1rem;
  }
}
.card-bgtext-half .card-content p {
  overflow-y: auto;
}
.card-bgtext-half .card-content p::-webkit-scrollbar-button {
  display: none;
}
.card-bgtext-half .card-content p::-webkit-scrollbar-track-piece {
  background: transparent;
}
.card-bgtext-half .card-content p::-webkit-scrollbar-thumb {
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
  transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
  border-radius: 4px;
  background-color: transparent;
}
.card-bgtext-half .card-content p:hover::-webkit-scrollbar-thumb {
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .card-bgtext-half .card-content p {
    max-height: none;
    overflow-y: visible;
  }
}
@media (max-width: 768px) {
  .card-bgtext-half {
    min-height: 500px;
  }
  .card-bgtext-half .card-img img {
    opacity: 0.1;
  }
}

.card-sm-long {
  grid-row: span 2;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .card-sm-long {
    grid-column: span 12;
  }
}
.card-sm-long .card-img {
  height: 300px;
  overflow: hidden;
}
.card-sm-long .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-sm-long .card-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-sm-long .card-content {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .card-sm-long .card-content {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-sm-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-sm-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
.card-sm-long .card-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-sm-long .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-sm-long .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-sm-long .card-img {
    height: 225px;
  }
}
@media (max-width: 768px) {
  .card-sm-long {
    min-height: 500px;
  }
  .card-sm-long .card-img {
    width: 100%;
    height: 255px;
  }
}

.card-rev-sm-long {
  grid-row: span 2;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .card-rev-sm-long {
    grid-column: span 12;
  }
}
.card-rev-sm-long .card-img {
  height: 300px;
  overflow: hidden;
}
.card-rev-sm-long .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-rev-sm-long .card-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-rev-sm-long .card-content {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .card-rev-sm-long .card-content {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-rev-sm-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-rev-sm-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
.card-rev-sm-long .card-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-rev-sm-long .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-rev-sm-long .card-content h3 {
    font-size: 1rem;
  }
}
.card-rev-sm-long .card-content p {
  overflow-y: auto;
}
.card-rev-sm-long .card-content p::-webkit-scrollbar-button {
  display: none;
}
.card-rev-sm-long .card-content p::-webkit-scrollbar-track-piece {
  background: transparent;
}
.card-rev-sm-long .card-content p::-webkit-scrollbar-thumb {
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
  transition: all 500ms cubic-bezier(0.23, 1, 0.23, 1) 0ms;
  border-radius: 4px;
  background-color: transparent;
}
.card-rev-sm-long .card-content p:hover::-webkit-scrollbar-thumb {
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .card-rev-sm-long .card-content p {
    max-height: none;
    overflow-y: visible;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-rev-sm-long .card-img {
    height: 225px;
  }
}
@media (max-width: 768px) {
  .card-rev-sm-long {
    min-height: 500px;
  }
  .card-rev-sm-long .card-img {
    width: 100%;
    height: 255px;
  }
}

.card-bgtext-sm-long {
  grid-row: span 2;
  grid-column: span 4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .card-bgtext-sm-long {
    grid-column: span 12;
  }
}
.card-bgtext-sm-long .card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-bgtext-sm-long .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}
.card-bgtext-sm-long .card-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px;
  font-size: 1rem;
  z-index: 2;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-sm-long .card-content {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .card-bgtext-sm-long .card-content {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-sm-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-sm-long .card-content {
    margin: 20px;
    font-size: 0.875rem;
  }
}
.card-bgtext-sm-long .card-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .card-bgtext-sm-long .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-sm-long .card-content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-bgtext-sm-long {
    min-height: 500px;
  }
  .card-bgtext-sm-long .card-img img {
    opacity: 0.1;
  }
}

.card-rev-lg,
.card-rev-base,
.card-rev-sm-long {
  justify-content: space-between;
}

.map-lg {
  grid-row: span 1;
  grid-column: span 12;
  overflow: hidden;
  height: 400px;
}
@media (max-width: 768px) {
  .map-lg {
    width: 100%;
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .map-lg {
    aspect-ratio: 1;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.map-base {
  grid-row: span 1;
  grid-column: span 8;
  overflow: hidden;
  height: 400px;
}
@media (max-width: 768px) {
  .map-base {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .map-base {
    aspect-ratio: 1;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.map-half {
  grid-row: span 1;
  grid-column: span 6;
  overflow: hidden;
  height: 400px;
}
@media (max-width: 768px) {
  .map-half {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .map-half {
    aspect-ratio: 1;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.map-sm {
  grid-row: span 1;
  grid-column: span 4;
  overflow: hidden;
  height: 400px;
}
@media (max-width: 768px) {
  .map-sm {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .map-sm {
    aspect-ratio: 1;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.map-sm-long {
  grid-row: span 2;
  grid-column: span 4;
  overflow: hidden;
  height: 400px;
}
@media (max-width: 768px) {
  .map-sm-long {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .map-sm-long {
    aspect-ratio: 0.5;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.company-lg {
  grid-row: span 1;
  grid-column: span 12;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .company-lg {
    width: 100%;
    grid-column: span 12;
  }
}
.company-lg h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-lg h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .company-lg h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.company-lg ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-lg ul {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .company-lg ul {
    gap: 20px;
  }
}
.company-lg ul li {
  display: flex;
  align-items: start;
  gap: 20px;
}
.company-lg ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: x-large;
  flex: 0 0 25px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-lg ul li i {
    margin-top: 5px;
    font-size: large;
  }
}
@media (max-width: 768px) {
  .company-lg ul li i {
    margin-top: 5px;
    font-size: medium;
  }
}
.company-lg ul li p {
  word-break: break-word;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-lg ul li p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .company-lg ul li p {
    font-size: 0.875rem;
  }
}

.company-base {
  grid-row: span 1;
  grid-column: span 8;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .company-base {
    grid-column: span 12;
  }
}
.company-base h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-base h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .company-base h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.company-base ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-base ul {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .company-base ul {
    gap: 20px;
  }
}
.company-base ul li {
  display: flex;
  align-items: start;
  gap: 20px;
}
.company-base ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: x-large;
  flex: 0 0 25px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-base ul li i {
    margin-top: 5px;
    font-size: large;
  }
}
@media (max-width: 768px) {
  .company-base ul li i {
    margin-top: 5px;
    font-size: medium;
  }
}
.company-base ul li p {
  word-break: break-word;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-base ul li p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .company-base ul li p {
    font-size: 0.875rem;
  }
}

.company-half {
  grid-row: span 1;
  grid-column: span 6;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .company-half {
    grid-column: span 12;
  }
}
.company-half h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-half h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .company-half h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.company-half ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-half ul {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .company-half ul {
    gap: 20px;
  }
}
.company-half ul li {
  display: flex;
  align-items: start;
  gap: 20px;
}
.company-half ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: x-large;
  flex: 0 0 25px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-half ul li i {
    margin-top: 5px;
    font-size: large;
  }
}
@media (max-width: 768px) {
  .company-half ul li i {
    margin-top: 5px;
    font-size: medium;
  }
}
.company-half ul li p {
  word-break: break-word;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-half ul li p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .company-half ul li p {
    font-size: 0.875rem;
  }
}

.company-sm {
  grid-row: span 1;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .company-sm {
    grid-column: span 12;
  }
}
.company-sm h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-sm h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .company-sm h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.company-sm ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-sm ul {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .company-sm ul {
    gap: 20px;
  }
}
.company-sm ul li {
  display: flex;
  align-items: start;
  gap: 20px;
}
.company-sm ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: x-large;
  flex: 0 0 25px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-sm ul li i {
    margin-top: 5px;
    font-size: large;
  }
}
@media (max-width: 768px) {
  .company-sm ul li i {
    margin-top: 5px;
    font-size: medium;
  }
}
.company-sm ul li p {
  word-break: break-word;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .company-sm ul li p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .company-sm ul li p {
    font-size: 0.875rem;
  }
}

.form-alert,
.form-submit,
.form-error {
  display: flex;
  align-items: center;
  height: auto;
  padding: 8px 15px;
}
.form-alert i,
.form-submit i,
.form-error i {
  margin-right: 5px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .form-alert p,
  .form-submit p,
  .form-error p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .form-alert p,
  .form-submit p,
  .form-error p {
    font-size: 0.875rem;
  }
}

.contact-lg {
  grid-row: span 1;
  grid-column: span 12;
}
@media (max-width: 768px) {
  .contact-lg {
    width: 100%;
    grid-column: span 12;
  }
}
.contact-lg h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .contact-lg h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .contact-lg h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.contact-lg .contact-form {
  gap: 30px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .contact-lg .contact-form {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .contact-lg .contact-form {
    gap: 20px;
  }
}
.contact-lg .form-fields {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 349px;
  gap: 10px;
}
.contact-lg .form-group input {
  width: 100%;
  height: 40px;
  padding: 10px;
  font-size: 1rem;
}
.contact-lg .form-group i {
  margin-right: 5px;
}
.contact-lg .form-group:last-child {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-lg .form-group:last-child textarea {
  flex: 1;
  min-height: 60px;
  padding: 10px;
  font-size: 1rem;
}
.contact-lg .form-policy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}
.contact-lg .policy-box {
  padding: 0;
  overflow: hidden;
}
.contact-lg .policy-box .scroll-inner {
  padding: 15px;
  height: 110px;
  overflow-y: auto;
}
.contact-lg .policy-box .scroll-inner p:first-child {
  font-weight: 700;
  font-size: 1rem;
}
.contact-lg .policy-box .scroll-inner p:last-child {
  font-size: 0.875rem;
}
.contact-lg .form-check .form-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact-lg .form-check .form-check-label input[type=checkbox] {
  display: none;
}
.contact-lg .form-check .form-check-label .form-check-box {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
}
.contact-lg .form-check .form-check-label .form-check-box::after {
  content: "";
  display: none;
  position: absolute;
  left: 2px;
  top: -1px;
  width: 8px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.contact-lg .form-check .form-check-label input[type=checkbox]:checked + .form-check-box {
  background-color: #333;
  border-color: #333;
}
.contact-lg .form-check .form-check-label input[type=checkbox]:checked + .form-check-box::after {
  display: block;
}
.contact-lg .form-check .form-check-label:hover .form-check-box {
  border-color: #999;
}
@media (max-width: 768px) {
  .contact-lg .form-check .form-check-label {
    align-items: start;
  }
  .contact-lg .form-check .form-check-label .form-check-box {
    margin-top: 3px;
  }
}
.contact-lg .form-check a {
  text-decoration: underline;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .contact-lg {
    grid-row: span 1;
  }
  .contact-lg .contact-form {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .contact-lg .form-fields {
    height: 281px;
    width: 100%;
    gap: 5px;
  }
  .contact-lg .form-group input {
    height: 35px;
  }
  .contact-lg .form-policy {
    height: 281px;
    width: 100%;
    gap: 5px;
  }
  .contact-lg .policy-box .scroll-inner {
    height: 80px;
  }
  .contact-lg .form-group p,
  .contact-lg .form-check p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .contact-lg .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact-lg .form-fields {
    width: 100%;
    height: auto;
    gap: 10px;
  }
  .contact-lg .form-group input {
    height: 35px;
  }
  .contact-lg .form-group:last-child {
    height: 100px;
  }
  .contact-lg .form-policy {
    height: auto;
    width: 100%;
    gap: 10px;
  }
  .contact-lg .policy-box .scroll-inner {
    height: 100px;
  }
  .contact-lg .form-group p,
  .contact-lg .form-check p {
    font-size: 0.875rem;
  }
}

.contact-base-long {
  grid-column: span 8;
  grid-row: span 2;
}
@media (max-width: 768px) {
  .contact-base-long {
    grid-column: span 12;
  }
}
.contact-base-long h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .contact-base-long h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .contact-base-long h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.contact-base-long .contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-base-long .form-fields {
  display: flex;
  flex-direction: column;
  height: 392px;
  gap: 10px;
  width: 100%;
}
.contact-base-long .form-group input {
  width: 100%;
  height: 45px;
  padding: 10px;
  font-size: 1rem;
}
.contact-base-long .form-group i {
  margin-right: 5px;
}
.contact-base-long .form-group:last-child {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-base-long .form-group:last-child textarea {
  flex: 1;
  min-height: 60px;
  padding: 10px;
  font-size: 1rem;
}
.contact-base-long .form-policy {
  display: flex;
  flex-direction: column;
  height: 392px;
  gap: 10px;
  width: 100%;
}
.contact-base-long .policy-box {
  padding: 0;
  overflow: hidden;
}
.contact-base-long .policy-box .scroll-inner {
  padding: 15px;
  height: 150px;
  overflow-y: auto;
}
.contact-base-long .policy-box .scroll-inner p:first-child {
  font-weight: 700;
  font-size: 1rem;
}
.contact-base-long .policy-box .scroll-inner p:last-child {
  font-size: 0.875rem;
}
.contact-base-long .form-check a {
  text-decoration: underline;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .contact-base-long {
    grid-row: span 2;
  }
  .contact-base-long .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact-base-long .form-fields {
    height: 308px;
    width: 100%;
    gap: 10px;
  }
  .contact-base-long .form-group input {
    height: 35px;
  }
  .contact-base-long .form-policy {
    height: 308px;
    width: 100%;
    gap: 10px;
  }
  .contact-base-long .policy-box .scroll-inner {
    height: 120px;
  }
  .contact-base-long .form-group p,
  .contact-base-long .form-check p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .contact-base-long {
    grid-row: span 2;
  }
  .contact-base-long .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact-base-long .form-fields {
    width: 100%;
    height: auto;
    gap: 10px;
  }
  .contact-base-long .form-group input {
    height: 35px;
  }
  .contact-base-long .form-group:last-child {
    height: 100px;
  }
  .contact-base-long .form-policy {
    height: auto;
    width: 100%;
    gap: 10px;
  }
  .contact-base-long .policy-box .scroll-inner {
    height: 100px;
  }
  .contact-base-long .form-group p,
  .contact-base-long .form-check p {
    font-size: 0.875rem;
  }
}
.contact-base-long .form-check .form-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact-base-long .form-check .form-check-label input[type=checkbox] {
  display: none;
}
.contact-base-long .form-check .form-check-label .form-check-box {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
}
.contact-base-long .form-check .form-check-label .form-check-box::after {
  content: "";
  display: none;
  position: absolute;
  left: 2px;
  top: -1px;
  width: 8px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.contact-base-long .form-check .form-check-label input[type=checkbox]:checked + .form-check-box {
  background-color: #333;
  border-color: #333;
}
.contact-base-long .form-check .form-check-label input[type=checkbox]:checked + .form-check-box::after {
  display: block;
}
.contact-base-long .form-check .form-check-label:hover .form-check-box {
  border-color: #999;
}
@media (max-width: 768px) {
  .contact-base-long .form-check .form-check-label {
    align-items: start;
  }
  .contact-base-long .form-check .form-check-label .form-check-box {
    margin-top: 3px;
  }
}

.contact-half-long {
  grid-column: span 6;
  grid-row: span 2;
}
@media (max-width: 768px) {
  .contact-half-long {
    grid-column: span 12;
  }
}
.contact-half-long h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .contact-half-long h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .contact-half-long h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.contact-half-long .contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-half-long .form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.contact-half-long .form-group input {
  width: 100%;
  height: 45px;
  padding: 10px;
  font-size: 1rem;
}
.contact-half-long .form-group i {
  margin-right: 5px;
}
.contact-half-long .form-group:last-child {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-half-long .form-group:last-child textarea {
  flex: 1;
  min-height: 60px;
  padding: 10px;
  font-size: 1rem;
}
.contact-half-long .form-policy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.contact-half-long .policy-box {
  padding: 0;
  overflow: hidden;
}
.contact-half-long .policy-box .scroll-inner {
  padding: 15px;
  height: 150px;
  overflow-y: auto;
}
.contact-half-long .policy-box .scroll-inner p:first-child {
  font-weight: 700;
  font-size: 1rem;
}
.contact-half-long .policy-box .scroll-inner p:last-child {
  font-size: 0.875rem;
}
.contact-half-long .form-check a {
  text-decoration: underline;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .contact-half-long {
    grid-row: span 2;
  }
  .contact-half-long .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact-half-long .form-fields {
    height: 308px;
    width: 100%;
    gap: 10px;
  }
  .contact-half-long .form-group input {
    height: 35px;
  }
  .contact-half-long .form-policy {
    width: 100%;
    gap: 10px;
  }
  .contact-half-long .policy-box .scroll-inner {
    height: 120px;
  }
  .contact-half-long .form-group p,
  .contact-half-long .form-check p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .contact-half-long {
    grid-row: span 2;
  }
  .contact-half-long .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact-half-long .form-fields {
    width: 100%;
    height: auto;
    gap: 10px;
  }
  .contact-half-long .form-group input {
    height: 35px;
  }
  .contact-half-long .form-group:last-child {
    height: 100px;
  }
  .contact-half-long .form-policy {
    height: auto;
    width: 100%;
    gap: 10px;
  }
  .contact-half-long .policy-box .scroll-inner {
    height: 100px;
  }
  .contact-half-long .form-group p,
  .contact-half-long .form-check p {
    font-size: 0.875rem;
  }
}
.contact-half-long .form-check .form-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact-half-long .form-check .form-check-label input[type=checkbox] {
  display: none;
}
.contact-half-long .form-check .form-check-label .form-check-box {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
}
.contact-half-long .form-check .form-check-label .form-check-box::after {
  content: "";
  display: none;
  position: absolute;
  left: 2px;
  top: -1px;
  width: 8px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.contact-half-long .form-check .form-check-label input[type=checkbox]:checked + .form-check-box {
  background-color: #333;
  border-color: #333;
}
.contact-half-long .form-check .form-check-label input[type=checkbox]:checked + .form-check-box::after {
  display: block;
}
.contact-half-long .form-check .form-check-label:hover .form-check-box {
  border-color: #999;
}
@media (max-width: 768px) {
  .contact-half-long .form-check .form-check-label {
    align-items: start;
  }
  .contact-half-long .form-check .form-check-label .form-check-box {
    margin-top: 3px;
  }
}

.promotion-full,
.promotion-btn-full {
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px;
  width: 100%;
  height: 400px;
  grid-column: span 12;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .promotion-full,
  .promotion-btn-full {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .promotion-full,
  .promotion-btn-full {
    gap: 20px;
  }
}
.promotion-full .promotion-title,
.promotion-btn-full .promotion-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.875rem;
}
.promotion-full .promotion-content,
.promotion-btn-full .promotion-content {
  text-align: center;
}
.promotion-full a,
.promotion-btn-full a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 45px;
  border-radius: 4px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .promotion-full a,
  .promotion-btn-full a {
    width: 100px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .promotion-full,
  .promotion-btn-full {
    height: auto;
    padding: 24px;
    aspect-ratio: 1;
  }
  .promotion-full a,
  .promotion-btn-full a {
    font-size: 0.875rem;
    width: 85px;
    height: 40px;
  }
}

.promotion-lg,
.promotion-btn-lg {
  gap: 30px;
  grid-row: span 1;
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  height: 400px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .promotion-lg,
  .promotion-btn-lg {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .promotion-lg,
  .promotion-btn-lg {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .promotion-lg,
  .promotion-btn-lg {
    width: 100%;
    grid-column: span 12;
  }
}
.promotion-lg .promotion-title,
.promotion-btn-lg .promotion-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.875rem;
}
.promotion-lg .promotion-content,
.promotion-btn-lg .promotion-content {
  text-align: center;
}
.promotion-lg a,
.promotion-btn-lg a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 45px;
  border-radius: 4px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .promotion-lg a,
  .promotion-btn-lg a {
    width: 100px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .promotion-lg,
  .promotion-btn-lg {
    aspect-ratio: 1;
  }
  .promotion-lg a,
  .promotion-btn-lg a {
    font-size: 0.875rem;
    width: 85px;
    height: 40px;
  }
}

.promotion-base,
.promotion-btn-base {
  gap: 30px;
  grid-row: span 1;
  grid-column: span 8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  height: 400px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .promotion-base,
  .promotion-btn-base {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .promotion-base,
  .promotion-btn-base {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .promotion-base,
  .promotion-btn-base {
    grid-column: span 12;
  }
}
.promotion-base .promotion-title,
.promotion-btn-base .promotion-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.875rem;
}
.promotion-base .promotion-content,
.promotion-btn-base .promotion-content {
  text-align: center;
}
.promotion-base a,
.promotion-btn-base a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 45px;
  border-radius: 4px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .promotion-base a,
  .promotion-btn-base a {
    width: 100px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .promotion-base,
  .promotion-btn-base {
    aspect-ratio: 1;
  }
  .promotion-base a,
  .promotion-btn-base a {
    font-size: 0.875rem;
    width: 85px;
    height: 40px;
  }
}

.promotion-half,
.promotion-btn-half {
  gap: 30px;
  grid-row: span 1;
  grid-column: span 6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  height: 400px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .promotion-half,
  .promotion-btn-half {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .promotion-half,
  .promotion-btn-half {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .promotion-half,
  .promotion-btn-half {
    grid-column: span 12;
  }
}
.promotion-half .promotion-title,
.promotion-btn-half .promotion-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.875rem;
}
.promotion-half .promotion-content,
.promotion-btn-half .promotion-content {
  text-align: center;
}
.promotion-half a,
.promotion-btn-half a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 45px;
  border-radius: 4px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .promotion-half a,
  .promotion-btn-half a {
    width: 100px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .promotion-half,
  .promotion-btn-half {
    aspect-ratio: 1;
  }
  .promotion-half a,
  .promotion-btn-half a {
    font-size: 0.875rem;
    width: 85px;
    height: 40px;
  }
}

.only-pc {
  display: block;
}
@media (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

.only-mobile {
  display: none;
}
@media (max-width: 768px) {
  .only-mobile {
    display: block;
  }
}

.item-category-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  grid-column: span 12;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-row {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-category-row {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-category-row {
    width: 100%;
    grid-column: span 12;
  }
}
.item-category-row .category-block {
  position: relative;
  cursor: pointer;
}
.item-category-row .category-block i {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  transform: rotate(-180deg);
  transition: transform 0.3s ease;
  position: absolute;
}
.item-category-row .category-block i.rotate-up {
  transform: rotate(0deg);
}
.item-category-row .category-main {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
  gap: 5px;
  padding-right: 44px;
}
.item-category-row .category-main li {
  font-size: 1.125rem;
  padding: 8px;
  cursor: pointer;
  font-size: 1.125rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-row .category-main li {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .item-category-row .category-main li {
    font-size: 1rem;
  }
}
.item-category-row .category-sub {
  display: flex;
  flex-wrap: wrap;
}
.item-category-row .category-sub-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 5px;
  display: none;
}
.item-category-row .category-sub-list:first-child {
  display: flex;
}
.item-category-row .category-sub-list li {
  font-size: 1rem;
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-row .category-sub-list li {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .item-category-row .category-sub-list li {
    font-size: 0.875rem;
  }
}
.item-category-row .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
.item-category-row .product-search {
  position: relative;
}
.item-category-row .product-search input {
  width: 220px;
  height: 40px;
  padding: 0px 40px 0px 20px;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-row .product-search input {
    width: 200px;
    height: 35px;
    padding: 0px 35px 0px 15px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .item-category-row .product-search input {
    width: 100%;
    height: 35px;
    padding: 0px 35px 0px 10px;
    font-size: 0.875rem;
  }
}
.item-category-row .product-search a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
}
.item-category-row .product-select {
  position: relative;
}
.item-category-row .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-category-row .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-row .contact-main-list {
    padding-right: 35px;
  }
  .item-category-row .product-search a {
    width: 35px;
  }
  .item-category-row .product-select select {
    padding: 0px 35px 0px 15px;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-category-row .product-select::after {
    top: 14px;
  }
}
@media (max-width: 768px) {
  .item-category-row .contact-main-list {
    padding-right: 35px;
  }
  .item-category-row .product-toolbar {
    gap: 10px;
  }
  .item-category-row .product-search {
    width: 50%;
  }
  .item-category-row .product-search a {
    width: 35px;
  }
  .item-category-row .product-select {
    width: 50%;
  }
  .item-category-row .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-category-row .product-select::after {
    top: 14px;
  }
}

.item-category-center {
  display: flex;
  flex-direction: column;
  gap: 30px;
  grid-column: span 12;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-center {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-category-center {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-category-center {
    width: 100%;
    grid-column: span 12;
  }
}
.item-category-center .category-block {
  position: relative;
  cursor: pointer;
}
.item-category-center .category-block i {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  transform: rotate(-180deg);
  transition: transform 0.3s ease;
  position: absolute;
}
.item-category-center .category-block i.rotate-up {
  transform: rotate(0deg);
}
.item-category-center .category-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5px;
  gap: 5px;
  padding-right: 44px;
}
.item-category-center .category-main li {
  font-size: 1.125rem;
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-center .category-main li {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .item-category-center .category-main li {
    font-size: 1rem;
  }
}
.item-category-center .category-sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.item-category-center .category-sub-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  padding-top: 5px;
  display: none;
}
.item-category-center .category-sub-list:first-child {
  display: flex;
}
.item-category-center .category-sub-list li {
  font-size: 1rem;
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-center .category-sub-list li {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .item-category-center .category-sub-list li {
    font-size: 0.875rem;
  }
}
.item-category-center .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
.item-category-center .product-search {
  position: relative;
}
.item-category-center .product-search input {
  width: 220px;
  height: 40px;
  padding: 0px 40px 0px 20px;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-center .product-search input {
    width: 200px;
    height: 35px;
    padding: 0px 35px 0px 15px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .item-category-center .product-search input {
    width: 100%;
    height: 35px;
    padding: 0px 35px 0px 10px;
    font-size: 0.875rem;
  }
}
.item-category-center .product-search a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
}
.item-category-center .product-select {
  position: relative;
}
.item-category-center .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-category-center .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-center .contact-main-list {
    padding-right: 35px;
  }
  .item-category-center .product-search a {
    width: 35px;
  }
  .item-category-center .product-select select {
    padding: 0px 35px 0px 15px;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-category-center .product-select::after {
    top: 14px;
  }
}
@media (max-width: 768px) {
  .item-category-center .contact-main-list {
    padding-right: 35px;
  }
  .item-category-center .product-toolbar {
    gap: 10px;
  }
  .item-category-center .product-search {
    width: 50%;
  }
  .item-category-center .product-search a {
    width: 35px;
  }
  .item-category-center .product-select {
    width: 50%;
  }
  .item-category-center .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-category-center .product-select::after {
    top: 14px;
  }
}

.item-category-col {
  grid-column: span 4;
  gap: 30px;
  max-width: 1200px;
  height: auto;
}
@media (max-width: 768px) {
  .item-category-col {
    grid-column: span 12;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-col {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-category-col {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-col {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .item-category-col {
    max-width: 100%;
  }
}
.item-category-col .category-block li {
  font-size: 1.125rem;
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-col .category-block li {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .item-category-col .category-block li {
    font-size: 1rem;
  }
}
.item-category-col .contact-list {
  padding-left: 10px;
}
.item-category-col .category-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px 0;
}
.item-category-col .category-main i.the-arr {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  transform: rotate(-180deg);
  transition: transform 0.3s ease;
  position: absolute;
}
.item-category-col .category-main i.the-arr.rotate-up {
  transform: rotate(0deg);
}
.item-category-col .category-sub {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  word-break: break-word;
}
.item-category-col .category-sub li {
  font-size: 1rem;
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-col .category-sub li {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .item-category-col .category-sub li {
    font-size: 0.875rem;
  }
}
.item-category-col .product-toolbar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: auto;
}
.item-category-col .product-search {
  position: relative;
}
.item-category-col .product-search input {
  width: 100%;
  height: 46px;
  padding: 0px 46px 0px 20px;
  font-size: 1rem;
}
.item-category-col .product-search a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 46px;
}
.item-category-col .product-select {
  position: relative;
}
.item-category-col .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 46px 0px 20px;
  height: 46px;
  width: 100%;
  font-size: 1rem;
}
.item-category-col .product-select::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/svg/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-category-col .contact-main-list {
    padding-right: 35px;
  }
  .item-category-col .product-search input {
    width: 100%;
    height: 35px;
    padding: 0px 35px 0px 15px;
    font-size: 0.875rem;
  }
  .item-category-col .product-search a {
    width: 35px;
  }
  .item-category-col .product-select select {
    padding: 0px 35px 0px 15px;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-category-col .product-select::after {
    top: 14px;
  }
}
@media (max-width: 768px) {
  .item-category-col .item-category-row .category-block i {
    z-index: 10;
  }
  .item-category-col .item-category-row .category-main {
    justify-content: start;
    padding: inherit;
    padding-right: 44px;
  }
  .item-category-col .item-category-row .contact-main-list {
    padding-right: 35px;
  }
  .item-category-col .item-category-row .category-sub {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0;
    padding: inherit;
  }
  .item-category-col .item-category-row .category-sub-list {
    display: none;
  }
  .item-category-col .item-category-row .category-sub-list:first-child {
    display: flex;
  }
  .item-category-col .item-category-row .product-toolbar {
    display: flex;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    height: auto;
  }
  .item-category-col .item-category-row .product-search {
    width: 50%;
  }
  .item-category-col .item-category-row .product-search input {
    height: 35px;
  }
  .item-category-col .item-category-row .product-search a {
    width: 35px;
  }
  .item-category-col .item-category-row .product-select {
    width: 50%;
  }
  .item-category-col .item-category-row .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-category-col .item-category-row .product-select::after {
    top: 14px;
  }
}

.product-showmore {
  max-width: 1200px;
  margin: 30px auto 0 auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-showmore {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .product-showmore {
    max-width: 100%;
  }
}

.item-col-block {
  grid-column: span 12;
}
@media (max-width: 768px) {
  .item-col-block {
    width: 100%;
    grid-column: span 12;
  }
}
.item-col-block .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.item-col-block .product-select {
  position: relative;
}
.item-col-block .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-col-block .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
.item-col-block .item-list {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-col-block .item-list {
    gap: 20px;
  }
}
.item-col-block .item-card {
  height: auto;
  width: calc(20% - 30px + 6px);
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-block .item-card {
    width: calc(33.3333333333% - 24px + 10px);
  }
}
@media (max-width: 768px) {
  .item-col-block .item-card {
    width: calc(50% - 20px + 10px);
  }
}
.item-col-block a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.item-col-block .item-img {
  position: relative;
  background-color: #d8d8d8;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
}
.item-col-block .item-name {
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 1;
  word-break: break-word;
}
.item-col-block .item-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.item-col-block .item-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.item-col-block .item-price p:first-child.none {
  visibility: hidden;
}
.item-col-block .item-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .item-col-block .product-select {
    width: 50%;
  }
  .item-col-block .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-col-block .product-select::after {
    top: 14px;
  }
  .item-col-block .item-name {
    font-size: 0.875rem;
  }
  .item-col-block .item-price p:first-child {
    font-size: 0.75rem;
  }
  .item-col-block .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.item-col-large-block {
  grid-column: span 12;
}
@media (max-width: 768px) {
  .item-col-large-block {
    width: 100%;
    grid-column: span 12;
  }
}
.item-col-large-block .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.item-col-large-block .product-select {
  position: relative;
}
.item-col-large-block .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-col-large-block .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
.item-col-large-block .item-list {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-large-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-col-large-block .item-list {
    gap: 20px;
  }
}
.item-col-large-block .item-card {
  height: auto;
  width: calc(33.3333333333% - 30px + 10px);
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-large-block .item-card {
    width: calc(50% - 24px + 14px);
  }
}
@media (max-width: 768px) {
  .item-col-large-block .item-card {
    width: 100%;
  }
}
.item-col-large-block a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.item-col-large-block .item-img {
  position: relative;
  background-color: #d8d8d8;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.item-col-large-block .item-name {
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 1;
  word-break: break-word;
}
.item-col-large-block .item-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.item-col-large-block .item-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.item-col-large-block .item-price p:first-child.none {
  visibility: hidden;
}
.item-col-large-block .item-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .item-col-large-block .product-select {
    width: 50%;
  }
  .item-col-large-block .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-col-large-block .product-select::after {
    top: 14px;
  }
  .item-col-large-block .item-name {
    font-size: 0.875rem;
  }
  .item-col-large-block .item-price p:first-child {
    font-size: 0.75rem;
  }
  .item-col-large-block .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.item-row-block {
  grid-column: span 12;
}
@media (max-width: 768px) {
  .item-row-block {
    width: 100%;
    grid-column: span 12;
  }
}
.item-row-block .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.item-row-block .product-select {
  position: relative;
}
.item-row-block .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-row-block .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
.item-row-block .item-list {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-row-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-row-block .item-list {
    gap: 20px;
  }
}
.item-row-block .item-card {
  height: auto;
  width: calc(33.3333333333% - 30px + 10px);
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-row-block .item-card {
    width: calc(50% - 24px + 14px);
  }
}
@media (max-width: 768px) {
  .item-row-block .item-card {
    width: calc(50% - 24px + 14px);
  }
}
.item-row-block a {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.item-row-block .item-img {
  position: relative;
  background-color: #d8d8d8;
  width: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
}
.item-row-block .product-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  gap: 8px;
}
.item-row-block .item-name {
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}
.item-row-block .item-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.item-row-block .item-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.item-row-block .item-price p:first-child.none {
  visibility: hidden;
}
.item-row-block .item-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .item-row-block .product-select {
    width: 50%;
  }
  .item-row-block .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-row-block .product-select::after {
    top: 14px;
  }
  .item-row-block a {
    display: flex;
    flex-direction: column;
  }
  .item-row-block .item-img {
    width: 100%;
  }
  .item-row-block .product-content {
    width: 100%;
    height: 100%;
  }
  .item-row-block .item-name {
    font-size: 0.875rem;
  }
  .item-row-block .item-price p:first-child {
    font-size: 0.75rem;
  }
  .item-row-block .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.item-row-large-block {
  grid-column: span 12;
}
@media (max-width: 768px) {
  .item-row-large-block {
    width: 100%;
    grid-column: span 12;
  }
}
.item-row-large-block .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.item-row-large-block .product-select {
  position: relative;
}
.item-row-large-block .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-row-large-block .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
.item-row-large-block .item-list {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-row-large-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-row-large-block .item-list {
    gap: 20px;
  }
}
.item-row-large-block .item-card {
  height: auto;
  width: calc(50% - 30px + 15px);
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-row-large-block .item-card {
    width: calc(50% - 24px + 14px);
  }
}
@media (max-width: 768px) {
  .item-row-large-block .item-card {
    width: 100%;
  }
}
.item-row-large-block a {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.item-row-large-block .item-img {
  position: relative;
  background-color: #d8d8d8;
  width: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
}
.item-row-large-block .product-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 75%;
  gap: 8px;
}
.item-row-large-block .item-name {
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}
.item-row-large-block .item-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.item-row-large-block .item-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.item-row-large-block .item-price p:first-child.none {
  visibility: hidden;
}
.item-row-large-block .item-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-row-large-block .product-select select {
    padding: 0px 35px 0px 15px;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-row-large-block .product-select::after {
    top: 14px;
  }
  .item-row-large-block .product-content {
    height: 90%;
  }
}
@media (max-width: 768px) {
  .item-row-large-block .product-select {
    width: 50%;
  }
  .item-row-large-block .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-row-large-block .product-select::after {
    top: 14px;
  }
  .item-row-large-block .item-name {
    font-size: 0.875rem;
  }
  .item-row-large-block .item-price p:first-child {
    font-size: 0.75rem;
  }
  .item-row-large-block .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.item-mix-block {
  grid-column: span 12;
}
@media (max-width: 768px) {
  .item-mix-block {
    width: 100%;
    grid-column: span 12;
  }
}
.item-mix-block .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.item-mix-block .product-select {
  position: relative;
}
.item-mix-block .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-mix-block .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
.item-mix-block .item-list {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-mix-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-mix-block .item-list {
    gap: 20px;
  }
}
.item-mix-block .item-card {
  grid-column: span 1;
  grid-row: span 2;
  height: 100%;
}
.item-mix-block .item-card:nth-child(6n+3), .item-mix-block .item-card:nth-child(6n+4) {
  grid-column: span 2;
  grid-row: span 3;
}
.item-mix-block .item-card:nth-child(6n+3) .item-name, .item-mix-block .item-card:nth-child(6n+4) .item-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}
.item-mix-block a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.item-mix-block .item-img {
  position: relative;
  background-color: #d8d8d8;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.item-mix-block .item-name {
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}
.item-mix-block .item-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.item-mix-block .item-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.item-mix-block .item-price p:first-child.none {
  visibility: hidden;
}
.item-mix-block .item-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-mix-block .product-select select {
    padding: 0px 35px 0px 15px;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-mix-block .product-select::after {
    top: 14px;
  }
  .item-mix-block .item-list {
    grid-auto-rows: 155px;
  }
}
@media (max-width: 768px) {
  .item-mix-block .product-select {
    width: 50%;
  }
  .item-mix-block .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-mix-block .product-select::after {
    top: 14px;
  }
  .item-mix-block .item-list {
    max-width: 1200px;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) and (max-width: 1023px) and (min-width: 769px) {
  .item-mix-block .item-list {
    max-width: 960px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .item-mix-block .item-list {
    max-width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 1023px) and (min-width: 769px) {
  .item-mix-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .item-mix-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-mix-block .item-card {
    height: auto;
    width: calc(50% - 24px + 14px);
  }
  .item-mix-block .item-card:nth-child(6n+3) .item-name, .item-mix-block .item-card:nth-child(6n+4) .item-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .item-mix-block .item-name {
    font-size: 0.875rem;
    flex: 1;
  }
  .item-mix-block .item-price p:first-child {
    font-size: 0.75rem;
  }
  .item-mix-block .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.item-col-base-block {
  grid-column: span 8;
}
.item-col-base-block .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.item-col-base-block .product-select {
  position: relative;
}
.item-col-base-block .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-col-base-block .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
.item-col-base-block .item-list {
  max-width: 1200px;
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-base-block .item-list {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .item-col-base-block .item-list {
    max-width: 100%;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-base-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-col-base-block .item-list {
    gap: 20px;
  }
}
.item-col-base-block .item-card {
  height: auto;
  width: calc(25% - 30px + 7px);
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-base-block .item-card {
    width: calc(33.3333333333% - 24px + 10px);
  }
}
@media (max-width: 768px) {
  .item-col-base-block .item-card {
    width: calc(50% - 20px + 10px);
  }
}
.item-col-base-block a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.item-col-base-block .item-img {
  position: relative;
  background-color: #d8d8d8;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.item-col-base-block .item-name {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 1;
  word-break: break-word;
}
.item-col-base-block .item-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.item-col-base-block .item-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.item-col-base-block .item-price p:first-child.none {
  visibility: hidden;
}
.item-col-base-block .item-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-base-block .product-select select {
    padding: 0px 35px 0px 15px;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-col-base-block .product-select::after {
    top: 14px;
  }
  .item-col-base-block .item-name {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .item-col-base-block {
    grid-column: span 12;
  }
  .item-col-base-block .product-select {
    width: 50%;
  }
  .item-col-base-block .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-col-base-block .product-select::after {
    top: 14px;
  }
  .item-col-base-block .item-name {
    font-size: 0.875rem;
  }
  .item-col-base-block .item-price p:first-child {
    font-size: 0.75rem;
  }
  .item-col-base-block .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.item-col-large-base-block {
  grid-column: span 8;
}
.item-col-large-base-block .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.item-col-large-base-block .product-select {
  position: relative;
}
.item-col-large-base-block .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-col-large-base-block .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
.item-col-large-base-block .item-list {
  max-width: 1200px;
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-large-base-block .item-list {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .item-col-large-base-block .item-list {
    max-width: 100%;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-large-base-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-col-large-base-block .item-list {
    gap: 20px;
  }
}
.item-col-large-base-block .item-card {
  height: auto;
  width: calc(50% - 30px + 15px);
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-col-large-base-block .item-card {
    width: calc(50% - 24px + 14px);
  }
}
@media (max-width: 768px) {
  .item-col-large-base-block .item-card {
    width: 100%;
  }
}
.item-col-large-base-block a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.item-col-large-base-block .item-img {
  position: relative;
  background-color: #d8d8d8;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.item-col-large-base-block .item-name {
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 1;
  word-break: break-word;
}
.item-col-large-base-block .item-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.item-col-large-base-block .item-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.item-col-large-base-block .item-price p:first-child.none {
  visibility: hidden;
}
.item-col-large-base-block .item-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .item-col-large-base-block .product-select {
    width: 50%;
  }
  .item-col-large-base-block .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-col-large-base-block .product-select::after {
    top: 14px;
  }
  .item-col-large-base-block .item-name {
    font-size: 0.875rem;
  }
  .item-col-large-base-block .item-price p:first-child {
    font-size: 0.75rem;
  }
  .item-col-large-base-block .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.item-row-large-base-block {
  grid-column: span 8;
}
.item-row-large-base-block .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.item-row-large-base-block .product-select {
  position: relative;
}
.item-row-large-base-block .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-row-large-base-block .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
.item-row-large-base-block .item-list {
  max-width: 1200px;
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-row-large-base-block .item-list {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .item-row-large-base-block .item-list {
    max-width: 100%;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-row-large-base-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-row-large-base-block .item-list {
    gap: 20px;
  }
}
.item-row-large-base-block .item-card {
  height: auto;
  width: calc(50% - 30px + 15px);
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-row-large-base-block .item-card {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .item-row-large-base-block .item-card {
    width: 100%;
  }
}
.item-row-large-base-block a {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.item-row-large-base-block .item-img {
  position: relative;
  background-color: #d8d8d8;
  width: 50%;
  aspect-ratio: 1;
  overflow: hidden;
}
.item-row-large-base-block .product-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  gap: 8px;
}
.item-row-large-base-block .item-name {
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}
.item-row-large-base-block .item-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.item-row-large-base-block .item-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.item-row-large-base-block .item-price p:first-child.none {
  visibility: hidden;
}
.item-row-large-base-block .item-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-row-large-base-block .product-select select {
    padding: 0px 35px 0px 15px;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-row-large-base-block .product-select::after {
    top: 14px;
  }
  .item-row-large-base-block .product-content {
    height: 80%;
  }
}
@media (max-width: 768px) {
  .item-row-large-base-block {
    grid-column: span 12;
  }
  .item-row-large-base-block .product-select {
    width: 50%;
  }
  .item-row-large-base-block .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-row-large-base-block .product-select::after {
    top: 14px;
  }
  .item-row-large-base-block .product-content {
    height: 75%;
  }
  .item-row-large-base-block .item-name {
    font-size: 0.875rem;
  }
  .item-row-large-base-block .item-price p:first-child {
    font-size: 0.75rem;
  }
  .item-row-large-base-block .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.item-mix-base-block {
  grid-column: span 8;
}
.item-mix-base-block .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.item-mix-base-block .product-select {
  position: relative;
}
.item-mix-base-block .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.item-mix-base-block .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
.item-mix-base-block .item-list {
  max-width: 1200px;
  gap: 30px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 148px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-mix-base-block .item-list {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .item-mix-base-block .item-list {
    max-width: 100%;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-mix-base-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-mix-base-block .item-list {
    gap: 20px;
  }
}
.item-mix-base-block .item-card {
  grid-column: span 1;
  grid-row: span 2;
  height: 100%;
}
.item-mix-base-block .item-card:nth-child(6n+3), .item-mix-base-block .item-card:nth-child(6n+4) {
  grid-column: span 2;
  grid-row: span 3;
}
.item-mix-base-block .item-card:nth-child(6n+3) .item-name, .item-mix-base-block .item-card:nth-child(6n+4) .item-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}
.item-mix-base-block a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.item-mix-base-block .item-img {
  position: relative;
  background-color: #d8d8d8;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.item-mix-base-block .item-name {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}
.item-mix-base-block .item-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.item-mix-base-block .item-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.item-mix-base-block .item-price p:first-child.none {
  visibility: hidden;
}
.item-mix-base-block .item-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-mix-base-block .product-select select {
    padding: 0px 35px 0px 15px;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-mix-base-block .product-select::after {
    top: 14px;
  }
  .item-mix-base-block .item-list {
    max-width: 1200px;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 1023px) and (min-width: 769px) and (max-width: 1023px) and (min-width: 769px) {
  .item-mix-base-block .item-list {
    max-width: 960px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) and (max-width: 768px) {
  .item-mix-base-block .item-list {
    max-width: 100%;
  }
}
@media (max-width: 1023px) and (min-width: 769px) and (max-width: 1023px) and (min-width: 769px) {
  .item-mix-base-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) and (max-width: 768px) {
  .item-mix-base-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-mix-base-block .item-card {
    height: auto;
    width: calc(50% - 24px + 14px);
  }
  .item-mix-base-block .item-card:nth-child(6n+3) .item-name, .item-mix-base-block .item-card:nth-child(6n+4) .item-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .item-mix-base-block {
    grid-column: span 12;
  }
  .item-mix-base-block .product-select {
    width: 50%;
  }
  .item-mix-base-block .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .item-mix-base-block .product-select::after {
    top: 14px;
  }
  .item-mix-base-block .item-list {
    max-width: 1200px;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) and (max-width: 1023px) and (min-width: 769px) {
  .item-mix-base-block .item-list {
    max-width: 960px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .item-mix-base-block .item-list {
    max-width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 1023px) and (min-width: 769px) {
  .item-mix-base-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .item-mix-base-block .item-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .item-mix-base-block .item-card {
    height: auto;
    width: calc(50% - 24px + 14px);
  }
  .item-mix-base-block .item-card:nth-child(6n+3) .item-name, .item-mix-base-block .item-card:nth-child(6n+4) .item-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .item-mix-base-block .item-name {
    font-size: 0.875rem;
    flex: 1;
  }
  .item-mix-base-block .item-price p:first-child {
    font-size: 0.75rem;
  }
  .item-mix-base-block .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.carousel-lg {
  grid-column: span 12;
  grid-row: span 1;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .carousel-lg {
    width: 100%;
    grid-column: span 12;
  }
}
.carousel-lg .swiper {
  width: 100%;
  height: 100%;
}
.carousel-lg img {
  position: absolute;
}
.carousel-lg .swiper-button-next,
.carousel-lg .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.carousel-lg .swiper-button-next::after,
.carousel-lg .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .carousel-lg .swiper-button-next,
  .carousel-lg .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .carousel-lg {
    height: auto;
  }
  .carousel-lg .swiper {
    height: auto;
    aspect-ratio: 1;
  }
}

.carousel-base {
  grid-column: span 8;
  grid-row: span 1;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .carousel-base {
    grid-column: span 12;
  }
}
.carousel-base .swiper {
  width: 100%;
  height: 100%;
}
.carousel-base img {
  position: absolute;
}
.carousel-base .swiper-button-next,
.carousel-base .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.carousel-base .swiper-button-next::after,
.carousel-base .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .carousel-base .swiper-button-next,
  .carousel-base .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .carousel-base {
    height: auto;
  }
  .carousel-base .swiper {
    height: auto;
    aspect-ratio: 1;
  }
}

.carousel-half {
  grid-column: span 6;
  grid-row: span 1;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .carousel-half {
    grid-column: span 12;
  }
}
.carousel-half .swiper {
  width: 100%;
  height: 100%;
}
.carousel-half img {
  position: absolute;
}
.carousel-half .swiper-button-next,
.carousel-half .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.carousel-half .swiper-button-next::after,
.carousel-half .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .carousel-half .swiper-button-next,
  .carousel-half .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .carousel-half {
    height: auto;
  }
  .carousel-half .swiper {
    height: auto;
    aspect-ratio: 1;
  }
}

.carousel-sm {
  grid-column: span 4;
  grid-row: span 1;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .carousel-sm {
    grid-column: span 12;
  }
}
.carousel-sm .swiper {
  width: 100%;
  height: 100%;
}
.carousel-sm img {
  position: absolute;
}
.carousel-sm .swiper-button-next,
.carousel-sm .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.carousel-sm .swiper-button-next::after,
.carousel-sm .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .carousel-sm .swiper-button-next,
  .carousel-sm .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .carousel-sm {
    height: auto;
  }
  .carousel-sm .swiper {
    height: auto;
    aspect-ratio: 1;
  }
}

.carousel-sm-long {
  grid-column: span 4;
  grid-row: span 2;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .carousel-sm-long {
    grid-column: span 12;
  }
}
.carousel-sm-long .swiper {
  width: 100%;
  height: 100%;
}
.carousel-sm-long img {
  position: absolute;
}
.carousel-sm-long .swiper-button-next,
.carousel-sm-long .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.carousel-sm-long .swiper-button-next::after,
.carousel-sm-long .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .carousel-sm-long .swiper-button-next,
  .carousel-sm-long .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .carousel-sm-long {
    height: auto;
  }
  .carousel-sm-long .swiper {
    height: auto;
    aspect-ratio: 0.5;
  }
}

.featured-lg {
  grid-column: span 12;
  grid-row: span 1;
}
@media (max-width: 768px) {
  .featured-lg {
    width: 100%;
    grid-column: span 12;
  }
}
.featured-lg .swiper {
  height: 100%;
}
.featured-lg .featured-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.featured-lg .featured-img {
  width: 100%;
  height: 245px;
  overflow: hidden;
  position: relative;
  background-color: #d8d8d8;
  flex-shrink: 0;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .featured-lg .featured-img {
    height: 167px;
  }
}
.featured-lg .featured-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.125rem;
  overflow: hidden;
  word-break: break-word;
}
.featured-lg .featured-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.featured-lg .featured-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.featured-lg .featured-price p:first-child.none {
  visibility: hidden;
}
.featured-lg .featured-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
.featured-lg .swiper-button-next,
.featured-lg .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.featured-lg .swiper-button-next::after,
.featured-lg .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .featured-lg .swiper-button-next,
  .featured-lg .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .featured-lg .featured-name {
    font-size: 1rem;
  }
  .featured-lg .item-price p:first-child {
    font-size: 0.75rem;
  }
  .featured-lg .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.featured-base {
  grid-column: span 8;
  grid-row: span 1;
}
@media (max-width: 768px) {
  .featured-base {
    grid-column: span 12;
  }
}
.featured-base .swiper {
  height: 100%;
}
.featured-base .featured-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.featured-base .featured-img {
  width: 100%;
  height: 245px;
  overflow: hidden;
  position: relative;
  background-color: #d8d8d8;
  flex-shrink: 0;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .featured-base .featured-img {
    height: 167px;
  }
}
.featured-base .featured-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.125rem;
  overflow: hidden;
  word-break: break-word;
}
.featured-base .featured-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.featured-base .featured-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.featured-base .featured-price p:first-child.none {
  visibility: hidden;
}
.featured-base .featured-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
.featured-base .swiper-button-next,
.featured-base .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.featured-base .swiper-button-next::after,
.featured-base .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .featured-base .swiper-button-next,
  .featured-base .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .featured-base .featured-name {
    font-size: 1rem;
  }
  .featured-base .item-price p:first-child {
    font-size: 0.75rem;
  }
  .featured-base .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.featured-half {
  grid-column: span 6;
  grid-row: span 1;
}
@media (max-width: 768px) {
  .featured-half {
    grid-column: span 12;
  }
}
.featured-half .swiper {
  height: 100%;
}
.featured-half .featured-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.featured-half .featured-img {
  width: 100%;
  height: 245px;
  overflow: hidden;
  position: relative;
  background-color: #d8d8d8;
  flex-shrink: 0;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .featured-half .featured-img {
    height: 167px;
  }
}
.featured-half .featured-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.125rem;
  overflow: hidden;
  word-break: break-word;
}
.featured-half .featured-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.featured-half .featured-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.featured-half .featured-price p:first-child.none {
  visibility: hidden;
}
.featured-half .featured-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
.featured-half .swiper-button-next,
.featured-half .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.featured-half .swiper-button-next::after,
.featured-half .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .featured-half .swiper-button-next,
  .featured-half .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .featured-half .featured-name {
    font-size: 1rem;
  }
  .featured-half .item-price p:first-child {
    font-size: 0.75rem;
  }
  .featured-half .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.featured-sm {
  grid-column: span 4;
  grid-row: span 1;
}
@media (max-width: 768px) {
  .featured-sm {
    grid-column: span 12;
  }
}
.featured-sm .swiper {
  height: 100%;
}
.featured-sm .featured-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.featured-sm .featured-img {
  width: 100%;
  height: 245px;
  overflow: hidden;
  position: relative;
  background-color: #d8d8d8;
  flex-shrink: 0;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .featured-sm .featured-img {
    height: 167px;
  }
}
.featured-sm .featured-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.125rem;
  overflow: hidden;
  word-break: break-word;
}
.featured-sm .featured-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.featured-sm .featured-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.featured-sm .featured-price p:first-child.none {
  visibility: hidden;
}
.featured-sm .featured-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
.featured-sm .swiper-button-next,
.featured-sm .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.featured-sm .swiper-button-next::after,
.featured-sm .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .featured-sm .swiper-button-next,
  .featured-sm .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .featured-sm .featured-name {
    font-size: 1rem;
  }
  .featured-sm .item-price p:first-child {
    font-size: 0.75rem;
  }
  .featured-sm .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.featured-sm-long {
  grid-column: span 4;
  grid-row: span 2;
}
@media (max-width: 768px) {
  .featured-sm-long {
    grid-column: span 12;
  }
}
.featured-sm-long .swiper {
  height: 100%;
}
.featured-sm-long .featured-slide {
  gap: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .featured-sm-long .featured-slide {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .featured-sm-long .featured-slide {
    gap: 20px;
  }
}
.featured-sm-long .featured-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.featured-sm-long .featured-img {
  width: 100%;
  height: 245px;
  overflow: hidden;
  position: relative;
  background-color: #d8d8d8;
  flex-shrink: 0;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .featured-sm-long .featured-img {
    height: 167px;
  }
}
.featured-sm-long .featured-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.125rem;
  overflow: hidden;
  word-break: break-word;
}
.featured-sm-long .featured-price {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  margin-top: auto;
}
.featured-sm-long .featured-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.featured-sm-long .featured-price p:first-child.none {
  visibility: hidden;
}
.featured-sm-long .featured-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
.featured-sm-long .swiper-button-next,
.featured-sm-long .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.featured-sm-long .swiper-button-next::after,
.featured-sm-long .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .featured-sm-long .swiper-button-next,
  .featured-sm-long .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .featured-sm-long .featured-name {
    font-size: 1rem;
  }
  .featured-sm-long .item-price p:first-child {
    font-size: 0.75rem;
  }
  .featured-sm-long .item-price p:last-child {
    font-size: 0.875rem;
  }
}

.facebook-sm {
  grid-column: span 4;
}
@media (max-width: 768px) {
  .facebook-sm {
    grid-column: span 12;
  }
}
.facebook-sm iframe {
  width: 100%;
  min-height: 400px;
}
@media screen and (768px < width <= 1024px) {
  .facebook-sm {
    grid-column: span 6;
  }
}

.facebook-carousel-sm {
  grid-column: span 4;
  min-height: 400px;
}
@media (max-width: 768px) {
  .facebook-carousel-sm {
    grid-column: span 12;
  }
}
.facebook-carousel-sm .swiper-button-next,
.facebook-carousel-sm .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.facebook-carousel-sm .swiper-button-next::after,
.facebook-carousel-sm .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .facebook-carousel-sm .swiper-button-next,
  .facebook-carousel-sm .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media screen and (768px < width <= 1024px) {
  .facebook-carousel-sm {
    grid-column: span 6;
  }
}

.instagram-sm {
  grid-column: span 4;
}
@media (max-width: 768px) {
  .instagram-sm {
    grid-column: span 12;
  }
}
@media screen and (768px < width <= 1024px) {
  .instagram-sm {
    grid-column: span 6;
  }
}

.video-mix-block {
  grid-column: span 12;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  grid-auto-rows: 210px;
}
@media (max-width: 1439px) {
  .video-mix-block {
    width: 100%;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .video-mix-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .video-mix-block {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .video-mix-block {
    grid-auto-rows: 130px;
  }
}
@media (max-width: 768px) {
  .video-mix-block {
    grid-auto-rows: auto;
  }
}
.video-mix-block .video {
  grid-row: span 1;
  grid-column: span 4;
  overflow: hidden;
}
.video-mix-block .video:first-child {
  grid-row: span 2;
  grid-column: span 8;
  overflow: hidden;
}
@media (max-width: 768px) {
  .video-mix-block .video:first-child {
    grid-column: span 12;
  }
}
.video-mix-block .video:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-mix-block .video:first-child iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .video-mix-block .video:first-child {
    grid-row: span 1;
  }
}
@media (max-width: 768px) {
  .video-mix-block .video {
    grid-column: span 12;
  }
}
.video-mix-block .video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-mix-block .video iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .video-mix-block .video {
    aspect-ratio: 16/9;
    height: auto;
  }
}
@media (max-width: 768px) {
  .video-mix-block .video {
    aspect-ratio: 16/9;
    height: auto;
  }
}

.video-block {
  gap: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column: span 12;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .video-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .video-block {
    gap: 20px;
  }
}
.video-block .video {
  grid-row: span 1;
  grid-column: span 4;
  overflow: hidden;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .video-block .video {
    grid-column: span 12;
  }
}
.video-block .video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-block .video iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .video-block {
    width: 100%;
    gap: 20px;
  }
}

.video-thumb-block {
  max-width: 1200px;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column: span 12;
  gap: 10px;
  margin: 0 auto;
  grid-auto-rows: 210px;
}
.video-thumb-block .video {
  grid-column: span 1;
  grid-row: span 1;
}
.video-thumb-block .video:first-child {
  grid-column: span 5;
  grid-row: span 3;
}
.video-thumb-block .video:first-child iframe {
  width: 100%;
  height: 100%;
}
.video-thumb-block .video iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .video-thumb-block {
    grid-auto-rows: 120px;
  }
}
@media (max-width: 768px) {
  .video-thumb-block {
    gap: 20px;
    grid-auto-rows: auto;
  }
  .video-thumb-block .video {
    grid-column: span 5;
    aspect-ratio: 16/9;
  }
}

.video-thumb-rev-block {
  max-width: 1200px;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column: span 12;
  gap: 10px;
  margin: 0 auto;
  grid-auto-rows: 210px;
}
.video-thumb-rev-block .video {
  grid-column: span 1;
  grid-row: span 1;
}
.video-thumb-rev-block .video:last-child {
  grid-column: span 5;
  grid-row: span 3;
}
.video-thumb-rev-block .video:last-child iframe {
  width: 100%;
  height: 100%;
}
.video-thumb-rev-block .video iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .video-thumb-rev-block {
    grid-auto-rows: 120px;
  }
}
@media (max-width: 768px) {
  .video-thumb-rev-block {
    gap: 20px;
    grid-auto-rows: auto;
  }
  .video-thumb-rev-block .video {
    grid-column: span 5;
    height: auto;
    aspect-ratio: 16/9;
  }
}

.video-lg-long-block {
  grid-column: span 12;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .video-lg-long-block {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .video-lg-long-block {
    max-width: 100%;
  }
}
.video-lg-long-block .video {
  width: 100%;
  height: 600px;
  margin-bottom: 10px;
}
.video-lg-long-block .video iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .video-lg-long-block .video {
    aspect-ratio: 16/9;
    height: auto;
  }
}
@media (max-width: 768px) {
  .video-lg-long-block .video {
    aspect-ratio: 16/9;
    height: auto;
  }
}
.video-lg-long-block .video-controls {
  max-width: 1200px;
  display: flex;
  gap: 10px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .video-lg-long-block .video-controls {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .video-lg-long-block .video-controls {
    max-width: 100%;
  }
}
.video-lg-long-block .video-controls .video-prev,
.video-lg-long-block .video-controls .video-next {
  cursor: pointer;
  padding: 10px 20px;
}

.gallery {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column: span 12;
  gap: 10px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .gallery {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .gallery {
    max-width: 100%;
  }
}
.gallery div {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.gallery div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.icon-download::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: url("../image/download_solid_with_bg.svg") center center no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .icon-download::after {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .icon-download::after {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

.icon-download-base::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: url("../image/download_solid_with_bg.svg") center center no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .icon-download-base::after {
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 768px) {
  .icon-download-base::after {
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
  }
}

.icon-download-sm::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: url("../image/download_solid_with_bg.svg") center center no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .icon-download-sm::after {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 768px) {
  .icon-download-sm::after {
    top: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
  }
}

.info-block-wrapper {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 30px;
  grid-column: span 12;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .info-block-wrapper {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .info-block-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .info-block-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .info-block-wrapper {
    gap: 20px;
  }
}

.detail-category-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  grid-column: span 12;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .detail-category-row {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .detail-category-row {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .detail-category-row {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .detail-category-row {
    max-width: 100%;
  }
}
.detail-category-row .category-block {
  position: relative;
  cursor: pointer;
}
.detail-category-row .category-block i {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  transform: rotate(-180deg);
  transition: transform 0.3s ease;
  position: absolute;
}
.detail-category-row .category-block i.rotate-up {
  transform: rotate(0deg);
}
.detail-category-row .category-main {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
  gap: 5px;
  padding-right: 44px;
}
.detail-category-row .category-main li {
  font-size: 1.125rem;
  padding: 8px;
  cursor: pointer;
  font-size: 1.125rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .detail-category-row .category-main li {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .detail-category-row .category-main li {
    font-size: 1rem;
  }
}
.detail-category-row .category-sub {
  display: flex;
  flex-wrap: wrap;
}
.detail-category-row .category-sub-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 5px;
  display: none;
}
.detail-category-row .category-sub-list:first-child {
  display: flex;
}
.detail-category-row .category-sub-list li {
  font-size: 1rem;
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .detail-category-row .category-sub-list li {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .detail-category-row .category-sub-list li {
    font-size: 0.875rem;
  }
}
.detail-category-row .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
.detail-category-row .product-search {
  position: relative;
}
.detail-category-row .product-search input {
  width: 220px;
  height: 40px;
  padding: 0px 40px 0px 20px;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .detail-category-row .product-search input {
    width: 200px;
    height: 35px;
    padding: 0px 35px 0px 15px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .detail-category-row .product-search input {
    width: 100%;
    height: 35px;
    padding: 0px 35px 0px 10px;
    font-size: 0.875rem;
  }
}
.detail-category-row .product-search a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
}
.detail-category-row .product-select {
  position: relative;
}
.detail-category-row .product-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 40px 0px 20px;
  height: 40px;
  font-size: 1rem;
}
.detail-category-row .product-select::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 15px;
  width: 16px;
  height: 8px;
  background: url("../image/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .detail-category-row .contact-main-list {
    padding-right: 35px;
  }
  .detail-category-row .product-search a {
    width: 35px;
  }
  .detail-category-row .product-select select {
    padding: 0px 35px 0px 15px;
    height: 35px;
    font-size: 0.875rem;
  }
  .detail-category-row .product-select::after {
    top: 14px;
  }
}
@media (max-width: 768px) {
  .detail-category-row .contact-main-list {
    padding-right: 35px;
  }
  .detail-category-row .product-toolbar {
    gap: 10px;
  }
  .detail-category-row .product-search {
    width: 50%;
  }
  .detail-category-row .product-search a {
    width: 35px;
  }
  .detail-category-row .product-select {
    width: 50%;
  }
  .detail-category-row .product-select select {
    padding: 0px 20px 0px 10px;
    width: 100%;
    height: 35px;
    font-size: 0.875rem;
  }
  .detail-category-row .product-select::after {
    top: 14px;
  }
}

.item-img-block {
  width: 50%;
  max-width: 540px;
  height: auto;
}
.item-img-block .item-swiper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.item-img-block .item-swiper a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 45px;
  height: 45px;
  font-size: 1.25rem;
  bottom: 15px;
  right: 15px;
  z-index: 2;
}
.item-img-block .swiper-wrapper .swiper-slide {
  position: relative;
}
.item-img-block .mySwiper {
  height: auto;
  padding: 10px 0px;
}
.item-img-block .mySwiper .swiper-slide {
  position: relative;
  opacity: 0.5;
  width: 98px;
  margin-right: 10px;
}
.item-img-block .mySwiper .swiper-slide img {
  display: block;
  aspect-ratio: 1;
}
.item-img-block .mySwiper .swiper-slide-thumb-active {
  aspect-ratio: 1;
  padding: 2px;
  opacity: 1 !important;
}
.item-img-block .swiper-pagination {
  text-align: left;
  position: initial;
  padding: 5px 0;
  font-size: 1rem;
}
.item-img-block .swiper-button-next,
.item-img-block .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
  padding: 5px 8px;
  top: var(--swiper-navigation-top-offset, 60%);
}
.item-img-block .swiper-button-next::after,
.item-img-block .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .item-img-block .swiper-button-next,
  .item-img-block .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .item-img-block {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .item-img-block {
    width: 100%;
  }
}

.product-order-block,
.product-order-rev-block,
.appointment-block,
.appointment-rev-block,
.product-out-block {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 60px;
  margin-bottom: 30px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-order-block,
  .product-order-rev-block,
  .appointment-block,
  .appointment-rev-block,
  .product-out-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) and (max-width: 1023px) and (min-width: 769px) {
  .product-order-block,
  .product-order-rev-block,
  .appointment-block,
  .appointment-rev-block,
  .product-out-block {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) and (max-width: 768px) {
  .product-order-block,
  .product-order-rev-block,
  .appointment-block,
  .appointment-rev-block,
  .product-out-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-order-block,
  .product-order-rev-block,
  .appointment-block,
  .appointment-rev-block,
  .product-out-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 768px) and (max-width: 1023px) and (min-width: 769px) {
  .product-order-block,
  .product-order-rev-block,
  .appointment-block,
  .appointment-rev-block,
  .product-out-block {
    gap: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .product-order-block,
  .product-order-rev-block,
  .appointment-block,
  .appointment-rev-block,
  .product-out-block {
    gap: 20px;
  }
}

.product-out-block {
  align-items: center;
}
.product-out-block div {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-out-block div p:first-child {
  font-size: 1.625rem;
  font-weight: 700;
}
.product-out-block div a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 45px;
  border-radius: 4px;
}
.product-out-block img {
  width: 20%;
  margin-top: 30px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-out-block div {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-out-block img {
    width: 60%;
    margin-left: 80px;
  }
}
@media (max-width: 768px) {
  .product-out-block div {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-out-block img {
    width: 60%;
    margin-left: 30px;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .product-order-rev-block,
  .appointment-rev-block {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .product-order-rev-block,
  .appointment-rev-block {
    flex-direction: column-reverse;
  }
}

.product-order-thumb-block,
.appointment-thumb-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  width: 100%;
}
.product-order-thumb-block .item-img-block,
.appointment-thumb-block .item-img-block {
  width: 100%;
  max-width: inherit;
}
.product-order-thumb-block .item-img-block .item-swiper,
.appointment-thumb-block .item-img-block .item-swiper {
  height: 600px;
}
.product-order-thumb-block .product-content-block,
.product-order-thumb-block .appointment-content-block,
.appointment-thumb-block .product-content-block,
.appointment-thumb-block .appointment-content-block {
  width: 100%;
}
.product-order-thumb-block .product-content-block .product-info-block,
.product-order-thumb-block .product-content-block .appointment-info-block,
.product-order-thumb-block .appointment-content-block .product-info-block,
.product-order-thumb-block .appointment-content-block .appointment-info-block,
.appointment-thumb-block .product-content-block .product-info-block,
.appointment-thumb-block .product-content-block .appointment-info-block,
.appointment-thumb-block .appointment-content-block .product-info-block,
.appointment-thumb-block .appointment-content-block .appointment-info-block {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.product-order-thumb-block .product-content-block .left-block,
.product-order-thumb-block .appointment-content-block .left-block,
.appointment-thumb-block .product-content-block .left-block,
.appointment-thumb-block .appointment-content-block .left-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-order-thumb-block .product-content-block .left-block,
  .product-order-thumb-block .appointment-content-block .left-block,
  .appointment-thumb-block .product-content-block .left-block,
  .appointment-thumb-block .appointment-content-block .left-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-order-thumb-block .product-content-block .left-block,
  .product-order-thumb-block .appointment-content-block .left-block,
  .appointment-thumb-block .product-content-block .left-block,
  .appointment-thumb-block .appointment-content-block .left-block {
    gap: 20px;
  }
}
.product-order-thumb-block .product-content-block .right-block,
.product-order-thumb-block .appointment-content-block .right-block,
.appointment-thumb-block .product-content-block .right-block,
.appointment-thumb-block .appointment-content-block .right-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-order-thumb-block .product-content-block .right-block,
  .product-order-thumb-block .appointment-content-block .right-block,
  .appointment-thumb-block .product-content-block .right-block,
  .appointment-thumb-block .appointment-content-block .right-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-order-thumb-block .product-content-block .right-block,
  .product-order-thumb-block .appointment-content-block .right-block,
  .appointment-thumb-block .product-content-block .right-block,
  .appointment-thumb-block .appointment-content-block .right-block {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-order-thumb-block .item-img-block .item-swiper,
  .appointment-thumb-block .item-img-block .item-swiper {
    height: auto;
    aspect-ratio: 1;
  }
  .product-order-thumb-block .product-content-block .product-info-block,
  .product-order-thumb-block .product-content-block .appointment-info-block,
  .product-order-thumb-block .appointment-content-block .product-info-block,
  .product-order-thumb-block .appointment-content-block .appointment-info-block,
  .appointment-thumb-block .product-content-block .product-info-block,
  .appointment-thumb-block .product-content-block .appointment-info-block,
  .appointment-thumb-block .appointment-content-block .product-info-block,
  .appointment-thumb-block .appointment-content-block .appointment-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) and (max-width: 1023px) and (min-width: 769px) {
  .product-order-thumb-block .product-content-block .product-info-block,
  .product-order-thumb-block .product-content-block .appointment-info-block,
  .product-order-thumb-block .appointment-content-block .product-info-block,
  .product-order-thumb-block .appointment-content-block .appointment-info-block,
  .appointment-thumb-block .product-content-block .product-info-block,
  .appointment-thumb-block .product-content-block .appointment-info-block,
  .appointment-thumb-block .appointment-content-block .product-info-block,
  .appointment-thumb-block .appointment-content-block .appointment-info-block {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) and (max-width: 768px) {
  .product-order-thumb-block .product-content-block .product-info-block,
  .product-order-thumb-block .product-content-block .appointment-info-block,
  .product-order-thumb-block .appointment-content-block .product-info-block,
  .product-order-thumb-block .appointment-content-block .appointment-info-block,
  .appointment-thumb-block .product-content-block .product-info-block,
  .appointment-thumb-block .product-content-block .appointment-info-block,
  .appointment-thumb-block .appointment-content-block .product-info-block,
  .appointment-thumb-block .appointment-content-block .appointment-info-block {
    gap: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-order-thumb-block .product-content-block .left-block,
  .product-order-thumb-block .appointment-content-block .left-block,
  .appointment-thumb-block .product-content-block .left-block,
  .appointment-thumb-block .appointment-content-block .left-block {
    width: 100%;
  }
  .product-order-thumb-block .product-content-block .right-block,
  .product-order-thumb-block .appointment-content-block .right-block,
  .appointment-thumb-block .product-content-block .right-block,
  .appointment-thumb-block .appointment-content-block .right-block {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-order-thumb-block .item-img-block .item-swiper,
  .appointment-thumb-block .item-img-block .item-swiper {
    height: auto;
    aspect-ratio: 1;
  }
  .product-order-thumb-block .product-content-block .product-info-block,
  .product-order-thumb-block .product-content-block .appointment-info-block,
  .product-order-thumb-block .appointment-content-block .product-info-block,
  .product-order-thumb-block .appointment-content-block .appointment-info-block,
  .appointment-thumb-block .product-content-block .product-info-block,
  .appointment-thumb-block .product-content-block .appointment-info-block,
  .appointment-thumb-block .appointment-content-block .product-info-block,
  .appointment-thumb-block .appointment-content-block .appointment-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 768px) and (max-width: 1023px) and (min-width: 769px) {
  .product-order-thumb-block .product-content-block .product-info-block,
  .product-order-thumb-block .product-content-block .appointment-info-block,
  .product-order-thumb-block .appointment-content-block .product-info-block,
  .product-order-thumb-block .appointment-content-block .appointment-info-block,
  .appointment-thumb-block .product-content-block .product-info-block,
  .appointment-thumb-block .product-content-block .appointment-info-block,
  .appointment-thumb-block .appointment-content-block .product-info-block,
  .appointment-thumb-block .appointment-content-block .appointment-info-block {
    gap: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .product-order-thumb-block .product-content-block .product-info-block,
  .product-order-thumb-block .product-content-block .appointment-info-block,
  .product-order-thumb-block .appointment-content-block .product-info-block,
  .product-order-thumb-block .appointment-content-block .appointment-info-block,
  .appointment-thumb-block .product-content-block .product-info-block,
  .appointment-thumb-block .product-content-block .appointment-info-block,
  .appointment-thumb-block .appointment-content-block .product-info-block,
  .appointment-thumb-block .appointment-content-block .appointment-info-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-order-thumb-block .product-content-block .left-block,
  .product-order-thumb-block .appointment-content-block .left-block,
  .appointment-thumb-block .product-content-block .left-block,
  .appointment-thumb-block .appointment-content-block .left-block {
    width: 100%;
  }
  .product-order-thumb-block .product-content-block .right-block,
  .product-order-thumb-block .appointment-content-block .right-block,
  .appointment-thumb-block .product-content-block .right-block,
  .appointment-thumb-block .appointment-content-block .right-block {
    width: 100%;
  }
}

.product-content-block,
.appointment-content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
  height: auto;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-content-block,
  .appointment-content-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-content-block,
  .appointment-content-block {
    gap: 20px;
  }
}
.product-content-block h3,
.appointment-content-block h3 {
  position: relative;
  font-size: 1.875rem;
  padding: 20px 0;
  font-weight: 700;
  word-break: break-all;
}
.product-content-block h3::after,
.appointment-content-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-content-block,
  .appointment-content-block {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-content-block,
  .appointment-content-block {
    width: 100%;
  }
  .product-content-block h3,
  .appointment-content-block h3 {
    font-size: 1.625rem;
  }
}

.product-order-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-order-form {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-order-form {
    gap: 20px;
  }
}
.product-order-form h4 {
  font-weight: 700;
  font-size: 1.125rem;
}
.product-order-form .product-selector .product-option {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-order-form .product-selector .product-option button {
  padding: 15px 20px;
  font-size: 1rem;
  cursor: pointer;
}
.product-order-form .product-selector .product-option button.selected {
  font-weight: bold;
}
@media (max-width: 768px) {
  .product-order-form .product-selector .product-option button {
    font-size: 0.875rem;
  }
}
.product-order-form .option-item {
  display: flex;
  width: 400px;
}
.product-order-form .option-item h4 {
  width: 50%;
  margin-bottom: inherit;
}
.product-order-form .option-item .product-stock {
  width: 50%;
  font-size: 1rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .product-order-form .option-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-order-form .option-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-order-form h4 {
    font-size: 1rem;
  }
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .appointment-form {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .appointment-form {
    gap: 20px;
  }
}
.appointment-form h4 {
  font-weight: 700;
  font-size: 1.125rem;
}
.appointment-form .time-group-title {
  margin-bottom: 10px;
}
.appointment-form .date-selector {
  width: 100%;
}
.appointment-form .time-selector {
  display: grid;
  width: 80%;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}
.appointment-form .time-selector .time-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.appointment-form .time-selector .time-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.appointment-form .time-selector .time-button {
  padding: 15px 20px;
  font-size: 1rem;
  cursor: pointer;
}
.appointment-form .time-selector .time-button.selected {
  font-weight: bold;
}
@media (max-width: 768px) {
  .appointment-form .time-selector .time-button {
    font-size: 0.875rem;
  }
}
.appointment-form .staff-selector div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.appointment-form .staff-selector .staff-button {
  padding: 15px 20px;
  font-size: 1rem;
  cursor: pointer;
}
.appointment-form .staff-selector .staff-button.selected {
  font-weight: bold;
}
@media (max-width: 768px) {
  .appointment-form .staff-selector .staff-button {
    font-size: 0.875rem;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .appointment-form .date-selector {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .appointment-form .date-selector {
    width: 100%;
  }
  .appointment-form .time-selector {
    width: 100%;
  }
}

.price-block {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.625rem;
}
.price-block .currency {
  font-weight: 700;
}
.price-block .current-price {
  font-weight: 700;
  font-size: 1.625rem;
  margin-right: 5px;
}
.price-block .original-price {
  text-decoration: line-through;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .price-block {
    font-size: 1.5rem;
  }
  .price-block .current-price {
    font-size: 1.5rem;
  }
}

.promotion-info {
  padding-left: 12px;
  font-size: 1rem;
}
.promotion-info .promotion-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.promotion-info .promotion-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.promotion-info .promotion-list .badge {
  padding: 2px 8px;
  font-size: 0.875rem;
  margin-right: 10px;
  font-weight: 700;
}
.promotion-info .promotion-list .text {
  word-break: break-word;
}
.promotion-info .promotion-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.promotion-info .promotion-footer .count {
  margin: 0 4px;
  font-weight: 700;
}
.promotion-info .promotion-footer .view-all {
  padding: 4px 10px;
  font-size: 1rem;
  cursor: pointer;
}

.quantity-wrapper,
.product-selector,
.staff-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quantity-box {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.quantity-box .quantity-btn {
  width: 40px;
  height: 40px;
  font-size: 1.125rem;
  cursor: pointer;
}
.quantity-box .quantity-btn i {
  font-size: 0.875rem;
}
.quantity-box .quantity-btn.disabled {
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 768px) {
  .quantity-box .quantity-btn {
    width: 50px;
    height: 50px;
  }
}

.quantity-input {
  width: 120px;
  height: 40px;
  text-align: center;
  font-size: 1rem;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.quantity-input::-webkit-outer-spin-button, .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
@media (max-width: 768px) {
  .quantity-input {
    height: 50px;
  }
}

.appointment-info p {
  font-size: 1.125rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.appointment-info .age-limit li {
  font-size: 1rem;
  font-weight: 700;
}

.appointment-place {
  padding-top: 30px;
}
.appointment-place h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.125rem;
}
.appointment-place li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.appointment-place li i {
  width: 5%;
  min-width: 25px;
  text-align: center;
}

.buy-btn,
.booking-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.buy-btn button,
.booking-btn button {
  cursor: pointer;
  font-size: 1rem;
  padding: 15px 25px;
  font-weight: 700;
}
.buy-btn button.disabled,
.booking-btn button.disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.product-detail-block,
.product-detail-rev-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 0 60px 0;
  gap: 60px;
}
.product-detail-block .video,
.product-detail-rev-block .video {
  width: 484px;
  height: 280px;
}
.product-detail-block .video iframe,
.product-detail-rev-block .video iframe {
  width: 100%;
  height: 100%;
}
.product-detail-block .product-expand-content .products-html,
.product-detail-rev-block .product-expand-content .products-html {
  border: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .product-detail-block .video,
  .product-detail-rev-block .video {
    width: 100%;
    height: 180px;
  }
}

.appointment-detail-block,
.appointment-detail-rev-block {
  padding-top: 60px;
}
.appointment-detail-block .appointment-info-block,
.appointment-detail-rev-block .appointment-info-block {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.appointment-detail-block .appointment-expand,
.appointment-detail-rev-block .appointment-expand {
  position: relative;
  padding: 20px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}
.appointment-detail-block .appointment-expand::after,
.appointment-detail-rev-block .appointment-expand::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../image/svg/arr_down_k.svg") center center no-repeat;
  right: 20px;
  top: calc(50% - 10px);
  transition: transform 0.2s;
  transform: rotate(180deg);
}
.appointment-detail-block .appointment-expand.active::after,
.appointment-detail-rev-block .appointment-expand.active::after {
  transform: rotate(360deg);
}
.appointment-detail-block .appointment-expand-content,
.appointment-detail-rev-block .appointment-expand-content {
  padding: 20px;
}
.appointment-detail-block .appointment-scope,
.appointment-detail-rev-block .appointment-scope {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  gap: 10px;
}
.appointment-detail-block .appointment-scope ul,
.appointment-detail-rev-block .appointment-scope ul {
  width: 100%;
}
.appointment-detail-block .appointment-scope ul li,
.appointment-detail-rev-block .appointment-scope ul li {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 20px;
}
.appointment-detail-block .appointment-scope ul li i,
.appointment-detail-rev-block .appointment-scope ul li i {
  margin-top: 3px;
}
.appointment-detail-block .service-details li,
.appointment-detail-rev-block .service-details li {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 30px;
}
.appointment-detail-block .service-details span,
.appointment-detail-rev-block .service-details span {
  font-size: xx-large;
  width: 10%;
  max-width: 70px;
}
.appointment-detail-block .service-details div:last-child,
.appointment-detail-rev-block .service-details div:last-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 93%;
}
.appointment-detail-block .appointment-video,
.appointment-detail-rev-block .appointment-video {
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
}
.appointment-detail-block .appointment-video iframe,
.appointment-detail-rev-block .appointment-video iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
}
@media (max-width: 768px) {
  .appointment-detail-block .appointment-scope,
  .appointment-detail-rev-block .appointment-scope {
    display: flex;
    flex-direction: column;
  }
  .appointment-detail-block .appointment-video iframe,
  .appointment-detail-rev-block .appointment-video iframe {
    height: 150px;
  }
}

.alcohol-warning-banner {
  width: 100%;
  min-height: 10vh;
  padding: 10px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alcohol-warning-banner .legal-icon img {
  height: 88px;
  flex-shrink: 0;
}
.alcohol-warning-banner span {
  padding-left: 12px;
  font-size: 36px;
  text-align: left;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .alcohol-warning-banner .legal-icon img {
    height: 80px;
  }
  .alcohol-warning-banner span {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .alcohol-warning-banner .legal-icon img {
    height: 50px;
  }
  .alcohol-warning-banner span {
    font-size: 20px;
  }
}

.carousel-full-main {
  grid-column: span 12;
}
.carousel-full-main .swiper-wrapper {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.carousel-full-main .swiper-wrapper .main-swiper {
  width: 100%;
  height: 100%;
}
.carousel-full-main .swiper-wrapper img {
  display: block;
}
.carousel-full-main .swiper-button-next,
.carousel-full-main .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
  padding: 15px 20px;
}
.carousel-full-main .swiper-button-next::after,
.carousel-full-main .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .carousel-full-main .swiper-button-next,
  .carousel-full-main .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .carousel-full-main .swiper-wrapper {
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 768px) {
  .carousel-full-main .swiper-wrapper {
    height: auto;
    aspect-ratio: 16/9;
  }
}

.carousel-full-long {
  grid-column: span 12;
}
.carousel-full-long .swiper-wrapper {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.carousel-full-long .swiper-wrapper .main-swiper {
  width: 100%;
  height: 100%;
}
.carousel-full-long .swiper-wrapper img {
  display: block;
}
.carousel-full-long .swiper-button-next,
.carousel-full-long .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
  padding: 15px 20px;
}
.carousel-full-long .swiper-button-next::after,
.carousel-full-long .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .carousel-full-long .swiper-button-next,
  .carousel-full-long .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .carousel-full-long .swiper-wrapper {
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 768px) {
  .carousel-full-long .swiper-wrapper {
    height: auto;
    aspect-ratio: 16/9;
  }
}

.carousel-thumb-full-main,
.carousel-thumb-rev-full-main {
  grid-column: span 12;
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.carousel-thumb-full-main .main-swiper,
.carousel-thumb-rev-full-main .main-swiper {
  width: 100%;
  height: 100%;
}
.carousel-thumb-full-main .mySwiper,
.carousel-thumb-rev-full-main .mySwiper {
  width: 230px;
  height: 100%;
  position: relative;
  padding-left: 10px;
}
.carousel-thumb-full-main .mySwiper .swiper-wrapper,
.carousel-thumb-rev-full-main .mySwiper .swiper-wrapper {
  width: 100%;
}
.carousel-thumb-full-main .mySwiper .swiper-slide,
.carousel-thumb-rev-full-main .mySwiper .swiper-slide {
  opacity: 0.5;
}
.carousel-thumb-full-main .mySwiper .swiper-slide-thumb-active,
.carousel-thumb-rev-full-main .mySwiper .swiper-slide-thumb-active {
  aspect-ratio: 1;
  padding: 5px;
  opacity: 1 !important;
}
.carousel-thumb-full-main .swiper-button-next,
.carousel-thumb-full-main .swiper-button-prev,
.carousel-thumb-rev-full-main .swiper-button-next,
.carousel-thumb-rev-full-main .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
  position: absolute;
  left: 51%;
  width: 45px;
  height: 45px;
  transform: rotate(90deg) translateY(45%);
}
.carousel-thumb-full-main .swiper-button-next::after,
.carousel-thumb-full-main .swiper-button-prev::after,
.carousel-thumb-rev-full-main .swiper-button-next::after,
.carousel-thumb-rev-full-main .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .carousel-thumb-full-main .swiper-button-next,
  .carousel-thumb-full-main .swiper-button-prev,
  .carousel-thumb-rev-full-main .swiper-button-next,
  .carousel-thumb-rev-full-main .swiper-button-prev {
    padding: 8px 12px;
  }
}
.carousel-thumb-full-main .swiper-button-next:hover,
.carousel-thumb-full-main .swiper-button-prev:hover,
.carousel-thumb-rev-full-main .swiper-button-next:hover,
.carousel-thumb-rev-full-main .swiper-button-prev:hover {
  transform: rotate(90deg) translateY(45%) scale(0.9);
}
.carousel-thumb-full-main .swiper-button-prev,
.carousel-thumb-rev-full-main .swiper-button-prev {
  top: 6%;
}
.carousel-thumb-full-main .swiper-button-next,
.carousel-thumb-rev-full-main .swiper-button-next {
  top: 94%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .carousel-thumb-full-main,
  .carousel-thumb-rev-full-main {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .carousel-thumb-full-main .main-swiper,
  .carousel-thumb-rev-full-main .main-swiper {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .carousel-thumb-full-main .mySwiper,
  .carousel-thumb-rev-full-main .mySwiper {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }
  .carousel-thumb-full-main .mySwiper img,
  .carousel-thumb-rev-full-main .mySwiper img {
    display: block;
    aspect-ratio: 1;
  }
  .carousel-thumb-full-main .swiper-button-next,
  .carousel-thumb-full-main .swiper-button-prev,
  .carousel-thumb-rev-full-main .swiper-button-next,
  .carousel-thumb-rev-full-main .swiper-button-prev {
    top: 50%;
    width: 35px;
    height: 35px;
    transform: translateY(25%);
  }
  .carousel-thumb-full-main .swiper-button-next:hover,
  .carousel-thumb-full-main .swiper-button-prev:hover,
  .carousel-thumb-rev-full-main .swiper-button-next:hover,
  .carousel-thumb-rev-full-main .swiper-button-prev:hover {
    transform: translateY(25%);
  }
  .carousel-thumb-full-main .swiper-button-prev,
  .carousel-thumb-rev-full-main .swiper-button-prev {
    left: 3%;
  }
  .carousel-thumb-full-main .swiper-button-next,
  .carousel-thumb-rev-full-main .swiper-button-next {
    left: 93%;
  }
}
@media (max-width: 768px) {
  .carousel-thumb-full-main,
  .carousel-thumb-rev-full-main {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .carousel-thumb-full-main .main-swiper,
  .carousel-thumb-rev-full-main .main-swiper {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .carousel-thumb-full-main .mySwiper,
  .carousel-thumb-rev-full-main .mySwiper {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }
  .carousel-thumb-full-main .mySwiper img,
  .carousel-thumb-rev-full-main .mySwiper img {
    display: block;
    aspect-ratio: 1;
  }
  .carousel-thumb-full-main .mySwiper .swiper-slide-thumb-active,
  .carousel-thumb-rev-full-main .mySwiper .swiper-slide-thumb-active {
    padding: 2px;
  }
  .carousel-thumb-full-main .swiper-button-next,
  .carousel-thumb-full-main .swiper-button-prev,
  .carousel-thumb-rev-full-main .swiper-button-next,
  .carousel-thumb-rev-full-main .swiper-button-prev {
    top: 50%;
    width: 20px;
    height: 25px;
    transform: translateY(35%);
  }
  .carousel-thumb-full-main .swiper-button-next:hover,
  .carousel-thumb-full-main .swiper-button-prev:hover,
  .carousel-thumb-rev-full-main .swiper-button-next:hover,
  .carousel-thumb-rev-full-main .swiper-button-prev:hover {
    transform: translateY(35%);
  }
  .carousel-thumb-full-main .swiper-button-prev,
  .carousel-thumb-rev-full-main .swiper-button-prev {
    left: 3%;
  }
  .carousel-thumb-full-main .swiper-button-next,
  .carousel-thumb-rev-full-main .swiper-button-next {
    left: 91%;
  }
}

.carousel-thumb-full-long,
.carousel-thumb-rev-full-long {
  grid-column: span 12;
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.carousel-thumb-full-long .main-swiper,
.carousel-thumb-rev-full-long .main-swiper {
  width: 100%;
  height: 100%;
}
.carousel-thumb-full-long .mySwiper,
.carousel-thumb-rev-full-long .mySwiper {
  width: 180px;
  height: 100%;
  position: relative;
  padding-left: 10px;
}
.carousel-thumb-full-long .mySwiper .swiper-wrapper,
.carousel-thumb-rev-full-long .mySwiper .swiper-wrapper {
  width: 100%;
}
.carousel-thumb-full-long .mySwiper .swiper-slide,
.carousel-thumb-rev-full-long .mySwiper .swiper-slide {
  opacity: 0.5;
}
.carousel-thumb-full-long .mySwiper .swiper-slide-thumb-active,
.carousel-thumb-rev-full-long .mySwiper .swiper-slide-thumb-active {
  aspect-ratio: 1;
  padding: 5px;
  opacity: 1 !important;
}
.carousel-thumb-full-long .swiper-button-next,
.carousel-thumb-full-long .swiper-button-prev,
.carousel-thumb-rev-full-long .swiper-button-next,
.carousel-thumb-rev-full-long .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
  position: absolute;
  left: 52%;
  width: 40px;
  height: 40px;
  transform: rotate(90deg) translateY(50%);
}
.carousel-thumb-full-long .swiper-button-next::after,
.carousel-thumb-full-long .swiper-button-prev::after,
.carousel-thumb-rev-full-long .swiper-button-next::after,
.carousel-thumb-rev-full-long .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .carousel-thumb-full-long .swiper-button-next,
  .carousel-thumb-full-long .swiper-button-prev,
  .carousel-thumb-rev-full-long .swiper-button-next,
  .carousel-thumb-rev-full-long .swiper-button-prev {
    padding: 8px 12px;
  }
}
.carousel-thumb-full-long .swiper-button-next:hover,
.carousel-thumb-full-long .swiper-button-prev:hover,
.carousel-thumb-rev-full-long .swiper-button-next:hover,
.carousel-thumb-rev-full-long .swiper-button-prev:hover {
  transform: rotate(90deg) translateY(50%) scale(0.9);
}
.carousel-thumb-full-long .swiper-button-prev,
.carousel-thumb-rev-full-long .swiper-button-prev {
  top: 6%;
}
.carousel-thumb-full-long .swiper-button-next,
.carousel-thumb-rev-full-long .swiper-button-next {
  top: 94%;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .carousel-thumb-full-long,
  .carousel-thumb-rev-full-long {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .carousel-thumb-full-long .main-swiper,
  .carousel-thumb-rev-full-long .main-swiper {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .carousel-thumb-full-long .mySwiper,
  .carousel-thumb-rev-full-long .mySwiper {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }
  .carousel-thumb-full-long .mySwiper img,
  .carousel-thumb-rev-full-long .mySwiper img {
    display: block;
    aspect-ratio: 1;
  }
  .carousel-thumb-full-long .swiper-button-next,
  .carousel-thumb-full-long .swiper-button-prev,
  .carousel-thumb-rev-full-long .swiper-button-next,
  .carousel-thumb-rev-full-long .swiper-button-prev {
    top: 50%;
    width: 35px;
    height: 35px;
    transform: translateY(25%);
  }
  .carousel-thumb-full-long .swiper-button-next:hover,
  .carousel-thumb-full-long .swiper-button-prev:hover,
  .carousel-thumb-rev-full-long .swiper-button-next:hover,
  .carousel-thumb-rev-full-long .swiper-button-prev:hover {
    transform: translateY(25%);
  }
  .carousel-thumb-full-long .swiper-button-prev,
  .carousel-thumb-rev-full-long .swiper-button-prev {
    left: 3%;
  }
  .carousel-thumb-full-long .swiper-button-next,
  .carousel-thumb-rev-full-long .swiper-button-next {
    left: 93%;
  }
}
@media (max-width: 768px) {
  .carousel-thumb-full-long,
  .carousel-thumb-rev-full-long {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .carousel-thumb-full-long .main-swiper,
  .carousel-thumb-rev-full-long .main-swiper {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .carousel-thumb-full-long .mySwiper,
  .carousel-thumb-rev-full-long .mySwiper {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }
  .carousel-thumb-full-long .mySwiper img,
  .carousel-thumb-rev-full-long .mySwiper img {
    display: block;
    aspect-ratio: 1;
  }
  .carousel-thumb-full-long .mySwiper .swiper-slide-thumb-active,
  .carousel-thumb-rev-full-long .mySwiper .swiper-slide-thumb-active {
    padding: 2px;
  }
  .carousel-thumb-full-long .swiper-button-next,
  .carousel-thumb-full-long .swiper-button-prev,
  .carousel-thumb-rev-full-long .swiper-button-next,
  .carousel-thumb-rev-full-long .swiper-button-prev {
    top: 50%;
    width: 20px;
    height: 25px;
    transform: translateY(35%);
  }
  .carousel-thumb-full-long .swiper-button-next:hover,
  .carousel-thumb-full-long .swiper-button-prev:hover,
  .carousel-thumb-rev-full-long .swiper-button-next:hover,
  .carousel-thumb-rev-full-long .swiper-button-prev:hover {
    transform: translateY(35%);
  }
  .carousel-thumb-full-long .swiper-button-prev,
  .carousel-thumb-rev-full-long .swiper-button-prev {
    left: 3%;
  }
  .carousel-thumb-full-long .swiper-button-next,
  .carousel-thumb-rev-full-long .swiper-button-next {
    left: 91%;
  }
}

.carousel-thumb-rev-full-main,
.carousel-thumb-rev-full-long {
  grid-column: span 12;
}
.carousel-thumb-rev-full-main .mySwiper,
.carousel-thumb-rev-full-long .mySwiper {
  padding-left: inherit;
  padding-right: 10px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .carousel-thumb-rev-full-main .mySwiper,
  .carousel-thumb-rev-full-long .mySwiper {
    padding-right: inherit;
  }
}
@media (max-width: 768px) {
  .carousel-thumb-rev-full-main .mySwiper,
  .carousel-thumb-rev-full-long .mySwiper {
    padding-right: inherit;
  }
  .carousel-thumb-rev-full-main .swiper-button-prev,
  .carousel-thumb-rev-full-long .swiper-button-prev {
    left: 3%;
  }
  .carousel-thumb-rev-full-main .swiper-button-next,
  .carousel-thumb-rev-full-long .swiper-button-next {
    left: 91%;
  }
}

.top10-carousel-lg {
  grid-column: span 12;
  grid-row: span 1;
  position: relative;
}
@media (max-width: 768px) {
  .top10-carousel-lg {
    width: 100%;
    grid-column: span 12;
  }
}
.top10-carousel-lg .top10-card {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  overflow: hidden;
  gap: 8px;
}
.top10-carousel-lg .top10-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 7/5;
  background-color: #c7c7c7;
  flex-shrink: 0;
}
.top10-carousel-lg .top10-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
  padding: 0 10px;
}
.top10-carousel-lg .top10-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.125rem;
  overflow: hidden;
  word-break: break-word;
}
.top10-carousel-lg .top10-price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.top10-carousel-lg .top10-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.top10-carousel-lg .top10-price p:first-child.none {
  visibility: hidden;
}
.top10-carousel-lg .top10-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
.top10-carousel-lg .swiper-button-next,
.top10-carousel-lg .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.top10-carousel-lg .swiper-button-next::after,
.top10-carousel-lg .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .top10-carousel-lg .swiper-button-next,
  .top10-carousel-lg .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .top10-carousel-lg .top10-name {
    font-size: 1rem;
  }
}

.top10-carousel-base {
  grid-column: span 8;
  grid-row: span 1;
  position: relative;
}
@media (max-width: 768px) {
  .top10-carousel-base {
    grid-column: span 12;
  }
}
.top10-carousel-base .top10-card {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  overflow: hidden;
  gap: 8px;
}
.top10-carousel-base .top10-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 7/5;
  background-color: #c7c7c7;
  flex-shrink: 0;
}
.top10-carousel-base .top10-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
  padding: 0 10px;
}
.top10-carousel-base .top10-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.125rem;
  overflow: hidden;
  word-break: break-word;
}
.top10-carousel-base .top10-price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.top10-carousel-base .top10-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.top10-carousel-base .top10-price p:first-child.none {
  visibility: hidden;
}
.top10-carousel-base .top10-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
.top10-carousel-base .swiper-button-next,
.top10-carousel-base .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.top10-carousel-base .swiper-button-next::after,
.top10-carousel-base .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .top10-carousel-base .swiper-button-next,
  .top10-carousel-base .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .top10-carousel-base .top10-name {
    font-size: 1rem;
  }
}

.top10-carousel-half {
  grid-column: span 6;
  grid-row: span 1;
  position: relative;
}
@media (max-width: 768px) {
  .top10-carousel-half {
    grid-column: span 12;
  }
}
.top10-carousel-half .top10-card {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  overflow: hidden;
  gap: 8px;
}
.top10-carousel-half .top10-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 7/5;
  background-color: #c7c7c7;
  flex-shrink: 0;
}
.top10-carousel-half .top10-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
  padding: 0 10px;
}
.top10-carousel-half .top10-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.125rem;
  overflow: hidden;
  word-break: break-word;
}
.top10-carousel-half .top10-price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.top10-carousel-half .top10-price p:first-child {
  font-size: 0.875rem;
  text-decoration: line-through;
}
.top10-carousel-half .top10-price p:first-child.none {
  visibility: hidden;
}
.top10-carousel-half .top10-price p:last-child {
  font-weight: 700;
  font-size: 1.125rem;
}
.top10-carousel-half .swiper-button-next,
.top10-carousel-half .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.top10-carousel-half .swiper-button-next::after,
.top10-carousel-half .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .top10-carousel-half .swiper-button-next,
  .top10-carousel-half .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .top10-carousel-half .top10-name {
    font-size: 1rem;
  }
}

.top10-bgtext-carousel-lg {
  grid-column: span 12;
  grid-row: span 1;
}
@media (max-width: 768px) {
  .top10-bgtext-carousel-lg {
    width: 100%;
    grid-column: span 12;
  }
}
.top10-bgtext-carousel-lg .top10-card {
  display: flex;
  flex-direction: column;
  width: auto;
  height: 400px;
  overflow: hidden;
  gap: 8px;
  justify-content: end;
  position: relative;
}
.top10-bgtext-carousel-lg .top10-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #c7c7c7;
}
.top10-bgtext-carousel-lg .shadow {
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  z-index: 2;
}
.top10-bgtext-carousel-lg .top10-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 8px;
  position: absolute;
  padding: 0 10px 0;
  z-index: 3;
}
.top10-bgtext-carousel-lg .top10-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.25rem;
  overflow: hidden;
  word-break: break-word;
}
.top10-bgtext-carousel-lg .top10-price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.top10-bgtext-carousel-lg .top10-price p:first-child {
  font-size: 1rem;
  text-decoration: line-through;
}
.top10-bgtext-carousel-lg .top10-price p:first-child.none {
  visibility: hidden;
}
.top10-bgtext-carousel-lg .top10-price p:last-child {
  font-weight: 700;
  font-size: 1.25rem;
}
.top10-bgtext-carousel-lg .swiper-button-next,
.top10-bgtext-carousel-lg .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.top10-bgtext-carousel-lg .swiper-button-next::after,
.top10-bgtext-carousel-lg .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .top10-bgtext-carousel-lg .swiper-button-next,
  .top10-bgtext-carousel-lg .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .top10-bgtext-carousel-lg .top10-card {
    height: 300px;
  }
  .top10-bgtext-carousel-lg .top10-name {
    font-size: 1.125rem;
  }
  .top10-bgtext-carousel-lg .top10-price p:last-child {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .top10-bgtext-carousel-lg .top10-card {
    height: 320px;
  }
  .top10-bgtext-carousel-lg .top10-name {
    font-size: 1rem;
  }
  .top10-bgtext-carousel-lg .top10-price p:last-child {
    font-size: 1rem;
  }
}

.top10-bgtext-carousel-base {
  grid-column: span 8;
  grid-row: span 1;
}
@media (max-width: 768px) {
  .top10-bgtext-carousel-base {
    grid-column: span 12;
  }
}
.top10-bgtext-carousel-base .top10-card {
  display: flex;
  flex-direction: column;
  width: auto;
  height: 400px;
  overflow: hidden;
  gap: 8px;
  justify-content: end;
  position: relative;
}
.top10-bgtext-carousel-base .top10-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #c7c7c7;
}
.top10-bgtext-carousel-base .shadow {
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  z-index: 2;
}
.top10-bgtext-carousel-base .top10-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 8px;
  position: absolute;
  padding: 0 10px 0;
  z-index: 3;
}
.top10-bgtext-carousel-base .top10-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.25rem;
  overflow: hidden;
  word-break: break-word;
}
.top10-bgtext-carousel-base .top10-price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.top10-bgtext-carousel-base .top10-price p:first-child {
  font-size: 1rem;
  text-decoration: line-through;
}
.top10-bgtext-carousel-base .top10-price p:first-child.none {
  visibility: hidden;
}
.top10-bgtext-carousel-base .top10-price p:last-child {
  font-weight: 700;
  font-size: 1.25rem;
}
.top10-bgtext-carousel-base .swiper-button-next,
.top10-bgtext-carousel-base .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.top10-bgtext-carousel-base .swiper-button-next::after,
.top10-bgtext-carousel-base .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .top10-bgtext-carousel-base .swiper-button-next,
  .top10-bgtext-carousel-base .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .top10-bgtext-carousel-base .top10-card {
    height: 300px;
  }
  .top10-bgtext-carousel-base .top10-name {
    font-size: 1.125rem;
  }
  .top10-bgtext-carousel-base .top10-price p:last-child {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .top10-bgtext-carousel-base .top10-card {
    height: 320px;
  }
  .top10-bgtext-carousel-base .top10-name {
    font-size: 1rem;
  }
  .top10-bgtext-carousel-base .top10-price p:last-child {
    font-size: 1rem;
  }
}

.top10-bgtext-carousel-half {
  grid-column: span 6;
  grid-row: span 1;
}
@media (max-width: 768px) {
  .top10-bgtext-carousel-half {
    grid-column: span 12;
  }
}
.top10-bgtext-carousel-half .top10-card {
  display: flex;
  flex-direction: column;
  width: auto;
  height: 350px;
  overflow: hidden;
  gap: 8px;
  justify-content: end;
  position: relative;
}
.top10-bgtext-carousel-half .top10-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #c7c7c7;
}
.top10-bgtext-carousel-half .shadow {
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  z-index: 2;
}
.top10-bgtext-carousel-half .top10-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 8px;
  position: absolute;
  padding: 0 10px 0;
  z-index: 3;
}
.top10-bgtext-carousel-half .top10-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.25rem;
  overflow: hidden;
  word-break: break-word;
}
.top10-bgtext-carousel-half .top10-price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.top10-bgtext-carousel-half .top10-price p:first-child {
  font-size: 1rem;
  text-decoration: line-through;
}
.top10-bgtext-carousel-half .top10-price p:first-child.none {
  visibility: hidden;
}
.top10-bgtext-carousel-half .top10-price p:last-child {
  font-weight: 700;
  font-size: 1.25rem;
}
.top10-bgtext-carousel-half .swiper-button-next,
.top10-bgtext-carousel-half .swiper-button-prev {
  width: auto;
  height: auto;
  padding: 15px 20px;
}
.top10-bgtext-carousel-half .swiper-button-next::after,
.top10-bgtext-carousel-half .swiper-button-prev::after {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .top10-bgtext-carousel-half .swiper-button-next,
  .top10-bgtext-carousel-half .swiper-button-prev {
    padding: 8px 12px;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .top10-bgtext-carousel-half .top10-card {
    height: 300px;
  }
  .top10-bgtext-carousel-half .top10-name {
    font-size: 1.125rem;
  }
  .top10-bgtext-carousel-half .top10-price p:last-child {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .top10-bgtext-carousel-half .top10-card {
    height: 320px;
  }
  .top10-bgtext-carousel-half .top10-name {
    font-size: 1rem;
  }
  .top10-bgtext-carousel-half .top10-price p:last-child {
    font-size: 1rem;
  }
}

.holkee-footer-wrap {
  margin-top: auto;
  width: 100%;
  height: auto;
  min-height: 150px;
  padding: 50px 32px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .holkee-footer-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 768px) {
  .holkee-footer-wrap {
    padding: 48px 24px;
  }
}

.footer-mid-cont {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 110px;
  height: 48px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.875rem;
}
.footer-menu li {
  margin: 10px 15px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .footer-menu {
    flex-direction: column;
    align-items: start;
  }
  .footer-menu li {
    margin: 10px 0;
  }
}
@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
    align-items: start;
  }
  .footer-menu li {
    margin: 10px 0;
  }
}

.footer-tools {
  display: flex;
  align-items: center;
}
.footer-tools a {
  padding: 10px 0 10px 20px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .footer-tools {
    margin-top: 20px;
  }
  .footer-tools a {
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .footer-tools {
    margin-top: 20px;
  }
  .footer-tools a {
    padding-right: 10px;
  }
}

.copyright {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.75rem;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .copyright {
    text-align: start;
  }
}
@media (max-width: 768px) {
  .copyright {
    text-align: start;
  }
}

.status-block {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 30px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  .status-block {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .status-block {
    max-width: 100%;
  }
}
@media (max-width: 1023px) and (min-width: 769px) {
  .status-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .status-block {
    gap: 20px;
  }
}

.popup-width-s {
  position: relative;
  max-width: 450px;
  height: auto;
  margin: 0 auto;
  padding: 30px;
}

.popup-width-m {
  position: relative;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  padding: 30px;
}

.popup-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.popup-content .popup-title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 30px;
}
.popup-content .popup-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
}

.register-mothod {
  display: flex;
}
.register-mothod li {
  width: 50%;
}
.register-mothod li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
@media (max-width: 768px) {
  .register-mothod li a {
    font-size: 0.875rem;
  }
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-block input {
  width: 100%;
  height: 45px;
  padding: 0 18px;
  font-size: 1rem;
}
.form-block a {
  font-size: 14px;
}
.form-block a:hover {
  text-decoration: underline;
}
.form-block p {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .form-block input {
    font-size: 0.875rem;
  }
}

.btn-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn-block button {
  cursor: pointer;
  width: 100%;
  height: 50px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .btn-block button {
    font-size: 0.875rem;
  }
}

.third-party-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.third-party-block p {
  font-size: 0.875rem;
}
.third-party-block a {
  font-size: 0.875rem;
}
.third-party-block a:hover {
  text-decoration: underline;
}
.third-party-block .third-party-btn {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.third-party-block .third-party-btn button {
  cursor: pointer;
  width: 50%;
  height: 50px;
  font-size: 1rem;
}
.third-party-block .google {
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  width: 50%;
  height: 50px;
  text-align: start;
  padding-left: 45px;
}
.third-party-block .google::after {
  content: "";
  position: absolute;
  left: 15px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background-image: url(../image/icon_google.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .third-party-block .google {
    font-size: 0.875rem;
  }
}
.third-party-block .facebook {
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  width: 50%;
  height: 50px;
  text-align: start;
  padding-left: 45px;
}
.third-party-block .facebook::after {
  content: "";
  position: absolute;
  left: 15px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background-image: url(../image/icon_facebook.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .third-party-block .facebook {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .third-party-block .third-party-btn button {
    font-size: 0.875rem;
  }
}

.tel-input {
  position: relative;
}
.tel-input input {
  width: 100%;
  height: 45px;
  padding-left: 90px;
}
.tel-input button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  cursor: pointer;
}
.tel-input button img {
  width: 30px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 15px;
}
.tel-input button span {
  position: relative;
  width: 30px;
  height: 100%;
}
.tel-input button span::after {
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  position: absolute;
  width: 15px;
  height: 6px;
  background: url("../image/svg/arr_down_k.svg") center center no-repeat;
  background-size: contain;
}

.popup-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-img img {
  width: 150px;
  height: 150px;
  overflow: hidden;
}

#popup-product-info {
  display: flex;
  flex-direction: column;
}
#popup-product-info .product-order-block {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1023px) and (min-width: 769px) {
  #popup-product-info .product-order-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  #popup-product-info .product-order-block {
    gap: 20px;
  }
}
#popup-product-info .product-order-block .item-img-block,
#popup-product-info .product-order-block .product-content-block {
  width: calc(50% - 15px);
}
@media (max-width: 1023px) and (min-width: 769px) {
  #popup-product-info .product-order-block {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #popup-product-info .product-order-block .item-img-block,
  #popup-product-info .product-order-block .product-content-block {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #popup-product-info .product-order-block {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #popup-product-info .product-order-block .item-img-block,
  #popup-product-info .product-order-block .product-content-block {
    width: 100%;
  }
}

#popup-appointment-info .appointment-thumb-block {
  margin-bottom: 60px;
}
#popup-appointment-info .appointment-info-block {
  gap: 30px;
}/*# sourceMappingURL=main.css.map */