@charset "utf-8";
/* 피자몰 메인 CSS - main.css */

/* 외부 CSS불러오기 */
@import url(./reset.css);
@import url(./core.css);
/* 12그리드 CSS */
@import url(./grid_12_flex.css);
@import url(./ani.css);
html {
  scroll-behavior: smooth;
}
/* 공사중표시 */
body * {
  /* outline: 2px dotted red; */
  -webkit-user-drag: none;
  user-select: none;
  /* background-color: black; */
}

/********************************************* 메인 css *********************************************/
/********************************************* 1.상단영역 *********************************************/
#top-area {
  z-index: 9999;
  position: relative;
}
.top-area {
  position: relative;
  height: 118px;
  display: flex;
  /* outline: 1px solid #000; */
}
#top-area > a:hover {
  color: red;
}
.gnb-menu,
.top-menu-right {
  flex: 1;
  line-height: 118px;
}
.gnb-menu ul {
  left: 0;
  top: 47px;
  display: flex;
  font-size: 1.9rem;
  flex-wrap: wrap;
  justify-content: space-around;
}
.p-logo {
  height: 118px;
  padding: 15px;
}
.top-menu-right ul {
  right: 158px;
  top: 47px;
  font-size: 1.9rem;
  display: flex;
  justify-content: space-evenly;
}
.top-menu-logo {
  right: 0;
  top: 47px;
  display: flex;
}
.search-logo {
  width: 30px;
  height: 30px;
  margin-right: 28px;
}
.cart-logo {
  width: 34px;
  height: 34px;
  margin-right: 12px;
}

.sub-menu {
  outline: 1px solid #000;
  position: absolute;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.781);
  box-sizing: border-box;
  /* 서브메뉴를 숨기기 위해 넘치는 자식 숨기기 */
  overflow: hidden;
  /* 높이값을 0으로 하면 자식요소가 숨겨짐 
    -> 단 여기에 위아래 패딩을 줄 경우 숨겨지지 않는다.*/
  max-height: 0;
  /* 처음에 최대높이값 세팅필수! 그래야 트랜지션 먹음 */

  /* 트랜지션 */
  transition: 0.4s ease-out;
}
.sub-menu2 {
  outline: 1px solid #000;
  position: absolute;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.781);
  box-sizing: border-box;
  /* 서브메뉴를 숨기기 위해 넘치는 자식 숨기기 */
  overflow: hidden;
  /* 높이값을 0으로 하면 자식요소가 숨겨짐 
    -> 단 여기에 위아래 패딩을 줄 경우 숨겨지지 않는다.*/
  max-height: 0;
  /* 처음에 최대높이값 세팅필수! 그래야 트랜지션 먹음 */

  /* 트랜지션 */
  transition: 0.4s ease-out;
}
/* 부모 li에 마우스 오버시 .sub-menu 높이값 변경하기 */
.gnb-menu > ul > li:hover .sub-menu {
  max-height: 350px;
  /* 최대 높이값을 컨텐츠 높이값 보다 좀 더 크게 잡으면
오버시 높이값이 내용만큼만 커지게된다 */
}
/* 패딩만 내부에 다른 블록요소 사용!
 -> 자식요소 숨기기 부모박스엔 패딩을 줄 수 없다!*/
.padding-box {
  padding: 1vw;
}
/* 타이틀바 */
.title-bar {
  display: flex;
  justify-content: space-between;
  font-size: 3.6rem;
}
/* 서브리스트 ul */
.sub-list ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 2.3rem;
  flex-direction: row;
  justify-content: space-around;
}
/* 서브리스트 li */
.sub-list li {
  margin-right: 20px;
}

.sub-list2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}
.sub-list2 img {
  width: 318px;
  height: 120px;
  margin-right: 30px;
  margin-top: 30px;
}
.gnb-menu > ul > li:hover .sub-menu2 {
  max-height: 600px;
  /* 최대 높이값을 컨텐츠 높이값 보다 좀 더 크게 잡으면
오버시 높이값이 내용만큼만 커지게된다 */
}

/* 모바일용 버튼 그룹박스 */
.btn-group {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 3vw;
  /* 플렉스 */
  /* display: flex; */
  display: none;
  gap: 20px;
}
/* 버튼 디자인 */
.btn-group button {
  background-color: transparent;
  border: none;
  font-size: 8rem;
  cursor: pointer;
  color: #222;
}
/* 햄버거 버튼 셋팅 : 처음에 두번째 i태그인 x버튼 안보임 */
.btn-ham i:nth-child(2) {
  display: none;
}

/* 상단영역 최상위 부모인  #top-area에 클래스 on을 주면
  x버튼보이기/햄버거숨기기 */
#top-area.on .btn-ham i:nth-child(2) {
  display: block;
}
#top-area.on .btn-ham i:nth-child(1) {
  display: none;
}
/* 햄버거 버튼 초기 상태: X 버튼 숨김 */
.btn-ham i:nth-child(2) {
  display: none;
}

