@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@font-face {
  font-family: "Makgeolli";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/Makgeolli.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: inherit;
  font-weight: inherit;
}

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

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

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

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

p {
  word-break: keep-all;
}

body {
  line-height: 1;
  color: #333333;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  letter-spacing: -0.025em;
  word-break: keep-all;
  font-size: 16px;
}

em,
address {
  font-style: normal;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px 12px 28px;
  border: 1px solid #b23939;
  border-radius: 0 0 16px 0;
  font-weight: 300;
  color: #b23939;
  transition: 0.5s;
}
.btn:hover {
  background: #b23939;
  color: #ffffff;
}
.btn .material-symbols-outlined {
  margin: 0 0 0 4px;
  font-size: 16px;
  font-weight: 300;
  vertical-align: -3px;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 999;
}
.header.on {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.header.on .header_wrap h1 img {
  filter: none;
}
.header.on .header_wrap .gnb > ul li a {
  color: #333333;
}
.header .header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.header .header_wrap h1 img {
  filter: brightness(0) invert(1);
}
.header .header_wrap .gnb > ul {
  display: flex;
  gap: 30px;
}
.header .header_wrap .gnb > ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}
@media (max-width: 768px) {
  .header .header_wrap .gnb > ul {
    gap: 0;
  }
}
.header .mobile_btn {
  display: none;
}
@media (max-width: 768px) {
  .header .mobile_btn {
    display: block;
    position: fixed;
    inset: 25px 30px auto auto;
    z-index: 1000;
    width: 30px;
    height: 30px;
  }
  .header .mobile_btn::before, .header .mobile_btn::after {
    content: "";
    position: absolute;
    inset: 14px 5px auto 5px;
    height: 2px;
    background: #ffffff;
    transition: 0.5s;
  }
  .header .mobile_btn button {
    border: none;
    outline: none;
    background: transparent;
  }
  .header .mobile_btn button::before {
    content: "";
    inset: 7px 5px auto 5px;
    position: absolute;
    height: 2px;
    background: #ffffff;
    opacity: 1;
    transition: 0.5s;
  }
  .header .mobile_btn button::after {
    content: "";
    inset: auto 5px 7px 5px;
    position: absolute;
    height: 2px;
    background: #ffffff;
    opacity: 1;
    transition: 0.5s;
  }
  .header .mobile_btn.on::before {
    background: #333333;
    transform: rotate(45deg);
  }
  .header .mobile_btn.on::after {
    background: #333333;
    transform: rotate(-45deg);
  }
  .header .mobile_btn.on button::before, .header .mobile_btn.on button::after {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .header.on .mobile_btn::before, .header.on .mobile_btn::after {
    background: #333333;
  }
  .header.on .mobile_btn button::before {
    background: #333333;
  }
  .header.on .mobile_btn button::after {
    background: #333333;
  }
  .header h1 {
    z-index: 1000;
  }
  .header h1 img {
    width: 120px;
  }
  .header .gnb {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 999;
    background: #ffffff;
    width: 100%;
    height: 100vh;
    padding: 150px 24px 0 24px;
    transition: 0.5s;
  }
  .header .gnb.on {
    left: 0;
  }
  .header .gnb.on ul li a {
    color: #333333;
  }
  .header .gnb > ul {
    flex-direction: column;
    gap: 0;
  }
  .header .gnb > ul li {
    line-height: 48px;
    border-bottom: 1px solid #dddddd;
  }
  .header .gnb > ul li a {
    font-size: 18px;
    font-weight: 500;
  }
  .header .gnb > ul li:hover .sub {
    display: none;
  }
  .header .gnb > ul .sub {
    display: none;
    position: static;
    transform: translate(0, 0);
    background: #f9f9f9;
    padding: 0;
    width: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
  }
}

.m_link {
  position: fixed;
  inset: 50% 80px auto auto;
  z-index: 999;
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  .m_link {
    inset: auto auto -10px 50%;
    transform: translate(-50%, -50%);
  }
  .m_link ul {
    display: flex;
    gap: 16px;
  }
}
.m_link ul li {
  margin: 0 0 16px 0;
}
.m_link ul li a {
  display: block;
  width: 10px;
  height: 10px;
  background: #f4adad;
  border-radius: 50%;
  font-size: 0;
  transition: 0.5s;
}
.m_link ul li.on a {
  background: #b23939;
}
@media (max-width: 768px) {
  .m_link {
    display: none;
  }
}

.main_visual {
  position: relative;
}
.main_visual .slogan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
@media (max-width: 768px) {
  .main_visual .slogan {
    width: 100%;
  }
}
.main_visual .slogan .img_box {
  margin: 0 0 24px 0;
  text-align: center;
}
.main_visual .slogan .img_box img {
  width: 200px;
}
@media (max-width: 768px) {
  .main_visual .slogan .img_box {
    margin: 0 0 8px 0;
  }
  .main_visual .slogan .img_box img {
    width: 80px;
  }
}
.main_visual .slogan h2 {
  margin: 0 0 16px 0;
  font-family: "Makgeolli";
  font-size: 72px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .main_visual .slogan h2 {
    font-size: 48px;
  }
}
.main_visual .slogan p {
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  line-height: 1.25;
  color: #ffffff;
}
@media (max-width: 768px) {
  .main_visual .slogan p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .main_visual .slogan {
    top: 45%;
  }
}
.main_visual .main_slide .itm {
  position: relative;
  height: 100vh;
}
.main_visual .main_slide .itm::after {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: rgba(0, 0, 0, 0.3);
}
.main_visual .main_slide .itm01 {
  background: url(../images/main_visual_01.jpg) no-repeat center center/cover;
}
.main_visual .main_slide .itm02 {
  background: url(../images/main_visual_02.jpg) no-repeat center center/cover;
}
.main_visual .main_slide .itm03 {
  background: url(../images/main_visual_03.jpg) no-repeat center center/cover;
}
.main_visual .main_slide .itm04 {
  background: url(../images/main_visual_04.jpg) no-repeat center center/cover;
}
.main_visual .arrows {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1440px;
  width: 100%;
  padding: 0 15px;
  z-index: 999;
}
.main_visual .arrows .material-symbols-outlined {
  font-size: 100px;
  font-weight: 100;
}
.main_visual .arrows .left {
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.5s;
}
.main_visual .arrows .left:hover {
  color: white;
}
.main_visual .arrows .right {
  position: absolute;
  right: 0;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.5s;
}
.main_visual .arrows .right:hover {
  color: white;
}
@media (max-width: 768px) {
  .main_visual .arrows {
    display: none;
  }
}
.main_visual .dots {
  position: absolute;
  bottom: 20%;
  left: 50%;
  z-index: 998;
  transform: translate(-50%, 0);
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .main_visual .dots {
    bottom: 21%;
    gap: 16px;
  }
}
.main_visual .dots li {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.main_visual .dots li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.5s linear;
}
.main_visual .dots li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
}
.main_visual .dots li span {
  font-size: 0;
}
.main_visual .dots li:hover::before {
  width: 30px;
  height: 30px;
}
.main_visual .dots li.on::before {
  width: 30px;
  height: 30px;
}
.main_visual .scroll_icon {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  z-index: 998;
}
.main_visual .scroll_icon a {
  display: flex;
  flex-direction: column;
}
.main_visual .scroll_icon a .txt {
  margin: 0 0 4px 0;
  font-size: 12px;
}
.main_visual .scroll_icon a .material-symbols-outlined {
  font-size: 32px;
  text-align: center;
  animation: moving 1s infinite;
}
@media (max-width: 768px) {
  .main_visual .scroll_icon {
    bottom: 5%;
  }
}
@keyframes moving {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 5px);
  }
  100% {
    transform: translate(0, 0px);
  }
}

