@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica", "Arial", "LiHei Pro", "黑體-繁", "微軟正黑體", sans-serif;
}

#sec-traffic-explore {
  font-size: clamp(0.7rem, 1.8vw, 1.1rem);
  color: #231815;
  line-height: 1.5;
  max-width: 1045px;
  margin: 0 auto;
  background-color: #2ebce3;
  background-image: url("../images/traffic/viewpoint/bg.png");
  background-repeat: repeat;
  background-size: contain;
  overflow: hidden;
}
#sec-traffic-explore .is-hidden {
  display: none;
}
#sec-traffic-explore img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
#sec-traffic-explore .img-ratio {
  aspect-ratio: 16/9;
}
#sec-traffic-explore .mb {
  display: none;
}
@media screen and (max-width: 640px) {
  #sec-traffic-explore .pc {
    display: none;
  }
  #sec-traffic-explore .mb {
    display: block;
  }
}
#sec-traffic-explore .attraction-container {
  width: 90%;
  margin: 0 auto;
  padding: 0 48px 48px;
  position: relative;
  background-color: #fff;
  border: 5px solid #00a6df;
}
@media screen and (max-width: 1024px) {
  #sec-traffic-explore .attraction-container {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  #sec-traffic-explore .attraction-container {
    padding: 0 16px 0;
  }
}
#sec-traffic-explore .kv {
  width: 100%;
  padding: 0 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #sec-traffic-explore .kv {
    padding: 0;
  }
}
#sec-traffic-explore .kv img {
  width: 100%;
  aspect-ratio: unset;
  margin: 0 auto;
}
#sec-traffic-explore .kv .kv__title {
  margin: 64px auto 32px;
  padding: 0 1rem;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  #sec-traffic-explore .kv .kv__title {
    margin: 32px auto;
  }
}
#sec-traffic-explore .s-block {
  position: absolute;
  z-index: 1;
}
#sec-traffic-explore .tab-content {
  -webkit-border-radius: 16px;
          border-radius: 16px;
}
@media screen and (max-width: 1024px) {
  #sec-traffic-explore .tab-content {
    padding: 0 32px 16px;
  }
}
@media screen and (max-width: 768px) {
  #sec-traffic-explore .tab-content {
    padding: 0 16px 16px;
  }
}
@media screen and (max-width: 640px) {
  #sec-traffic-explore .tab-content {
    padding: 0 8px 16px;
  }
}
#sec-traffic-explore .title {
  text-align: center;
  margin-bottom: 32px;
  padding-top: 32px;
}
#sec-traffic-explore .title img {
  width: 85%;
  aspect-ratio: unset;
}

.tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0 auto 2px;
  gap: 5px;
  justify-content: center;
}
.tabs .tab-item {
  font-size: clamp(0.8rem, 2.5vw, 1.5rem);
  padding: 15px 30px;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: -2px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .tabs .tab-item {
    padding: 2%;
  }
}
.tabs .tab-item[data-tab-target="#attractions"] {
  background-color: #4EC2E4;
  color: #1f96c1;
}
.tabs .tab-item[data-tab-target="#itinerary"] {
  background-color: #F1E984;
  color: #1f96c1;
}
.tabs .tab-item[data-tab-target="#hotels"] {
  background-color: #F6D6D3;
  color: #1f96c1;
}
.tabs .tab-item:hover, .tabs .tab-item.active {
  background-color: rgb(245.5714285714, 245.5714285714, 231.4285714286) !important;
}

.tab-content {
  display: none;
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}
.tab-content.active {
  display: block;
}

