@keyframes fadezoom {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale(1.1);
    z-index: 2;
  }
  100% {
    opacity: 0;
  }
}
@keyframes textfade {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  16% {
    opacity: 1;
    visibility: visible;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    z-index: 2;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes imageFadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.p-modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  max-width: calc(100% - 270px);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-in;
}
.p-modal.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.p-modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: #fff;
  max-width: 1200px;
}

.p-modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #202020;
  opacity: 0.3;
}

.p-modal-close-btn {
  position: absolute;
  z-index: 20;
  isolation: isolate;
  top: 15px;
  right: 50px;
  width: 66px;
  height: 66px;
  cursor: pointer;
}

.p-keyword-detail {
  height: 100%;
}

.p-keyword-detail-inner {
  background: #fff;
  height: 100%;
}

.p-keyword-detail-content {
  height: 100%;
  overflow-y: scroll;
  padding: 5% 10%;
}

.p-keyword-detail-order {
  margin-bottom: 20px;
}

.p-keyword-detail-order-txt {
  color: #848484;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  display: inline-block;
}
.p-keyword-detail-order-txt-num {
  font-size: 3.1rem;
  line-height: 1;
  color: #000;
  margin-left: 5px;
}

.p-keyword-detail-title {
  margin-bottom: 15px;
  display: block;
  width: 100%;
}
.p-keyword-detail-title-txt {
  font-size: 3.5rem;
  line-height: 1.1428571429;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #212121;
}

.p-keyword-detail-description-wrap {
  padding-top: 30px;
  border-top: 1px solid #DEDEDE;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 3%;
}

.p-keyword-detail-thumb {
  width: 35%;
  max-width: 300px;
}

.p-keyword-detail-description {
  width: 62%;
  padding-top: 4%;
}
.p-keyword-detail-description-main {
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-bottom: 30px;
}

@media screen and (max-width: 1350px) {
  .p-keyword-detail-content {
    padding: 3% 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-modal {
    max-width: none;
    width: 100%;
  }

  .p-modal-close-btn {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    top: 1.3333333333vw;
    right: 5.3333333333vw;
  }

  .p-keyword-detail-description-wrap {
    flex-direction: column-reverse;
    position: relative;
  }

  .p-keyword-detail-order {
    margin-bottom: 4vw;
  }

  .p-keyword-detail-order-txt {
    font-size: 4vw;
  }
  .p-keyword-detail-order-txt-num {
    font-size: 7.0666666667vw;
  }

  .p-keyword-detail-content {
    padding: 6.6666666667vw 8vw;
  }

  .p-keyword-detail-title {
    margin-bottom: 2.6666666667vw;
  }

  .p-keyword-detail-title-txt {
    font-size: 7.0666666667vw;
  }

  .p-keyword-detail-description {
    width: 100%;
    padding-top: 0;
    margin-bottom: 4vw;
  }
  .p-keyword-detail-description-main {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
  .p-keyword-detail-description .m-base-txt {
    width: 95%;
    margin: 0 auto;
  }

  .p-keyword-detail-thumb {
    width: 50%;
    margin: 0 auto 6.6666666667vw;
  }
}
.p-keyword-list-wrap {
  max-width: 1070px;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 100px;
}

.p-keyword-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 3.5%;
}

.p-keyword-list-item {
  position: relative;
  top: 0;
  width: 31%;
  max-width: 31%;
  border-radius: 20px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  background: #FBFBFB;
  padding: 25px 0 35px;
  flex-grow: 1;
  transition: all 0.2s ease-in;
}
.p-keyword-list-item:hover {
  position: relative;
  top: -20px;
}
.p-keyword-list-item-logo {
  cursor: default;
  background: none;
  box-shadow: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-keyword-list-item-logo img {
  display: block;
  width: 100%;
}
.p-keyword-list-item-logo:hover {
  top: 0;
}

.p-keyword-list-item-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.p-keyword-order {
  margin-bottom: 20px;
  text-align: center;
  display: block;
  width: 100%;
}

.p-keyword-order-txt {
  color: #848484;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid #D4D4D4;
}
.p-keyword-order-txt-num {
  font-size: 3rem;
  line-height: 0.6666666667;
  color: #000;
  margin-left: 5px;
}

.p-keyword-title {
  margin-bottom: 15px;
  display: block;
  width: 100%;
  text-align: center;
}
.p-keyword-title-txt {
  font-size: 3rem;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #EC6C00;
}

.p-keyword-thumb {
  width: 144px;
  height: 144px;
  margin-top: auto;
}
.p-keyword-thumb-logo {
  width: 240px;
  height: auto;
  margin-right: -100%;
}

@media screen and (max-width: 767px) {
  .p-keyword-list-wrap {
    padding-bottom: 6.6666666667vw;
  }

  .p-keyword-list {
    flex-direction: column;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5.3333333333vw;
  }

  .p-keyword-list-item {
    width: 80%;
    max-width: none;
    padding: 4vw 0 6.6666666667vw;
    box-shadow: 0px 0.4vw 1.3333333333vw 0px rgba(0, 0, 0, 0.16);
  }
  .p-keyword-list-item:hover {
    top: 0;
  }
  .p-keyword-list-item-logo {
    cursor: default;
    background: none;
    box-shadow: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-keyword-list-item-logo img {
    display: block;
    width: 100%;
  }
  .p-keyword-list-item-logo:hover {
    top: 0;
  }

  .p-keyword-order {
    margin-bottom: 4vw;
  }

  .p-keyword-order-txt {
    font-size: 4vw;
  }
  .p-keyword-order-txt-num {
    font-size: 5.3333333333vw;
  }

  .p-keyword-title {
    margin-bottom: 4vw;
  }

  .p-keyword-title-txt {
    font-size: 7.0666666667vw;
  }

  .p-keyword-thumb {
    width: 26.6666666667vw;
    height: 26.6666666667vw;
  }
  .p-keyword-thumb-logo {
    width: 40vw;
    margin-right: 0;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  height: 100%;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-button {
  width: 60px;
  height: 60px;
  background: #EC6C00;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.3 !important;
}
.swiper-button-prev::after {
  font-size: 16px;
  color: #fff;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-next.swiper-button-disabled {
  opacity: 0.3 !important;
}
.swiper-button-next::after {
  font-size: 16px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .swiper-button {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }

  .swiper-slide {
    height: auto;
  }
}