/* ExtraLight (200) */
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

/* Light (300) */
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

/* Regular (400) */
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

/* Medium (500) */
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

/* SemiBold (600) */
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

/* Bold (700) */
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

/* ExtraBold (800) */
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

/* Black (900) */
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "RedditSans";
  src: url("../fonts/RedditSans-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

* {
  margin: 0px;
  padding: 0px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  box-sizing: border-box;
  /* letter-spacing: 0.1em; */
}
html {
  scroll-behavior: smooth;
}
:root {
  --font-jost: 'Jost', sans-serif;
  --font-reddit: 'RedditSans', sans-serif;
  --font-zen: 'Zen Kaku Gothic New', sans-serif;
  --font-noto-san: 'Noto Sans JP', sans-serif;
}
body.menu-open #menuBtn {
  .icon {
    span:nth-child(1) {
      transform: rotate(45deg);
      top: 7.5px;
    }
    span:nth-child(2) {
      opacity: 0;
    }
    span:nth-child(3) {
      transform: rotate(-45deg);
      bottom: 7.5px;
    }
  }
}
#top-page {
  header {
    background: #FFFAE2;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 26px;
  .logo {
    width: 163.19px;
    height: 69px;
    a {
      display: block;
      img {
        width: 100%;
        filter: drop-shadow(1px 1px 0px #fff);
      }
    }
  }
  nav {
    margin-right: 104px;
    ul {
      display: flex;
      list-style: none;
      gap: 28px;
      li {
        list-style: none;
        a {
          font-size: 16px;
          text-decoration: none;
          color: #154585;
          font-weight: 700;
        }
      }
      li:last-child {
        margin-right: 0;
      }
    }
  }
  #menuBtn {
    position: fixed;
    top: 32px;
    right: 33px;
    z-index: 2000;
    background: #C1272D;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;

    .icon {
      position: relative;
      width: 24px;
      height: 18px;

      span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
      }

      span:nth-child(1) {
        top: 0;
      }

      span:nth-child(2) {
        top: 7.5px;
      }

      span:nth-child(3) {
        bottom: 0;
      }
    }
  }
  .side-menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    transition: right 0.4s ease;
    z-index: 1500;
    background: #FFFAE2;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: auto;
    .side-menu::-webkit-scrollbar {
      display: none;
    }
    .menu-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      height: 100%;
      .social {
        ul {
          margin-bottom: 35.88px;
        }
      }
      .menu-block {
        flex: 1;
      }
      .left-block {
        background-color: #ffffff;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
      .right-block {
        background-color: #FFFAE2;
        position: relative;
        z-index: 1;
        img.image-bg-right {
          width: auto;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: 0;
          z-index: -1;
        }
      }
      .group-menu {
        padding: 95px 126px;
      }
      .dropdown {
        position: relative;
        display: block;
        width: 143px;
        height: 23px;
      }
      .dropdown-button {
        font-size: 10.77px;
        font-weight: 500;
        text-transform: uppercase;
        background: #154585;
        color: #FFF;
        border: 2px solid #154585;
        border-radius: 5px;
        padding: 0px 8px 0.8px 10px;
        font-weight: bold;
        cursor: pointer;
        gap: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
        i.fa-globe {
          margin-right: 6px;
        }
        i.fa-angle-right {
          transition: transform 0.3s ease;
          transform: rotate(90deg);
        }
          i.fa-angle-right {
          transform: rotate(270deg);
        }
      }
      .dropdown-button.open {
        background: #fff;
        color: #154585;
        border: 2px solid #003366;
        border-bottom: 0;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
      }
      .dropdown-content {
        display: none;
        background-color: white;
        border: 2px solid #003366;
        border-top: 0;
        margin-top: -2px;
        border-radius: 5px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        z-index: 1;
        padding: 2px 0;
        a {
          color: #003366;
          margin: 2px 5px;
          padding: 3px 5px;
          text-decoration: none;
          display: block;
          font-size: 10.77px;
          font-weight: 500;
          text-transform: uppercase;
          transition: all 0.3s linear;
          border-radius: 5px;
        }
        a:hover {
          background-color: #003366;
          color: #FFF;
        }
      }
      .show {
        display: block;
      }
      ul.menu-toggle {
        list-style: none;
        li {
          margin-bottom: 30px;
          a {
            font-size: 16px;
            color: #154585;
            font-weight: 700;
            text-decoration: none;
          }
        }
        li.cus-font {
          margin-bottom: 26.52px;
          a {
            font-size: 14px;
          }
        }
      }
      .social {
        h4 {
          font-size: 12px;
          font-weight: 700;
          color: #154585;
          margin-bottom: 21.48px;
        }
        ul {
            justify-content: flex-start;
        }
      }
    }
  }
  .side-menu.active {
    right: 0;
  }
}
.slider-container {
    background: #FFFAE2;
    padding-top: 50px;
    padding-bottom: 40px;
    overflow: hidden;
    .visually-hidden {
      position: absolute;
      left: -10000px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .container {
      width: 1091px;
      max-width: 95%;
      margin: auto;
    }
    .group-slide {
        position: relative;
        width: 100%;
        height: 100%;
        .slides {
          position: relative;
          .items {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              display: block;
            }
            img.sp {
              display: none;
            }
          }
          .items.active {
            position: static;
            opacity: 1;
          }
        }
        .caption {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10;
            .image-title-top {
                position: absolute;
                top: 8px;
                left: 94px;
                img.right {
                  position: absolute;
                  top: -29px;
                  left: 95%;
                }
              }
            .image-title-bottom {
                position: absolute;
                bottom: 20px;
                right: 10px;
                img.right {
                  position: absolute;
                  top: 5px;
                  right: -60px;
                }
              }
        }
    }
}
.block-about {
  background: #FFFAE2;
  position: relative;
  margin-bottom: 185px;
  .about-content {
    color: #154585;
    font-weight: 500;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    .text-title {
      small {
        font-size: 21px;
        margin-bottom: 13px;
        display: block;
      }
      h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 0;
      }
    }
    .paragrap {
      margin-bottom: 69px;
      p {
        font-size: 16px;
        line-height: 31px;
        text-align: center;
        letter-spacing: 0.1em;
      }
    }
    .check-more {
      a {
        color: #C1272D;
        i {
          background: #C1272D;
          border:2px solid #C1272D;
          color: #FFF;
          transition: all 0.3s linear;
        }
      }
      a:hover {
        i {
          background: #FFF;
          color: #C1272D;
        }
      }
    }
  }
  .about-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 100px 0;
    .image-items {
      position: relative;
      img.sub-image {
        position: absolute;
        top: 0;
        left: 172px;
      }
      img.sp {
        display: none;
      }
    }
    .image-items.right {
      text-align: right;
      img {
        width: 80%;
      }
    }
    .block-bottom {
      text-align: center;
      width: 100%;
      margin: auto;
      position: absolute;
      bottom: -60px;
    }
  }
}
[class^="block-"] {
  .container {
    width: 1050px;
    max-width: 90%;
    margin: auto;
  }
  .text-title {
    color: #154585;
    text-align: center;
    margin-bottom: 48.58px;
    h2 {
      font-size: 40px;
      font-family: var(--font-zen);
      font-weight: 900;
      letter-spacing: 0.1em;
      margin-bottom: 13px;
    }
    small {
      font-size: 21px;
      font-family: var(--font-jost);
      font-weight: 500;
      text-transform: uppercase;
    }
  }
  .wrap {
    color: #154585;
    margin: 0 auto;
    position: relative;
    margin-bottom: 40.54px;
    img.bg-image-top {
      width: 202.97px;
      height: 203.26px;
      position: absolute;
      top: -223px;
      left: 0;
    }
    img.bg-image-bottom {
      width: 285.62px;
      height: 273.43px;
      position: absolute;
      left: -140px;
      bottom: -114px;
    }
    img.bg-image-right {
      position: absolute;
      right: -96px;
      top: -69px;
    }
    .carousel-container {
      position: relative;
      width: 100%;
      .carousel-items {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 27px;
        position: relative;
        transition: transform 0.5s ease;
        justify-content: center;
        .item {
          a{
            text-decoration: none;
          }
          .card {
            border-radius: 25.32px;
            background-color: #E3EEF4;
            position: relative;
            /* padding: 32.51px; */
            padding: 27px;
            .badge {
              background-color: #C1272D;
              color: #FFFFFF;
              font-weight: 900;
              font-size: 13.36px;
              width: 78px;
              height: 78px;
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              position: absolute;
              right: -10px;
              top: -20px;
            }
            img {
              width: 100%;
              height: auto;
              object-fit: cover;
              border-radius: 15px;
              display: block;
            }
            .content {
              margin-top: 19.68px;
                h3 {
                  margin-bottom: 5px;
                  color: #154585;
                  font-weight: 700;
                  font-size: 19px;
                  font-family: var(--font-zen);
                  display: flex;
                  flex-wrap: wrap;
                  align-items: center;
                  i {
                    margin: 0 12.56px 0 15.58px;
                  }
                }
                p {
                  font-size: 12px;
                  font-family: var(--font-zen);
                  font-weight: 700;
                  color: #154585;
                }
                p.description {
                  font-weight: 500;
                  margin-top: 22.04px;
                }
                p.date {
                  font-family: var(--font-reddit);
                  font-weight: 600;
                  font-size: 14px;
                  display: flex;
                  align-items: center;
                  gap: 15.9px;
                  margin-bottom: 15.43px;
                  span {
                    background-color: #FFFAE2;
                    width: 84.16px;
                    height: 29.91px;
                    border-radius: 20px;
                    font-family: var(--font-zen);
                    font-size: 12px;
                    font-weight: 700;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                  }
                }
            }
          }
        }
      }
      .carousel-icon {
        display: none;
      }
    }
  }
  .check-more {
    a {
      font-size: 24px;
      font-family: 'Noto Sans';
      font-weight: 600;
      display: flex;
      align-items: center;
      color: #154585;
      text-decoration: none;
      width: 190px;
      margin: auto;
      justify-content: center;
      i {
        border-radius: 50%;
        width: 28.18px;
        height: 28.18px;
        background: #154585;
        border: 2px solid #154585;
        color: #FFF;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        margin-left: 20px;
        transition: all 0.3s linear;
      }
    }
    a:hover {
      i {
        background: #FFF;
        color: #154585;
      }
    }
  }
}
[class^="block-infinite-loop-"] {
  overflow: hidden;
  width: 100%;
  .ticker-wrapper {
    display: inline-block;
    white-space: nowrap;
    .ticker {
      display: inline-flex;
      animation: ticker 20s linear infinite;
      .ticker-content {
        display: inline-flex;
        align-items: center;
      }
    }
  }
}
.block-infinite-loop-experiences {
  margin-bottom: 224px;
  .container {
    width: 1200px;
    max-width: 90%;
    margin: auto;
  }
  .text-title {
    margin-bottom: 78px;
    text-align: left;
    h2 {
      font-size: 44px;
    }
    small {
      font-size: 24px;
    }
  }
}
.block-experiences {
  padding-bottom: 146.65px;
}
.block-infinite-loop-text {
  margin-bottom: 100.48px;
  .visually-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .ticker-wrapper {
    .ticker {
      .ticker-content {
        img {
          margin: 0 20px;
        }
        span {
          font-size: 80px;
          font-weight: 600;
          font-family: var(--font-jost);
          color: #154585;
          text-transform: uppercase;
        }
      }
    }
  }
}
.block-slide-events {
  margin-bottom: 80px;
  .text-title {
    color: #C1272D;
  }
  .wrap {
    color: #C1272D;
    img.bg-image-bottom {
      width: 172px;
      height: auto;
      position: absolute;
      left: -61px;
      bottom: -67px;
    }
    img.bg-image-right {
      width: 220px;
      right: -38px;
      top: -170px;
    }
    img.bg-image-right.sp {
      display: none;
    }
    .carousel-container {
      .carousel-items {
        .item {
          .card {
            background-color: #F9EDED;
            position: relative;
            .content {
              p {
                color: #C1272D;
              }
              p.date {
                span {
                  background-color: #FFFFFF;
                }
              }
              h3 {
                color: #C1272D;
                i {
                  margin: 0 5px;
                }
              }
            }
          }
        }
      }
    }
  }
  .check-more {
    a {
      color: #C1272D;
      i {
        background: #C1272D;
        border: 2px solid #C1272D;
      }
    }
    a:hover {
      i {
        color: #C1272D;
      }
    }
  }
}
.block-guest-room {
  margin-bottom: 180.92px;
  .block-bar-top {
    position: relative;
    margin: 0 0 -6px -6px;
    padding-top: 170px;
    img.main-bg-top {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    img.bg-image-left {
      position: absolute;
      bottom: 110px;
      left: 26px;
    }
    img.bg-image-right {
      position: absolute;
      top: 0px;
      right: 0px;
    }
  }
  .guest-content {
    padding: 0 45px;
    background: #154585;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    .card {
      flex: 1;
    }
    .card-content {
      text-align: center;
      margin-top: 180px;
      .text-title {
        position: relative;
        img.sub-image-title {
          position: absolute;
          top: -110px;
          left: 118px;
        }
        h2 {
          color: #FFFFFF;
          font-size: 30px;
        }
        small {
          color: #FFFFFF;
        }
      }
      .paragrap {
        margin-bottom: 49px;
        p {
          font-weight: 500;
          line-height: 27px;
          letter-spacing: 0.1em;
        }
      }
      .group-btn {
        display: flex;
        justify-content: center;
        gap: 25px;
        a {
          background: #FFF;
          border: 1px solid #FFF;
          color: #154585;
          display: flex;
          justify-content: center;
          align-items: center;
          transition: all 0.3s linear;
        }
        a:hover {
          background: #154585;
          color: #FFF;
        }
        a.date {
          width: 68.86px;
          height: 68.86px;
          border-radius: 11.14px;
          i {
            font-size: 34.25px;
            font-weight: 900;
          }
        }
        a.more {
          width: 216.17px;
          height: 65.29px;
          border-radius: 32.64px;
          font-size: 18px;
          font-weight: 700;
          text-decoration: none;
          i {
            margin-left: 37.51px;
          }
        }

      }
    }
    .card-image {
      text-align: right;
      margin-bottom: -250px;
    }
  }
  .block-bar-bottom {
    position: relative;
    padding-bottom: 112px;
    margin: -6px 0 0 -6px;
    z-index: -1;
    img.main-image-bottom {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    img.image-into-bar {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }
    img.image-into-bar-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.block-sightseeing-map {
  position: relative;
  .container {
    width: 1172.95px;
    max-width: 100%;
    padding: 0 13px 0 5px;
    margin: auto;
  }
  img.image-bg-bottom {
    position: absolute;
    bottom: -4%;
    left: 0;
  }
  .text-title {
    color: #C1272D;
    position: relative;
    h2 {
      display: flex;
      color: #C1272D;
      justify-content: center;
      align-items: center;
      letter-spacing: 0.1em;
      i {
          margin: 0 10px;
      }
    }
    h4 {
      font-size: 16px;
      font-weight: 700;
      text-align: center;
      margin-top: 30px;
      color: #154585;
      letter-spacing: 0.1em;
    }
    img.image-sub-title {
      position: absolute;
      bottom: 0;
      right: 12%
    }
  }
  .sightseeing-map {
    margin-bottom: 55.27px;
    position: relative;
    > img {
      width: 100%;
      height: auto;
      display: block;
    }
    .map-index {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      > div {
        position: absolute;
        img {
          width: auto;
          height: auto;
          cursor: pointer;
        }
      }
      .location-icon::before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f3c5";
        color: #de4542;
        font-size: 41px;
        top: 0px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
      }
      .image-map-01 {
        top: -11%;
        left: 4%;
        z-index: 1;
      }
      .image-map-02 {
        top: 25.9%;
        left: 21.5%;
        z-index: 2;
      }
      .image-map-03 {
        top: 13.5%;
        left: 31%;
        z-index: 1;
      }
      .image-map-04 {
        top: 21%;
        left: 40.8%;
        z-index: 1;
      }
      .image-map-05 {
        top: 13%;
        left: 48%;
        z-index: 1;
      }
      .image-map-06 {
        top: 21%;
        left: 57.5%;
        z-index: 2;
      }
      .image-map-07 {
        top: 17.5%;
        left: 60.5%;
        z-index: 1;
      }
      .image-map-08 {
        top: 9%;
        left: 82.2%;
        z-index: 1;
      }
    }
  }
  .check-more {
    a {
      color: #C1272D;
      i {
        background: #C1272D;
        border:2px solid #C1272D;
      }
    }
    a:hover {
      i {
        color: #C1272D;
      }
    }
  }
}
.block-infinite-loop-galleries {
  margin-top: 176px;
  margin-bottom: 211px;
  .visually-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .ticker-wrapper {
    .ticker {
      animation: ticker 30s linear infinite;
      .ticker-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 19px;
        margin-left: -141px;
        .content-row {
          display: flex;
          column-gap: 19px;
          img {
            width: 319px;
          }
        }
        .content-row:first-child {
          img.first {
            margin-left: 160px;
          }
        }
      }
    }
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.news-section {
  background-color: #C1272D;
  margin-bottom: 137px;
  height: 382px;
  display: flex;
  .news-container {
    display: flex;
    width: 1200px;
    max-width: 69.337%;
    margin: auto;
    align-items: center;
    .sidebar {
      flex: 1;
      .title {
        color: white;
        font-size: 57px;
        margin-bottom: 10px;
        font-weight: 500;
        font-family: var(--font-jost);
      }
      .subtitle {
        color: white;
        font-size: 15px;
        margin-bottom: 22px;
        font-weight: 700;
      }
      .view-more {
        font-family: 'Noto Sans';
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        font-size: 24px;
        font-weight: 600;
        gap: 25.54px;
        i {
          width: 28.18px;
          height: 28.18px;
          border-radius: 50%;
          background: #FFF;
          border: 2px solid #FFF;
          color: #C1272D;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 16px;
          font-weight: 900;
          transition: all 0.3s linear;
        }
      }
      .view-more:hover {
        i {
          background: #C1272D;
          color: #FFF;
        }
      }
    }
    .news-list {
      flex: 2;
      a {
        text-decoration: none;
      }
      .item {
        position: relative;
        display: flex;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
          .date {
            color: white;
            font-size: 20px;
            margin-right: 20px;
            font-family: var(--font-reddit);
          }
          .tag {
            background-color: white;
            color: #c42727;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 13px;
            margin-right: 20px;
          }
          .description {
            color: white;
            font-size: 20px;
            flex-grow: 1;
            padding-right: 39px;
          }
          .arrow {
            color: white;
            font-size: 24px;
            position: absolute;
            right: 0;
          }
      }
    }
  }
}
.access-section {
  width: 1200px;
  max-width: 90%;
  margin: auto;
  .access-header {
    text-align: center;
    margin-bottom: 50px;
      .title {
        font-family: var(--font-zen);
        font-weight: 900;
        font-size: 40px;
        color: #154585;
        margin-bottom: 13px;
        letter-spacing: 0.1em;
            strong {
              font-family: var(--font-zen);
              font-weight: 900;
              color: #e44d26;
            }
      }
      .subtitle {
        font-family: var(--font-jost);
        font-weight: 500;
        font-size: 21px;
        text-transform: uppercase;
        color: #154585;
      }
  }
  .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
      .left-side {
        flex: 1;
        min-width: 300px;
        margin-right: 20px;
          .company-logo {
            margin-bottom: 20px;
              img {
                max-width: 150px;
                height: auto;
              }
          }
          .contact-info {
            margin-bottom: 20px;
            h3 {
              color: #154585;
              font-family: var(--font-reddit);
              font-size: 18px;
              a {
                text-decoration: none;
                color: #154585;
                font-family: var(--font-reddit);
              }
            }
              p {
                display: flex;
                align-items: center;
                margin-bottom: 10px;
                margin: 0;
                font-family: var(--font-zen);
                font-size: 16px;
                color: #154585;
                font-weight: 500;
                line-height: 29px;
                  i {
                    font-size: 16px;
                    margin-right: 5px;
                  }
                  a {
                    font-family: var(--font-reddit);
                    font-size: 18px;
                    font-weight: 500;
                    color: #154585;
                    text-decoration: none;
                  }
              }
          }
          .transport-info {
              h3 {
                font-family: var(--font-zen);
                font-size: 16px;
                font-weight: 700;
                color: #154585;
                margin-bottom: 10px;
                  i {
                    font-size: 18px;
                  }
              }
              h3.campus {
                display: inline-block;
                position: relative;
                padding-bottom: 8px;
                  a {
                    text-decoration: none;
                    color: #154585;
                    border-bottom: 2px solid #154585;
                    padding-bottom: 2px;
                  }
                  i {
                    margin-left: 20px;
                  }
              }
              .transport-item {
                display: flex;
                align-items: flex-start;
                margin-bottom: 15px;
                  .transport-details{
                    font-family: var(--font-zen);
                    font-weight: 500;
                    margin: 0;
                    font-size: 16px;
                    color: #154585;
                    line-height: 29px;
                  }
              }
          }
      }
      .right-side {
        margin: 0 auto;
        flex: 2;
        max-width: 669px;
        position: relative;
        text-align: center;
          .map-google{
            width: 669px;
            max-width: 100%;
            margin-right: 0px;
            .be-careful {
              position: absolute;
              top: -215px;
              right: 22px;
              width: 191.30px;
              height: auto;
              z-index: -1;
            }
            iframe {
              width: 100%;
              max-width: 100%;
              border-radius: 20.25px;
              height: 384px;
              margin-top: 26px;
            }
          }
      }
  }
}
.social {
  ul {
    display: flex;
    justify-content: center;
    gap: 17px;
    margin-bottom: 50px;
    li {
      display: flex;
      justify-content: center;
      list-style: none;
      width: 37.24px;
      height: 36px;
      background: #154585;
      border-radius: 50%;
      align-items: center;
      transition: all 0.3s linear;
      a {
        height: 100%;
        width: 100%;
        text-decoration: none;
        line-height: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        i {
          color: #FFF;
        }
      }
    }
    li:hover {
      border:1.5px solid #154585;
      background: #ffffff;
      i {
        color: #154585;
      }
    }
  }
}
#experience {
  header {
    padding-bottom: 0;
  }
  .hero-section {
    width: 950px;
    max-width: 100%;
    position: relative;
    text-align: center;
    margin: 0 auto;
    margin-top: 42px;
    h2 {
        font-size: 40px;
        font-weight: 700;
        color: #154585;
        letter-spacing: 0.1em;
        margin-bottom: 13px;
    }
    p.subtitle {
      font-family: var(--font-jost);
      font-size: 21px;
      font-weight: 500;
      color: #154585;
      text-transform: uppercase;
    }
    .wrap-content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        position: relative;
        margin-bottom: 67px;
            img.hero-crap {
                width: 198.21px;
                height: auto;
                position: absolute;
                left: 40px;
                top: -20px;
                max-width: 100%;
            }
            img.hero-people-leaves {
                width: 165.28px;
                height: auto;
                position: absolute;
                top: -25px;
                right: 45px;
            }
            img.hero-people-leaves.sp {
              display: none;
            }
            .text-block {
              margin-top: 51px;
                p {
                  max-width: 100%;
                  text-align: center;
                  font-family: 'Zen Kaku Gothic New';
                  font-size: 18px;
                  line-height: 31px;
                  font-weight: 900;
                  color: #154585;
                  letter-spacing: 0.1em;
                  span {
                    font-size: 16px;
                    font-weight: 500;
                  }
                }
            }

    }
  }
  .experiences {
    .container {
      width: 1050px;
      max-width: 90%;
      margin: auto;
    }
    .block-fillter {
      margin-bottom: 34px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      .dropdown {
        position: relative;
        display: block;
        width: 192.74px;
        height: 31px;
        .dropdown-button {
          font-size: 14px;
          font-weight: 700;
          text-transform: uppercase;
          background: #154585;
          color: #FFF;
          border: 2px solid #154585;
          border-radius: 6.74px;
          padding: 4.63px 13px 6.37px 13px;
          cursor: pointer;
          gap: 8px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;
          height: 100%;
          i.fa-angle-right {
            transition: transform 0.3s ease;
            transform: rotate(90deg);
          }
          i.fa-angle-right {
            transform: rotate(270deg);
          }
        }
        .dropdown-button.open {
          background: #fff;
          color: #154585;
          border: 2px solid #154585;
          border-bottom: 0;
          border-bottom-left-radius: 0px;
          border-bottom-right-radius: 0px;
        }
        .dropdown-content {
          display: none;
          background-color: white;
          border: 2px solid #154585;
          border-top: 0;
          margin-top: -2px;
          border-radius: 5px;
          border-top-left-radius: 0px;
          border-top-right-radius: 0px;
          z-index: 1;
          padding: 13px 11px;
          position: relative;
          align-items: center;
          justify-content: space-between;
          a {
            color: #154585;
            text-decoration: none;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s linear;
            border-radius: 10px;
            height: 28.88px;
            width: 81.27px;
            background: #FFFAE2;
            display: flex;
            justify-content: center;
            align-items: center;
          }
          a.actiov,
          a:hover {
            background-color: #154585;
            color: #FFF;
          }
        }
        .show {
          display: flex;
        }
      }
    }


    .wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 113.54px 29.89px;
      position: relative;
      justify-items: center;
        .card {
        width: 330.23px;
        max-width: 100%;
        height: auto;
        border-radius: 25.32px;
        display: flex;
        flex-direction: column;
        background-color: #E3EEF4;
        position: relative;
        padding: 32.51px;
            .badge {
                background-color: #C1272D;
                color: #FFFFFF;
                font-weight: 900;
                font-size: 13.36px;
                width: 78px;
                height: 78px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                right: -10px;
                top: -20px;
            }
            img {
                width: 100%;
                height: auto;
                object-fit: cover;
                border-radius: 15px;
                display: block;
            }
            .content {
                width: 100%;
                display: flex;
                flex-direction: column;
                flex-grow: 1;
                margin-top: 19.68px;
                    h3 {
                        margin-bottom: 5px;
                        color: #154585;
                        font-weight: 700;
                        font-size: 19px;
                        font-family: var(--font-zen);
                    }
                    p {
                        font-size: 12px;
                        font-family: var(--font-zen);
                        font-weight: 700;
                        color: #154585;
                        margin-bottom: 5px;
                            &.description {
                                font-size: 12px;
                                font-weight: 500;
                                margin-top: 22.04px;
                                flex-grow: 1;
                            }
                            &.date {
                                font-family: var(--font-reddit);
                                font-weight: 600;
                                font-size: 14px;
                                display: flex;
                                align-items: center;
                                gap: 15.9px;
                                span {
                                background-color: #FFFAE2;
                                width: 84.16px;
                                height: 29.91px;
                                border-radius: 20px;
                                font-family: 'Zen Kaku Gothic New';
                                font-size: 12px;
                                font-weight: 700;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                text-align: center;
                                }
                            }
                    }
            }
        }
        .fruit {
          position: absolute;
          right: -91px;
          top: 10px;
        }
        .people {
          position: absolute;
          left: -138px;
          top: 342px;
        }
        .bamboo {
          position: absolute;
          left: -112px;
          top: 965px;
        }
        .sunflowers {
          position: absolute;
          left: -101px;
          top: 1074px;
        }
        .three-fruits {
          position: absolute;
          right: -93px;
          top: 1039px;
        }
        .watermelon {
          position: absolute;
          right: -133px;
          top: 1137px;
        }
        .crab {
            position: absolute;
            left: -112px;
            bottom: -55px;
        }
    }
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 135.54px;
        flex-wrap: wrap;
            .num-page {
                display: inline-block;
                margin: 0px 13.5px;
                color: #154585;
                text-decoration: none;
                font-family: var(--font-reddit);
                font-weight: 500;
                font-size: 16px;
            }
            a {
                &:hover {
                    color: #C1272D;
                }
                &.active {
                    position: relative;
                    color: #15458580;
                    pointer-events: none;
                        &::before {
                            content: "";
                            position: absolute;
                            bottom: -6px;
                            left: 50%;
                            transform: translateX(-50%);
                            width: 18px;
                            height: 2px;
                            background-color: #C1272D;
                            border-radius: 1px;
                        }
                }
            }
            .wrap-btn {
                display: flex;
                gap: 11.3px;
                font-size: 40.7px;
                cursor: pointer;
                font-family: var(--font-reddit);
                    .prev {
                        color: #15458580;
                        cursor: pointer;
                    }
                    .next {
                        color: #154585;
                    }
            }
    }
  }
}
#experience footer {
  margin-top: 239px;
}
.scroll-top {
    position: fixed;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
      &:hover img {
        opacity: 0.8;
      }
}
footer {
  background: #FFFAE2;
  color: #154585;
  font-weight: 700;
  position: relative;
  height: 579px;
  margin-top: 186px;
  display: flex;
  text-align: center;

  .container {
    width: 840px;
    max-width: 90%;
    margin: auto;
  }

  .bg-image {
    position: absolute;
    top: -88.46px;

    img {
      width: 100%;
    }
  }

  ul.foot-menu {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    column-gap: 57px;
    justify-content: center;

    li {
      margin-bottom: 21px;
      list-style: none;

      a {
        font-size: 16.2px;
        color: #154585;
        text-decoration: none;
        transition: opacity 0.3s ease;
        opacity: 1;
      }

      a:hover {
        opacity: 0.7;
      }
    }
  }
  .social {
    h4 {
      font-size: 18.5px;
      margin-bottom: 20px;
      font-weight: 700;
    }
    p.copyright {
      font-size: 10px;
      color: #154585;
      font-weight: 400;
      font-family: var(--font-zen);
    }
  }
  h1.foot-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-family: 'Jost';
    font-size: 93.46px;
    font-weight: 600;
    text-transform: uppercase;
    color: #C1272D;
    height: 85px;
    overflow: hidden;
  }
}