#attractions {
  padding-bottom: 40px !important;
}
#attractions .filters {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#attractions .filters .filter-btn {
  cursor: pointer;
  width: 33%;
}
#attractions .filters .filter-btn:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
#attractions .filters .filter-btn:nth-of-type(2):hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
#attractions .filters .filter-btn img {
  width: 100%;
  display: block;
}
#attractions .card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #attractions .card {
    margin-bottom: 16px;
  }
}
#attractions .card_spot {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 0 1rem;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  #attractions .card_spot {
    gap: 0.8rem;
    margin-top: 8px;
    margin-bottom: 0px;
  }
}
#attractions .card_spot .spot-number {
  position: relative;
  width: 16%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#attractions .card_spot .spot-number img {
  width: 100%;
  aspect-ratio: unset;
}
#attractions .card_spot .spot-name {
  font-size: clamp(1rem, 4.2vw, 2.2rem);
  color: #0092d9;
  margin-top: 8px;
}
#attractions .card_spot .spot-name-sub {
  font-size: clamp(0.8rem, 2.5vw, 1.5rem);
  display: block;
}
#attractions .card_img {
  position: relative;
  text-align: center;
  z-index: 1;
}
#attractions .card_img .text-placeholder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3% 0 0%;
  font-size: clamp(0.7rem, 1.8vw, 1.1rem);
}
@media screen and (max-width: 768px) {
  #attractions .card_img .text-placeholder {
    margin: 5% 0 0%;
  }
}
#attractions .card_img .icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 6%;
  max-width: 2rem;
  min-width: 1.4rem;
}
@media screen and (max-width: 768px) {
  #attractions .card_img .icon {
    -webkit-transform: translateX(1rem);
        -ms-transform: translateX(1rem);
            transform: translateX(1rem);
  }
}
#attractions .card_img .icon.max {
  width: 2rem;
  max-width: 2rem;
  min-width: 2rem;
}
#attractions .card_img .icon img {
  width: 100%;
  aspect-ratio: unset;
}
#attractions .card_img .text {
  color: #717271;
  font-weight: 600;
  letter-spacing: 0.15rem;
  background-color: #fcedea;
  padding: 0.2rem 1.5rem 0.2rem 2rem;
  -webkit-transform: translateX(-1.5rem);
      -ms-transform: translateX(-1.5rem);
          transform: translateX(-1.5rem);
  -webkit-border-radius: 2rem;
          border-radius: 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #attractions .card_img .text {
    padding: 0.2rem 1.2rem 0.2rem 2.2rem;
    -webkit-transform: translateX(-0.5rem);
        -ms-transform: translateX(-0.5rem);
            transform: translateX(-0.5rem);
    text-align: center;
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#attractions .card_info {
  text-align: left;
  line-height: 1.8;
}
#attractions .card_info .text-note {
  font-size: clamp(0.6rem, 1.5vw, 1rem);
  margin-top: 0.5rem;
  color: #717271;
}
#attractions .card .spot-decoration {
  position: absolute;
  pointer-events: none;
}
#attractions .card .spot-decoration img {
  width: 100%;
  height: auto;
}
#attractions .card.card--family1 .spot-decoration {
  left: -13%;
  top: 90%;
  width: 20%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--family1 .spot-decoration {
    width: 17vw;
  }
}
#attractions .card.card--family1 .spot-decoration:nth-of-type(2) {
  left: 98%;
  top: 68%;
  width: 11%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--family1 .spot-decoration:nth-of-type(2) {
    width: 15%;
    top: 50%;
  }
}
#attractions .card.card--family2 .spot-decoration {
  left: 2%;
  top: 8%;
  width: 8%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--family2 .spot-decoration {
    top: 7%;
    width: 7%;
  }
}
#attractions .card.card--family2 .spot-decoration:nth-of-type(2) {
  left: 85%;
  top: 7.5rem;
  width: 5rem;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--family2 .spot-decoration:nth-of-type(2) {
    top: 13%;
    width: 10%;
  }
}
#attractions .card.card--family3 .spot-decoration {
  left: 83%;
  top: 12%;
  width: 18%;
}
#attractions .card.card--family4 .spot-decoration {
  left: -8%;
  top: 14%;
  width: 18%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--family4 .spot-decoration {
    top: 11vw;
    width: 15vw;
  }
}
#attractions .card.card--family4 .spot-decoration:nth-of-type(2) {
  left: 90%;
  top: 2.5rem;
  width: 4rem;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--family4 .spot-decoration:nth-of-type(2) {
    top: 1vw;
    width: 10vw;
  }
}
#attractions .card.card--family5 .spot-decoration {
  left: 4%;
  top: 3%;
  width: 7%;
}
#attractions .card.card--family5 .spot-decoration:nth-of-type(2) {
  left: -2%;
  top: 16%;
  width: 15%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--family5 .spot-decoration:nth-of-type(2) {
    top: 10%;
    width: 20%;
  }
}
#attractions .card.card--family5 .spot-decoration:nth-of-type(3) {
  left: 88%;
  top: 2%;
  width: 10%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--family5 .spot-decoration:nth-of-type(3) {
    width: 13%;
  }
}
#attractions .card.card--youth2 .spot-decoration {
  left: 98%;
  top: -4%;
  width: 12%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--youth2 .spot-decoration {
    width: 15%;
  }
}
#attractions .card.card--youth3 .spot-decoration {
  left: -2%;
  top: 16%;
  width: 18%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--youth3 .spot-decoration {
    top: 13vw;
    width: 15vw;
  }
}
#attractions .card.card--youth3 .spot-decoration:nth-of-type(2) {
  left: 90%;
  top: 1rem;
  width: 4rem;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--youth3 .spot-decoration:nth-of-type(2) {
    top: 0vw;
    width: 10vw;
  }
}
#attractions .card.card--youth4 .spot-decoration {
  left: 5%;
  top: 4rem;
  width: 3rem;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--youth4 .spot-decoration {
    top: 7vw;
    width: 7vw;
  }
}
#attractions .card.card--youth4 .spot-decoration:nth-of-type(2) {
  left: 82%;
  top: 13%;
  width: 15%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--youth4 .spot-decoration:nth-of-type(2) {
    top: 12vw;
    width: 12vw;
  }
}
#attractions .card.card--other1 .spot-decoration {
  left: 12%;
  top: 1rem;
  width: 3rem;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--other1 .spot-decoration {
    top: 0vw;
    width: 7vw;
  }
}
#attractions .card.card--other1 .spot-decoration:nth-of-type(2) {
  left: -2%;
  top: 14%;
  width: 18%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--other1 .spot-decoration:nth-of-type(2) {
    top: 13vw;
    width: 12vw;
  }
}
#attractions .card.card--other1 .spot-decoration:nth-of-type(3) {
  left: 85%;
  top: 5.5%;
  width: 13%;
}
#attractions .card.card--other2 .spot-decoration {
  left: 3%;
  top: 5%;
  width: 5%;
}
#attractions .card.card--other2 .spot-decoration:nth-of-type(2) {
  left: 80%;
  top: -2%;
  width: 20%;
}
#attractions .card.card--other2 .spot-decoration:nth-of-type(3) {
  left: 86%;
  top: 14%;
  width: 14%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--other2 .spot-decoration:nth-of-type(3) {
    top: 10%;
  }
}
#attractions .card.card--other3 .spot-decoration {
  left: 3%;
  top: 12%;
  width: 7%;
}
@media screen and (max-width: 768px) {
  #attractions .card.card--other3 .spot-decoration {
    top: 0vw;
    width: 7vw;
  }
}
#attractions .card.card--other3 .spot-decoration:nth-of-type(2) {
  left: 90%;
  top: 5%;
  width: 9%;
}
#attractions .card_btns img {
  width: 95%;
  aspect-ratio: unset;
  margin: 2rem 0 1rem;
}
#attractions .card_btns .btn {
  text-indent: -9999px;
  width: 30%;
  height: 2.5rem;
  display: block;
}
#attractions .card_btns .btn:nth-of-type(1) {
  bottom: 0.8rem;
  left: 15%;
}
#attractions .card_btns .btn:nth-of-type(2) {
  bottom: 0.8rem;
  left: 50%;
}

