@charset "UTF-8";

/* main */
#main {
  background: url("/img/landing/bg_main.jpg") 50% / cover no-repeat;
}
#main .width-wrap .top-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#main .width-wrap .top-area img {
  width: 128px;
}
#main .width-wrap .top-area img:last-child {
  width: 76px;
}
#main .width-wrap .title-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 143px 0 147px;
}
#main .width-wrap .title-area img {
  position: absolute;
}
#main .width-wrap .title-area img.first {
  width: 390px;
  top: -63px;
}
#main .width-wrap .title-area img:last-child {
  width: 435px;
  bottom: -76px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  animation: show 1.25s ease-in-out 1.7s forwards;
}
#main .width-wrap .title-area .mid-zone {
  display: flex;
  gap: 28px;
}
#main .width-wrap .title-area .mid-zone h1 {
  display: flex;
  align-items: center;
  gap: 28px;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
#main .width-wrap .title-area .mid-zone > h1 {
  animation: up-slide 1.25s cubic-bezier(0.24, 0.01, 0.58, 1) 0.2s forwards;
}
#main .width-wrap .title-area .mid-zone .over-hidden {
  overflow: hidden;
}
#main .width-wrap .title-area .mid-zone .over-hidden h1 {
  transform: translateX(-200%);
  animation: only-slide 1.7s cubic-bezier(0.24, 0.01, 0.58, 1) forwards;
}
#main .width-wrap .title-area .mid-zone h1 i {
  font-size: 57px;
  letter-spacing: -1.71px;
}
#main .width-wrap > img {
  width: 100%;
}

/* trip */
#trip .width-wrap {
  padding: var(--padding714);
}
#trip .width-wrap .title-area {
  text-align: center;
}
#trip .width-wrap .title-area h2 {
  margin: 12px 0 80px;
}
#trip .width-wrap .bottom-area {
  position: relative;
  display: grid;
  grid-template-rows: 414px auto 414px;
  gap: 32px;
}
#trip .width-wrap .bottom-area:before {
  content: "";
  position: absolute;
  left: 29px;
  top: 111px;
  width: 1.5px;
  height: 0;
  background: repeating-linear-gradient(
    to bottom,
    var(--gray-200) 0 6.5px,
    transparent 6.5px 12px
  );
  z-index: -1;
  transition: height 1.25s ease-in-out 0.75s;
}
#trip .width-wrap .bottom-area.aos-animate:before {
  height: 95.52%;
}
#trip .width-wrap .bottom-area:after {
  content: url("/img/landing/img_trip_arrow.png");
  position: absolute;
  left: 24px;
  bottom: -9%;
  opacity: 0;
  transition: opacity 0.25s linear 2s;
}
#trip .width-wrap .bottom-area.aos-animate:after {
  opacity: 1;
}
#trip .width-wrap .bottom-area .box-zone {
  display: grid;
  grid-template-columns: 1.166fr 1fr;
  align-items: center;
}
#trip .width-wrap .bottom-area .box-zone .box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
}
#trip .width-wrap .bottom-area .box-zone .box .label {
  position: relative;
  padding: 5px 10px;
  border-radius: 1000px;
  border: 1px solid var(--black);
  background: var(--white);
  width: fit-content;
}
#trip .width-wrap .bottom-area .box-zone .box.op .label {
  opacity: 0;
  height: 1px;
}
#trip .width-wrap .bottom-area .box-zone .box .text-zone p:nth-child(2) {
  margin: 4px 0 52px;
}
#trip .width-wrap .bottom-area .box-zone .box .text-zone ul.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#trip .width-wrap .bottom-area .box-zone .box .text-zone ul.list li {
  position: relative;
  padding-left: 15px;
}
#trip .width-wrap .bottom-area .box-zone .box .text-zone ul.list li:before {
  content: "";
  position: absolute;
  width: 5px;
  aspect-ratio: 1/1;
  border-radius: 500px;
  background: var(--black);
  left: 0;
  top: 13px;
}
#trip .width-wrap .bottom-area .box-zone .box .text-zone p.add {
  margin-top: 52px;
}
#trip .width-wrap .bottom-area .box-zone .img-box {
  position: relative;
}
#trip .width-wrap .bottom-area .box-zone img {
  width: 100%;
}
#trip .width-wrap .bottom-area .box-zone img.sub {
  position: absolute;
  right: 0;
  bottom: 0;
}
#trip .width-wrap .bottom-area .box-zone img.shadaw {
  filter: drop-shadow(-23px 27px 20px rgba(0, 0, 0, 0.15));
}