.faq-banner {
  position: relative;
  margin: 0px auto;
  width: 1050px;
  max-width: 100%;
  margin-top: 113px;
    h2 {
      font-size: 40px;
      font-weight: 700;
      font-family: var(--font-zen);
      text-align: center;
      color: #154585;
      margin-bottom: 13px;
    }
    .subtitle {
      font-weight: 500;
      font-size: 21px;
      font-family: var(--font-jost);
      text-align: center;
      text-transform: capitalize;
      color: #154585;
    }
}

#faq {
  header {
    background: none;
  }
  main {
    overflow: hidden;
  }
  .faq-section {
    margin-top: 190px;
    .container {
      width: 1050px;
      max-width: 90%;
      margin: 0px auto;
      .faq-items {
        position: relative;
        padding: 33px 33px 20px 33px;
        background-color: #E3EEF4;
        border-radius: 25px;
        margin-bottom: 45px;
        img {
          max-width: 100%;
        }
        .question-block,
        .answer-block {
          margin-bottom: 20px;
          color: #154585;
          h2 {
            font-size: 20px;
            font-weight: 700;
            font-family: var(--font-zen);
            letter-spacing: 0.1em;
            display: flex;
            align-items: center;
          }
          span {
            background-color: #154585;
            color: #FFFFFF;
            border-radius: 50%;
            min-width: 43px;
            min-height: 43px;
            font-size: 22px;
            text-transform: uppercase;
            margin-right: 15px;
            text-align: center;
            padding: 3px 0 0 2px;
          }
        }
        .answer-block {
          display: flex;
          .icon-a {
            width: 58px;
            span {
              font-weight: 900;
              display: inline-block;
              text-transform: uppercase;
              min-width: 43px;
              min-height: 43px;
              color: #154585;
              line-height: 25px;
              border: 3px solid #154585;
              background-color: #FFFFFF;
              padding-left: 2px;
              letter-spacing: 0.1em;
            }
          }
          .answer-content {
            font-family: var(--font-zen);
            width: 926px;
            max-width: 100%;
            p {
              font-size: 16px;
              font-family: var(--font-zen);
              font-weight: 500;
              color: #154585;
              line-height: 31px;
              letter-spacing: 0.1em;
            }
            ul {
              li {
                font-size: 16px;
                font-family: var(--font-zen);
                font-weight: 500;
                color: #154585;
                line-height: 31px;
                margin-left: 25px;
                letter-spacing: 0.1em;
                &::marker {
                  font-size: 10px;
                  color: #154585;
                }
              }
            }
          }
        }
      }
      .faq-items:last-child {
        margin-bottom: 0;
      }
      .faq-items:nth-of-type(even) {
        background: #FBF4F4;
        .question-block {
          h2 {
            color: #c0392b;
            span {
            background-color: #c0392b;
          }
        }

        }
        .answer-block * {
          color: #c0392b !important;
        }
        .answer-block {
          span {
            border: 3px solid #c0392b;
          }
        }
      }
      .faq-items:nth-child(1) {
        .left {
          position: absolute;
          top: -268px;
          left: 19px;
          z-index: -1;
          width: 216.83px;
        }
        .right {
          position: absolute;
          top: -34px;
          right: -52px;
          z-index: -1;
        }
      }
      .faq-items:nth-child(2) {
        .left {
          position: absolute;
          top: -260px;
          left: -140px;
          z-index: -1;
        }
      }
      .faq-items:nth-child(3) {
        .right {
          position: absolute;
          top: -53px;
          right: -99px;
          z-index: -1;
        }
      }
      .faq-items:nth-child(4) {
        .left {
          position: absolute;
          top: -75px;
          left: -96px;
          z-index: -1;
        }
      }
      .faq-items:nth-child(5) {
        .right {
          position: absolute;
          top: -100px;
          right: -49px;
          z-index: -1;
        }
      }
      .faq-items:nth-child(6) {
        .left {
          position: absolute;
          top: 20px;
          left: -123px;
          z-index: -1;
        }
      }
      .faq-items:nth-child(7) {
        .right {
          position: absolute;
          bottom: -45px;
          right: -95px;
          z-index: -1;
        }
      }
      .faq-items:nth-child(8) {
        .left {
          position: absolute;
          bottom: -55px;
          left: -108px;
          z-index: -1;
        }
      }
    }
  }
}