#itinerary {
  padding-bottom: 1.5rem;
}
#itinerary .kv {
  margin: 1.5rem 0 1rem;
}
#itinerary .accordion-item {
  overflow: hidden;
}
#itinerary .accordion-item .accordion-header {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  width: 90%;
  margin: 0.5rem auto 0.5rem;
}
@media screen and (max-width: 768px) {
  #itinerary .accordion-item .accordion-header {
    width: 100%;
  }
}
#itinerary .accordion-item.active .accordion-body {
  display: block;
}
#itinerary .accordion-item .accordion-body {
  display: none;
  background: #fafafa;
  position: relative;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1066px) {
  #itinerary .accordion-item .accordion-body {
    width: 92%;
  }
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-item .accordion-body {
    width: 105%;
    -webkit-transform: translateX(-1.5%);
        -ms-transform: translateX(-1.5%);
            transform: translateX(-1.5%);
  }
}
#itinerary .accordion-item .accordion-body .timeline .activity {
  position: absolute;
  width: 70%;
  max-width: 540px;
  -webkit-transform: translateX(-46%);
      -ms-transform: translateX(-46%);
          transform: translateX(-46%);
  left: 50%;
  text-align: left;
  padding: 0 0.25rem;
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-item .accordion-body .timeline .activity {
    width: 75%;
  }
}
#itinerary .accordion-item .accordion-body .timeline .activity .card_btns {
  text-indent: -9999px;
  width: 90%;
  display: block;
  margin: 5% auto 0;
}
@media screen and (max-width: 1255px) {
  #itinerary .accordion-item .accordion-body .timeline .activity .card_btns {
    margin: 3% auto 0;
  }
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-item .accordion-body .timeline .activity .card_btns {
    margin: 0.25rem auto 0;
  }
}
#itinerary .accordion-item .accordion-body .timeline .activity .item-title {
  font-weight: bold;
  color: #0092d9;
  margin-bottom: 1%;
  font-size: clamp(0.8rem, 2.5vw, 1.5rem);
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-item .accordion-body .timeline .activity .item-title {
    margin-bottom: 2.5px;
  }
}
#itinerary .accordion-item .accordion-body .timeline .activity .item-text {
  font-size: clamp(0.62rem, 1.8vw, 1rem);
  line-height: 1.6;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 320px) {
  #itinerary .accordion-item .accordion-body .timeline .activity .item-text {
    font-size: 0.6rem;
  }
}
#itinerary .accordion-item .accordion-body .icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 6%;
  max-width: 2rem;
  min-width: 1.4rem;
}
@media screen and (max-width: 768px) {
  #itinerary .accordion-item .accordion-body .icon {
    -webkit-transform: translateX(1rem);
        -ms-transform: translateX(1rem);
            transform: translateX(1rem);
  }
}
#itinerary .accordion-item .accordion-body .icon.max {
  width: 2rem;
  max-width: 2rem;
  min-width: 2rem;
}
#itinerary .accordion-item .accordion-body .icon img {
  width: 100%;
  aspect-ratio: unset;
}
#itinerary .accordion-item .accordion-body .text {
  color: #717271;
  font-weight: 600;
  letter-spacing: 0.15rem;
  background-color: #fcedea;
  padding: 0.2rem 1.5rem 0.2rem 2rem;
  -webkit-transform: translateX(-1.5rem);
      -ms-transform: translateX(-1.5rem);
          transform: translateX(-1.5rem);
  -webkit-border-radius: 2rem;
          border-radius: 2rem;
  white-space: nowrap;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #itinerary .accordion-item .accordion-body .text {
    padding: 0.2rem 1.2rem 0.2rem 2.2rem;
    -webkit-transform: translateX(-0.5rem);
        -ms-transform: translateX(-0.5rem);
            transform: translateX(-0.5rem);
    text-align: center;
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#itinerary .accordion-item .accordion-body iframe {
  position: absolute;
  bottom: 1.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  height: 33vw;
  max-width: 650px;
  max-height: 450px;
}
@media screen and (max-width: 1066px) {
  #itinerary .accordion-item .accordion-body iframe {
    height: 35vw;
    max-height: 380px;
  }
}
@media screen and (max-width: 1024px) {
  #itinerary .accordion-item .accordion-body iframe {
    width: 88%;
    height: 52vw;
    max-height: 500px;
  }
}
#itinerary .accordion-family .timeline .activity:nth-of-type(1) {
  top: 20.25%;
}
#itinerary .accordion-family .timeline .activity:nth-of-type(2) {
  top: 45.25%;
}
#itinerary .accordion-family .timeline .activity:nth-of-type(3) {
  top: 70.25%;
}
#itinerary .accordion-family .text-placeholder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 14% 0 2%;
  font-size: clamp(0.7rem, 1.8vw, 1.1rem);
}
@media screen and (max-width: 1200px) {
  #itinerary .accordion-family .text-placeholder {
    margin: 11% 0 2%;
  }
}
@media screen and (max-width: 1024px) {
  #itinerary .accordion-family .text-placeholder {
    margin: 14% 0 2%;
  }
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-family .text-placeholder {
    margin: 8% 0 5%;
  }
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-family .activity:nth-of-type(2) .text-placeholder {
    margin: 10% 0 5%;
  }
}
#itinerary .accordion-youth .timeline .activity:nth-of-type(1) {
  top: 20.25%;
}
#itinerary .accordion-youth .timeline .activity:nth-of-type(2) {
  top: 45.25%;
}
#itinerary .accordion-youth .timeline .activity:nth-of-type(3) {
  top: 71.25%;
}
#itinerary .accordion-youth .text-placeholder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 18% 0 2%;
  font-size: clamp(0.7rem, 1.8vw, 1.1rem);
}
@media screen and (max-width: 1200px) {
  #itinerary .accordion-youth .text-placeholder {
    margin: 15% 0 2%;
  }
}
@media screen and (max-width: 1024px) {
  #itinerary .accordion-youth .text-placeholder {
    margin: 20% 0 2%;
  }
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-youth .text-placeholder {
    margin: 8% 0 5%;
  }
}
#itinerary .accordion-youth .activity:nth-of-type(2) .text-placeholder {
  margin: 20.5% 0 2%;
}
@media screen and (max-width: 1200px) {
  #itinerary .accordion-youth .activity:nth-of-type(2) .text-placeholder {
    margin: 18% 0 2%;
  }
}
@media screen and (max-width: 1024px) {
  #itinerary .accordion-youth .activity:nth-of-type(2) .text-placeholder {
    margin: 21% 0 2%;
  }
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-youth .activity:nth-of-type(2) .text-placeholder {
    margin: 8% 0 5%;
  }
}
#itinerary .accordion-other .timeline .activity:nth-of-type(1) {
  top: 25.5%;
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-other .timeline .activity:nth-of-type(1) {
    top: 25%;
  }
}
#itinerary .accordion-other .timeline .activity:nth-of-type(2) {
  top: 56.5%;
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-other .timeline .activity:nth-of-type(2) {
    top: 55.5%;
  }
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-other .timeline .activity:nth-of-type(2) .card_btns {
    -webkit-transform: translateY(-0.25rem);
        -ms-transform: translateY(-0.25rem);
            transform: translateY(-0.25rem);
  }
}
#itinerary .accordion-other .timeline .activity:nth-of-type(3) {
  top: 87.5%;
}
@media screen and (max-width: 640px) {
  #itinerary .accordion-other .timeline .activity:nth-of-type(3) {
    top: 87.5%;
  }
}