/* guide */
#guide {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-gray) 100%);
}
#guide .width-wrap .title-area {
  text-align: center;
}
#guide .width-wrap .title-area h6 {
  margin: 12px 0 80px;
}
#guide .width-wrap .img-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
#guide .width-wrap .img-area img,
#guide .width-wrap .mySwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#guide .width-wrap .mySwiper {
  display: none;
  width: 111%;
  left: -5.5%;
}
#guide .width-wrap .mySwiper .swiper-wrapper .swiper-slide {
  width: 50% !important;
}
#guide .width-wrap .mySwiper .swiper-pagination {
  position: relative;
  margin-top: 36px;
}
#guide .width-wrap .mySwiper .swiper-pagination .swiper-pagination-bullet {
  background: var(--gray-200);
  opacity: 1;
}
#guide
  .width-wrap
  .mySwiper
  .swiper-pagination
  .swiper-pagination-bullet:nth-child(n + 4) {
  display: none;
}
#guide
  .width-wrap
  .mySwiper
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background: var(--gray-500);
}
#guide .width-wrap p {
  text-align: center;
  margin-top: 28px;
}
#guide .width-wrap p.l-second {
  margin-top: 80px;
}

/* call */
#call .width-wrap .title-area .po-label {
  margin-bottom: 32px;
}
#call .width-wrap .title-area h6 {
  margin: 24px 0 80px;
}
#call .width-wrap > img {
  width: 100%;
  margin-bottom: 120px;
}
#call .width-wrap .typo-zone {
  margin-bottom: 120px;
}
#call .width-wrap a {
  padding: 20px 24px 20px 41px;
  border-radius: 1000px;
  background: var(--black);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}
#call .width-wrap a > img {
  width: 85px;
}
#call .width-wrap a .text-zone p {
  line-height: 160%;
}
#call .width-wrap a .text-zone p:last-child {
  line-height: 140%;
}
/* same */
#call .width-wrap a .icon,
#call .width-wrap a .icon .img-plc {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#call .width-wrap a .icon:after,
#call .width-wrap a .icon .img-plc:before,
#call .width-wrap a .icon .img-plc:after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  opacity: 0.1;
  background: #2ed15a;
}
/* end same */
#call .width-wrap a .icon {
  width: 120px;
}
#call .width-wrap a .icon:before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  background: #2ed15a;
  animation: large 2.25s ease-in-out infinite;
}
#call .width-wrap a .icon:after {
  animation: bounce 2.25s cubic-bezier(0.29, 0, 0.17, 0.99) infinite;
}
#call .width-wrap a .icon .img-plc {
  width: 100%;
}
#call .width-wrap a .icon .img-plc:before {
  animation: bounce 2.25s cubic-bezier(0.29, 0, 0.17, 0.99) 0.3s infinite;
}
#call .width-wrap a .icon .img-plc:after {
  animation: bounce 2.25s cubic-bezier(0.29, 0, 0.17, 0.99) 0.6s infinite;
}
#call .width-wrap a .icon .img-plc img {
  position: relative;
  z-index: 2;
  width: 65px;
  animation: swing 2.25s ease-in-out infinite;
}
#call .width-wrap > p {
  margin-top: 24px;
  text-align: center;
}

/* call & open */
#call,
#open {
  overflow-x: hidden;
}
#call .width-wrap .title-area,
#open .width-wrap .title-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}
#call .width-wrap .lottie-wrap.fe-f,
#call .width-wrap .lottie-wrap.fe-s,
#open .width-wrap .lottie-wrap.fe-f,
#open .width-wrap .lottie-wrap.fe-s {
  position: absolute;
  aspect-ratio: 1/1;
}
#call .width-wrap .lottie-wrap.fe-f,
#open .width-wrap .lottie-wrap.fe-f {
  width: 296px;
  top: -23.4px;
  left: -99px;
}
#call .width-wrap .lottie-wrap.fe-s,
#open .width-wrap .lottie-wrap.fe-s {
  width: 336px;
  top: 82.6px;
  right: -157px;
}
#call .width-wrap .lottie-wrap dotlottie-wc,
#open .width-wrap .lottie-wrap dotlottie-wc {
  width: 100%;
  aspect-ratio: 1/1;
}