#terms-conditions {
  header {
    background: none;
  }
  main {
    overflow: hidden;
  }
  .terms-conditions-banner {
  position: relative;
  margin: 0px auto;
  width: 1050px;
  max-width: 100%;
  margin-top: 113px;
    h2 {
      font-size: 40px;
      font-weight: 900;
      font-family: var(--font-zen);
      text-align: center;
      color: #154585;
      letter-spacing: 0.1em;
      margin-bottom: 13px;
    }
    .subtitle {
      font-weight: 500;
      font-size: 21px;
      font-family: var(--font-jost);
      text-align: center;
      text-transform: uppercase;
      color: #154585;
    }
}
  .terms-conditions-section {
    margin-top: 117px;
    .container {
      width: 962px;
      max-width: 90%;
      margin: 0px auto;
      .items {
        position: relative;
        width: 977px;
        max-width: 100%;
        margin-bottom: 85px;
          h2 {
            font-family: var(--font-zen);
            font-weight: 700;
            font-size: 30px;
            color: #154585;
            margin-bottom: 37px;
          }
          .wrap-content {
            p {
              font-family: var(--font-zen);
              font-size: 16px;
              font-weight: 500;
              line-height: 31px;
              color: #154585;
              letter-spacing: 0.1em;
            }
            ul {
              li {
                list-style: none;
                margin-left: 10px;
                font-family: var(--font-zen);
                font-size: 16px;
                font-weight: 500;
                line-height: 31px;
                color: #154585;
              }
            }
          }
          &:nth-child(1) {
            .three-fruit {
              position: absolute;
              top: -100px;
              right: -46px;
            }
          }
          &:nth-child(2) {
            .sunflowers {
              position: absolute;
              top: -22px;
              left: -160px;
            }
          }
          &:nth-child(6) {
              .three-birds {
                position: absolute;
                top: -100px;
                right: -46px;
              }
            }
          &:nth-child(9) {
              .people {
                position: absolute;
                top: -30px;
                left: -178px;
              }
            }
      }
      .facility-responsibility {
        margin-bottom: 39px;
      }
      .accommodation-fees {
        margin-bottom: 81px;
      }
      .check-inout {
        margin-bottom: 72px;
      }
      .changes-to-terms {
        margin-bottom: 35px;
      }
    }
  }
}

#news {
  header {
    background: none;
  }
  main {
    overflow: hidden;
  }
  .news-banner {
  position: relative;
  margin: 0px auto;
  width: 1050px;
  max-width: 100%;
  margin-top: 113px;
    h2 {
      font-size: 57.74px;
      font-weight: 500;
      font-family: var(--font-jost);
      text-align: center;
      color: #C1272D;
    }
    .subtitle {
      font-weight: 700;
      font-size: 15px;
      font-family: var(--font-zen);
      text-align: center;
      color: #C1272D;
    }
}
  .block-news {
    margin-top: 152.99px;
    padding-bottom: 115px;
    .container {
      width: 829.75px;
      max-width: 69.337%;
      margin: auto;
      position: relative;
        img.carb-flowers {
          position: absolute;
          right: -180px;
          top: -100px;
          width: 160px;
        }
        img.women{
          position: absolute;
          top: -195px;
          left: -220px;
          width: 217px;
        }
        img.tomato {
          position: absolute;
          right: -96px;
          bottom: -12px;
          width: 101.64px;
        }
        img.people {
          position: absolute;
          left: -145px;
          bottom: -115px;
          width: 180.12px;
        }
      .news-list {
        flex: 1;
          a {
            text-decoration: none;
          }
          .item {
            position: relative;
            display: flex;
            align-items: center;
            padding-bottom: 17px;
            border-bottom: 1px solid #154585;
            margin-bottom: 56px;                    font-weight: 500;
              .date {
                color: #C1272D;
                /* font-weight: 600; */
                font-size: 20px;
                margin-right: 66.9px;
                font-family: var(--font-reddit);
              }
              .tag {
                background-color: #C1272D;
                color: #ffffff;
                /* font-weight: 700; */
                padding: 6px 19px;
                border-radius: 20px;
                font-size: 13px;
                margin-right: 61.23px;
                width: 90.01px;
                max-width: 100%;
              }
              .description {
                color: #154585;
                /* font-weight: 700; */
                font-size: 20px;
                flex-grow: 1;
                padding-right: 39px;
              }
              .arrow {
                color: #154585;
                font-size: 24px;
                position: absolute;
                right: 0;
                width: 35.51px;
                  img {
                    width: 100%;
                  }
              }
          }
      }
      .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 106.21px;
        flex-wrap: wrap;
            .num-page {
                display: inline-block;
                margin: 0px 18px;
                color: #C1272D;
                text-decoration: none;
                font-family: var(--font-reddit);
                font-weight: 700;
                font-size: 16px;
            }
            a {
                &:hover {
                    color: #C1272D;
                }
                &.active {
                    position: relative;
                    color: #C1272D80;
                    pointer-events: none;
                        &::before {
                            content: "";
                            position: absolute;
                            bottom: -6px;
                            left: 50%;
                            transform: translateX(-50%);
                            width: 18px;
                            height: 2px;
                            background-color: #154585;
                            border-radius: 1px;
                        }
                }
            }
            .wrap-btn {
                display: flex;
                gap: 11.3px;
                font-size: 40.7px;
                cursor: pointer;
                font-family: var(--font-reddit);
                    .prev {
                        color: #C1272D80;
                        cursor: pointer;
                    }
                    .next {
                        color: #C1272D;
                    }
            }
        }
    }
  }
}

#news-details {
  header {
    background: none;
  }
  main {
    overflow: hidden;
  }
  .news-details-section {
    margin-top: 168PX;
    .container {
      width: 829.75px;
      max-width: 100%;
      margin: 0px auto;
      .news-details-list {
        position: relative;
        img.sunflowers{
          position: absolute;
          top: auto;
          right: -145px;
          width: 135px;
          max-width: 100%;
        }
        img.bamboo {
          width: 65px;
          max-width: 100%;
          position: absolute;
          top: 125px;
          right: -160px;
        }
            .item {
              display: flex;
              align-items: center;
              margin-bottom: 20px;
                .date {
                  font-family: var(--font-reddit);
                  font-weight: 600;
                  font-size: 20px;
                  color: #C1272D;
                  margin-right: 25px;
                }
                .notice {
                  background-color: #C1272D;
                  color: #FFFFFF;
                  padding: 6px 19px;
                  border-radius: 25px;
                  font-size: 13px;
                  font-weight: 700;
                  font-family: var(--font-zen);
                }
            }
            h2 {
              font-size: 26px;
              font-weight: 700;
              color: #154585;
              margin-bottom: 31px;
              border-bottom: 2px solid #154585;
              padding-bottom: 23px;
            }
            .detail-content {
              .crab {
                margin-top: 30px;
              }
              img.crab {
                position: absolute;
                left: -140px;
                top: auto;
                width: 95px;
                max-width: 100%;
              }
              p {
                font-family: var(--font-zen);
                font-weight: 500;
                font-size: 16px;
                line-height: 31px;
                margin-bottom: 15px;
                letter-spacing: 0.1em;
                color: #154585;
              }
            }
            .click-more {
              margin-top: 102px;
              text-align: center;
              a {
                text-decoration: none;
                color: #154585;
                font-family: var(--font-zen);
                font-weight: 700;
                font-size: 16px;
                display: flex;
                justify-content: center;
                align-items: center;
                  i {
                    font-size: 23.18px;
                  }
                  span {
                    margin-left: 10px;
                  }
              }
            }
          }
      }
    }
  }