/* on 클래스가 추가되면 햄버거 숨기고 X 버튼 보이기 */
#top-area.on .btn-ham i:nth-child(1) {
  display: none;
}

#top-area.on .btn-ham i:nth-child(2) {
  display: block;
}

/*******************************************  2.회전피자메뉴 *******************************************/
.r-pizza-menu {
  width: 1220px;
  text-align: center;
  margin: 40px auto;
  /* overflow: hidden; */
  perspective: 150vh;
  height: 605px;
  opacity: 0; /* 처음에 거의 투명 */
  transition: opacity 1.5s ease-in-out; /* 천천히 */
  /* 영역에 꽉 찬 이미지 */
  /* background: url(../배경폴더/baegyung.jpg) no-repeat center/100% 100%; */
}
.r-pizza-menu.on {
  opacity: 1; /* 0~1 사이값으로 조정 */
  /* transition: 3s ease-in-out linear forwards; */
}
.r-pizza.visible {
  opacity: 1; /* 영구적으로 보이게 */
}
.r-pizza-wrap {
  position: relative;
  aspect-ratio: 1.4;
  rotate: x 45deg;
}
.r-pizza {
  position: absolute;
  top: 14%;
  translate: 0 -50%;
  rotate: x 50deg;
  height: 605px;
  width: 81%;
  left: 9%;
  scale: 1 1.6;
}
.deco1 {
  position: absolute;
  left: 0%;
  width: 84px;
  top: 65%;
}
.deco2 {
  position: absolute;
  right: 0;
  top: 10%;
  width: 105px;
  height: 64px;
}
.deco3 {
  position: absolute;
  left: 0%;
  top: 5%;
  width: 105px;
  height: 150px;
}
.deco4 {
  position: absolute;
  right: 0;
  top: 69%;
  width: 105px;
  height: 125px;
}
/********************************************  3.로고영역 ********************************************/
.logo-area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 10vh auto 5vh;
}

/* 로고폰트 : 첫번째줄 */
.logo-font {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.6rem;
  color: #fff;
}

/* 각 텍스트 li에 초기 상태 설정 */
.logo-font li {
  align-items: center; /* 수직 중앙정렬 */
  justify-content: center; /* 수평 중앙정렬 */

  width: 120px;
  transition: transform 0.5s ease-in-out;
  /* opacity: 0; */
  transform: translateY(0); /* 초기 위치 */
  /* width: 115px; */
}

/* 텍스트가 올라간 상태 */
.logo-font li.active {
  transform: translateY(-30px);
  /* 이미지 너비 + 마진을 고려한 너비 */
  opacity: 1;
}

.logo-font p {
  /* margin-left: 17px; */
  background-color: #d22b2b;
  border-radius: 7px;
  padding: 8px 12px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap; /* 텍스트 줄바꿈 방지 */
}

/* 활성화된 텍스트의 스타일 */
.logo-font li.active p {
  background-color: #ff3333;
  box-shadow: 0 4px 8px rgba(210, 43, 43, 0.5);
}

