/*------------------------------
   golf Overview
------------------------------*/
.golf-overview {
  width: 100%;
  position: relative;
  color: #fff;
  background-color: #141414;
  overflow: hidden;
  z-index: 0;
}

.golf-overview::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../../img/golf_img04.jpg");

  background-size: cover;
  background-position: center;
  filter: blur(10px);
}

/*------------------------------
  ent concept
------------------------------*/
.ent-concept__inner {
  padding: 150px 0;
}

.ent-concept__inner .container {
  width: 50%;
  text-align: center;
  padding: 0;
}

.ent-concept__inner .flex-wrapper {
  align-items: center;
  margin: 0 0 100px;
}

.ent-concept__inner .flex-wrapper:last-child {
  margin: 0;
}

.ent-concept__inner .is-reverse {
  flex-direction: row-reverse;
}

.ent-concept__image {
  width: 48%;
  height: 400px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}

.ent-concept__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.ent-concept__content {
  display: inline-block;
  padding: 0 20px;
  text-align: left;
}

.section-heading__sub {
  margin-bottom: 25px;
}

.ent-concept__content p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.ent-concept__content p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .ent-concept__inner {
    padding: 100px 20px;
  }

  .ent-concept__inner .flex-wrapper {
    flex-direction: column;
  }

  .ent-concept__inner .container {
    margin-top: 20px;
    width: 100%;
  }

  .ent-concept__content {
    max-width: 600px;
    padding: 0;
  }

  .ent-concept__image {
    width: 100%;
    height: 100%;
  }
}

/*------------------------------
   golf price
------------------------------*/
.golf-price {
  background: #141414;
  color: #fff;
}

.golf-price .container .notice-text {
  margin: 0 0 25px;
}

.room-img__list {
  display: flex;
  justify-content: space-between;
}

.room-img__item {
  width: 48%;
  text-align: center;
}

.room-img__item p {
  letter-spacing: 0.1em;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .scroll-hint {
    background: #cdcdcd;
  }

  .room-img__item p {
    font-size: 1.4rem;
  }
}

/*------------------------------
   image gallery
------------------------------*/
.image-gallery {
  background: #141414;
}

.image-gallery .container {
  padding: 0 20px 150px;
}

.gallery-list {
  gap: 20px;
}

.gallery-list li img {
  aspect-ratio: 4/3;
}

.btn-wrapper {
  margin: 100px 0 20px;
  color: #fff;
}

.btn-wrapper__sub {
  width: 100%;
  text-align: center;
}

.btn-wrapper__sub a {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: underline;
}

/*------------------------------
   darts Overview
------------------------------*/
.darts-overview {
  width: 100%;
  position: relative;
  color: #fff;
  background-color: #141414;
  overflow: hidden;
  z-index: 0;
}

.darts-overview::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../../img/darts_01.jpg");

  background-size: cover;
  background-position: center;
  filter: blur(10px);
}

/*------------------------------
   viewing Overview
------------------------------*/
.viewing-overview {
  width: 100%;
  position: relative;
  color: #fff;
  background-color: #141414;
  overflow: hidden;
  z-index: 0;
}

.viewing-overview::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../../img/bn_02.jpg");

  background-size: cover;
  background-position: center;
  filter: blur(10px);
}