@charset"utf-8";

:root {
    --blue: #19306e;
    --yellow: #f8b100;
    --brown: #431f02;
    --beige: #f2ede9;
    --brown2: #431f02;
    --rightbeige: #fdfdfc;
    --orange: #ff7f50;
    --redbrown: #B00007;
}
.eyecatch {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background-image: url(../img/eyecatch.png);
    background-size: 100%;
    background-position: center;
    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 {
    color: #FFFFFF;
    position: absolute;
    top: 250px;
    left: 35%;
    text-align: center;
    font-size: 45px;
    line-height: 100px;
}*/
.eyecatchMargin {
    height: 100vh;
}
.content {
    background-image: url(../img/background_texture_wave.png);
    position: relative;
    z-index: 1000;
    width: 100%;
    padding-bottom: 64px;
}
.section1 {
    padding-top: 100px;
}
.main-layout {
  display: flex;
  justify-content: center;
  gap: 300px;
  padding-top: 100px;
}
.left-column > .text {
    margin-top: 200px;
}
.left-column > .text > a {
    font-size: 20px;
    color: var(--brown);
    line-height: 70px;
}
.hibiscus {
    margin-top: 150px;
    /*textの行によって変わる*/
}
.hibiscus > img {
    height: 250px;
}
.left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.image-columns {
  display: flex;
  gap: 50px;
  background-color: var(--rightbeige);
  padding: 50px;
}
.image-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.image-col-left > div,
.image-col-right > img {
  display: block;
  margin-bottom: 10px;
}
.image-col-left {
  margin-top: 180px;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.image-col-right {
  height: 800px;
  overflow: hidden;
  position: relative;
}
.image-col-right div {
  display: block;
  margin-bottom: 10px;
}
.image-col > div > img {
  width: 200px;
}
.section2 {
    text-align: center;
    margin-top: 100px;
}
.section2 > .inner > .movietext > a {
    font-size: 22px;
    color: var(--brown2);
}
.bookingURLButton {
    margin-top: 50px;
    box-sizing: border-box;
}
.bookingURLButton > a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 20px;
    background-color: var(--blue);
    border-radius: 5px;
    padding: 10px 15px;
}
.bookingURLButton > a:hover {
    background-color: var(--redbrown);
}