#map-page {
  header {
    background: none;
    margin-bottom: 85px;
  }
  .block-sightseeing-map {
    margin-bottom: 299px;
    .container {
      width: 1050px;
      max-width: 90%;
      padding: 0;
    }
    .group-map {
      position: relative;
      img.image-bg-pc {
        position: absolute;
        top: 6.6%;
        height: 90%;
        left: 50%;
        transform: translateX(-50%);
        z-index: -10;
      }
      .card {
        position: relative;
        img[class^="bg-"] {
          position: absolute;
        }
        img.bg-left-top {
          left: 11%;
          top: 0%;
        }
        img.bg-left-bottom {
          width: 164px;
          left: -6%;
          bottom: 0%;
        }
        img.bg-right-top {
          width: 137px;
          right: 4%;
          top: 7%;
        }
        img.bg-right-bottom {
          right: 11%;
          bottom: 0%;
        }
      }
      .block-main {
        margin-bottom: 85px;
        .bg-sp {
          display: none;
        }
        .card {
          display: flex;
          justify-content: center;
          .card-content {
            .text-title {
              color: #154585;
              margin-bottom: 41px;
              h3 {
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 26px;
                letter-spacing: 0.1em;
                i {
                  margin-right: 25px;
                  color: #DE4542;
                  font-size: 47px;
                }
                br {
                  display: none;
                }
              }
            }
            .block-image {
              position: relative;
              text-align: center;
              img.sub-image-left {
                width: 370px;
                position: absolute;
                top: -21%;
                left: 0;
              }
              img.sub-image-right {
                width: 370px;
                position: absolute;
                bottom: -21%;
                right: 0;
              }
            }
          }
        }
      }
      article {
        .bg-right-sp,
        .bg-left-sp {
          display: none;
        }
        .card {
          display: flex;
          align-items: center;
          justify-content: center;
          .card-content,
          .block-image {
            flex: 1;
            height: 100%;
          }
          .card-content {
            padding: 0 60px;
            z-index: 10;
            .text-title {
              color: #154585;
              text-align: left;
              margin-bottom:24px;
              h3 {
                font-size: 26px;
                text-align: left;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                letter-spacing: 0.1em;
                i {
                  margin-right: 10px;
                  margin-bottom: -3px;
                  color: #DE4542;

                }
              }
              small {
                font-weight: 700;
                margin-bottom: 21px;
                display: inline-block;
                line-height: 100%;
                font-family: var(--font-zen);
                letter-spacing: 0.1em;
              }
            }
            .description {
              margin-bottom: 54px;
              p {
                color: #154585;
                font-weight: 500;
                line-height: 31px;
                letter-spacing: 0.1em;
              }
              p.style-color {
                margin-top: 23px;
                font-weight: 700;
                font-size: 14px;
                line-height: 19px;
                letter-spacing: 0.1em;
                i {
                  margin-right: 8px;
                  font-size: 14px;
                  font-weight: 900;
                }
                span {
                  color: #DE4542;
                }
              }
            }
            .check-action {
              a {
                color: #154585;
                padding-bottom: 5px;
                border-bottom: 2px solid #154585;
                text-decoration: none;
                font-size: 24px;
                font-weight: 600;
                font-family: 'Noto Sans';
                i {
                  margin-left: 28px;
                }
              }
            }
          }
          .block-image {
            position: relative;
            img.sub-image-left  {
              position: absolute;
              left: -16%;
              bottom: -4%;
            }
            img.sub-image-right  {
              position: absolute;
              right: -2%;
              bottom: 4%;
            }
            img.sub-image-right-top  {
              position: absolute;
              right: 1%;
              top: 9%;
              z-index: -9;
            }
            img.sub-image-left-top  {
              position: absolute;
              left: 0%;
              top: 8%;
              z-index: -9;
            }
          }
        }
      }
      article:nth-child(even) {
        .card {
          flex-direction: row-reverse;
          .card-content {
            .check-action {
              text-align: right;
            }
          }
        }
      }
      article:nth-of-type(1) {
        margin-bottom: 36px;
        .card {
          img.bg-right-bottom {
            right: 0%;
            bottom: -14%;
          }
        }
      }
      article:nth-of-type(2) {
        .card {
          img.bg-left-top {
            left: 0%;
            top: 0%;
          }
        }
      }
      article:nth-of-type(3) {
        margin-bottom: 52px;
        .card {
          .block-image {
            img.sub-image-left {
              left: -7%;
              bottom: -7%;
            }
          }
          img.bg-right-top {
            width: auto;
            right: -2%;
            top: 8%;
          }
          img.bg-right-bottom {
            right: -2%;
            bottom: -20%;
          }
        }
      }
      article:nth-of-type(4) {
        .card {
          .block-image {
            img.sub-image-right {
              right: -8%;
              bottom: 6%;
            }
          }
          img.bg-left-top {
            left: -12%;
            top: -26%;
          }
        }
      }
      article:nth-of-type(5) {
        margin-bottom: 76px;
        .card {
          .block-image {
            img.sub-image-left {
              left: -12%;
              bottom: 5%;
            }
          }
          img.bg-right-bottom {
            right: 5%;
            bottom: -10%;
          }
        }
      }
      article:nth-of-type(6) {
        margin-bottom: 8px;
        .card {
          img.bg-left-top {
            left: -7%;
            top: -9%;
          }
        }
      }
      article:nth-of-type(7) {
        margin-bottom: 97px;
        .card {
          .block-image {
            img.sub-image-left {
              left: -8%;
              bottom: 11%;
            }
          }
          img.bg-right-top {
            width: 155px;
            right: -2%;
            top: -13%;
          }
        }
      }
      article:last-child {
        .card {
          .block-image {
            img.sub-image-right {
              right: -8%;
              bottom: 4%;
            }
          }
        }
      }
    }
  }
}

.dropdown-container {
  position: relative;
  /* width: 100%; */
  font-weight: 400;
  .dropdown-selected {
    background: #f4f4f4;
    border-radius: 15px;
    padding: 13px 21px 15px 21px;
    cursor: pointer;
    color: #949494;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    border: 2px solid #FFFF;
    border-bottom: none;
    width: 120px;
    height: 50px;
  }
  .dropdown-selected.cus-width-1 {
    width: 120px;
  }
  .dropdown-selected.active {
    color: #154585;
    font-weight: 500;
    /* width: 190px; */
  }
  .dropdown-selected.cus-width-2.active {
    width: 190px !important;
  }
  .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f4f4f4;
    color: #949494;
    display: none;
    z-index: 8;
    border-radius: 0 0 15px 15px;
    margin-top: -10px;
    padding-top: 10px;
    border: 2px solid #FFFF;
    border-top: none;
    .dropdown-option {
      cursor: pointer;
      padding: 10px 21px;
    }
    .dropdown-option:last-child {
      border-radius: 0 0 15px 15px;
    }
    .dropdown-option:hover {
      background: #154585;
      color: #FFF;
      font-weight: 500;
    }
  }
  .dropdown-options.cus-width {
    width: 190px;
    border-radius: 0 15px 15px 15px;
  }
  .fa-angle-right {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform: rotate(90deg);
    margin-top: 2px;
    vertical-align: middle;
  }
  .selected.active .fa-angle-right {
    transform: rotate(90deg);
  }
}
.dropdown-container.dropdown-cus-pay {
  width: 100%;
  .dropdown-selected.cus-width-3 {
    width: 100%;
  }
}
#events-details,
#experience-details {
  .block-details {
    background: #E3EEF4;
    color: #154585;
    position: relative;
    margin-top: 50px;
    .bg-bar-top {
      position: absolute;
      width: 100%;
      height: 310px;
      top: 0;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom left;
      }
      img.sp {
        display: none;
      }
    }
    .main-card {
      width: 1050px;
      max-width: 100%;
      margin: auto;
      .card {
        display: flex;
        margin-bottom: 198px;
        align-items: center;
        position: relative;
        .card-content {
          width: 590px;
          max-width: 100%;
          h2 {
            font-size: 40px;
            font-weight: 900;
            margin-bottom: 44px;
            display: flex;
            align-items: center;
            letter-spacing: 0.1em;
            br {
              display: none;
            }
            span {
              width: 138px;
              height: 49px;
              margin-left: 31px;
              background: #FFFAE2;
              font-weight: 700;
              font-size: 18px;
              border-radius: 25px;
              display: flex;
              align-items: center;
              justify-content: center;
              letter-spacing: 0;
            }
          }
          h3 {
            font-size: 37px;
            font-weight: 900;
            margin-bottom: 22px;
            letter-spacing: 0.1em;
          }
          .paragrap {
            p {
              font-size: 16px;
              font-weight: 500;
              color: #154585;
              line-height: 31px;
              letter-spacing: 0.1em;
              span.big-font {
                font-size: 18px;
                font-weight: 900;
              }
            }
          }
        }
        .card-image {
          width: 667px;
          max-width: 100%;
          img {
            width: 120%;
            height: auto;
            object-fit: cover;
            margin-left: -32px;
            margin-bottom: -50px;
          }
        }
      }
    }
    .list-content {
      background: #FFF;
      font-size: 18px;
      padding-bottom: 85px;
      margin-bottom: 47px;
      position: relative;
      border-radius: 20px;
      .bg-style-top {
        position: relative;
        img {
          width: 100%;
        }
        img.bg-image-title {
          width: 90%;
          position: absolute;
          bottom: 58%;
          text-align: center;
          left: 50%;
          transform: translateX(-50%);
        }
      }
      .group-list {
        padding: 0 110px;
        margin-bottom: 58px;
        dl {
          display: flex;
          gap: 10px;
          margin-bottom: 32px;
          dt {
            width: 170px;
            line-height: 31px;
            font-weight: 700;
          }
          dd {
            font-weight: 500;
            display: flex;
            flex-wrap: wrap;
            br {
              display: block;
            }
          }
          dd.cus-line {
            display: flex;
            flex-direction: column;
          }
          dd.cus-line2 {
            span:first-child {
              width: 100%;
            }
          }
        }
        dl:last-child {
          margin-bottom: 0;;
        }
      }
      .apply-here {
        a {
          display: flex;
          gap: 32px;
          text-decoration: none;
          color: #154585;
          font-weight: 600;
          width: 244px;
          align-items: center;
          margin: auto;
          font-family: var(--font-noto-san);
        }
      }
      .bg-list-bottom {
        position: absolute;
        bottom: 11%;
        right: 4%;
        width: 283px;
        img {
          width: 100%;
        }
      }
    }
    .read-more {
      a {
        display: flex;
        color: #154585;
        gap: 22px;
        width: 130px;
        text-decoration: none;
        margin: auto;
        font-size: 16px;
        font-weight: 700;
        img {
          width: 27px;
        }
      }
    }
    .bg-bar-bottom {
      margin-top: -80px;
      img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: -4px;
      }
      img.sp {
        display: none;
      }
    }
  }
}
#experience-details {
  .block-details {
    /* .bg-bar-bottom {
      background: url('../img/experiences/details/image-02.png') no-repeat center center;
      background-size: cover;
      height: 100.5vh;
      width: 100%;
      clip-path: ellipse(100% 100% at 50% 100%);
    } */
    .bg-bar-bottom img.pc {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* keeps aspect ratio while filling */
      clip-path: ellipse(100% 84% at 50% 100%);
    }
  }
}
#events-details {
  .block-details {
    background: #FBF4F4;
    .main-card {
      .card {
        .card-content {
          h2 {
            span {
              margin-left: 28px;
              line-height: 28px;
            }
          }
        }
        .card-image {
          width: 650px;
        }
      }
    }
    .read-more {
      a {
        color: #C1272D;
      }
    }
    /* .bg-bar-bottom {
      background: url('../img/events/details/image-02.png') no-repeat center center;
      background-size: cover;
      height: 71.5vh;
      width: 100%;
    } */
    .bg-bar-bottom img.pc {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* keeps aspect ratio while filling */
      clip-path: ellipse(100% 77.1% at 50% 100%);
    }
  }
}

#events {
  header {
    background: none;
  }
  main {
    overflow: hidden;
  }
  .events-banner {
    width: 950px;
    max-width: 100%;
    position: relative;
    text-align: center;
    margin: 0 auto;
    margin-top: 17px;
    h2 {
      font-family: var(--font-zen);
        font-size: 40px;
        font-weight: 900;
        color: #C1272D;
        letter-spacing: 0.1em;
        margin-bottom: 13px;
    }
    p.subtitle {
        font-family: var(--font-jost);
        font-size: 21px;
        font-weight: 500;
        color: #C1272D;
        text-transform:uppercase;
    }
    .wrap-content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        position: relative;
            img.tomatos {
                width: 132.55px;
                height: auto;
                position: absolute;
                left: 50px;
                top: 50px;
                max-width: 100%;
            }
            img.birds {
                width: 220px;
                height: auto;
                position: absolute;
                top: -40px;
                right: 50px;
            }
            .text-block {
              margin-top: 51px;
                p {
                  max-width: 100%;
                  text-align: center;
                  font-family: 'Zen Kaku Gothic New';
                  font-size: 16px;
                  line-height: 31px;
                  font-weight: 500;
                  color: #154585;
                  letter-spacing: 0.1em;
                    strong {
                      font-weight: 900;
                      font-size: 18px;
                    }
                }
            }

    }
  }
  .events {
    .container {
      width: 1050px;
      max-width: 90%;
      margin: 0px auto;
      .wrap {
        margin: 0 auto;
        display: flex;
        gap: 10px 29.89px;
        margin-top: 50px;
        position: relative;
        justify-items: center;                flex-wrap: wrap;
        justify-content: center;
        .card {
        width: 330px;
        max-width: 100%;
        height: auto;
        border-radius: 25.32px;
        display: flex;
        flex-direction: column;
        background-color: #F9EDED;
        position: relative;
        margin-top: 114.96px;
        padding: 32.51px;
            .badge {
                background-color: #C1272D;
                color: #FFFFFF;
                font-weight: 900;
                font-size: 13.36px;
                width: 78px;
                height: 78px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                right: -10px;
                top: -20px;
            }
            img {
                width: 100%;
                height: auto;
                object-fit: cover;
                border-radius: 15px;
                display: block;
            }
            .content {
                width: 100%;
                display: flex;
                flex-direction: column;
                flex-grow: 1;
                margin-top: 19.68px;
                    h3 {
                        margin-bottom: 5px;
                        color: #C1272D;
                        font-weight: 700;
                        font-size: 19px;
                        font-family: var(--font-zen);
                    }
                    p {
                        font-size: 12px;
                        font-family: var(--font-zen);
                        font-weight: 700;
                        color: #C1272D;
                        margin-bottom: 5px;
                            &.description {
                                font-size: 12px;
                                font-weight: 500;
                                margin-top: 22.04px;
                                flex-grow: 1;
                                width: 254.09px;
                            }
                            &.date {
                                font-family: var(--font-reddit);
                                font-weight: 600;
                                font-size: 14px;
                                display: flex;
                                align-items: center;
                                gap: 15.9px;
                                span {
                                background-color: #FFFFFF;
                                width: 84.16px;
                                height: 29.91px;
                                border-radius: 20px;
                                font-family: 'Zen Kaku Gothic New';
                                font-size: 12px;
                                font-weight: 700;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                text-align: center;
                                }
                            }
                    }
            }
        }
        .fruit {
            position: absolute;
            right: -100px;
            top: 150px;
        }
        .people {
          position: absolute;
          left: -145px;
          top: 466px;
        }
        .bamboo {
            position: absolute;
            left: -80px;
            top: 1086px;
        }
        .sunflowers {
            position: absolute;
            left: -66px;
            top: 1198px;
        }
        .three-fruits {
            position: absolute;
            right: -94px;
            top: 1170px;
        }
        .port {
          position: absolute;
          right:  -83px;
          top: 1288px;
          width: 130px;
        }
        .crab {
            position: absolute;
            left: -110px;
            bottom: -55px;
        }
    }
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 135.54px;
        flex-wrap: wrap;
            .num-page {
                display: inline-block;
                margin: 0px 13.5px;
                color: #C1272D;
                text-decoration: none;
                font-family: var(--font-reddit);
                font-weight: 500;
                font-size: 16px;
            }
            a {
                &:hover {
                    color: #C1272D;
                }
                &.active {
                    position: relative;
                    color: #C1272D80;
                    pointer-events: none;
                        &::before {
                            content: "";
                            position: absolute;
                            bottom: -6px;
                            left: 50%;
                            transform: translateX(-50%);
                            width: 18px;
                            height: 2px;
                            background-color: #154585;
                            border-radius: 1px;
                        }
                }
            }
            .wrap-btn {
                display: flex;
                gap: 11.3px;
                font-size: 40.7px;
                cursor: pointer;
                font-family: var(--font-reddit);
                    .prev {
                        color: #C1272D80;
                        cursor: pointer;
                    }
                    .next {
                        color: #C1272D;
                    }
            }
        }
    }
  }
}