/* open */
#open .width-wrap .title-area {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#open .width-wrap .title-area h2 {
  margin: 32px 0 28px;
}
#open .width-wrap .title-area h2 i {
  display: inline-block;
}
#open .width-wrap .box-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 64px 0 80px;
}
#open .width-wrap .box-area .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 390px;
  border-radius: 20px;
  overflow: hidden;
}
#open .width-wrap .box-area .box .img-zone {
  background: url("/img/landing/img_open_box-01.png") 50% / cover no-repeat;
}
#open .width-wrap .box-area .box .img-zone.second {
  background: url("/img/landing/img_open_box-02.png") 50% / cover no-repeat;
}
#open .width-wrap .box-area .box .text-plc {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--bg-gray);
}
#open .width-wrap .box-area .box .text-plc ul.list {
  display: flex;
  align-items: center;
  gap: 25px;
}
#open .width-wrap .box-area .box .text-plc ul.list li {
  position: relative;
  display: flex;
  align-items: center;
}
#open .width-wrap .box-area .box .text-plc ul.list li:before {
  content: "";
  position: absolute;
  right: -13px;
  width: 1px;
  height: 12px;
  background: var(--gray-300);
}
#open .width-wrap .box-area .box .text-plc ul.list li:last-child:before {
  display: none;
}
#open .width-wrap .info-area h5 {
  text-align: center;
  margin-bottom: 32px;
}
#open .width-wrap .info-area .box-zone {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px;
}
#open .width-wrap .info-area .box-zone .box {
  width: calc(33.33% - 14px);
}
#open .width-wrap .info-area .box-zone .box .img-plc {
  width: 100%;
  aspect-ratio: 333/250;
  border-radius: 20px;
  overflow: hidden;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
#open .width-wrap .info-area .box-zone .box:nth-child(1) .img-plc {
  background-image: url("/img/landing/img_open_info-01.png");
}
#open .width-wrap .info-area .box-zone .box:nth-child(2) .img-plc {
  background-image: url("/img/landing/img_open_info-02.png");
}
#open .width-wrap .info-area .box-zone .box:nth-child(3) .img-plc {
  background-image: url("/img/landing/img_open_info-03.png");
}
#open .width-wrap .info-area .box-zone .box:nth-child(4) .img-plc {
  background-image: url("/img/landing/img_open_info-04.png");
}
#open .width-wrap .info-area .box-zone .box:nth-child(5) .img-plc {
  background-image: url("/img/landing/img_open_info-05.png");
}
#open .width-wrap .info-area .box-zone .box p {
  padding: 0 12px;
}
#open .width-wrap .info-area .box-zone .box p:nth-child(2) {
  margin: 20px 0 12px;
}
#open .width-wrap .info-box {
  padding: 40px 0;
  box-sizing: border-box;
  border-radius: 20px;
  background: var(--bg-gray);
  text-align: center;
  margin-top: 80px;
}

/* refund */
#refund {
  background: url("/img/landing/bg_refund.png") top / 100% no-repeat
    var(--bg-gray);
}
#refund .width-wrap {
  padding: var(--padding240);
  display: flex;
  flex-direction: column;
  gap: 80px;
}
#refund .width-wrap .top-area {
  text-align: center;
}
#refund .width-wrap .top-area > p {
  margin-bottom: 28px;
}
#refund .width-wrap .top-area .typo-zone:last-child {
  margin-top: 12px;
}
#refund .width-wrap .mid-area .title-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#refund .width-wrap .mid-area .title-zone h2 {
  margin: 32px 0 24px;
}
#refund .width-wrap .mid-area .title-zone h6 img,
#refund .width-wrap .bottom-area a img {
  width: 80px;
}
#refund .width-wrap .mid-area .box-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 100px;
}
#refund .width-wrap .mid-area .box-zone .box {
  position: relative;
  padding: 60px 40px 40px;
  border-radius: 20px;
  background: var(--white);
  display: flex;
  justify-content: center;
}
#refund .width-wrap .mid-area .box-zone .box .label {
  position: absolute;
  text-align: center;
  width: 54.546%;
  padding: 8px 0;
  border-radius: 6px;
  background: var(--black);
  top: 0;
  transform: translateY(-50%);
}
#refund .width-wrap .mid-area .box-zone .box .text-plc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#refund .width-wrap .mid-area .box-zone .box .text-plc .text p.en {
  position: relative;
  padding-left: 12px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}