.main_introduce {
  background: url(../images/grid.png);
}
.main_introduce .content {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main_introduce .content > * {
  flex: 1;
}
.main_introduce .content .img_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.main_introduce .content .img_box .itm {
  height: 160px;
}
.main_introduce .content .img_box .itm:nth-child(1) {
  height: 100%;
  grid-row: 1/span 2;
  background: url(../images/main_introduct_01.jpg) no-repeat center center/cover;
}
.main_introduce .content .img_box .itm:nth-child(2) {
  background: url(../images/main_introduct_02.jpg) no-repeat center center/cover;
}
.main_introduce .content .img_box .itm:nth-child(3) {
  background: url(../images/main_introduct_03.jpg) no-repeat center center/cover;
}
.main_introduce .content .img_box .itm:nth-child(4) {
  background: url(../images/main_introduct_04.jpg) no-repeat center center/cover;
}
.main_introduce .content .img_box .itm:nth-child(5) {
  background: url(../images/main_introduct_05.jpg) no-repeat center center/cover;
}
.main_introduce .content .img_box .itm:nth-child(6) {
  background: url(../images/main_introduct_06.jpg) no-repeat center center/cover;
}
.main_introduce .content .img_box .itm:nth-child(7) {
  grid-column: 2/span 2;
  background: url(../images/main_introduct_07.jpg) no-repeat bottom 30% center/cover;
}
@media (max-width: 768px) {
  .main_introduce .content .img_box .itm {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .main_introduce .content .img_box {
    width: 100%;
  }
}
.main_introduce .content .txt_box h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 24px 0;
}
@media (max-width: 768px) {
  .main_introduce .content .txt_box h2 {
    font-size: 32px;
  }
}
.main_introduce .content .txt_box p {
  margin: 0 0 24px 0;
  line-height: 1.5;
}
.main_introduce .content .txt_box p:nth-child(3) {
  margin: 0 0 48px 0;
}
@media (max-width: 768px) {
  .main_introduce .content {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .main_introduce {
    padding: 80px 0;
  }
}

.main_product {
  position: relative;
  overflow: hidden;
}
.main_product .title {
  margin: 0 0 80px 0;
}
.main_product .title h2 {
  margin: 0 0 24px 0;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
.main_product .title p {
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 768px) {
  .main_product .title {
    margin: 0 0 40px 0;
  }
  .main_product .title h2 {
    margin: 0 0 16px 0;
    font-size: 32px;
  }
  .main_product .title p {
    font-size: 16px;
  }
}
.main_product .tab .product_tab .product_tab_link {
  margin: 0 0 48px 0;
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 768px) {
  .main_product .tab .product_tab .product_tab_link {
    margin: 0 0 32px 0;
  }
}
.main_product .tab .product_tab .product_tab_link li a {
  font-size: 16px;
  font-weight: 500;
  color: #777777;
}
@media (max-width: 768px) {
  .main_product .tab .product_tab .product_tab_link li a {
    font-size: 14px;
    text-align: center;
  }
}
.main_product .tab .product_tab .product_tab_link li.on {
  position: relative;
}
.main_product .tab .product_tab .product_tab_link li.on::before {
  content: "";
  top: -100%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #f4adad;
  border-radius: 50%;
  position: absolute;
}
.main_product .tab .product_tab .product_tab_link li.on a {
  color: #b23939;
}
.main_product .tab .product_tab .product_tab_content .con {
  visibility: hidden;
  height: 0;
}
.main_product .tab .product_tab .product_tab_content .con.on {
  visibility: visible;
  height: auto;
}
.main_product .tab .product_tab .product_tab_content .con .arrows {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1600px;
  width: 100%;
  padding: 0 15px;
  z-index: 998;
}
.main_product .tab .product_tab .product_tab_content .con .arrows .material-symbols-outlined {
  font-size: 80px;
  font-weight: 100;
  color: #777777;
  transition: 0.5s;
}
.main_product .tab .product_tab .product_tab_content .con .arrows .material-symbols-outlined:hover {
  color: #b23939;
}
.main_product .tab .product_tab .product_tab_content .con .arrows .left {
  position: absolute;
  left: 0;
  cursor: pointer;
}
.main_product .tab .product_tab .product_tab_content .con .arrows .right {
  position: absolute;
  right: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .main_product .tab .product_tab .product_tab_content .con .arrows {
    top: 76.5%;
  }
  .main_product .tab .product_tab .product_tab_content .con .arrows .material-symbols-outlined {
    font-size: 56px;
  }
}
.main_product .tab .product_tab .product_tab_content .con .dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  z-index: 998;
  transform: translate(-50%, 0);
  display: flex;
  gap: 5px;
}
@media (max-width: 768px) {
  .main_product .tab .product_tab .product_tab_content .con .dots {
    bottom: 80px;
  }
}
.main_product .tab .product_tab .product_tab_content .con .dots li {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: rgba(119, 119, 119, 0.5);
  cursor: pointer;
  transition: width 0.5s;
}
.main_product .tab .product_tab .product_tab_content .con .dots li span {
  font-size: 0;
}
.main_product .tab .product_tab .product_tab_content .con .dots li.on {
  background: #b23939;
}
.main_product .tab .product_tab .product_tab_content .itm figure img {
  margin: 0 0 24px 0;
  width: 100%;
  border-radius: 16px;
}
.main_product .tab .product_tab .product_tab_content .itm figure figcaption strong {
  margin: 0 0 8px 0;
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.main_product .tab .product_tab .product_tab_content .itm figure figcaption span {
  display: block;
  text-align: center;
}
.main_product .tab .product_tab .product_tab_content .itm figure figcaption span .price {
  margin: 0 0 0 4px;
  display: inline-block;
  font-size: 18px;
  color: #b23939;
}
.main_product .bg {
  position: absolute;
  opacity: 0.3;
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.main_product .bg_left {
  bottom: 0%;
  left: 0%;
  width: 400px;
  height: 400px;
  z-index: -1;
}
@media (max-width: 768px) {
  .main_product .bg_left {
    bottom: -10%;
    left: -30%;
    width: 300px;
    height: 300px;
  }
}
.main_product .bg_right {
  top: -25%;
  right: -15%;
  width: 1000px;
  height: 1000px;
  z-index: -1;
}
@media (max-width: 768px) {
  .main_product .bg_right {
    top: -20%;
    right: -50%;
    width: 500px;
    height: 500px;
  }
}

.main_hiyorika {
  background: url(../images/hiyorika_bg.jpg) no-repeat center center/cover;
}
.main_hiyorika .desc_box .desc {
  margin: 0 0 64px 0;
}
.main_hiyorika .desc_box .desc span {
  display: block;
  margin: 0 0 16px 0;
  font-weight: 300;
  padding: 0 0 0 8px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .main_hiyorika .desc_box .desc span {
    margin: 0 0 4px 0;
    padding: 0 0 0 4px;
    color: #ffffff;
  }
}
.main_hiyorika .desc_box .desc h2 {
  margin: 0 0 40px 0;
  width: 320px;
  font-size: 100px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .main_hiyorika .desc_box .desc h2 {
    margin: 0 0 24px 0;
    width: auto;
    font-size: 56px;
    color: #ffffff;
  }
}
.main_hiyorika .desc_box .desc p {
  margin: 0 0 24px 0;
  width: 560px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .main_hiyorika .desc_box .desc p {
    margin: 0 0 16px 0;
    width: auto;
    color: #ffffff;
  }
}
@media (max-width: 768px) {
  .main_hiyorika .desc_box .desc {
    margin: 0 0 40px 0;
  }
}
@media (max-width: 768px) {
  .main_hiyorika .desc_box {
    position: relative;
    z-index: 998;
  }
}
@media (max-width: 768px) {
  .main_hiyorika .desc_box .btn {
    border: 1px solid #ffffff;
    color: #ffffff;
  }
}
@media (max-width: 768px) {
  .main_hiyorika {
    position: relative;
    background: url(../images/hiyorika_bg.jpg) no-repeat left 45% center/cover;
  }
  .main_hiyorika::before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    background: rgba(0, 0, 0, 0.3);
  }
}

.main_caramel {
  background: #fff3e3;
}
.main_caramel .wrap {
  display: flex;
  gap: 80px;
  height: 100%;
}
.main_caramel .wrap > * {
  flex: 1;
}
.main_caramel .wrap .left {
  background: url(../images/caramel_bg.jpg);
}
@media (max-width: 768px) {
  .main_caramel .wrap .left {
    background: url(../images/caramel_bg.jpg) no-repeat center center/cover;
  }
}
.main_caramel .wrap .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main_caramel .wrap .right .desc_box {
  margin: 0 0 32px 0;
}
@media (max-width: 768px) {
  .main_caramel .wrap .right .desc_box {
    margin: 0 0 16px 0;
  }
}
.main_caramel .wrap .right .desc_box .s_title {
  display: block;
  margin: 0 0 16px 0;
  font-weight: 300;
  padding: 0 0 0 8px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .main_caramel .wrap .right .desc_box .s_title {
    padding: 2px 0 2px 2px;
    position: absolute;
    top: 25%;
    left: 19px;
    transform: translate(0, -50%);
    background: #b23939;
    color: #fff;
  }
}
.main_caramel .wrap .right .desc_box h2 {
  margin: 0 0 40px 0;
  width: 320px;
  font-size: 100px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .main_caramel .wrap .right .desc_box h2 {
    margin: 0 0 24px 0;
    width: auto;
    font-size: 56px;
    position: absolute;
    top: 38%;
    left: 15px;
    transform: translate(0, -50%);
  }
}
.main_caramel .wrap .right .desc_box p {
  margin: 0 0 24px 0;
  width: 560px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .main_caramel .wrap .right .desc_box p {
    width: auto;
  }
}
.main_caramel .wrap .right .btn {
  align-self: flex-start;
}
@media (max-width: 768px) {
  .main_caramel .wrap .right {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .main_caramel .wrap {
    position: relative;
    flex-direction: column;
    gap: 160px;
  }
  .main_caramel .wrap > * {
    flex: 1 0 240px;
  }
}
@media (max-width: 768px) {
  .main_caramel {
    padding: 80px 0;
  }
}

.main_notice {
  padding: 80px 0;
}
.main_notice .title {
  display: flex;
  justify-content: space-between;
  margin: 0 0 16px 0;
}
.main_notice .title h2 {
  font-size: 32px;
  font-weight: 700;
}
.main_notice .title .material-symbols-outlined {
  font-size: 32px;
}
.main_notice .content {
  display: flex;
  gap: 30px;
}
.main_notice .content > div {
  flex: 1;
}
@media (max-width: 768px) {
  .main_notice .content {
    flex-wrap: wrap;
  }
  .main_notice .content > div {
    flex: 1 0 100%;
  }
}
.main_notice .content .left ul {
  border-top: 2px solid #333333;
}
.main_notice .content .left ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 768px) {
  .main_notice .content .left ul li {
    padding: 16px 0;
  }
}
.main_notice .content .left ul li a {
  transition: 0.5s;
}
.main_notice .content .left ul li a strong {
  position: relative;
  padding: 0 0 0 20px;
  display: -webkit-box;
  white-space: normal;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.main_notice .content .left ul li a strong::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b23939;
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  .main_notice .content .left ul li a strong {
    width: 240px;
  }
}
.main_notice .content .left ul li a:hover {
  color: #b23939;
}
.main_notice .content .left ul li span {
  font-size: 14px;
  color: #777777;
}
.main_notice .content .right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.main_notice .content .right a {
  display: block;
}
.main_notice .content .right .itm {
  position: relative;
}
.main_notice .content .right .itm a {
  height: 100%;
}
.main_notice .content .right .itm .txt_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_notice .content .right .itm .txt_box span {
  display: block;
  margin: 0 0 8px 0;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
}
.main_notice .content .right .itm .txt_box strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}
.main_notice .content .right .itm::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: rgba(0, 0, 0, 0.35);
}
.main_notice .content .right .shop {
  grid-row: 1/span 2;
  background: url(../images/notice_btn_01.jpg) no-repeat center center/cover;
}
.main_notice .content .right .recruit {
  background: url(../images/notice_btn_02.jpg) no-repeat center center/cover;
}
.main_notice .content .right .contact {
  background: url(../images/notice_btn_03.jpg) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .main_notice .content .right {
    height: 200px;
  }
}

.footer {
  padding: 40px 0;
  background: url(../images/foot_bg.png);
}
.footer .footer_wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer .footer_wrap .left img {
  margin: 0 0 16px 0;
}
.footer .footer_wrap .right .tab {
  margin: 0 0 8px 0;
  display: flex;
  gap: 30px;
  font-size: 15px;
}
.footer .footer_wrap .right .tab li {
  position: relative;
}
.footer .footer_wrap .right .tab li ~ li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -14px;
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
  background: #777777;
}
@media (max-width: 768px) {
  .footer .footer_wrap .right .tab li ~ li::before {
    display: none;
  }
}
.footer .footer_wrap .right .tab strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer .footer_wrap .right .tab {
    margin: 0 0 16px 0;
    flex-direction: column;
    gap: 8px;
  }
}
.footer .footer_wrap .right .copy {
  font-size: 14px;
  color: #777777;
}
@media (max-width: 768px) {
  .footer .footer_wrap {
    flex-wrap: wrap;
    gap: 0;
  }
}

.to_top {
  position: fixed;
  bottom: 100px;
  right: 100px;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .to_top {
    bottom: 0;
    right: 0;
  }
}
.to_top.on {
  bottom: 5%;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 768px) {
  .to_top.on {
    bottom: 0;
  }
}
.to_top .material-symbols-outlined {
  padding: 11px 13px 13px 13px;
  font-size: 24px;
  font-weight: 200;
  color: #b23939;
  background: #f4adad;
  border-radius: 50%;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */