.kiosk {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 8;
}

.kiosk__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.kiosk__background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.kiosk__contents {
  position: relative;
  max-width: 1644px;
  width: 100%;
  padding: 0 62px;
  padding-top: 263px;
  padding-bottom: 100px;
  margin: 0 auto;
  overflow: hidden;
}

.kiosk__contents__text {
  display: table;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.kiosk__contents__text__title {
  position: relative;
  font-weight: 600;
  font-size: 60px;
  line-height: 100%;
  color: #212121;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.kiosk__contents__text__title img {
  position: relative;
  width: 78px;
  height: 73px;
  margin-right: 41px;
  top: 15px;
}

.kiosk__contents__text__title span {
  font-family: Segoe Script;
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  color: #f8d35a;
}

.kiosk__contents__text__title.visible {
  opacity: 1;
  transform: translateY(0);
}

.kiosk__contents__list {
  position: relative;
  display: flex;
  gap: 70px;
  margin-top: 100px;
  width: 100%;
}

.kiosk__contents__list__item {
  display: flex;
  position: relative;
  width: 33.33%;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.kiosk__contents__list__item.visible {
  opacity: 1;
  transform: translateY(0);
}

.kiosk__contents__list__item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.kiosk__contents__list__item:nth-of-type(2) {
  transition-delay: 0.4s;
}
.kiosk__contents__list__item:nth-of-type(3) {
  transition-delay: 0.6s;
}

.kiosk__contents__list__item__mockup {
  display: flex;
  position: relative;
  width: 265px;
  height: 440px;
  align-items: center;
}

.kiosk__contents__list__item__mockup img {
  position: relative;
  width: 265px;
  height: 440px;
}

.kiosk__contents__list__item__information {
  position: relative;
  width: 100%;
  margin-top: 60px;
  padding-top: 25px;
  padding-bottom: 30px;
  box-shadow: 0px 0px 15px 0px #a2d9da;
  border-radius: 20px;
  background: #ffffff;
}

.kiosk__contents__list__item__information__title {
  display: flex;
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(0, 138, 146, 0.3) 0%,
    rgba(0, 207, 213, 0.3) 100%
  );
  width: 210px;
  height: 65px;
  border-radius: 0 12px 12px 0;
  align-items: center;
  padding-left: 22px;
  gap: 18px;
}

.kiosk__contents__list__item__information__title img {
  position: relative;
  width: auto;
  height: 34px;
}

.kiosk__contents__list__item__information__title span {
  position: relative;
  font-weight: 600;
  font-size: 25px;
  line-height: 100%;
  color: #00454a;
}

.kiosk__contents__list__item__information__paragraph {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  padding: 0 30px;
  margin-top: 30px;
  color: #333333;
}