#refund .width-wrap .mid-area .box-zone .box .text-plc .text p.en:before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  aspect-ratio: 1/1;
  background: var(--secondary);
  border-radius: 500px;
}
#refund .width-wrap .bottom-area .box {
  position: relative;
  border-radius: 15px;
  background: var(--white);
  padding: 48px 28px;
  text-align: center;
}
#refund .width-wrap .bottom-area .box img {
  position: absolute;
}
#refund .width-wrap .bottom-area .box img.honey {
  width: 252px;
  left: -4px;
  top: -8.21px;
}
#refund .width-wrap .bottom-area .box img.coin {
  width: 48px;
  right: 40px;
  top: -16.21px;
  animation: spin 1.25s linear infinite;
}
#refund .width-wrap .bottom-area .box img.pot {
  width: 58px;
  right: 72px;
  bottom: -8.79px;
}
#refund .width-wrap .bottom-area a {
  width: 500px;
  box-sizing: border-box;
  padding: 28px 48px;
  border-radius: 500px;
  background: var(--black);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34.5px;
  margin: 28px auto 0;
}
#refund .width-wrap .bottom-area a.login-btn {
  position: relative;
  border: 1px solid var(--black);
  background: var(--white);
  margin: 96px auto 0;
}
@keyframes bounce-ud {
  0% {
    transform: translate(-50%, -100%);
  }
  50% {
    transform: translate(-50%, calc(-100% - 3px));
  }
  100% {
    transform: translate(-50%, -100%);
  }
}
#refund .width-wrap .bottom-area a.login-btn:before {
  content: url("/img/landing/img_refund_tooltip.png");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  animation: bounce-ud 1.2s ease-in-out infinite;
}
#refund .width-wrap .bottom-area a.login-btn p {
  transition: all 0.01s linear;
}
#refund .width-wrap .bottom-area a .line {
  height: 1px;
  width: 0;
  background: #fec20d;
  transition: all 0.25s linear;
}
#refund .width-wrap .bottom-area a p {
  position: relative;
}
#refund .width-wrap .bottom-area a p:before {
  content: attr(data-text);
  position: absolute;
  color: #fec20d;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.25s linear 0.25s;
}
#refund .width-wrap .bottom-area a:hover .line {
  width: 100%;
}
#refund .width-wrap .bottom-area a:hover p:before {
  width: 100%;
}
#refund .width-wrap .bottom-area a.login-btn:hover p {
  color: var(--white);
  transition: all 0.01s linear 0.5s;
}

/* careful */
#careful {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#careful .banner {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  background: url("/img/landing/bg_banner.jpg") right / cover no-repeat;
  border-radius: 20px;
  padding: 71.5px 100px;
}
#careful .banner img {
  width: 80px;
  margin-bottom: 4px;
}
#careful .banner p {
  display: flex;
  align-items: center;
  gap: 8px;
}
#careful .width-wrap.large {
  padding: var(--padding2414);
}
#careful .width-wrap.large .text-area {
  padding: 40px 20px 0;
  border-top: 1px solid var(--black);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
}
#careful .width-wrap.large .text-area p {
  line-height: 130%;
}
#careful .width-wrap.large .text-area ul.list-zone {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#careful .width-wrap.large .text-area ul.list-zone li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}
#careful .width-wrap.large .text-area ul.list-zone li i.dot {
  display: block;
  position: relative;
  top: 11.5px;
  width: 5px;
  aspect-ratio: 1/1;
  border-radius: 500px;
  background: var(--black);
}

