@charset"utf-8";

:root {
    --blue: #19306e;
    --yellow: #f8b100;
    --brown: #431f02;
    --beige: #f2ede9;
    --brown2: #431f02;
    --rightbeige: #fdfdfc;
    --orange: #ff7f50;
}
.eyecatch {
    position: fixed;
    z-index: 998;
    background-image: url(../img/eyecatch.png);
    background-size: 100%;
    margin-top: 80px;
    left: 0;
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
}
.eyecatch {
  animation: zoomIn 1.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.eyecatch > h1 {
    font-size: 15px;
    color: #FFFFFF;
    position: absolute;
    top: 60px;
    left: 15%;
}
.eyecatchMargin {
    height: 283px;
}
.content {
    background-image: url(../img/background_texture_wave.png);
    background-size: 100%;
    position: relative;
    z-index: 1000;
    width: 100%;
    background-repeat: no-repeat;
}
.hibiscus >img {
    height: 50px;
}
.left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.text {
    margin-bottom: 30px;
    text-align: center;
}
.text > a {
    font-size: 12px;
    line-height: 20px;
    color: var(--brown);
}
.image-columns {
  display: flex;
  gap: 5px;
  background-color: var(--rightbeige);
  padding: 5px;
  width: 190px;
  margin: auto 0;
}
.image-col {
  display: flex;
  margin-left: 8px;
  flex-direction: column;
  gap: 3px;
}
.image-col-left > div,
.image-col-right > img {
  display: block;
  margin-bottom: 10px;
}
.image-col-left {
  margin-top: 60px;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.image-col-right {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.image-col-right div {
  display: block;
  margin-bottom: 10px;
}
.image-col > div > img {
  width: 80px;
}
.main-layout {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    width: 100%;
    gap: 30px;
}
.section2 {
    text-align: center;
    margin-top: 100px;
}
.section2 > .inner > .movietext > a {
    font-size: 18px;
    color: var(--brown2);
}
.bookingURLButton {
    margin-top: 50px;
    box-sizing: border-box;
}
.bookingURLButton > a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 15px;
    background-color: var(--blue);
    border-radius: 5px;
    padding: 8px 10px;
}
.bookingURLButton > a:hover {
    background-color: var(--redbrown);
}