.titleCtn {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* sec 01 */

section.sec01 {
  aspect-ratio: 1920/900;
  background-image: url(/public/images/cafeViral-sec-01-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  justify-content: start;
  align-items: center;
}

section.sec01 > div {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
section.sec01 > div .titleCtn {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 24px;
}

/* sec 02 */

section.sec02 {
  aspect-ratio: 1920/1076;
  background-image: url(/public/images/cafeViral-sec-02-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  flex-direction: column;
  gap: 60px;
}

section.sec02 .cardCtn {
  width: 100%;
}
section.sec02 .cardCtn .cardItem {
  width: 546px;
  min-width: 546px;
  padding: 30px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;

  background-color: var(--c-white);
  border-radius: var(--br-20);
  border: 1px solid var(--c-border);
}
section.sec02 .cardCtn .cardItem.swiper-slide-active {
  background: var(--l-1);
}
section.sec02 .cardCtn .cardItem .imgCtn {
  width: 100%;
  border-radius: var(--br-20);
  background: #fafafa;
  aspect-ratio: 486/380;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
  padding: 30px;
}
section.sec02 .cardCtn .cardItem .imgCtn img {
  object-fit: contain;
  height: 100%;
}
section.sec02 .cardCtn .cardItem .cardDesc {
  text-align: center;
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 140%;
}
section.sec02 .cardCtn .cardItem.swiper-slide-active .cardDesc {
  color: var(--c-white);
}
section.sec02 .swiper02 {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 33px;
}

section.sec02 .swiper-scrollbar {
  height: 3px;
  background: rgba(77, 166, 255, 0.2);
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(
    (
      100% - 2 * var(--swiper-scrollbar-sides-offset, 1%) -
        (var(--pd-180-1) * 2)
    )
  );
}

section.sec02 .swiper-scrollbar-drag {
  background-color: var(--c-blue-2);
  border-radius: 2px;
}

/* sec 03 */

section.sec03 {
  background-color: var(--c-bg-4);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.onlyMoLogo {
  display: none;
}

/* sec 04 */

section.sec04 {
  background: var(--l-1);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

section.sec04 .cardCtn {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

section.sec04 .cardCtn .cardItem {
  display: flex;
  padding: 50px 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;

  transition: all 0.3s ease-in-out;
  border-radius: var(--br-20);
  background: rgba(255, 255, 255, 0.15);
}
section.sec04 .cardCtn .cardItem.active {
  background: var(--c-white);
}
section.sec04 .cardCtn .cardItem img {
  max-height: 80px;
  object-fit: cover;
}

section.sec04 .cardCtn .cardItem p {
  color: var(--c-white);
  text-align: center;

  font-size: var(--fs-24);

  font-weight: 600;
  line-height: 140%;
  transition: all 0.3s ease-in-out;
}
section.sec04 .cardCtn .cardItem.active p {
  color: var(--c-black-1);
}

/* sec 05 */

section.sec05 {
  display: flex;
  flex-direction: column;
  gap: 60px;

  padding-top: 180px;
}

section.sec05 .cardCtn {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
section.sec05 .onlyMoCard {
  display: none;
}
section.sec05 .cardCtn.onlyPcCard .cardItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 520px;

  padding: 130px 180px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  position: relative;
  opacity: 1;
}
section.sec05 .cardCtn .cardItem .cardDesc {
  padding-bottom: 24px;
}

section.sec05 .cardCtn .cardItem::before {
  content: none;
}

section.sec05 .cardCtn .cardItem:first-child {
  background-image: url(/public/images/cafeViral-sec-05-card-01.png);
}
section.sec05 .cardCtn .cardItem:nth-child(2) {
  background-image: url(/public/images/cafeViral-sec-05-card-02.png);
  transform: translateY(-2px);
}
section.sec05 .cardCtn .cardItem:last-child {
  background-image: url(/public/images/cafeViral-sec-05-card-03.png);
  transform: translateY(-4px);
}
section.sec05 .cardCtn .cardItem .cardTitle {
  font-size: var(--fs-30);
  font-weight: 700;
  line-height: 140%;
}
section.sec05 .cardCtn .cardItem .cardDesc {
  color: var(--c-black-3);
  font-size: var(--fs-22);
  font-weight: 500;
  line-height: 140%;
}

section.sec05 .cardCtn .cardItem .checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
section.sec05 .cardCtn .cardItem .checklist .checkItem {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.sec05 .cardCtn .cardItem .checklist .checkItem p {
  font-size: var(--fs-20-3);
  font-weight: 400;
  line-height: 160%;
}

/* sec 06 */

section.sec06 {
  background-image: url(/public/images/cafeViral-sec-06-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 60px;
}

section.sec06 .infoCtn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
section.sec06 .infoCtn .infoItem {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

section.sec06 .infoCtn .infoItem .imgCtn {
  position: relative;
  padding: 40px;
  width: 100%;
  aspect-ratio: 500/400;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--c-bg-5);
  border-radius: var(--br-20);
  background: #f5f8ff;

  transition: all 0.3s ease-in-out;
}

section.sec06 .infoCtn .infoItem:hover .imgCtn {
  background-color: var(--c-blue-6);
}
section.sec06 .infoCtn .infoItem .link {
  display: none;
  position: absolute;
  bottom: 40px;
  right: 40px;
}
section.sec06 .infoCtn .infoItem:hover .link {
  display: block;
}

section.sec06 .infoCtn .infoItem .imgCtn img {
  max-height: 180px;
  object-fit: cover;
}
section.sec06 .infoCtn .infoItem .textCtn {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
section.sec06 .infoCtn .infoItem .textCtn .infoTitle {
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
section.sec06 .infoCtn .infoItem .textCtn .infoDesc {
  color: var(--c-black-3);

  font-size: var(--fs-20-3);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* sec 07 */

section.sec07 {
  background-image: url(/public/images/cafeViral-sec-07-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  flex-direction: column;
  align-items: start;
}

.buttonCtn {
  width: 100%;
  display: flex;
  justify-content: end;
  gap: 20px;
}
@media (max-width: 1721px) {
  section.sec05 .cardCtn .cardItem {
    padding: 100px;
  }
}
@media (max-width: 1481px) {
  section.sec04 .cardCtn {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  section.sec04 .cardCtn .cardItem {
    padding: 30px;
  }
  section.sec04 .cardCtn .cardItem img {
    max-height: 60px;
  }
  section.sec05 .cardCtn .cardItem {
    padding: 80px;
  }
  section.sec05 .cardCtn.onlyPcCard .cardItem {
    padding: 80px;
  }
  section.sec06 .infoCtn {
    grid-template-columns: repeat(1, 1fr);
  }
  section.sec06 .infoCtn .infoItem .imgCtn {
    padding: 80px;
    aspect-ratio: auto;
  }
}
@media all and (max-width: 1199px) {
  section.sec01 > div {
    justify-content: center;
    gap: 20px;
  }
  section.sec01 > div a {
    align-self: auto;
  }
  section.sec01 > div .titleCtn {
    width: 100%;
    align-items: center;
    gap: 12px;
  }
  section.sec02 {
    gap: 30px;
  }
  section.sec02 .titleCtn {
    align-items: center;
    justify-content: center;
  }

  section.sec02 .sidePdMo {
    width: 100%;
    overflow: hidden;
  }
  section.sec02 .swiper02 {
    padding-bottom: 21px;
  }

  section.sec02 .cardCtn .cardItem {
    min-width: auto;
    padding: 16px 16px 24px 16px;
    gap: 16px;
  }

  section.sec02 .cardCtn .cardItem .imgCtn {
    aspect-ratio: 303/318;

    height: 318px;
  }
  section.sec03 {
    gap: 40px;
  }

  section.sec04 {
    gap: 40px;
  }
  section.sec05 .cardCtn .cardItem {
    padding: 60px;
  }
  section.sec05 .cardCtn.onlyPcCard .cardItem {
    padding: 60px;
  }
  section.sec05 .cardCtn .cardItem .cardDesc {
    padding-bottom: 0;
  }
  section.sec06 {
    align-items: center;
  }
  section.sec06 .infoCtn .infoItem .imgCtn img {
    max-height: 120px;
  }
  section.sec06 .infoCtn .infoItem {
    gap: 20px;
  }
  section.sec06 .infoCtn .infoItem .textCtn {
    gap: 12px;
  }
  section.sec06 .infoCtn .infoItem .link {
    bottom: 24px;
    right: 24px;
  }
  section.sec07 {
    align-items: center;
    gap: 40px;
  }
  .buttonCtn {
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
  .inquiryButton {
    align-self: auto;
  }
}
@media all and (max-width: 1023px) {
}
@media all and (max-width: 767px) {
  .onlyPcLogo {
    display: none;
  }
  .onlyMoLogo {
    display: block;
  }
  section.sec03 {
    gap: 30px;
  }

  section.sec03 .logoCtn {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  section.sec03 .logoCtn .logoItem {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .titleCtn {
    gap: 12px;
  }

  section.sec04 .cardCtn .cardItem p {
    font-size: 20px;
  }
  section.sec05 .cardCtn .cardItem .cardTitle {
    font-size: 20px;
  }
  section.sec05 .cardCtn .cardItem {
    padding: 40px;
  }
  section.sec05 .cardCtn.onlyPcCard .cardItem {
    padding: 40px;
  }

  section.sec05 .onlyPcCard {
    display: none;
  }
  section.sec05 .onlyMoCard {
    display: flex;
    gap: -1;
    flex-direction: column;
  }
  section.sec05 .cardCtn.onlyMoCard .cardItem {
    display: flex;
    flex-direction: column;
    gap: 40px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
  }

  section.sec05 .cardCtn .cardItem:first-child {
    background-image: url(/public/images/cafeViral-sec-05-card-01-mo.png);
  }
  section.sec05 .cardCtn .cardItem:nth-child(2) {
    background-image: url(/public/images/cafeViral-sec-05-card-02-mo.png);
  }
  section.sec05 .cardCtn .cardItem:last-child {
    background-image: url(/public/images/cafeViral-sec-05-card-03-mo.png);
  }
  section.sec05 .cardCtn.onlyMoCard .cardItem {
    aspect-ratio: 374/300;
    gap: 10px;
  }
  section.sec05 .cardCtn .cardItem .checklist {
    padding-top: 10px;
    gap: 8px;
  }
  section.sec06 .infoCtn .infoItem .textCtn .infoTitle {
    font-size: 20px;
  }
}
@media all and (max-width: 481px) {
  section.sec05 .cardCtn.onlyMoCard .cardItem {
    aspect-ratio: 374/450;
    gap: 10px;
  }
  section.sec04 {
    gap: 30px;
  }
}