#event-reservation-confirmation,
#event-reservation,
#experience-reservation-confirmation,
#experience-reservation,
#contact,
#accommodation-reservation,
#accommodation-reservation-confirmation {
  header {
    padding-bottom: 0px;
  }
  .block-content {
    margin-top: 113px;
    .text-title {
      margin-bottom: 0px;
    }
    .description {
      text-align: center;
      margin: 45px 0 27px 0;
      letter-spacing: 0.1em;
      p {
        color: #154585;
        font-weight: 500;
        line-height: 31px;
        margin-bottom: 20px;
        a {
          text-decoration: none;
          border-bottom: 1px solid #154585;
          color: #154585;
          font-weight: 700;
        }
      }
      p:last-child {
        margin-bottom: 0px;
      }
    }
    .bg-from {
      width: 93%;
      max-width: 100%;
      margin: auto;
      margin-bottom: -70px;
      position: relative;
      z-index: 1;
      img {
        width: 100%;
      }
    }
    .card {
      background: #E3EEF4;
      color: #154585;
      padding: 120px 114px 60px 130px;
      border-radius: 25px;
      position: relative;
      .card-body {
        .card-row {
          font-size: 18px;
          font-weight: 700;
          .card-col {
            margin-bottom: 39px;
            display: flex;
            align-items: center;
            position: relative;
            justify-content: space-between;
            label {
              min-width: 190px;
              span {
                color: #C1272D;
              }
            }
            textarea,
            input {
              width: 558px;
              max-width: 100%;
              height: 50px;
              border: none;
              border-radius: 15px;
              padding: 13px 21px 15px 21px;
              font-size: 18px;
              color: #154585;
            }
            i {
              position: absolute;
              right: 25px;
              transform: rotate(90deg);
              color: #5C5C5C;
            }
            textarea {
              height: 237px;
              padding-top: 18px;
            }
            input::placeholder,
            textarea::placeholder {
              color: #949494;
            }
            input:focus-visible,
            textarea:focus-visible {
              border: none;
              outline: none;
            }
          }
          .card-col:last-child {
            align-items: flex-start;
            margin-bottom: 58px;
            label {
              margin-top: 18px;
            }
          }
            .center-side {
              display: flex;
              align-items: center;
              gap: 10px;
              width: 139px;
              input {
                width: 90px;
                height: 50px;
                border: none;
                border-radius: 15px;
                padding: 13px 50px 15px 21px;
                font-size: 18px;
                color: #154585;
                position: relative;
                  &::placeholder {
                    position: absolute;
                    right: 20px;
                  }
              }
            }

            i {
              position: absolute;
              right: 25px;
              transform: rotate(90deg);
              color: #5C5C5C;
            }

            textarea {
              height: 237px;
              padding-top: 18px;
            }

            input::placeholder,
            textarea::placeholder {
              color: #949494;
            }

            input:focus-visible,
            textarea:focus-visible {
              border: none;
              outline: none;
            }
          .card-col:last-child {
            align-items: flex-start;
            margin-bottom: 58px;
            label {
              margin-top: 18px;
            }
          }
        }
      }
    }
    .block-policy {
      display: block;
      clear: both;
      overflow: hidden;
      margin-bottom: 29px;
      .checkbox-policy {
        width: 558px;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        float: right;
        label {
          font-weight: 500;
          font-size: 16px;
          display: flex;
          align-items: center;
        }
        input[type="checkbox"] {
          cursor: pointer;
          position: relative;
          appearance: none;
          min-width: 21px;
          height: 21px;
          border: 1px solid #929CA2;
          border-radius: 4px;
          vertical-align: middle;
          background: #FFF;
        }
        input[type="checkbox"]:checked {
          background-color: #154585;
          border-color: #154585;
        }
        input[type="checkbox"]:checked::after {
          font-family: 'Font Awesome 6 Free';
          font-weight: 900;
          content: "✔";
          color: white;
          font-size: 14px;
          display: flex;
          align-items: center;
          justify-content: center;
          height: 100%;
          width: 100%;
        }
      }
    }
    .agree-policy {
      text-align: center;
      margin-bottom: 71px;
      letter-spacing: 0.1em;
      p {
        font-size: 14px;
        color: #154585;
        font-weight: 400;
        line-height: 28px;
        a {
          text-decoration: none;
          font-weight: 500;
          border-bottom: 1px solid #154585;
          color: #154585;
        }
      }
    }
    .btn-submit {
      display: flex;
      justify-content: center;
      a {
        color: #154585;
        text-decoration: none;
        font-size: 20px;
        font-weight: 600;
        font-family: var(--font-noto-san);
        display: flex;
        /* width: 160px; */
        align-items: center;
        justify-content: center;
        i {
          width: 28.18px;
          height: 28.18px;
          margin-left: 32.54px;
          border-radius: 50%;
          background: #154585;
          border:2px solid #154585;
          color: #FFF;
          transition: all 0.3s linear;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 16px;
        }
      }
      a:hover {
        i {
          background: #FFF;
          color: #154585;
        }
      }
    }
  }
}
#contact {
  .block-content {
    .card {
      .card-body {
        .card-row {
          .card-col {
            .right {
              width: 558px;
              max-width: 100%;
              display: flex;
              gap: 15px;
              position: relative;
              .dropdown-container {
                .dropdown-selected {
                  background: #ffffff;
                }
                .dropdown-options {
                  background: #ffffff;
                  border: 2px solid #E3EEF4;
                  border-top: none;
                }
                i {
                  top: 15px;
                }
              }
            }
          }
        }
      }
    }
  }
}
#event-reservation-confirmation,
#event-reservation,
#experience-reservation-confirmation,
#experience-reservation,
#accommodation-reservation,
#accommodation-reservation-confirmation {
  .block-content {
    .card {
      padding: 106px 68px 80px 68px;
      .card-body {
        background: #FFF;
        margin-bottom: 45px;
        padding: 37px;
        border-radius: 25px;
        .card-row {
          padding: 0 29px;
          .card-col {
            margin-bottom: 18px;
            justify-content: space-between;
            .left {
              min-width: 190px;
            }
            .right {
              width: 558px;
              max-width: 100%;
              display: flex;
              gap: 15px;
              h2 {
                font-size: 27px;
                font-weight: 900;
                letter-spacing: 0.1em;
              }
              p {
                font-weight: 500;
                line-height: 31px;
              }
              p.using-spacing {
                letter-spacing: 0.1em;
              }
              input {
                background: #F1F2F2;
                font-weight: 400;
                color: #154585;
                width: 100%;
              }
              input:focus-visible {
                outline: none;
              }
            }
            .colunm {
              input:first-child {
                width: 79px;
              }
            }
            i {
              top: 15px;
            }
          }
          .card-col:last-child {
            margin-bottom: 0;
            align-items: center;
          }
        }
        .heade-title {
          margin-bottom: 47px;
          text-align: center;
          h3 {
            border-radius: 30px;
            background: #154585;
            height: 47px;
            color: #FFFFFF;
            font-size: 18px;
            line-height: 31px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
          }
          p {
            margin-top: 11px;
            font-size: 16px;
            font-weight: 400;
            line-height: 26px;
          }
        }
      }
      .card-body:last-child {
        margin-bottom: 0;
      }
      .card-body.cus-2 {
        .heade-title {
          margin-bottom: 47px;
        }
        .card-row {
          .card-col {
            margin-bottom: 39px;
          }
          .card-col:last-child {
            margin-bottom: 0px !important;
          }
        }
      }
      .card-body.cus-3 {
        .heade-title {
          margin-bottom: 56px;
        }
        .card-row {
          .card-col {
            margin-bottom: 16px;
            .dropdown-container {
              /* width: 100%; */
              .dropdown-selected {
                width: 79px;
                height: 50px;
              }
            }
          }
          .card-col:last-child {
            margin-bottom: 0px;
          }
          .card-col:nth-of-type(2n + 1) {
            margin-bottom: 43px;
            .right {
              display: flex;
              align-items: center;
              input {
                width: 79px;
                max-width: 100%;
              }
            }
          }
        }
      }
      .card-body.cus-4 {
        .heade-title {
          margin-bottom: 33px;
        }
      }
      .block-policy {
        text-align: center;
        margin-bottom: 29px;
        letter-spacing: 0.1em;
        .checkbox-policy {
          justify-content: center;
          float: none;
          width: 100%;
          label {
            font-weight: 500;
          }
        }
      }
      .btn-submit {
        a {
          /* min-width: 200px; */
          img {
            margin-left: 26.54px;
          }
        }
      }
    }
  }
  footer {
    margin-top: 231px;
  }
}
#event-reservation, #experience-reservation {
  .block-content {
    .card {
      .card-body.cus-3 {
        .card-row {
          .card-col {
            .dropdown-container {
              .dropdown-selected.participants {
                width: 79px;
              }
              .dropdown-selected {
                width: 190px;
                height: 50px;
              }
            }
          }
        }
      }
    }
  }
}
#event-reservation-confirmation,
#experience-reservation-confirmation,
#accommodation-reservation-confirmation {
  .block-content {
    .text-title {
      margin-bottom: 54px;
      h2 {
        font-size: 32px;
      }
    }
    .card {
      padding-top: 69px;
      .main-block {
        background: #FFF;
        padding: 37px;
        border-radius: 25px;
      }
      .card-body {
        background: none;
        margin-bottom: 28px;
        padding: 0px;
        border-radius: 0px;
        .heade-title {
          margin-bottom: 28px;
        }
        .card-row {
          .more-link {
            margin-top: 31px;
            text-align: right;
            a {
              text-decoration: none;
              color: #154585;
              border-radius: 15px;
              border:2px solid #154585;
              padding: 7px 16px 9px 17px;
              line-height: 18px;
              font-size: 16px;
            }
          }
        }
      }
      .btn-submit {
        margin-top: 84px;
      }
    }
    .payment-information {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 52px;
      margin-top: 50px;
      .payment-items {
        flex: 1;
        .payment-title {
          margin-bottom: 27px;
          p.content {
            font-weight: 500;
            margin: 27px 0 70px 0;
          }
        }
        .payment-amount {
          margin-bottom: 43px;
          > p {
            margin-bottom: 27px;
          }
          .table-items:last-child {
            margin-bottom: 0px;
          }
          .table-items {
            margin-bottom: 11px;
            .row {
              display: flex;
              justify-content: space-between;
              .col-left {
                display: flex;
                gap: 27px;
              }
              p {
                font-weight: 500;
              }
            }
          }
          .table-items.total {
            border-top: 1px solid #819ABD;
            margin-top: 24px;
            .row {
              margin-top: 9px;
            }
          }
        }
      }
      .payment-method {
        position: relative;
        width: 442px;
        max-width: 100%;
        border-radius: 25px;
        border: 5px solid #F1F2F2;
        padding: 36px 41px 36px 32px;
        .bg-style {
          display: none;
        }
        p.bg {
          input {
            width: 100%;
            color: #154585;
            background: #F1F2F2;
            font-weight: 400;
            font-size: 18px;
            padding: 14px;
            border-radius: 15px;
            border: none;
          }
        }
        .method-title {
          margin-bottom: 27px;
          > p {
            margin-bottom: 26px;
          }
          .method-icon {
            ul {
              display: flex;
              gap: 17px;
              li {
                list-style: none;
              }
            }
          }
        }
        .payment-number {
          margin-bottom: 27px;
          > p {
            margin-bottom: 11px;
          }
        }
        .expiry-date {
          margin-bottom: 27px;
          display: flex;
          justify-content: space-between;
          .right,
          .left {
            flex: 1;
            > p {
              margin-bottom: 11px;
            }
            .month-date {
              display: flex;
              align-items: center;
              gap: 15px;
              .sludge {
                font-weight: 700;
                color: #154585;
              }
              .dropdown-container {
                /* width: 58px; */
                .dropdown-selected {
                  width: 58px;
                  justify-content: center;
                }
                .dropdown-options {
                  padding-top: 0px;
                  .dropdown-option {
                    padding: 2px 15px;
                    text-align: center;
                  }
                }
                /* span {
                  color: #949494;
                  background: #F1F2F2;
                  font-weight: 400;
                  padding: 14px 18px;
                  border-radius: 15px;
                  display: inline-block;
                  width: 58px;
                  text-align: center;
                  margin-right: 10px;
                }
                span:last-child {
                  width: 77px;
                  margin-right: 0px;
                  margin-left: 10px;
                } */
              }
            }
          }
        }
        .card-name {
          p {
            margin-bottom: 11px;
          }
        }
      }
    }
  }
}
#accommodation-reservation-confirmation {
  .block-content {
        .text-title {
            h2 {
                font-weight: 700;
            }
        }
      .card {
        .card-body {
          .card-row {
            .card-col {
              .right {
                h2 {
                  font-weight: 700;
                }
              }
            }
          }
        }
      }
    }
}
.reservation-completion {
  .description {
    letter-spacing: 0.1em;
  }
}
.reservation-completion,
.accommodation-reservations-completion {
  margin-top: 127px;
  text-align: center;
  color: #154585;
  line-height: 31px;
  header {
    padding-bottom: 0;
  }
  .container {
    width: 1050px;
    max-width: 100%;
    margin: auto;
  }
  .text-title {
    margin-bottom: 59px;
    h2 {
      font-size: 32px;
      font-weight: 900;
      font-family: var(--font-zen);
      letter-spacing: 0.1em;
    }
  }
  p {
    font-size: 16px;
    font-weight: 700;
  }
  .description {
    margin-bottom: 64px;
    position: relative;
    letter-spacing: 0.1em;
    .image-content {
      display: flex;
      justify-content: space-between;
      width: 100%;
      position: absolute;
      top: 0px;
      z-index: -1;
      img {
        width: 100%;
      }
      .left {
        width: 268.23px;
        margin-top: -38px;
      }
      .right {
        width: 281.5px;
      }
    }
  }
  .resand-email {
    margin-top: 69px;
    p {
      margin-bottom: 25px;
      font-size: 15px;
      font-weight: 500;
    }
    a {
      text-decoration: none;
      color: #154585;
      font-size: 15px;
      font-weight: 500;
      border-bottom: 1px solid #154585;
    }
  }
  .btn-submit {
    a {
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      color: #154585;
      img {
        width: 23.18px;
        height: 23.18px;
        margin-bottom: -7px;
        margin-right: 21.9px;
      }
    }
  }
}
#event-reservation-confirmation,
#event-reservation {
  .block-content {
    .text-title {
        color: #C1272D;
    }
    .card {
      background: #FBF4F4;
      .card-body {
        .heade-title {
          h3 {
            background: #D2494E;
          }
        }
      }
      .btn-submit {
        a {
          color: #C1272D;
          i {
            border:2px solid #C1272D;
            background: #C1272D;
            color: #FFF;
          }
        }
        a:hover {
          i {
            background: #FFF;
            color: #C1272D;
          }
        }
      }
    }
  }
}
#accommodation-reservation {
  .block-content {
    .card {
      .card-body {
        .card-row {
          padding: 0 0 0 29px;
          .card-col:last-child {
            label {
                margin-top: 0px;
            }
          }
          .card-col {
          .left {
            label {
              margin-top: 0px;
            }
          }
          .right {
            align-items: center;
            .center-side {
              .dropdown-selected {
                width: 79px;
                height: 50px;
                justify-content: flex-end;
              }
              input {
                width: 79px;
              }
            }
          }
          .order-amount {
            font-size: 16px;
            font-weight: 400;
            margin-left: 0px;
            font-family: var(--font-zen);
            span {
              display: block;
              margin-left: 20px;
            }
          }
        }
        }
        }
        .desired-room {
          font-weight: 700;
          font-size: 18px;
          font-family: var(--font-zen);
          line-height: 31px;
          padding-left: 29px;
        }
        .choose-room {
          margin-top: 30px;
          display: flex;
          justify-content: space-between;
          margin-left: 29px;
          column-gap: 64px;
          .room-options {
            label {
            display: block;
            margin-bottom: 21px;
            font-size: 16px;
            font-weight: 700;
            font-family: var(--font-zen);
          }
          input[type="checkbox"] {
            margin-right: 8px;
            transform: scale(1.4);
            accent-color: #154585;
          }
        }
      }
      .note {
        font-size: 16px;
        color: #154585;
        margin: 14px 0 24px 29px;
        font-weight: 400;
        line-height: 26px;
        font-family: var(--font-zen);
      }

      .room-layout {
          background: #e5f0f8;
          padding: 40px;
          border-radius: 10px;
          /* margin-top: 10px; */
          width: 558px;
          max-width: 100%;
          /* height: 169px; */
          /* margin-left: 64px; */
          display: block;
          .entrance {
            font-weight: bold;
            position: relative;
            z-index: 1;
              &::before {
                content: '';
                position: absolute;
                left: 48px;
                top: 0;
                width: 91%;
                height: 100%;
                background-color: #FFFFFFB2;
                border-radius: 3px;
                z-index: -1;
              }
          }
          .room-boxes {
            display: flex;
            justify-content: flex-start;
            gap: 3px;
            background-color: #BFD2EC;
            width: 373px;
            max-width: 100%;
            flex-direction: row;
            flex-wrap: wrap;
            float: inline-end;
            padding: 1px 22px;
              .room-box {
                background: #ffffff;
                border: 2px solid #b0cbe1;
                border-radius: 5px;
                flex: 1;
                padding: 15px 5px;
                text-align: center;
                font-size: 14px;
                font-weight: bold;
                color: #104c91;
                width: 66px;
                height: 80px;
                max-width: 100%;
                cursor: pointer;
              }
              .room-box.selected {
                background: #104c91;
                color: #ffffff;
                border-color: #104c91;
              }
          }
      }
      .other-requests {
        display: flex;
        justify-content: space-between;                margin-left: 29px;
        h4 {
          font-family: var(--font-zen);
          font-weight: 700;
          font-size: 18px;
          line-height: 31px;
          margin-top: 13px;
        }
        .comment-area {
          width: 558px;
          max-width: 100%;
            textarea.request-box {
              width: 100%;
              height: 155px;
              border: none;
              background: #F1F2F2;
              border-radius: 15px;
              padding: 14px 21px 14px 23px;
              color: #154585;
              margin-top: 10px;
              resize: none;
              font-size: 18px;
              font-weight: 400;
              line-height: 31px;
              font-family: var(--font-zen);
            }
            textarea.request-box:focus-visible {
              outline: none;
            }
            .note-area {
              font-size: 16px;
              color: #154585;
              font-weight: 400;
              line-height: 26px;
              font-family: var(--font-zen);
              margin-left: 23px;
            }
        }
      }
      .price-block {
        width: 301px;
        max-width: 100%;
        margin-top: 48px;
          h3 {
            margin-bottom: 27px;
            font-family: var(--font-zen);
            font-weight: 700;
            font-size: 18px;
            line-height: 31px;
          }
          table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 15px;
              th, td {
                font-weight: 500;
                font-size: 18px;
                font-family: var(--font-zen);
                text-align: left;
                padding: 6px 0;
                line-height: 31px;
              }
              td {
                span {
                  margin-left: 27px;
                }
              }
              td:last-child, th:last-child {
                text-align: right;
              }
          }
          .total {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #819ABD;
            padding-top: 10px;
            font-weight: 500;
            font-size: 18px;
            font-family: var(--font-zen);
            line-height: 31px;
          }
      }
    }
  }
}
#about,
#facilities {
  header {
    padding-bottom: 0;
  }
  .block-main-content {
    margin-top: 113px;
    color: #154585;
    .text-title {
      margin-bottom: 42px;
      h2 {
        font-weight: 700;
      }
    }
    .row-main {
      margin-bottom: -280px;
      position: relative;
      z-index: 1;
      .card {
        .card-body {
          display: flex;
          justify-content: flex-end;
          letter-spacing: 0.1em;
          gap: 48px;
          .card-image {
            position: relative;
            img {
              width: 100%;
            }
            img.sp {
              display: none;
            }
            .sub-image {
              width: 200.83px;
              position: absolute;
              top: -145px;
              right: 40%;
              z-index: -1;
              img {
                width: 100%;
              }
            }
          }
          .card-text {
            margin-top: 58px;
            h3 {
              font-size: 30px;
              font-weight: 700;
              margin-bottom: 42px;
            }
            p {
              font-weight: 500;
              line-height: 31px;
              width: 391px;
            }
          }
        }
      }
    }
    .facilities-map {
      position: relative;
      .bg-waves-top {
        img {
          width: 100%;
        }
        .sub-bg-left {
          width: 300px;
          position: absolute;
          top: 45px;
          left: 10%;
          img {
            width: 100%;
          }
        }
      }
      .bg-waves-bottom {
        img {
          width: 100%;
        }
        .sub-bg-right {
          width: 303px;
          position: absolute;
          bottom: 0px;
          right: 0;
          img {
            width: 100%;
          }
        }
      }
      .row {
        background: #FFFAE2;
        margin: -5px 0;
        padding: 100px 0 27px 0;
        .text-title {
          margin-bottom: 80px;
          h3 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 13px;
            letter-spacing: 0.1em;
          }
          small {
            font-weight: 500;
            font-size: 21px;
            text-transform: uppercase;
          }

        }
        .card {
          .card-body {
            position: relative;
            display: flex;
            justify-content: flex-end;
            gap: 48px;
            letter-spacing: 0.1em;
            .card-image {
              position: relative;
              img {
                width: 100%;
              }
              img.sp {
                display: none;
              }
              .sub-image {
                width: 178.85px;
                position: absolute;
                top: -70px;
                right: 10%;
                z-index: 1;
                img {
                  width: 100%;
                }
                img.sp {
                  display: block;
                }
                p.bg-circle {
                  top: 0;
                  left: -68px;
                }
              }
            }
          }
          p.bg-circle {
            width: 43px;
            height: 43px;
            border-radius: 50%;
            background: #154585;
            color: #FFF;
            font-size: 22px;
            font-weight: 900;
            line-height: 38px;
            text-align: center;
            position: absolute;
            top: 0;
            left: 0;
            letter-spacing: 0.1em;
          }
        }
      }
    }
    .comfortable {
      .card {
        .card-body {
          display: flex;
          gap: 70px;
          align-items: center;
          position: relative;
          .description {
            letter-spacing: 0.1em;
            padding-left: 60px;
            /* flex: 1; */
            h3 {
              font-size: 22px;
              font-weight: 700;
              margin-bottom: 26px;
              span {
                width: 43px;
                height: 43px;
                line-height: 38px;
                display: inline-block;
                text-align: center;
                background: #154585;
                color: #FFF;
                border-radius: 50%;
                margin-right: 18px;
              }
              span.cus {
                width: 72px;
                border-radius: 21px;
                font-size: 20px;
                font-weight: 700;
                line-height: 40px;
              }
            }
            p {
              font-weight: 500;
              line-height: 31px;
            }
          }
          .card-image {
            flex: 1;
            img {
              width: 100%;
            }
            img.sp {
              display: none;
            }
          }
          .bg-image {
            width: 169px;
            position: absolute;
            bottom: -65px;
            left: 0;
            img {
              width: 100%;
            }
          }
        }
        .card-body.image-left {
          flex-direction: row-reverse;
          .description {
            padding-left: 0px;
            padding-right: 60px;
          }
          .bg-image {
            width: 90px;
            bottom: auto;
            left: auto;
            right: 0;
            top: 30px;
          }
        }
      }
    }
    .information {
      .bg-bottom-b-sp {
        display: none;
      }
      .row {
        padding: 0;
        /* background: #FFF; */
        .text-title {
          margin-bottom: 39px;
        }
        .card {
          background: #FFF;
          border-radius: 25px;
          position: relative;
          z-index: 2;
          .bg-top-b-sp {
            display: none;
          }
          .card-body {
            gap: 0;
            justify-content: flex-start;
            flex-direction: column;
            padding: 77px 40px;
            position: relative;
            z-index: 1;
            &::before {
              content: "";
              position: absolute;
              bottom: 0;
              left: 0;
              height: 100%;
              width: 300px;
              background: linear-gradient(to right, #154585 208px, transparent 106px), url(../img/facilities/bg-waves-left.png) right top no-repeat;
              background-size: contain;
              border-radius: 25px 0 0 25px;
              z-index: -1;
            }
            .line {
              display: flex;
              align-items: center;
              height: 75px;
              gap: 10px;
              p {
                list-style: none;
                font-size: 18px;
                font-weight: 500;
                line-height: 31px;
                /* margin-bottom: 48px; */
                span {
                  font-size: 14px;
                }
              }
              .left {
                width: 270px;
                max-width: 100%;
                p {
                  color: #FFF;
                  font-weight: 500;
                }
              }
              .right {
                letter-spacing: 0;
                p.using-spacing {
                  letter-spacing: 0.1em;
                }
              }
            }
            .bg-image-lt {
              width: 175px;
              position: absolute;
              top: 15%;
              left: -100px;
              z-index: -10;
              img {
                width: 100%;
              }
            }
            .bg-image-lb {
              width: 122px;
              position: absolute;
              bottom: 22%;
              left: -86px;
              z-index: -10;
              img {
                width: 100%;
              }
            }
            .bg-image-rt {
              width: 172px;
              position: absolute;
              top: -60px;
              right: 66px;
              z-index: 1;
              img {
                width: 100%;
              }
            }
          }
        }
        .bg-image-rc {
          width: 170px;
          position: absolute;
          right: 17%;
          top: 50%;
          transform: translateY(-50%);
          z-index: 1;
          img {
            width: 100%;
          }
        }
      }
    }
    .access-section {
      .access-header {
        margin-bottom: 55px;
        margin-top: 106px;
      }
    }
  }
}
#privacypolicy {
  header {
    background: none;
  }
  main {
    overflow: hidden;
  }
  .privacypolicy-banner {
    position: relative;
    margin: 0px auto;
    width: 1050px;
    max-width: 100%;
    margin-top: 113px;
      h2 {
        font-size: 40px;
        font-weight: 900;
        font-family: var(--font-zen);
        text-align: center;
        color: #154585;
        letter-spacing: 0.1em;
        margin-bottom: 13px;
      }
      .subtitle {
        font-weight: 500;
        font-size: 21px;
        font-family: var(--font-jost);
        text-align: center;
        text-transform: uppercase;
        color: #154585;
      }
  }
  .privacypolicy-section {
    margin-top: 120px;
    .container {
      width: 980px;
      max-width: 90%;
      margin: 0px auto;
      .privacypolicy-items {
        position: relative;
        margin-bottom: 77px;
          h2 {
            font-family: var(--font-zen);
            color: #154585;
            font-weight: 700;
            font-size: 30px;
          }
          p {
            font-family: var(--font-zen);
            font-weight: 500;
            font-size: 16px;
            line-height: 31px;
            color: #154585;
            letter-spacing: 0.1em;
              span {
                display: inline;
                white-space: normal;
              }
          }
          .policy-content {
            margin-top: 37px;
            ul {
              li {
                font-family: var(--font-zen);
                font-weight: 500;
                font-size: 16px;
                line-height: 31px;
                color: #154585;
                margin-left: 25px;
                letter-spacing: 0.1em;
                  &::marker {
                    font-size: 10px;
                    color: #154585;
                  }
              }
            }
          }
          .wrap-sub {
            position: relative;
            .sub-content {
              margin-top: 35px;
              h3 {
                font-family: var(--font-zen);
                font-weight: 700;
                font-size: 22px;
                color: #154585;
                margin-bottom: 37px;
              }
              p {
                font-family: var(--font-zen);
                font-weight: 500;
                font-size: 16px;
                line-height: 31px;
                color: #154585;
              }
              &:nth-child(2) {
                .crab {
                  position: absolute;
                  right: -150px;
                  top: 215px;
                }
              }
            }
          }
          .reception-desk {
            margin-top: 32px;
              p {
                font-family: var(--font-zen);
                font-weight: 500;
                font-size: 16px;
                line-height: 31px;
                color: #154585;
              };
          }
        &:nth-child(1) {
          .tomato {
            position: absolute;
            right: -40px;
            top: -90px;
          }
        }
        &:nth-child(2) {
          .cucumber {
            position: absolute;
            left: -120px;
            top: -40px;
          }
        }
        &:nth-child(5) {
          .people {
            position: absolute;
            left: -180px;
            top: 139px;
          }
        }
      }
      .contact-information {
        margin-top: 95px;
      }
    }
  }
}
#accommodation-plans,
#accommodation-search {
  header {
    padding-bottom: 0;
  }
  .block-main-content {
    margin-top: 113px;
    .text-title {
      margin-bottom: 26px;
      h2 {
        margin-bottom: 13px;
        font-weight: 700;
      }
    }
    .accommodation-search {
      .row {
        background: #154585;
        p.dis {
          color: #FFF;
          font-size: 16px;
          text-align: center;
          font-weight: 700;
          margin-bottom: 47px;
          letter-spacing: 0.1em;
          line-height: 31px;
        }
        .card {
          display: flex;
          gap: 3%;
          margin-bottom: 82px;
          .card-body {
            /* width: 37%; */
            h3.block-title-hide {
              display: none;
            }
            .card-image {
              position: relative;
              img {
                width: 100%;
              }
              .sub-block {
                color: #154585;
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                h4 {
                  font-size: 20px;
                  line-height: 31px;
                  font-weight: 900;
                  margin-bottom: 21px;
                  letter-spacing: 0.1em;
                  text-align: center;
                }
                h3 {
                  width: 125px;
                  display: flex;
                  justify-content: space-between;
                  align-items: center;
                  color: #154585;
                  text-decoration: none;
                  font-size: 24px;
                  font-weight: 600;
                  font-family: var(--font-noto-san);
                  margin-left: -25px;
                  i {
                    font-size: 16px;
                    font-weight: 900;
                    width: 28.18px;
                    height: 28.18px;
                    background: #154585;
                    color: #FFF;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s linear;
                    border:2px solid #154585;
                  }
                  &:hover {
                    i {
                      background: #FFF;
                      color: #154585;
                    }
                  }
                }
                h3.cus {
                  margin-right: 20px;
                  img {
                    margin-right: 20px;
                  }
                }
              }

            }
          }
        }
      }
      .bg-waves-top {
        margin-bottom: -5px;
      }
      .bg-waves-bottom,
      .bg-waves-top {
        position: relative;
        > img {
          width: 100%;
        }
        .sub-bg-left {
          width: 400px;
          position: absolute;
          left: 2%;
          top: 20px;
        }
        .sub-bg-right {
          width: 285px;
          position: absolute;
          right: 2%;
          top: -20px;
          img {
            width: 100%;
          }
        }
        .sub-bg-left,
        .sub-bg-right {
          img {
            width: 100%;
          }
        }
      }
      .fillter-search {
        width: 100%;
        max-width: 80rem;
        margin: 0 auto;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
      }
      .fillter-search p {
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 32px;
        color: #fff;
      }
      .filter-search-title {
        color: #fff;
        text-align: center;
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 32px;
        letter-spacing: 0.1em;
      }
      .filter-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 13px;
        color: #154585;
        flex-wrap: wrap;
        .filter-item {
          position: relative;
          background-color: #fff;
          border-radius: 0.75rem;
          box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
          padding: 1.25rem;
          height: 4.25rem;
          display: flex;
          align-items: center;
          cursor: pointer;
          transition-property: box-shadow;
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-duration: 150ms;
          &:hover {
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
          }
        }
        .dropdown-menu {
          display: none;
          position: absolute;
          z-index: 10;
          top: 58px;
          left: 0;
          width: 100%;
          background-color: #fff;
          border-radius: 0px 0px 10px 10px;
          box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
          padding: 20px;
          animation: slideDown 0.3s ease-out forwards;
          &.active {
            display: block;
          }
          .calendar-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 19px;
            background-color: #154585;
            padding: 10px;
            font-size: 16px;
            font-weight: 900;
            .calendar-nav-btn {
              color: #154585;
              width: 28.18px;
              height: 28.18px;
              border-radius: 50%;
              transition-property: background-color;
              transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
              transition-duration: 150ms;
              text-align: center;
              align-items: center;
              display: flex;
              justify-content: center;
              border: none;
              cursor: pointer;
              i {
                font-size: 16px;
              }
              &:hover {
                background-color: #f3f4f6;
              }
            }
            .calendar-month-year {
              color: #fff;
              font-weight: 700;
            }
          }
          .calendar-week-days {
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            text-align: center;
            color: #949494;
            padding: 0 40px;
          }
          .calendar-days-grid {
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            margin-top: 0.5rem;
            padding: 0 40px;
          }
          .day {
            font-weight: 700;
            padding: 0.5rem;
            border-radius: 0.5rem;
            cursor: pointer;
            transition-property: background-color;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 200ms;
            text-align: center;
            &:hover {
              background-color: #dbeafe;
            }
            .selected {
              background-color: #3b82f6;
              color: #fff;
              font-weight: 700;
            }
            .start-date {
              background-color: #2563eb;
              border-top-right-radius: 0;
              border-bottom-right-radius: 0;
            }
            .end-date {
              background-color: #2563eb;
              border-top-left-radius: 0;
              border-bottom-left-radius: 0;
            }
            .in-range {
              background-color: #93c5fd;
              border-radius: 0;
            }
            .today {
              border: 2px solid #3b82f6;
              font-weight: 700;
            }
          }
          .counter-dropdown-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            color: #154585;
            font-weight: 900;
            font-size: 15px;
          }
          .counter-row {
              display: flex;
              justify-content: space-between;
              align-items: center;
              font-size: 15px;
              font-weight: 900;
              .counter-controls {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                .counter-plus,
                .counter-minus {
                    all: unset;
                    box-sizing: border-box;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 28px;
                    height: 28px;
                    padding: 5px;
                    border-radius: 50%;
                    cursor: pointer;
                    font-size: 16px;
                    color: #ffffff;
                    text-align: center;
                    &:hover {
                      background-color: #154585;
                      color: #ffffff;
                      border: 2px solid #154585;
                    }
                }
                .counter-minus {
                    background-color: #ffffff;
                    border: 2px solid #154585;
                    color: #154585;
                }

                .counter-plus {
                  border: 2px solid #154585;
                  color: #154585;
                }
                .counter-count {
                  font-weight: 900;
                  margin-right: -7px;
                }
              }
          }
        }
        .filter-item-calendar {
          width: 433px;
          max-width: 100%;
          justify-content: space-between;
          .calendar-icon-container {
            display: flex;
            align-items: center;
            padding-right: 10px;
            border-right: 2px solid #154585;
            flex: 1;
              .calendar-icon {
                font-size: 1.875rem;
                font-weight: 900;
                color: #154585;
                margin-right: 2rem;
              }
            .date-text-container {
              text-align: left;
                .date-label {
                  color: #949494;
                  font-weight: 700;
                  font-size: 13px;
                }
                .date-value {
                  color: #154585;
                  font-weight: 900;
                  font-size: 16px;
                }
            }
            .calendar-checkout-container {
              text-align: center;
              width: 100%;
              padding-left: 2rem;
            }
          }
          .calendar-checkout-container {
            flex: 1;
            .date-text-container {
              text-align: left;
              padding-left: 3.25rem;
              p.date-label {
                color: #949494;
                font-weight: 700;
                font-size: 13px;
              }
              p.date-value {
                font-weight: 900;
              }
            }
          }
          .dropdown-menu {
            padding: 8px;
          }
        }
        .filter-item-counter {
          width: 212px;
          max-width: 100%;
          justify-content: space-between;
          .trigger-gruop {
            display: flex;
            align-items: center;
            .counter-display {
              margin-left: 29px;
            }
          }
          .counter-icon {
            font-weight: 900;
            color: #154585;
            font-size: 20px;
          }
          .counter-display {
            color: #154585;
            font-weight: 900;
            margin-left: 20px;
            font-size: 16px;
          }
          .counter-display-people {
            font-size: 15px;
          }
          .dropdown-icon {
            color: #154585;
            font-size: 1rem;
            transition-property: transform;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 300ms;
          }
        }
        .filter-item-search {
          width: 148px;
          max-width: 100%;
          padding: 3px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 12px;
          .search-button {
            border: 3px solid #154585;
            border-radius: 12px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #154585;
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            p.items-center {
              span.text-sp {
                display: none;
              }
              .search-icon {
                font-weight: 900;
                margin-right: 6px;
                transition: color 0.2s ease-in-out;
              }
            }
            &:hover {
              background-color: #154585;
              color: #fff;
              .search-icon {
                color: #fff;
              }
            }
          }
        }
      }
    }
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .result-search {
      font-size: 16px;
      font-weight: 700;
      color: #154585;
      overflow: hidden;
      letter-spacing: 0.1em;
      padding-bottom: 80px;
      margin-bottom: -10px;
      .container {
        > p {
          text-align: center;
        }
      }
      .row {
        a {
          text-decoration: none;
          color: #154585;
        }
        .card {
          border-radius: 25px;
          .card-body {
            position: relative;
            margin-top: 33px;
            display: flex;
            padding: 33px 33px 28px 33px;
            justify-content: space-between;
            .left {
              display: flex;
              justify-content: space-between;
              gap: 32px;
              .card-image {
                img {
                  width: 290px;
                  max-width: 100%;
                }
              }
              .card-text {
                h4 {
                  font-size: 20px;
                  font-weight: 700;
                  margin-bottom: 29px;
                  margin-top: 8px;
                }
                p {
                  width: 351px;
                  font-weight: 500;
                  line-height: 31px;
                  span {
                    display: block;
                    font-size: 14px;
                  }
                }
              }
            }
            .right {
              width: 25%;
              margin-left: 33px;
              padding-left: 33px;
              border-left: 2px solid #154585;
              p {
                margin-bottom: 30px;
                margin-top: 8px;
              }
                ul {
                  li {
                    list-style: none;
                    margin-bottom: 14px;
                    i {
                      margin-right: 13px;
                      font-size: 16px;
                      font-weight: 900;
                      letter-spacing: normal;
                    }
                  }
                }
            }
            img.bg-block-image {
              position: absolute;
              z-index: -1;
            }
            img.bg-block-image.bl {
              width: 185px;
              bottom: -80px;
              left: -108px;
            }
            img.bg-block-image.tr {
              width: 135px;
              right: -80px;
              bottom: auto;
              top: -65px;
            }
            img.bg-block-image.br {
              width: 143px;
              right: -90px;
              bottom: -60px;
            }
            img.bg-block-image.tl {
              width: 135px;
              top: 0;
              left: -110px;
            }
            img.bg-block-image.sp {
              display: none;
            }
          }
        }
        .card.items-1 {
          background: #FFFAE2;
        }
        .card.items-2 {
          background: #FBF4F4;
        }
        .card.items-3 {
          background: #E3EEF4;
        }
      }
    }
  }
}
#accommodation-search {
  .block-main-content {
    .accommodation-search {
      .row {
        padding-bottom: 10px;
        p.dis {
          font-weight: 500;
        }
        .card {
          .card-body {
            a {
              text-decoration: none;
            }
            .card-image {
              .sub-block {
                h4 {
                  font-weight: 700;
                  margin-left: -20px;
                }
              }
            }
          }
        }
      }
      .filter-search-title {
        font-weight: 500;
      }
      .filter-group {
        .dropdown-menu {
          .calendar-days-grid {
            gap: 10px 5px;
            margin-top: 10px;
            margin-bottom: 30px;
          }
        }
      }
      .bg-waves-bottom{
        margin-top: -10px;
      }
    }
  }
}
#accommodation-plans {
  .block-main-content {
    .acc-plans {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: #154585;
      position: relative;
      .accommodation-search {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 1000px;
        &::before {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          height: 1000px;
          width: 100%;
          background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 20%,
            #154585 20%,
            #154585 80%,
            transparent 80%,
            transparent 100%
          )
        }
      }
      p.dis {
        text-align: center;
        line-height: 31px;
        padding-top: 180px;
        color: #FFF;
      }
      .main-block {
        background: #FFFAE2;
        padding: 77px 70px 80px 70px;
        border-radius: 25px;
        margin-top: 105px;
        .main-card {
          > p.sub-title {
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            margin-top: 46px;
          }
          p.sub-title.weight-7 {
            font-weight: 700;
          }
          .card {
            display: flex;
            gap: 43px;
            position: relative;
            article {
              width: 100%;
              display: flex;
              gap: 43px;                            margin-bottom: 30px;
              .card-image {
                .sub-badge {
                  bottom: 0px;
                  right: -10px;
                }
              }
            }
            article:last-child {
              margin-bottom: 0;
            }
            .card-image.margin-style {
              margin-top: -110px;
            }
            .card-image {
              width: 335px;
              max-width: 100%;
              position: relative;
              img {
                width: 100%;
              }
              .sub-badge {
                width: 103px;
                height: 103px;
                background: #D9D9D9;
                border-radius: 50%;
                position: absolute;
                bottom: -20px;
                right: -16px;
                text-align: center;
                align-content: center;
                p {
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  color: #9E9E9E;
                  font-weight: 900;
                  font-size: 16px;
                }
              }
            }
            .card-body {
              padding: 0 9px;
              .card-title {
                p.sub-title {
                  font-weight: 500;
                }
                h3 {
                  display: flex;
                  flex-wrap: wrap;
                  gap: 11px;
                  align-items: center;
                  margin-bottom: 38px;
                  font-family: var(--font-reddit);
                  span {
                    font-size: 16px;
                  }
                  p {
                    span.icon {
                      i {
                        background: #154585;
                        border-radius: 10px;
                        min-width: 43px;
                        height: 43px;
                        color: #FFF;
                        font-size: 16px;
                        text-align: center;
                        align-content: center;
                        padding-bottom: 2px;
                        margin-left: 7px;
                      }
                      i:first-child {
                        margin-left: -6px;
                      }
                    }
                  }
                  p.icon-font {
                    letter-spacing: normal;
                  }
                  p.no-spacing {
                    span.no-spacing {
                      letter-spacing: normal;
                    }
                  }
                  span.sluge {
                    font-size: 26px;
                    font-weight: 900;
                    font-family: var(--font-reddit);
                  }
                  span.price {
                    color: #C1272D;
                    font-size: 26px;
                    font-weight: 700;
                    font-family: var(--font-reddit);
                    letter-spacing: 0.1em;
                  }
                  span.items {
                    margin-right: 30px;
                    font-weight: 700;
                  }
                  span.text-sp {
                    display: none;
                  }
                }
              }
              p {
                line-height: 31px;
                span {
                  font-size: 14px;
                  font-weight: 500;
                }
              }
            }
            .badge {
              width: 126px;
              height: 126px;
              background: #F4B923;
              border-radius: 50%;
              text-align: center;
              align-content: center;
              color: #FFF;
              position: absolute;
              top: -40px;
              left: 50%;
              transform: translateX(-50%);
              padding-top: 10px;
              i {
                font-size: 20px;
                font-weight: 900;
                line-height: 31px;
              }
            }
            .image-bg {
              width: 198px;
              position: absolute;
              top: -10px;
              right: -30px;
              img {
                width: 100%;
              }
            }
            .dinner-meal {
              width: 100%;
              .dinner-title {
                margin-bottom: 29px;
                text-align: center;
                h4 {
                  background: #C1272D;
                  padding: 8px;
                  color: #FFF;
                  line-height: 31px;
                  border-radius: 30px;
                  i {
                    margin-right: 12px;
                  }
                }
                p {
                  margin-top: 18px;
                  margin-bottom: 8px;
                  font-weight: 400;
                  line-height: 26px;
                  letter-spacing: 0;
                }
                p.dis-sp {
                  display: none;
                }
              }
              .group-card {
                border: 5px solid #FBF4F4;
                border-radius: 25px;
                padding: 30px 35px 57px 35px;
              }
              .meal-card {
                display: flex;
                gap: 54px;
                align-items: center;
                .card-image {
                  width: 289px;
                }
                .card-body {
                  width: 411px;
                  max-width: 100%;
                  .card-title {
                    h3 {
                      margin-bottom: 36px;
                      p.price {
                        margin-top: 10px;
                      }
                    }
                  }
                }
              }
              .meal-card:last-child {
                margin-bottom: 0px;
              }
              .bbq-list {
                border:5px solid #E3EEF4;
                border-radius: 25px;
                margin-top: 37px;
                p {
                  height: 47px;
                  background: #E3EEF4;
                  border-radius: 15px 15px 0 0;
                  text-align: center;
                  align-content: center;
                  margin-top: -5px;
                }
                ul {
                  padding: 27px 55px 39px 43px;
                  display: grid;
                  grid-template-columns: repeat(7, 1fr);
                  row-gap: 10px;
                  li {
                    list-style: none;
                    font-weight: 500;
                    line-height: 31px;
                  }
                  li.col-01 {
                    width: 140px;
                  }
                  li.col-05,
                  li.col-02 {
                    width: 70px;
                  }
                  li.col-07,
                  li.col-03 {
                    width: 80px;
                  }
                  li.col-06,
                  li.col-04 {
                    width: 120px;
                  }
                }
              }
            }
          }
          .card.card-bg {
            background: #FFF;
            padding: 92px 50px 66px 50px;
            margin-top: 85px;
            border-radius: 25px;
            align-items: center;
            flex-direction: column;
            .card-body {
              .card-title {
                p.sub-title {
                  margin-bottom: 30px;
                  margin-top: 25px;
                }
                h3 {
                  font-size: 21px;
                  font-weight: 700;
                  margin-bottom: 40px;
                  align-items: flex-start;
                  flex-direction: column;
                  p.title {
                    font-weight: 700;
                      span.title {
                      font-size: 21px;
                      font-weight: 700;
                    }
                  }
                  p.price {
                    color: #C1272D;
                    font-size: 21px;
                    font-weight: 700;
                    font-family: var(--font-reddit);
                    span {
                      color: #154585;
                      font-weight: 700;
                    }
                    span.slaug {
                      font-size: 21px;
                      font-weight: 900;
                      font-family: var(--font-reddit);
                    }
                  }
                }
              }
              p {
                font-weight: 500;
              }
            }
            .image-bg {
              top: auto;
              right: -30px;
              bottom: 240px;
            }
          }
          .card.card-bg.card-empty-badge {
            padding: 35px 37px 55px 37px;
            margin-top: 27px;
            flex-direction: column;
            font-weight: 900;
            gap: 0;
            .btn-bbq {
              width: 100%;
              padding: 0 40px;
              margin: 45px 0;
              display: flex;
              gap: 53px;
              justify-content: space-between;
              align-items: center;
              p.style {
                width: 100%;
                height: 2px;
                background: #DC8A34;
              }
              p.style-text {
                min-width: 126px;
                height: 126px;
                background: #F28400;
                color: #FFF;
                font-size: 16px;
                font-weight: 900;
                line-height: 25px;
                align-content: center;
                text-align: center;
                border-radius: 50%;
              }
            }
          }
          .contents {
            margin-top: 28px;
            padding: 0 62px;
            p {
              line-height: 31px;
              font-weight: 500;
            }
          }
          .galleries-image {
            margin-top: 40px;
            display: flex;
            gap: 20px;
            .image {
              width: 33.33%;
              max-width: 100%;
              img {
                width: 100%;
              }
              img.sp {
                display: none;
              }
              .sub-image-block {
                display: none;
              }
            }
          }
        }
      }
      .main-block.bg-pink {
        background: #FBF4F4;
        margin-top: 120px;
        .card {
          .group-card {
            margin-bottom: 37px;
          }
          .group-card:last-child {
            margin-bottom: 0px;
          }
        }
      }
      .main-block.bg-silver {
        background: #E3EEF4;
        margin-top: 120px;
        .card {
          .dinner-meal {
            .group-card {
              border: 5px solid #E3EEF4;
            }
          }
        }
      }
      .card-list {
        border: 4px solid #FFFAE2;
        border-radius: 25px;
        margin-top: 50px;
        p {
          background: #FFFAE2;
          text-align: center;
          line-height: 20px;
          height: 47px;
          align-content: center;
          margin-top: -4px;                    border-radius: 25px 25px 0 0;
        }
        ul {
          padding: 22px 0px 28px 29px;
          li {
            list-style: none;
            font-weight: 500;
            line-height: 31px;
            a {
              text-decoration: none;
              color: #154585;
              font-weight: 700;
              border-bottom: 1px solid;
            }
          }
        }
      }
      .readmore {
        width: 140px;
        max-width: 100%;
        margin: 148px auto auto auto;
        a {
          color: #C1272D;
          text-decoration: none;
          display: flex;
          align-items: center;
          letter-spacing: 0;
          i {
            margin-right: 22px;
            width: 23.18px;
            height: 23.18px;
            background: #C1272D;
            border:2px solid #C1272D;
            color: #FFF;
            font-size: 13px;
            font-weight: 900;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s linear;
          }
        }
        a:hover {
          i {
            background: #FFF;
            color: #C1272D;
          }
        }
      }
    }
  }
}