/* 로고파트 : 두번째줄 */
.logo-part {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.logo-part li {
  width: 120px;
  text-align: center;
}
.logo-part img {
  height: 84px;
  width: 84px;
  /* margin-left: 20px; */
}

/************************************************************* 로고 변환영역 *************************************************************/
a.pizza-logo {
  display: inline-block;
}
/* 처음에 두번째 이미지 안보이게하기 */
.pizza-logo img:last-child {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.pizza-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.pizza-logo:hover img:last-child {
  display: inline;
}

a.chicken-logo {
  display: inline-block;
}
/* 처음에 두번째 이미지 안보이게하기 */
.chicken-logo img:last-child {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.chicken-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.chicken-logo:hover img:last-child {
  display: inline;
}
a.coke-logo {
  display: inline-block;
}
/* 처음에 두번째 이미지 안보이게하기 */
.coke-logo img:last-child {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.coke-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.coke-logo:hover img:last-child {
  display: inline;
}
a.party-logo {
  display: inline-block;
}
/* 처음에 두번째 이미지 안보이게하기 */
.party-logo img:last-child {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.party-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.party-logo:hover img:last-child {
  display: inline;
}
a.half-logo {
  display: inline-block;
}
/* 처음에 두번째 이미지 안보이게하기 */
.half-logo img:last-child {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.half-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.half-logo:hover img:last-child {
  display: inline;
}
a.salad-logo {
  display: inline-block;
}
/* 처음에 두번째 이미지 안보이게하기 */
.salad-logo img:last-child {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.salad-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.salad-logo:hover img:last-child {
  display: inline;
}

/************************************************************* 로고 변환영역 *************************************************************/
/********************************************  4. 8조각피자영역 ********************************************/
.eight-pizza-part {
  margin: 5vh auto;
  position: relative;
  height: 653px;
  width: 1220px;
  overflow: hidden;
}
.e-pizza-tit {
  top: -50%;
  position: absolute;
  transition: 2s ease-in-out all;
  z-index: -1;
}
.cheese {
  top: 0;
  max-width: 1220px;
  height: 318px;
}
.e-tit {
  top: 0;
  max-width: 1220px;
  position: absolute;
  left: 0;
}
.sl-part > a {
  z-index: 2;
}

/* 피자조각 공통요소 */
.pizza-slice > img {
  position: absolute;
  width: 144.1px;
  height: 155.5px;
  clip-path: polygon(0% 100%, 0% 0%, 100% 76%, 82% 86%, 55% 98%, 25% 100%);
}

.sl-piz1 > img {
  transform-origin: top left;
  position: absolute;
  width: 12.95%;
  height: 28.34%;
  bottom: 9.8%;
  left: 25.1%;
  clip-path: polygon(0% 100%, 0% 0%, 100% 85%, 73% 98%, 43% 104%, 25% 100%);
  rotate: 53deg;
  transform: skew(0deg, 347deg);
  opacity: 0;
}
.sl-piz1 > img:hover {
  opacity: 1;
}
.sl-piz2 > img {
  scale: 1.1;
  transform-origin: top left;
  position: absolute;
  width: 12.57%;
  height: 23.35%;
  bottom: 14.6%;
  left: 24.8%;
  clip-path: polygon(0% 100%, 1% 0%, 64% 67%, 82% 86%, 55% 98%, 25% 104%);
  rotate: 135deg;
  opacity: 0;
}
.sl-piz2 > img:hover {
  opacity: 1;
}
.sl-piz3 > img {
  scale: 1.12;
  transform-origin: top left;
  position: absolute;
  width: 8.27%;
  height: 27.83%;
  bottom: 9.8%;
  left: 25.1%;
  clip-path: polygon(0% 100%, 0% 0%, 100% 76%, 82% 86%, 55% 98%, 25% 100%);
  rotate: 80deg;
  transform: skew(350deg, 3deg);
  opacity: 0;
}
.sl-piz3 > img:hover {
  opacity: 1;
}

.sl-piz4 > img {
  transform-origin: top left;
  position: absolute;
  width: 12.3%;
  height: 26.8%;
  bottom: 10.2%;
  left: 24.8%;
  clip-path: polygon(0% 106%, 0% 0%, 100% 77%, 88% 68%, 54% 96%, 25% 100%);
  transform: skew(8deg, -19deg);
  rotate: 242deg;
  opacity: 0;
}
.sl-piz4 > img:hover {
  opacity: 1;
}

.sl-piz5 > img {
  transform-origin: top left;
  position: absolute;
  width: 12.38%;
  height: 24.81%;
  bottom: 12.6%;
  left: 24.6%;
  clip-path: polygon(0% 100%, 0% 0%, 100% 76%, 82% 86%, 55% 98%, 25% 100%);
  rotate: 1deg;
  opacity: 0;
}
.sl-piz5 > img:hover {
  opacity: 1;
}
.sl-piz6 > img {
  transform-origin: top left;
  position: absolute;
  width: 9.35%;
  height: 24.35%;
  bottom: 13.3%;
  left: 24.3%;
  clip-path: polygon(0% 100%, 0% 0%, 100% 76%, 82% 86%, 55% 98%, 25% 100%);
  rotate: 312deg;
  scale: 1.2;
  opacity: 0;
}
.sl-piz6 > img:hover {
  opacity: 1;
}

.sl-piz7 > img {
  transform-origin: top left;
  position: absolute;
  width: 11.4%;
  height: 29%;
  bottom: 8.8%;
  left: 24.8%;
  clip-path: polygon(0% 0%, 6% 0%, 106% 40%, 85% 80%, 47% 100%, 18% 100%);
  rotate: 280deg;
  transform: skew(2deg, 354deg);
  opacity: 0;
}
.sl-piz7 > img:hover {
  opacity: 1;
}
.sl-piz8 > img {
  transform-origin: top left;
  position: absolute;
  width: 10.99%;
  height: 24.19%;
  bottom: 12.3%;
  left: 25%;
  clip-path: polygon(0% 100%, 0% 0%, 100% 76%, 82% 86%, 55% 98%, 25% 100%);
  rotate: 179deg;
  opacity: 0;
}
.sl-piz8 > img:hover {
  opacity: 1;
}

/************************************************ 마우스 오버시 배경 영역 ************************************************/
.eight-pizza-part:hover {
  .e-pizza-tit {
    translate: 0 95%;
    z-index: -1;
  }
}
.eight-pizza-part:hover {
  .bg-pizza {
    width: 631px;
    height: 346px;
    position: absolute;
    right: 0%;
    rotate: 0deg;
    bottom: 0%;
  }
}
.eight-pizza-part:hover {
  .bg-sauce {
    position: absolute;
    width: 219px;
    height: 198px;
    right: -1%;
    top: 42%;
    rotate: 270deg;
  }
}
.eight-pizza-part:hover {
  .bg-b1 {
    position: absolute;
    width: 246px;
    height: 174px;
    top: 20%;
    right: 18%;
  }
}
.eight-pizza-part:hover {
  .bg-b2 {
    position: absolute;
    width: 246px;
    height: 174px;
    top: 34%;
    right: 4%;
  }
}
/************************************************ 마우스 오버시 배경 영역 ************************************************/
.e-pizza {
  position: absolute;
  left: 8.8%;
  bottom: 12%;
}

.bg-pizza {
  width: 54%;
  height: auto;
  position: absolute;
  right: -55%;
  bottom: 0%;
  transition: 2s ease-in-out all;
  rotate: 360deg;
  z-index: -1;
}
.bg-b1 {
  position: absolute;
  width: 246px;
  height: 174px;
  top: 20%;
  right: -27%;
  transition: 0.5s ease-in-out all 3.2s;
  z-index: -1;
}
.bg-b2 {
  position: absolute;
  width: 246px;
  height: 174px;
  top: 34%;
  right: -27%;
  transition: 0.5s ease-in-out all 3.8s;
  z-index: -1;
}
.bg-sauce {
  position: absolute;
  width: 219px;
  height: 198px;
  right: -20%;
  top: 42%;
  rotate: 270deg;
  transition: 0.5s ease-in-out all 3s;
  z-index: -1;
}
/**********8조각 피자 공통설정 ***********/
body .piz-info p {
  position: static;
  padding: 0 25px;
}
body .piz-info > section > div > div {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 20px;
  padding-top: 40px;
}
body .piz-info > section > i.fa-xmark {
  font-size: 6rem;
  top: 2%;
  right: 43%;
}

/**********8조각 피자 개별영역-서브창- ***********/
.sl-piz-info1 {
  position: absolute;
  top: 0%;
  left: 1%;
  translate: 100% 0%;
  width: 100%;
  height: 100%;
  background-color: #ea7777d1;
  z-index: 1;
  border-radius: 20px;
}
.sl-piz-info1 > i {
  position: absolute;
  top: 0%;
  right: 41%;
}
.piz-info-group1 {
  width: 47%;
  height: 98%;
}
.piz-info-group1 > img {
  position: absolute;
  top: 3%;
  left: 12%;
  width: 36%;
  height: 50%;
}
img.more-button {
  width: 9%;
  height: 16%;
  top: 18%;
  left: 26%;
  opacity: 0;
  position: absolute;
}
.info-box1 {
  position: absolute;
  top: 54%;
  left: 0%;
  width: 59%;
  height: 46%;
  background-color: #ea7777d1;
  border: 1px solid #000000;
  z-index: 1;
  border-radius: 20px;
}
.info-box1 > h2 {
  font-size: 4rem;
  text-align: center;
}
.info-box1 > p {
  position: absolute;
  left: 0;
  bottom: 16%;
  font-size: 2.1rem;
}
/**********8조각 피자 개별영역-서브창- ***********/
.sl-piz-info2 {
  position: absolute;
  top: 0%;
  left: 1%;
  translate: 100% 0%;
  width: 100%;
  height: 100%;
  background-color: #ea7777d1;
  z-index: 1;
  border-radius: 20px;
}
.sl-piz-info2 > i {
  position: absolute;
  top: 0%;
  right: 41%;
}
.piz-info-group2 {
  width: 47%;
  height: 98%;
}
.piz-info-group2 > img {
  position: absolute;
  top: 3%;
  left: 12%;
  width: 36%;
  height: 50%;
}
img.more-button {
  width: 9%;
  height: 16%;
  top: 18%;
  left: 26%;
  opacity: 0;
  position: absolute;
}
.info-box2 {
  position: absolute;
  top: 54%;
  left: 0%;
  width: 59%;
  height: 46%;
  background-color: #ea7777d1;
  border: 1px solid #000000;
  z-index: 1;
  border-radius: 20px;
}
.info-box2 > h2 {
  font-size: 4rem;
  text-align: center;
}
.info-box2 > p {
  position: absolute;
  left: 0;
  bottom: 16%;
  font-size: 2.1rem;
}
/**********8조각 피자 개별영역-서브창- ***********/
.sl-piz-info3 {
  position: absolute;
  top: 0%;
  left: 1%;
  translate: 100% 0%;
  width: 100%;
  height: 100%;
  background-color: #ea7777d1;
  z-index: 1;
  border-radius: 20px;
}
.sl-piz-info3 > i {
  position: absolute;
  top: 0%;
  right: 41%;
}
.piz-info-group3 {
  width: 47%;
  height: 98%;
}
.piz-info-group3 > img {
  position: absolute;
  top: 3%;
  left: 12%;
  width: 36%;
  height: 50%;
}
img.more-button {
  width: 9%;
  height: 16%;
  top: 18%;
  left: 26%;
  opacity: 0;
  position: absolute;
}
.info-box3 {
  position: absolute;
  top: 54%;
  left: 0%;
  width: 59%;
  height: 46%;
  background-color: #ea7777d1;
  border: 1px solid #000000;
  z-index: 1;
  border-radius: 20px;
}
.info-box3 > h2 {
  font-size: 4rem;
  text-align: center;
}
.info-box3 > p {
  position: absolute;
  left: 0;
  bottom: 16%;
  font-size: 2.1rem;
}
/**********8조각 피자 개별영역-서브창- ***********/
.sl-piz-info4 {
  position: absolute;
  top: 0%;
  left: 1%;
  translate: 100% 0%;
  width: 100%;
  height: 100%;
  background-color: #ea7777d1;
  z-index: 1;
  border-radius: 20px;
}
.sl-piz-info4 > i {
  position: absolute;
  top: 0%;
  right: 41%;
}
.piz-info-group4 {
  width: 47%;
  height: 98%;
}
.piz-info-group4 > img {
  position: absolute;
  top: 3%;
  left: 12%;
  width: 36%;
  height: 50%;
}
img.more-button {
  width: 9%;
  height: 16%;
  top: 18%;
  left: 26%;
  opacity: 0;
  position: absolute;
}
.more-button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.info-box4 {
  position: absolute;
  top: 54%;
  left: 0%;
  width: 59%;
  height: 46%;
  background-color: #ea7777d1;
  border: 1px solid #000000;
  z-index: 1;
  border-radius: 20px;
}
.info-box4 > h2 {
  font-size: 4rem;
  text-align: center;
}
.info-box4 > p {
  position: absolute;
  left: 0;
  bottom: 16%;
  font-size: 2.1rem;
}
/**********8조각 피자 개별영역-서브창- ***********/
.sl-piz-info5 {
  position: absolute;
  top: 0%;
  left: 1%;
  translate: 100% 0%;
  width: 100%;
  height: 100%;
  background-color: #ea7777d1;
  z-index: 1;
  border-radius: 20px;
}
.sl-piz-info5 > i {
  position: absolute;
  top: 0%;
  right: 41%;
}
.piz-info-group5 {
  width: 47%;
  height: 98%;
}
.piz-info-group5 > img {
  position: absolute;
  top: 3%;
  left: 12%;
  width: 36%;
  height: 50%;
}
img.more-button {
  width: 9%;
  height: 16%;
  top: 18%;
  left: 26%;
  opacity: 0;
  position: absolute;
}
.info-box5 {
  position: absolute;
  top: 54%;
  left: 0%;
  width: 59%;
  height: 46%;
  background-color: #ea7777d1;
  border: 1px solid #000000;
  z-index: 1;
  border-radius: 20px;
}
.info-box5 > h2 {
  font-size: 4rem;
  text-align: center;
}
.info-box5 > p {
  position: absolute;
  left: 0;
  bottom: 16%;
  font-size: 2.1rem;
}
/**********8조각 피자 개별영역-서브창- ***********/
.sl-piz-info6 {
  position: absolute;
  top: 0%;
  left: 1%;
  translate: 100% 0%;
  width: 100%;
  height: 100%;
  background-color: #ea7777d1;
  z-index: 1;
  border-radius: 20px;
}
.sl-piz-info6 > i {
  position: absolute;
  top: 0%;
  right: 41%;
}
.piz-info-group6 {
  width: 47%;
  height: 98%;
}
.piz-info-group6 > img {
  position: absolute;
  top: 3%;
  left: 12%;
  width: 36%;
  height: 50%;
}
img.more-button {
  width: 9%;
  height: 16%;
  top: 18%;
  left: 26%;
  opacity: 0;
  position: absolute;
}
.info-box6 {
  position: absolute;
  top: 54%;
  left: 0%;
  width: 59%;
  height: 46%;
  background-color: #ea7777d1;
  border: 1px solid #000000;
  z-index: 1;
  border-radius: 20px;
}
.info-box6 > h2 {
  font-size: 4rem;
  text-align: center;
}
.info-box6 > p {
  position: absolute;
  left: 0;
  bottom: 16%;
  font-size: 2.1rem;
}
/**********8조각 피자 개별영역-서브창- ***********/
.sl-piz-info7 {
  position: absolute;
  top: 0%;
  left: 1%;
  translate: 100% 0%;
  width: 100%;
  height: 100%;
  background-color: #ea7777d1;
  z-index: 1;
  border-radius: 20px;
}
.sl-piz-info7 > i {
  position: absolute;
  top: 0%;
  right: 41%;
}
.piz-info-group7 {
  width: 47%;
  height: 98%;
}
.piz-info-group7 > img {
  position: absolute;
  top: 3%;
  left: 12%;
  width: 36%;
  height: 50%;
}
img.more-button {
  width: 9%;
  height: 16%;
  top: 18%;
  left: 26%;
  opacity: 0;
  position: absolute;
}
.info-box7 {
  position: absolute;
  top: 54%;
  left: 0%;
  width: 59%;
  height: 46%;
  background-color: #ea7777d1;
  border: 1px solid #000000;
  z-index: 1;
  border-radius: 20px;
}
.info-box7 > h2 {
  font-size: 4rem;
  text-align: center;
}
.info-box7 > p {
  position: absolute;
  left: 0;
  bottom: 16%;
  font-size: 2.1rem;
}
/**********8조각 피자 개별영역-서브창- ***********/
.sl-piz-info8 {
  position: absolute;
  top: 0%;
  left: 1%;
  translate: 100% 0%;
  width: 100%;
  height: 100%;
  background-color: #ea7777d1;
  z-index: 1;
  border-radius: 20px;
}
.sl-piz-info8 > i {
  position: absolute;
  top: 0%;
  right: 41%;
}
.piz-info-group8 {
  width: 47%;
  height: 98%;
}
.piz-info-group8 > img {
  position: absolute;
  top: 3%;
  left: 12%;
  width: 36%;
  height: 50%;
}
img.more-button {
  width: 11%;
  aspect-ratio: 1;
  height: auto;
  top: 18%;
  left: 24%;
  opacity: 0;
  position: absolute;
}
.info-box8 {
  position: absolute;
  top: 54%;
  left: 0%;
  width: 59%;
  height: 46%;
  background-color: #ea7777d1;
  border: 1px solid #000000;
  z-index: 1;
  border-radius: 20px;
}
.info-box8 > h2 {
  font-size: 4rem;
  text-align: center;
}
.info-box8 > p {
  position: absolute;
  left: 0;
  bottom: 16%;
  font-size: 2.1rem;
}

/********************************************  5. 동영상영역 ********************************************/
.movie-part {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5vh;
  margin: 0 auto;
  overflow: hidden;
}
.m-banner-box {
  /* height: 364px; */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  position: absolute;
  top: 0;
}
div .swiper-button-prev{
  color: #fff;
}
div .swiper-button-next{
  color: #fff;
}
.m-banner {
  height: 364px;
  width: 1014px;
  position: absolute;
  top: 0%;
  left: 0%;
}
.m-deco {
  width: 1114px;
  height: 78px;
  position: absolute;
  bottom: 0%;
  left: 100%;
  z-index: 1;
}
.m-deco2 {
  width: 1114px;
  height: 78px;
  position: absolute;
  bottom: 0%;
  left: 100%;
  z-index: 1;
}
.m-deco3 {
  width: 1114px;
  height: 78px;
  position: absolute;
  bottom: 0%;
  left: 100%;
  z-index: 1;
}
.movie-box {
  position: relative;
  display: flex;
  gap: 25px;
}
.ad-box::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-image: url("../로고/icon_play.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
}

.review-box::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 35%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-image: url("../로고/icon_play.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
}

.ad-box {
  position: relative;
}
.ad-box img {
  width: 100%;
  height: 97%;
  border-radius: 30px;
  border-radius: 30px;
  box-shadow: 3px 3px 10px #856666;
  display: block; /* 이미지를 블록으로 만들어 정확한 위치 계산 */
}

.ad-box img:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
.review-box {
  margin-left: 7px;
  position: relative;
}
.review-box img {
  width: 100%;

  height: 97%;
  border-radius: 30px;
  box-shadow: 3px 3px 10px #856666;
  display: block;
}

.review-box img:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
.about-area {
  border-radius: 25px;
  width: 51%;
  height: auto;
  background-color: rgba(213, 161, 161, 1);
}
.about-area h2 {
  font-size: 3.2rem;
  margin: 0 auto;
  padding-top: 10px;
  text-align: center;
}
.about-img {
  width: 85%;
  height: 40%;
  cursor: pointer;
  margin-top: 18px;
  margin-left: 22.4px;
  outline: 10px ridge goldenrod;
  box-sizing: border-box;
}

.icon > a > i {
  text-align: center;
  margin-top: 10px;
  margin-left: 10%;
}
.icon > a > i:first-child {
  font-size: 8rem;
  cursor: pointer;
}
.icon > a > i:nth-child(1):hover {
  color: rgb(221, 23, 5);
}
.icon > a > i:last-child {
  font-size: 8rem;
  cursor: pointer;
}
.about-area > .icon{
  text-align: center;
}
/*****************************************************************************************/
/******************************** 재생영역  ***********************************************/
/*****************************************************************************************/
.review-detail {
  position: absolute;
  top: -102%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 89999;
  border-radius: 30px;
  transition: 0.4s ease-out;
}

.fa-xmark {
  top: 0;
}
.play-box {
  left: 2.5%;
  top: 2.5%;
  position: absolute;
  margin-left: 38px;
  margin-top: 17px;
  scale: 1.08;
}

.review-info {
  position: absolute;
  width: 608px;
  height: 333px;
  background-color: rgba(218, 188, 188, 1);
  margin-left: 45px;
  margin-top: 370px;
  border-radius: 10px;
}
.review-info > i {
  font-size: 7rem;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
}
.review-info > i:hover {
  color: rgb(221, 23, 5);
}
.review-info > p {
  font-size: 1.5rem;
  text-align: center;
}
.pizza-info {
  position: absolute;
  width: 525px;
  height: 600px;
  background-color: rgba(218, 188, 188, 1);
  top: 0;
  right: 0;
  margin-right: 14px;
  margin-top: 85px;
  border-radius: 20px;
}
.pizza-img {
  width: 400px;
  height: 300px;
  margin-left: 60px;
}
.pizza-info > p {
  font-size: 1.42rem;
}
info-logo {
  bottom: 0%;
  right: 0px;
  position: absolute;
}

a.delivery-logo {
  display: inline-block;
}
/* 처음에 두번째 이미지 안보이게하기 */
.delivery-logo img:last-child {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.delivery-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.delivery-logo:hover img:last-child {
  display: inline;
}
.fa-xmark {
  font-size: 8rem;
  vertical-align: middle;
  cursor: pointer;
  right: 0;
  position: absolute;
}
.review-detail > i:hover {
  color: rgb(221, 23, 5);
}
i.fa-brands.fa-youtube {
  position: static;
}
.info-logo{
position: absolute;
right: 0%;
bottom: 2%;
}

/********************************************  6. 이벤트/할인영역 ********************************************/
/* 6. 이벤트/할인영역 - 수정된 버전 */
.event-part {
  position: relative;
  height: 500px;
  width: 1220px;
  margin: 8vh auto;
}

.event-logo {
  position: absolute;
  width: 310px;
  height: 144px;
  top: 0%;
  left: 0%;
  margin-left: 83px;
  z-index: -1; /* 로고가 배너 위에 나타나도록 */
}

/* 이벤트 배너 컨테이너 */
.ev-banner {
  position: absolute;
  left: 0;
  top: 0;
  width: 517px;
  height: 329px;
  overflow: hidden; /* 넘치는 부분 숨기기 */
  border-radius: 20px;
  margin-top: 95px;
  margin-left: 84px;
  outline: rgb(218, 116, 112) 3px solid;
  cursor: pointer;
}

/* 배너 이미지들 - 모두 같은 위치에 겹치게 배치 */
.ev-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 이미지 비율 유지하면서 컨테이너 채우기 */
  opacity: 0; /* 기본적으로 모두 숨김 */
}

/* 첫 번째 이미지만 처음에 보이게 */
.ev-banner img:nth-child(1) {
  opacity: 1;
}

.banner-box1 {
  position: absolute;
  width: 307px;
  height: 143px;
  right: 0;
  top: 0;
  overflow: hidden;
  margin-right: 206px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 30px;
  outline: rgb(218, 116, 112) 3px solid;
}

/* 배너 이미지들 - 모두 같은 위치에 겹치게 배치 */
.banner-box1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover center; /* 이미지 비율 유지하면서 컨테이너 채우기 */
  opacity: 0; /* 기본적으로 모두 숨김 */
}

/* 첫 번째 이미지만 처음에 보이게 */
.banner-box1 img:nth-child(1) {
  opacity: 1;
}
/* 배너박스222222222222222222222222 */
.banner-box2 {
  position: absolute;
  width: 307px;
  height: 143px;
  right: 0;
  top: 0;
  overflow: hidden;
  margin-right: 206px;
  margin-top: 179px;
  cursor: pointer;
  border-radius: 30px;
  outline: rgb(218, 116, 112) 3px solid;
}

/* 배너 이미지들 - 모두 같은 위치에 겹치게 배치 */
.banner-box2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover center; /* 이미지 비율 유지하면서 컨테이너 채우기 */
  opacity: 0; /* 기본적으로 모두 숨김 */
}

/* 첫 번째 이미지만 처음에 보이게 */
.banner-box2 img:nth-child(1) {
  opacity: 1;
}
/* 배너박스33333333333333333333333333333333 */
.banner-box3 {
  position: absolute;
  width: 307px;
  height: 143px;
  right: 0;
  top: 0;
  overflow: hidden;
  margin-right: 206px;
  margin-top: 348px;
  cursor: pointer;
  border-radius: 30px;
  outline: rgb(218, 116, 112) 3px solid;
}

/* 배너 이미지들 - 모두 같은 위치에 겹치게 배치 */
.banner-box3 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover center; /* 이미지 비율 유지하면서 컨테이너 채우기 */
  opacity: 0; /* 기본적으로 모두 숨김 */
}

/* 첫 번째 이미지만 처음에 보이게 */
.banner-box3 img:nth-child(1) {
  opacity: 1;
}
.eve-logo-box {
  position: absolute;
  right: 6%;
  top: 21%;
  display: flex;
  max-width: 90px;
  flex-direction: column;
}
.eve-logo-box > img {
  max-width: 90px;
  max-height: 90px;
}
.eve-logo-box p {
  display: none;
  font-size: 1.6rem;
}

a.cou-logo {
  display: inline-block;
  text-align: center;
}
/* 처음에 두번째 이미지 안보이게하기 */
.cou-logo img:nth-child(2) {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.cou-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.cou-logo:hover img:nth-child(2) {
  display: inline;
}
.cou-logo:hover p {
  display: flex;
  text-align: center;
  color: #000000;
  border-radius: 3px;
  position: absolute;
  top: 20%;
  right: 36%;
  flex-direction: row;
}

a.stamp-logo {
  display: inline-block;
  text-align: center;
}
/* 처음에 두번째 이미지 안보이게하기 */
.stamp-logo img:nth-child(2) {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.stamp-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.stamp-logo:hover img:nth-child(2) {
  display: inline;
}
.stamp-logo:hover p {
  display: flex;
  text-align: center;
  color: #000000;
  border-radius: 3px;
  position: absolute;
  top: 46%;
  right: 25%;
  flex-direction: row;
}

a.pocket-logo {
  display: inline-block;
  text-align: center;
}
/* 처음에 두번째 이미지 안보이게하기 */
.pocket-logo img:nth-child(2) {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.pocket-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.pocket-logo:hover img:nth-child(2) {
  display: inline;
}
.pocket-logo:hover p {
  display: flex;
  text-align: center;
  color: #000000;
  border-radius: 3px;
  position: absolute;
  top: 70%;
  right: 13%;
  flex-direction: row;
}
a.mile-logo {
  display: inline-block;
  text-align: center;
}
/* 처음에 두번째 이미지 안보이게하기 */
.mile-logo img:nth-child(2) {
  display: none;
}
/* 마우스 오버시 첫번쨰이미지 안보이게하기 */
.mile-logo:hover img:first-child {
  display: none;
}
/*마우스 오버시 두번째 이미지 보이게하기 */
.mile-logo:hover img:nth-child(2) {
  display: inline;
}
.mile-logo:hover p {
  display: flex;
  text-align: center;
  color: #000000;
  border-radius: 3px;
  top: 80%;
  right: 3%;
  flex-direction: row;
  width: 7vw;
}

/******************************************** 7.하단영역 ********************************************/
#bottom-area {
  /* height: 249px; */
  margin: 0 auto;
  background-color: rgba(200, 181, 181, 1);
  position: relative;
  padding: 1.5vh 0;
  display: flex;
  flex-direction: column;
}
.bottom-list1 {
  display: flex;
  font-size: 2rem;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.footer-end {
  display: flex;
  justify-content: space-between;
  padding: 2vh;
}

.bottom-list2 {
  top: 17%;
  display: flex;
  text-align: left;
  font-size: 1.4rem;
}
.bottom-logo {
  position: static !important;
}
/***************************************************** 모바일 영역*****************************************************/
.m-right-menu {
  position: fixed;
  /* right: 0%; */
  width: 100vh;
  height: 100vh;
  background: #000000;
  transform: translateX(105%);
  transition: transform 0.4s ease-in-out;
  z-index: 999;
  font-size: 5rem;
  line-height: 17vh;
  top: 0%;
  z-index: 100000;
  color: #fff;
  display: none;
}
.m-piz-area .swiper-pagination-bullet-active {
  background-color: red;
}
.m-right-menu a {
  text-decoration: none;
  color: #fff;
}
.m-right-menu ul {
  padding-top: 5vh;
}
.m-right-menu h2 {
  font-size: 6vw;
  padding-left: 10vw;
  line-height: 15vh;
}
.m-right-menu ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: flex-start;
}
.m-right-menu h2:hover {
  color: #c99595;
  cursor: pointer;
}

/* on 상태일 때 메뉴 열림 */
#top-area.on + .m-right-menu {
  transform: translateX(0%);
}

.m-piz-area .swiper-wrapper {
  width: 100%;
  height: 75vh;
  margin-left: auto;
  margin-right: auto;
}
.m-piz-area .swiper-wrapper:hover {
  cursor: pointer;
}

.m-piz-area .swiper-slide {
  text-align: center;
  font-size: 18px;
  background-color: #e16b6b96;
  height: calc((100% - 30px) / 2) !important;
  border-radius: 20px;

  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-piz-area .swiper-slide img {
  width: 70%;
  height: 120%;
  object-fit: cover;
}
.m-piz-area {
  position: relative;
  margin-top: 8%;
  padding-bottom: 100px;
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}
.m-piz-area .swiper-wrapper li {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.m-piz-area p {
  font-size: 2vw;
  font-weight: bold;
  margin-bottom: 2vh;
  background-color: #c99595;
  border-radius: 10px;
  /* margin-top: 5%; */
}
.m-btn-menu {
  font-size: 4rem;
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e16b6b96;
  width: auto;
  min-width: 200px;
  height: auto;
  border-radius: 20px;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  text-align: center;
}
.m-serch-area {
  margin-top: 30%;
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.m-serch-area ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
.m-serch-area p {
  font-size: 1.8rem;
  width: auto;
  min-width: 120px;
  height: auto;
  border-radius: 20px;
  font-weight: bold;
  background-color: #3a373796;
  text-align: center;
  margin-top: 10px;
  padding: 8px 15px;
  margin-left: 0;
}
.m-serch-area li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: all 0.3s ease-in-out;
  aspect-ratio: 1/1;
  scale: 1.5;
  transform-origin: bottom;
}
h2.m-btn-menu:hover {
  cursor: pointer;
  background-color: #d22b2b;
  color: white;
  transform: translateX(-50%) scale(1.05);
}
.m-serch-area li img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.m-serch-area img:hover {
  scale: 1.2;
  transition: 0.3s ease-in-out all;
  cursor: pointer;
}

.mobile-zone {
  display: none;
}
