/* ------------------
--------RESET--------
------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  a {
    text-decoration: none;
    color: #000;
  }
  span {
    display: inline-block;
  }
  ul,
  li {
    list-style-type: none;
  }
  /* ------------------
  -------COMMON--------
  ------------------ */
  .bg-peacock-pride {
    background-color: #006862;
  }
  .bg-fluorescent-orange {
    background-color: #ffcf00;
  }
  .bg-white {
    background-color: #fff;
  }
  .white {
    color: #fff;
  }
  .unbleached {
    color: #fbf9f6;
  }
  .peacock-pride {
    color: #006862;
  }
  .black {
    color: #000;
  }
  .carbon {
    color: #333333;
  }
  .black-out {
    color: #222222;
  }
  .silverback {
    color: #b4b4b4;
  }
  .fluorescent-orange {
    color: #ffcf00;
  }
  .powdered {
    color: #f9f2e9;
  }
  .pot-black {
    color: #161616;
  }
  .gluon-grey {
    color: #1c1b1f;
  }
  .extra-life {
    color: #62b715;
  }
  .athena-blue {
    color: #63daf4;
  }
  .heaven-gates {
    color: #caf5ff;
  }
  .blushed-bombshell {
    color: #eb7ed0;
  }
  .apocalyptic-orange {
    color: #f96b1c;
  }
  .f-row {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .f-row > * {
    flex: 1;
  }
  .f-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .s11 {
    font-size: 11px;
  }
  .s12 {
    font-size: 12px;
  }
  .s14 {
    font-size: 14px;
  }
  .s15 {
    font-size: 15px;
  }
  .s16 {
    font-size: 16px;
  }
  .s18 {
    font-size: 18px;
  }
  .s20 {
    font-size: 20px;
  }
  .s22 {
    font-size: 22px;
  }
  .s28 {
    font-size: 28px;
  }
  .s32 {
    font-size: 32px;
  }
  .h150 {
    line-height: 15px;
  }
  .h198 {
    line-height: 19.8px;
  }
  .h200 {
    line-height: 20px;
  }
  .h238 {
    line-height: 23.8px;
  }
  .h240 {
    line-height: 24px;
  }
  .h250 {
    line-height: 25px;
  }
  .h272 {
    line-height: 27.2px;
  }
  .h300 {
    line-height: 30px;
  }
  .h332 {
    line-height: 33.2px;
  }
  .h408 {
    line-height: 40.8px;
  }
  .l42 {
    letter-spacing: 0.42px;
  }
  .l48 {
    letter-spacing: 0.48px;
  }
  .l160 {
    letter-spacing: 1.6px;
  }
  .l54 {
    letter-spacing: 0.54px;
  }
  .l60 {
    letter-spacing: 0.6px;
  }
  .l66 {
    letter-spacing: 0.66px;
  }
  .l88 {
    letter-spacing: 0.88px;
  }
  .l96 {
    letter-spacing: 0.96px;
  }
  .l120 {
    letter-spacing: 1.2px;
  }
  .l140 {
    letter-spacing: 1.4px;
  }
  .l182 {
    letter-spacing: 1.82px;
  }
  .l260 {
    letter-spacing: 2.6px;
  }
  .w7 {
    font-weight: 700;
  }
  .w6 {
    font-weight: 600;
  }
  .w5 {
    font-weight: 500;
  }
  .w4 {
    font-weight: 400;
  }
  .noto {
    font-family: Noto Sans JP;
  }
  .gothic {
    font-family: FOT-TsukuARdGothic Std;
  }
  /* ------------------
  -------//////--------
  ------------------ */
  /* HEADER */
  .pc-only {
    display: none;
  }
  header .image {
    height: 320px;
  }
  .fixed {
    position: fixed;
    top: calc(100vh - 45px); /* Dịch chuyển nó xuống 100% để ẩn đi ban đầu */
  }
  #scrollBox {
    z-index: 10;
  }
  #scrollBox > a > div {
    height: 45px;
    position: relative;
  }
  .arrow::before {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    transform: rotate(45deg);
    background-color: #000;
    position: absolute;
    right: 16px;
    top: 18px;
  }
  .arrow::after {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    transform: rotate(-45deg);
    background-color: #000;
    position: absolute;
    right: 16px;
    top: 24px;
  }
  /* MAIN */
  #letgo {
    background-color: #caf5ff;
    padding: 40px 32px;
  }
  .eclip {
    padding: 24px 0 32px;
  }
  .cloud {
    display: none;
  }
  .btn {
    min-height: 56px;
    border-radius: 28px;
    position: relative;
    width: calc(100% + 32px);
    left: -16px;
  }
  .btn::before {
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    background-color: #000;
    transform: rotate(30deg);
    position: absolute;
    right: 20px;
    top: calc(50% - 6px);
  }
  .btn::after {
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    background-color: #000;
    transform: rotate(-30deg);
    position: absolute;
    right: 20px;
    bottom: calc(50% - 6px);
  }
  .btn:hover {
    background-color: #62b715;
  }
  #hotel-stay {
    background-color: #63daf4;
    padding-bottom: 60px;
  }
  #hotel-stay > div {
    position: relative;
  }
  #hotel-stay > .title {
    height: 220px;
    text-align: center;
  }
  #hotel-stay .content {
    background-color: #fff;
    padding: 0 16px;
  }
  
  /* ---------------------------- */
  .cloud-trip {
    height: 64px;
    top: -32px;
  }
  .mountain-range {
    height: 24px;
    bottom: -12px;
  }
  .range {
    width: 100%;
    display: flex;
  }
  img {
    width: 100%;
    height: 100%;
  }
  .range,
  .before,
  .after {
    position: relative;
    display: flex;
    align-items: center;
  }
  .cloud-trip {
    gap: 10px;
  }
  .before {
    z-index: 1;
  }
  .mountain-range .image {
    position: relative;
  }
  .mountain-range .image::before {
    content: "";
    display: block;
    height: 50%;
    width: 50%;
    position: absolute;
    top: 25%;
    left: 25%;
    background-image: url(../img/dot.svg);
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .after {
    position: absolute;
    padding: 0 20px 0 15px;
    bottom: 6px;
    align-items: end;
  }
  
  .before1,
  .before2 {
    margin-right: 5px;
  }
  .before3 {
    margin-right: 14px;
  }
  .after1 {
    margin-right: 10px;
  }
  .after2 {
    margin-right: 14px;
  }
  .after3 {
    margin-right: 10px;
  }
  /* --------------------------- */
  .list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 52.65px 0 40px;
  }
  .img-shadow > img {
    width: 100%;
    margin-top: 24px;
    position: relative;
    top: -24px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
  .item > .title {
    padding: 24px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .welcome {
    background-color: #fbf9f6;
  }
  .welcome .logo {
    width: 100%;
  }
  .welcome .image {
    width: 173px;
  }
  .more {
    padding: 32px;
    background-color: #006862;
  }
  .plan-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .plan-list .plan-item {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f9f2e9;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .plan-item > div {
    width: 50%;
  }
  .plan-item .text {
    padding: 32px 16px 0;
  }
  .plan-title {
    padding-bottom: 16px;
  }
  #benefits {
    background: #fbf9f6;
    padding: 0 16px 40px;
  }
  .item-benefits .title {
    padding: 20px 16px;
  }
  .item-benefits .text {
    padding: 20px 12px 32px;
  }
  .item-benefits .gothic {
    padding-bottom: 16px;
  }
  footer {
    padding: 40px 16px 0;
  }
  .footer-logo .image {
    width: 206px;
  }
  footer ul {
    margin-bottom: 96px;
  }
  footer li {
    position: relative;
  }
  footer li::before {
    content: "※";
    position: absolute;
    left: -16px;
    top: 0;
  }
  .copyright {
    height: 60px;
    background-color: #f2f3f4;
    color: #888;
    position: relative;
    width: calc(100% + 32px);
    left: -16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "游明朝", "Yu Mincho", "YuMincho", "ＭＳ Ｐ明朝", "ＭＳ 明朝",
      Georgia;
    font-size: 12px;
    margin-bottom: 45px;
  }
  
  @media (min-width: 769px) {
    header .image {
      height: 100%;
    }
    #scrollBox {
      position: fixed;
      top: calc(100vh - 400px);
      right: calc(-100% + 95px);
    }
    #scrollBox > a > div {
      width: 95px;
      height: 280px;
    }
    .sp-only {
      display: none;
    }
    .pc-only {
      display: block;
    }
    #to-plan {
      width: 70px;
      height: 260px;
      writing-mode: vertical-rl;
      text-orientation: upright;
      white-space: nowrap;
      z-index: 1;
    }
    .arrow::before,
    .arrow::after {
      display: none;
    }
    .s15-l {
      font-size: 15px;
    }
    .h200-l {
      line-height: 20px;
    }
    .l120-l {
      letter-spacing: 1.2px;
    }
    .s20-l {
      font-size: 20px;
    }
    .s40-l {
      font-size: 40px;
    }
    .l200-l {
      letter-spacing: 2px;
    }
    .s32-l {
      font-size: 32px;
    }
    .h408-l {
      line-height: 40.8px;
    }
    .l96-l {
      letter-spacing: 0.96px;
    }
    .s26-l {
      font-size: 26px;
    }
    .l78-l {
      letter-spacing: 0.78px;
    }
    .s24-l {
      font-size: 24px;
    }
    .l72-l {
      letter-spacing: 0.72px;
    }
    .s16-l {
      font-size: 16px;
    }
    .h272-l {
      line-height: 27.2px;
    }
    .l208-l {
      letter-spacing: 2.08px;
    }
    .h300-l {
      line-height: 30px;
    }
    .l160-l {
      letter-spacing: 1.6px;
    }
    .l128-l {
      letter-spacing: 1.28px;
    }
    .l240-l {
      letter-spacing: 2.4px;
    }
    .s28-l {
      font-size: 28px;
    }
    .l84-l {
      letter-spacing: 0.84px;
    }
    .h240-l {
      line-height: 24px;
    }
    .l48-l {
      letter-spacing: 0.48px;
    }
    .h160-l {
      line-height: 16px;
    }
    .l312-l {
      letter-spacing: 3.12px;
    }
    .triangle::after {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      bottom: 0;
      right: 0;
      border-left: 25px solid transparent; /* Độ rộng cạnh trái của tam giác */
      border-bottom: 25px solid #ff0000;
    }
    #letgo {
      height: 520px;
      padding: 82px calc((100% - 1080px) / 2);
      position: relative;
    }
    #letgo *:not(.cloud) {
      position: relative;
      z-index: 1;
    }
    #letgo .eclip {
      width: 355px;
      position: absolute;
      padding: 0;
      top: 82px;
      right: calc((100vw - 1080px) / 2);
    }
    #letgo a {
      display: block;
      width: fit-content;
    }
    .btn {
      padding: 0 50px;
      width: fit-content;
      height: auto;
      left: 0;
    }
    .letgo-text {
      padding: 60px 0 80px;
    }
    .btn::before,
    .btn::after {
      height: 2px;
    }
    .cloud {
      display: block;
      position: absolute;
      z-index: 0;
      width: fit-content;
    }
    .left-cloud {
      top: 228px;
      left: 28px;
    }
    .right-cloud {
      top: 72px;
      right: 60px;
    }
    #hotel-stay {
      padding: 0 0 136px;
    }
    /* ------------------------ */
    .after {
      padding: 0 68px 0 55px;
    }
    .before1,
    .before2 {
      margin-right: 19.5px;
    }
    .before3 {
      margin-right: 56.5px;
    }
    .after1 {
      margin-right: 41.5px;
    }
    .after2 {
      margin-right: 58px;
    }
    .after3 {
      margin-right: 39px;
    }
    /* ------------------------- */
    #hotel-stay > .title::before {
      content: "";
      display: block;
      position: absolute;
      top: 88px;
      left: 10%;
      width: 197.91px;
      height: 106.76px;
      background-image: url(../img/left_cloud2.png);
    }
    #hotel-stay > .title::after {
      content: "";
      display: block;
      position: absolute;
      top: 88px;
      right: 10%;
      width: 197.91px;
      height: 106.76px;
      background-image: url(../img/right_cloud2.png);
    }
    #hotel-stay > .title {
      height: 280px;
    }
    #hotel-stay > .title * {
      position: relative;
      z-index: 1;
    }
    #hotel-stay > .title :first-child {
      padding-top: 112px !important;
    }
    #hotel-stay .content {
      width: auto;
      max-width: 1262px;
      margin: 0 auto;
      border-radius: 40px;
    }
    #hotel-stay .content > div {
      max-width: 1080px;
      margin: 102px auto 0;
    }
    #hotel-stay .list {
      padding-bottom: 0;
    }
    .item {
      width: calc(100% + 60px);
      max-width: 1140px;
      padding: 0 0 88px 0;
      position: relative;
      left: -30px;
    }
    .item > div {
      width: 48%;
    }
    .item > .image {
      width: calc(48% - 30px);
      margin-top: 30px;
    }
    .item:nth-child(odd) .image {
      float: left;
    }
    .item:nth-child(odd) > div:not(.image) {
      float: right;
      padding-right: 30px;
    }
    .item:nth-child(even) .image {
      float: right;
    }
    .item:nth-child(even) > div:not(.image) {
      float: left;
      padding-left: 30px;
    }
    .item .title {
      padding-top: 0;
    }
    .item img {
      position: relative;
      margin-top: 0;
    }
    .item:nth-child(odd) img {
      left: 30px;
    }
    .item:nth-child(even) img {
      right: 30px;
    }
    .welcome {
      margin-top: 0 !important;
    }
    .welcome .title {
      justify-content: unset;
      padding: 30px 0 0 20px !important;
      color: #000;
    }
    .welcome .title p {
      color: #000 !important;
    }
    .welcome .text,
    .welcome .title {
      margin-left: 200px;
    }
    .welcome .text {
      padding-top: 9px !important;
    }
    .welcome .logo {
      width: fit-content;
      float: left;
      position: relative;
      bottom: 36px;
      left: 20px;
    }
    .more {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 100px;
    }
    #plan {
      margin-top: 0 !important;
    }
    #plan .title {
      padding: 60px 0 50px !important;
    }
    .plan-list {
      display: flex;
      flex-direction: row;
      gap: 35px;
    }
    .plan-list a {
      width: 50%;
    }
    #benefits {
      padding: 0px calc(50% - 540px);
    }
    .list-benefits {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .item-benefits {
      width: 49%;
      margin-bottom: 40px;
    }
    #benefits > .title {
      padding: 128px 0 104px !important;
    }
    footer {
      padding-bottom: 0;
    }
    footer .access {
      max-width: 435px;
      margin: auto;
    }
    footer ul {
      width: fit-content;
      margin: auto;
    }
    footer li::before {
      left: -16px;
      top: 0px;
    }
    .footer-nav nav {
      display: flex;
      justify-content: center;
    }
    .footer-nav a {
      position: relative;
      color: #fff;
      margin: 40px 0 96px;
      padding: 0 16px;
    }
    .footer-nav a:first-child{
      border-left: 1px solid #ccc;
    }
    .footer-nav a{
      border-right: 1px solid #ccc;
    }
    .copyright {
      margin-bottom: 0;
    }
  }
  