/* responsive */
@media all and (max-width: 1200px) {
  #main .width-wrap .title-area img.first {
    width: 350px;
    top: -59px;
  }
  #main .width-wrap .title-area img:last-child {
    width: 362px;
    bottom: -64px;
  }
  #main .width-wrap .title-area .mid-zone h1 i {
    font-size: 44px;
  }

  #trip .width-wrap .bottom-area .box-zone {
    grid-template-columns: 1.9fr 1fr;
  }

  #careful .banner {
    background: url("/img/landing/bg_banner.jpg") 64% / cover no-repeat;
  }
}
@media all and (max-width: 930px) {
  #open .width-wrap .box-area .box {
    grid-auto-rows: 340px;
  }
  #open .width-wrap .box-area .box .text-plc {
    padding: 30px;
  }

  #refund .width-wrap .mid-area .box-zone .box {
    padding: 50px 30px 30px;
  }
  #refund .width-wrap .bottom-area .box img.pot {
    width: 49px;
    right: 18px;
    bottom: -12.52px;
  }

  #guide .width-wrap .img-area {
    display: none;
  }
  #guide .width-wrap .mySwiper {
    display: block;
  }
  #guide .width-wrap .mySwiper .swiper-pagination {
    margin-top: 27px;
  }
  #guide .width-wrap p {
    margin-top: 9px;
  }
  #guide .width-wrap p.l-second {
    margin-top: 60px;
  }
}
@media all and (max-width: 815px) {
  #main .width-wrap .title-area img.first {
    width: 310px;
    top: -55px;
  }
  #main .width-wrap .title-area img:last-child {
    width: 280px;
    bottom: -50px;
  }
  #main .width-wrap .title-area .mid-zone h1 i {
    font-size: 33px;
  }

  #trip .width-wrap .bottom-area {
    grid-template-rows: 600px auto 764.56px;
  }
  #trip .width-wrap .bottom-area:before {
    top: 1px;
  }
  #trip .width-wrap .bottom-area.aos-animate:before {
    height: calc(100% + 50px);
  }
  #trip .width-wrap .bottom-area:after {
    bottom: -57px;
  }
  #trip .width-wrap .bottom-area .box-zone {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #trip .width-wrap .bottom-area .box-zone img {
    width: 80%;
  }
  #trip .width-wrap .bottom-area .box-zone .img-box {
    display: flex;
    justify-content: flex-end;
  }
  #trip .width-wrap .bottom-area .box-zone .box .text-zone ul.list li:before {
    width: 4px;
    top: 11px;
  }

  #call .width-wrap > img,
  #call .width-wrap .typo-zone {
    margin-bottom: 80px;
  }
  #call .width-wrap a {
    padding: 12px 16px 11px 33px;
  }
  #call .width-wrap a .icon {
    width: 80px;
  }
  #call .width-wrap a .icon .img-plc img {
    width: 40px;
  }

  #open .width-wrap .title-area h6 {
    line-height: 158%;
  }
  #open .width-wrap .box-area .box {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
    grid-auto-rows: auto;
  }
  #open .width-wrap .info-area .box-zone .box {
    width: calc(50% - 10px);
  }
  #open .width-wrap .info-box p {
    font-size: 19px;
  }

  #refund .width-wrap .mid-area .title-zone h6 {
    text-align: center;
    line-height: 225%;
  }
  #refund .width-wrap .mid-area .box-zone {
    grid-template-columns: 1fr;
    margin-top: 76px;
    justify-items: center;
  }
  #refund .width-wrap .mid-area .box-zone .box {
    width: 100%;
    box-sizing: border-box;
  }
  #refund .width-wrap .bottom-area .box img.honey {
    width: 176px;
    left: -2px;
    top: -7.48px;
  }
  #refund .width-wrap .bottom-area .box img.pot {
    width: 39px;
  }
  #refund .width-wrap .bottom-area a {
    width: 100%;
  }

  #careful .width-wrap.large .text-area {
    padding: 30px 20px 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #careful .width-wrap.large .text-area ul.list-zone li {
    gap: 8px;
  }
  #careful .width-wrap.large .text-area p {
    text-align: center;
  }
}
@media all and (max-width: 775px) {
  #careful .banner {
    padding: 55px 62px;
  }
}
@media all and (max-width: 625px) {
  #trip .width-wrap .bottom-area:before {
    top: 19px;
  }
  #trip .width-wrap .bottom-area.aos-animate:before {
    height: calc(100% + 33px);
  }
}
@media all and (max-width: 600px) {
  #refund .width-wrap .bottom-area .box img.coin {
    display: none;
  }

  #careful .banner {
    background: url("/img/landing/bg_banner.jpg") 77% / cover no-repeat;
  }
  #careful .banner img {
    width: 50px;
    margin-bottom: 12px;
  }
  #careful .banner p {
    align-items: flex-start;
    gap: 4px;
    flex-direction: column;
  }
}
@media all and (max-width: 500px) {
  #main {
    background: url("/img/landing/bg_main_m.jpg") 50% / cover no-repeat;
  }
  #main .width-wrap .top-area img {
    width: 78.375px;
  }
  #main .width-wrap .top-area img:last-child {
    width: 42px;
  }
  #main .width-wrap .title-area {
    margin: 129.44px 0 105px;
  }
  #main .width-wrap .title-area img.first {
    width: 270px;
    top: -45px;
  }
  #main .width-wrap .title-area img:last-child {
    width: 198px;
    bottom: -38px;
  }
  #main .width-wrap .title-area .mid-zone,
  #main .width-wrap .title-area .mid-zone h1 {
    gap: 12px;
  }
  #main .width-wrap .title-area .mid-zone h1 i {
    font-size: 22px;
    letter-spacing: -0.66px;
  }
  #main .width-wrap > img {
    width: 105%;
    position: relative;
    left: -2.5%;
  }

  #trip .width-wrap .title-area h2 {
    margin: 4px 0 56px;
  }
  #trip .width-wrap .bottom-area {
    grid-template-rows: auto auto auto;
    gap: 56px;
  }
  #trip .width-wrap .bottom-area:before {
    left: 24px;
  }
  #trip .width-wrap .bottom-area.aos-animate:before {
    height: calc(100% + 40px);
  }
  #trip .width-wrap .bottom-area:after {
    left: 19.5px;
    bottom: -64px;
  }
  #trip .width-wrap .bottom-area .box-zone .box .label {
    padding: 1.5px 10px;
    font-size: 11px;
    letter-spacing: -0.33px;
  }
  #trip .width-wrap .bottom-area .box-zone .box .text-zone p:nth-child(2) {
    margin: 4px 0 24px;
    font-size: 22px;
    letter-spacing: -0.66px;
  }
  #trip .width-wrap .bottom-area .box-zone .box .text-zone ul.list {
    gap: 8px;
  }
  #trip .width-wrap .bottom-area .box-zone .box .text-zone ul.list li {
    padding-left: 14px;
  }
  #trip .width-wrap .bottom-area .box-zone .box .text-zone ul.list li:before {
    top: 8px;
  }
  #trip .width-wrap .bottom-area .box-zone .box .text-zone p.add {
    margin-top: 24px;
  }
  #trip .width-wrap .bottom-area .box-zone img {
    width: 74.2%;
  }

  #guide .width-wrap .title-area h6 {
    margin: 8px 0 40px;
    font-size: 14px;
    letter-spacing: -0.42px;
  }
  #guide .width-wrap .mySwiper .swiper-wrapper .swiper-slide {
    width: 82.8% !important;
  }
  #guide .width-wrap p.l-second {
    font-size: 22px;
    letter-spacing: -0.66px;
    margin-top: 40px;
  }

  #call .width-wrap .title-area h6,
  #open .width-wrap .title-area h6 {
    line-height: 212%;
  }
  #call .width-wrap .title-area h6 {
    margin: 24px 0 40px;
  }
  #call .width-wrap .title-area .po-label {
    margin-bottom: 24px;
  }
  #call .width-wrap > img,
  #call .width-wrap .typo-zone {
    margin-bottom: 40px;
  }
  #call .width-wrap a {
    gap: 12px;
  }
  #call .width-wrap a > img {
    width: 38px;
  }
  #call .width-wrap a .text-zone p:first-child {
    font-size: 12px;
    letter-spacing: -0.6px;
  }
  #call .width-wrap a .icon {
    width: 54px;
  }
  #call .width-wrap a .icon .img-plc img {
    width: 30px;
  }
  #call .width-wrap > p {
    margin-top: 12px;
  }
  #call .width-wrap .lottie-wrap.fe-f,
  #open .width-wrap .lottie-wrap.fe-f {
    width: 185px;
    top: -23.47px;
    left: -42.57px;
  }
  #call .width-wrap .lottie-wrap.fe-s,
  #open .width-wrap .lottie-wrap.fe-s {
    width: 105px;
    top: 133.96px;
    right: -5%;
  }

  #open .width-wrap .title-area h2 {
    margin: 24px 0;
  }
  #open .width-wrap .box-area {
    gap: 24px;
    margin: 32px 0 40px;
  }
  #open .width-wrap .box-area .box {
    grid-template-rows: 250px auto;
    border-radius: 15px;
  }
  #open .width-wrap .info-area .box-zone .box .img-plc {
    aspect-ratio: 339/250;
  }
  #open .width-wrap .box-area .box .text-plc {
    padding: 24px;
    gap: 12px;
  }
  #open .width-wrap .info-area h5 {
    margin-bottom: 28px;
  }
  #open .width-wrap .info-area .box-zone {
    gap: 24px;
  }
  #open .width-wrap .info-area .box-zone .box {
    width: 100%;
  }
  #open .width-wrap .info-area .box-zone .box p {
    padding: 0 8px;
  }
  #open .width-wrap .info-box {
    padding: 24px 0;
    border-radius: 10px;
    margin-top: 40px;
  }
  #open .width-wrap .info-box p {
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.48px;
  }

  #refund {
    background: url("/img/landing/bg_refund_m.png") top / 100% no-repeat
      var(--bg-gray);
  }
  #refund .width-wrap {
    gap: 60px;
  }
  #refund .width-wrap .top-area > p {
    margin-bottom: 20px;
  }
  #refund .width-wrap .top-area .typo-zone h5 {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
  #refund .width-wrap .top-area .typo-zone h6 {
    font-size: 16px;
    letter-spacing: -0.48px;
  }
  #refund .width-wrap .mid-area .title-zone h2 {
    margin: 24px 0;
  }
  #refund .width-wrap .mid-area .title-zone h6 img,
  #refund .width-wrap .bottom-area a img {
    width: 50px;
  }
  #refund .width-wrap .mid-area .box-zone {
    margin-top: 52px;
  }
  #refund .width-wrap .mid-area .box-zone .box {
    padding: 44px 24px 24px;
  }
  #refund .width-wrap .mid-area .box-zone .box .label {
    width: 53.4%;
  }
  #refund .width-wrap .mid-area .box-zone .box .label p {
    line-height: 140%;
  }
  #refund .width-wrap .mid-area .box-zone .box .text-plc {
    gap: 16px;
    width: 100%;
  }
  #refund .width-wrap .bottom-area a {
    padding: 20px 28px;
    margin: 16px auto 0;
  }
  #refund .width-wrap .bottom-area a.login-btn {
    margin: 76px auto 0;
  }
  #refund .width-wrap .bottom-area a.login-btn:before {
    content: url("/img/landing/img_refund_tooltip_m.png");
  }
  @keyframes bounce-ud {
    0% {
      transform: translate(-50%, -85%);
    }
    50% {
      transform: translate(-50%, calc(-85% - 3px));
    }
    100% {
      transform: translate(-50%, -85%);
    }
  }

  #careful .banner {
    background: url("/img/landing/bg_banner_m.jpg") 50% / cover no-repeat;
    position: relative;
    top: auto;
    transform: none;
    margin-top: 60px;
    padding: 40px 24px 77px;
  }
  #careful .width-wrap.large .text-area {
    padding: 0;
    border-top: none;
    gap: 24px;
  }
  #careful .width-wrap.large .text-area ul.list-zone li i.dot {
    top: 9px;
    width: 4px;
  }
}