/* Calendar */
.day.disabled {
  color: #ccc;
  pointer-events: none;
}

.day.today {
  border: 1px solid #154585;
  border-radius: 50%;
}

.day.selected.start-date,
.day.selected.end-date {
  background-color: #154585;
  color: white;
  border-radius: 50%;
}

.day.in-range {
  background-color: #E3EEF4;
}

.calendar-nav-btn {
color: #154585;
background-color: #fff;
border: 2px solid #154585;
cursor: pointer;
border-radius: 4px;
padding: 5px 10px;
}

.calendar-nav-btn.disabled {
    color: #ccc;
    background-color: #8aa2c2;
}

/* Active Room & People */
.counter-plus.active {
    background-color: #154585 !important;
    border-color: #154585 !important;
    color: #fff !important;
}
.counter-minus.active {
    background-color: #859dbd !important;
    border: 2px solid #859dbd !important;
    color: #ffffff !important;
}

#about {
  .block-main-content {
    color: #154585;
    overflow: hidden;
    .text-title {
      margin-bottom: 146px;
    }
    .row-main {
      margin-bottom: 0;
      .card {
        .card-body {
          letter-spacing: normal;
          gap: 0;
          .card-block-style {
            width: 600px;
            max-width: 100%;
            margin-top: -50px;
            .items {
              color: #154585;
              position: relative;
              width: 416px;
              max-width: 100%;
              > img {
                width: 100%;
              }
              .card-title {
                position: absolute;
                top: -10px;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                h4.sub-title {
                  font-family: var(--font-jost);
                  font-size: 21px;
                  font-weight: 500;
                  margin-bottom: 13px;
                  text-transform: uppercase;
                  text-align: center;
                }
                h3 {
                  font-size: 30px;
                  font-weight: 700;
                }
              }
              .sub-image {
                width: 100%;
                position: absolute;
                top: -75px;
                left: 0;
                z-index: -1;
                img {
                  width: 100%;
                }
                .bg-image-01 {
                  width: 111px;
                  img {
                    width: 100%;
                  }
                }
                .bg-image-02 {
                  width: 72px;
                  margin-left: -45px;
                  margin-top: 8px;
                  img {
                    width: 100%;
                  }
                }
              }
              .sub-image.sub-image-02 {
                left: auto;
                right: 0;
                top: -120px;
                .bg-image-02 {
                  width: 151px;
                    margin: 0;
                    margin-left: auto;
                    margin-right: 70px;
                    text-align: right;
                }
              }
            }
            .items.item-right {
              margin-left: auto;
              margin-right: -90px;
              margin-top: -70px;
              margin-bottom: -50px;
              text-align: center;
              z-index: 1;
            }
            .items.item-cus {
              .card-title {
                h3 {
                  font-size: 24px;
                  line-height: 38px;
                }
              }
              .sub-image {
                top: -205px;
                left: -13px;
                .left {
                  width: 180px;
                  .bg-image-03-top {
                    width: 80px;
                    margin-left: 160px;
                    margin-bottom: -20px;
                  }
                }
                .right {
                  width: 145px;
                  position: absolute;
                  right: -50%;
                  bottom: -100px;
                  .bg-image-04-top {
                    width: 48px;
                    margin-left: 120px;
                    margin-bottom: -25px;
                  }
                }
              }
            }
          }
        }
      }
    }
    .greeting-our-origins {
      .main-card-title {
        margin-bottom: 80px;
        text-align: center;
        h2 {
          font-size: 30px;
          font-weight: 700;
          letter-spacing: 0.1em;
          margin-bottom: 13px;
        }
        small {
          font-size: 21px;
          font-weight: 500;
          font-family: var(--font-jost);
          text-transform: uppercase;
        }
      }
      .card {
        .card-body {
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 20px;
          .description {
            position: relative;
            h3 {
              font-size: 30px;
              font-weight: 900;
              letter-spacing: 0.1em;
              margin-bottom: 40px;
            }
            p {
              width: 584px;
              max-width: 100%;
              font-size: 16px;
              font-weight: 500;
              line-height: 31px;
              letter-spacing: 0.1em;
            }
          }
          .card-image {
            position: relative;
            > img {
              width: 100%;
              min-width: 400px;
            }
            .block-image-title {
              text-align: center;
              small {
                font-size: 14px;
                font-weight: 500;
                font-family: var(--font-jost);
                display: block;
              }
              h2 {
                font-size: 26px;
                font-weight: 900;
                line-height: 31px;
                letter-spacing: 0.1em;
                margin-bottom: 15px;
              }
              small.csytle-color {
                font-family: var(--font-zen);
                letter-spacing: 0.1em;
                line-height: 31px;
                color: #C1272D;
                margin-bottom: 11px;
                margin-top: 13px;
              }
            }
          }
        }
      }
      .greeting {
        margin-top: 80px;
        .card {
          .card-body {
            flex-direction: row-reverse;
            .card-image {
              .sub-image-block {
                width: 154px;
                position: absolute;
                top: -75px;
                right: -65px;
                z-index: -1;
                img {
                  width: 100%;
                }
              }
            }
            .description {
              .sub-image-block {
                width: 60px;
                position: absolute;
                bottom: -70px;
                left: -35px;
                z-index: -1;
                img {
                  width: 100%;
                }
              }
            }
          }
        }
      }
      .our-origins {
        margin-top: 180px;
        .card {
          .card-body {
            flex-direction: row;
            .card-image {
              .sub-image-block-main {
                width: 179px;
                position: absolute;
                top: -165px;
                left: 35px;
                z-index: -1;
                img {
                  width: 100%;
                }
              }
              .sub-image-block-sub {
                width: 122px;
                position: absolute;
                bottom: -60px;
                left: -40px;
                z-index: -1;
                img {
                  width: 100%;
                }
              }
            }
            .description {
              p {
                width: 460px;
                max-width: 100%;
                font-weight: 500;
              }
              .sub-image-block {
                width: 134px;
                position: absolute;
                right: -10px;
                top: -60px;
                z-index: -1;
                img {
                  width: 100%;
                }
              }
            }
          }
        }
      }
    }
    .company-overview {
      margin-top: 190px;
      .bg-waves-top {
        position: relative;
        .sub-image-wave {
          width: 443px;
          position: absolute;
          top: -60px;
          right: 0;
          img {
            width: 100%;
          }
        }
      }
      .row {
        .text-title {
          margin-bottom: 77px;
        }
        .card {
          .card-body {
            padding: 0 20px;
            &::before {
              width: 208px;
              background: #E3EEF4;
            }
            .line {
              color: #154585;
              height: auto;
              border-bottom: 2px solid #D2E1E9;
              .left {
                width: 208px;
                max-width: 100%;
                p {
                  color: #154585;
                  padding-left: 21px;
                }
              }
              .right {
                width: 95%;
                p {
                  padding: 25px 25px 25px 69px;
                }
              }
            }
            .line.last {
              border-bottom: 0;
            }
            .bg-image-rt {
              width: 217px;
              top: -81px;
              right: 59px;
              z-index: 1;
            }
          }
        }
        .bg-image-rc {
          width: 150px;
          right: 6.5%;
          bottom: 100px;
          top: auto;
        }
      }
    }
  }
  .access-section {
    .content-wrapper {
      .left-side {
        .transport-info {
          h3.campus {
            position: static;
            padding-bottom: 0px;
            &::before {
              display: none;
            }
            a {
              border-bottom: 2px solid #154585;
              padding-bottom: 6px;
            }
          }
        }
      }
    }
  }
}