#hotels .kv {
  margin: 1.5rem 0 -0.5rem;
  z-index: 1;
}
#hotels .card {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
  position: relative;
  border: 5px solid #0092d9;
  padding: 1.5rem 2rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #hotels .card {
    width: 90%;
    max-width: 600px;
    padding: 5%;
    margin-bottom: 32px;
  }
}
#hotels .card_spot {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #hotels .card_spot {
    gap: 0.8rem;
  }
}
#hotels .card_spot .spot-number {
  position: absolute;
  left: 3%;
  top: 1.2rem;
  z-index: 1;
  width: 12%;
  min-width: 2.5rem;
}
#hotels .card_spot .spot-number img {
  width: 100%;
  aspect-ratio: unset;
}
#hotels .card .card-title {
  font-size: clamp(1.2rem, 3.8vw, 2.2rem);
  text-align: center;
  color: #0092d9;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  #hotels .card .card-title {
    margin-top: 0;
  }
}
#hotels .card_img {
  position: relative;
  text-align: center;
}
#hotels .card_info {
  text-align: left;
}
#hotels .card_info .info-note {
  font-size: clamp(0.6rem, 1.5vw, 1rem);
  margin-top: 0.75rem;
  background-color: #fcedea;
  color: #717271;
  padding: 0.25rem 0.75rem;
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
  display: inline-block;
}
#hotels .card_info .info-note span {
  font-size: clamp(0.55rem, 1.2vw, 0.8rem);
}
#hotels .card_info .text-placeholder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1% 0 2%;
  font-size: clamp(0.7rem, 1.8vw, 1.1rem);
}
@media screen and (max-width: 768px) {
  #hotels .card_info .text-placeholder {
    margin: 2% 0 5%;
  }
}
#hotels .card_info .icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 6%;
  max-width: 2rem;
  min-width: 1.4rem;
}
@media screen and (max-width: 768px) {
  #hotels .card_info .icon {
    -webkit-transform: translateX(1rem);
        -ms-transform: translateX(1rem);
            transform: translateX(1rem);
  }
}
#hotels .card_info .icon.max {
  width: 2rem;
  max-width: 2rem;
  min-width: 2rem;
}
#hotels .card_info .icon img {
  width: 100%;
  aspect-ratio: unset;
}
#hotels .card_info .text {
  color: #717271;
  font-weight: 600;
  letter-spacing: 0.15rem;
  background-color: #fcedea;
  padding: 0.2rem 1.5rem 0.2rem 2rem;
  -webkit-transform: translateX(-1.5rem);
      -ms-transform: translateX(-1.5rem);
          transform: translateX(-1.5rem);
  -webkit-border-radius: 2rem;
          border-radius: 2rem;
  white-space: nowrap;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #hotels .card_info .text {
    padding: 0.2rem 1.2rem 0.2rem 2.2rem;
    -webkit-transform: translateX(-0.5rem);
        -ms-transform: translateX(-0.5rem);
            transform: translateX(-0.5rem);
    text-align: center;
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#hotels .card_info .card_text {
  line-height: 1.8;
}
#hotels .card_info .text-note {
  font-size: clamp(0.6rem, 1.2vw, 0.8rem);
}
#hotels .card .spot-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
#hotels .card .spot-decoration img {
  width: 100%;
  height: auto;
}
#hotels .card.card--hotel1 .card_info .spot-decoration {
  width: 8%;
  max-width: 2.5rem;
}
#hotels .card.card--hotel1 .card_info .spot-decoration:nth-of-type(1) {
  left: -13%;
  top: 30%;
}
#hotels .card.card--hotel1 .card_info .spot-decoration:nth-of-type(2) {
  left: 104%;
  top: 60%;
}
#hotels .card.card--hotel1 .card_info .spot-decoration:nth-of-type(3) {
  left: 58%;
  top: 103%;
  width: 15%;
  max-width: 4.5rem;
}
#hotels .card.card--hotel2 .card_info .spot-decoration {
  width: 6%;
  max-width: 2.5rem;
}
#hotels .card.card--hotel2 .card_info .spot-decoration:nth-of-type(1) {
  left: -13%;
  top: 30%;
}
#hotels .card.card--hotel2 .card_info .spot-decoration:nth-of-type(2) {
  left: 104%;
  top: 60%;
}
#hotels .card.card--hotel2 .card_info .spot-decoration:nth-of-type(3) {
  left: -3.5%;
  top: 88.5%;
  width: 18%;
  max-width: 5.5rem;
}
#hotels .card.card--hotel3 .card_info .spot-decoration {
  width: 6%;
  max-width: 2.5rem;
}
#hotels .card.card--hotel3 .card_info .spot-decoration:nth-of-type(1) {
  left: -13%;
  top: 30%;
}
#hotels .card.card--hotel3 .card_info .spot-decoration:nth-of-type(2) {
  left: 104%;
  top: 60%;
}
#hotels .card.card--hotel3 .card_info .spot-decoration:nth-of-type(3) {
  left: 77%;
  top: 98%;
  width: 28%;
  max-width: 9.5rem;
}
#hotels .card.card--hotel3 .card_info .spot-decoration:nth-of-type(4) {
  left: 107%;
  top: 24%;
  width: 14%;
  max-width: 5.5rem;
}
#hotels .card.card--hotel4 .card_info .spot-decoration {
  width: 6%;
  max-width: 2.5rem;
}
#hotels .card.card--hotel4 .card_info .spot-decoration:nth-of-type(1) {
  left: -13%;
  top: 30%;
}
#hotels .card.card--hotel4 .card_info .spot-decoration:nth-of-type(2) {
  left: 104%;
  top: 60%;
}
#hotels .card.card--hotel4 .card_info .spot-decoration:nth-of-type(3) {
  left: 96%;
  top: 88%;
  width: 12%;
  max-width: 3rem;
}
#hotels .card.card--hotel5 .card_info .spot-decoration {
  width: 6%;
  max-width: 2.5rem;
}
#hotels .card.card--hotel5 .card_info .spot-decoration:nth-of-type(1) {
  left: -13%;
  top: 30%;
}
#hotels .card.card--hotel5 .card_info .spot-decoration:nth-of-type(2) {
  left: 104%;
  top: 60%;
}
#hotels .card.card--hotel5 .card_info .spot-decoration:nth-of-type(3) {
  left: -6%;
  top: 96%;
  width: 25%;
  max-width: 6.5rem;
}
#hotels .card.card--hotel5 .card_info .spot-decoration:nth-of-type(4) {
  left: -25%;
  top: -4%;
  width: 20%;
  max-width: 6.5rem;
}
#hotels .card_btns img {
  width: 95%;
  aspect-ratio: unset;
  margin: 2rem 0 1rem;
}
@media screen and (max-width: 768px) {
  #hotels .card_btns img {
    width: 100%;
  }
}
#hotels .card_btns .btn {
  text-indent: -9999px;
  width: 30%;
  height: 2.5rem;
  display: block;
}
#hotels .card_btns .btn:nth-of-type(1) {
  bottom: 1.85rem;
  left: 15%;
}
#hotels .card_btns .btn:nth-of-type(2) {
  bottom: 1.85rem;
  left: 50%;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}