.main_visual {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
}
.main_visual .mv_slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.main_visual .mv_slider img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}
@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.main_visual .main_visual__logo {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}
.main_visual .main_visual__logo div {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}
.main_visual .main_visual__logo img {
  width: max(18vw, 234px);
}
@media (max-width: 768px) {
  .main_visual .main_visual__logo img {
    width: 100%;
    max-width: 46.1538461538vw;
  }
}
.main_visual .main_visual__logo p {
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out 2.5s forwards;
  font-size: min(1.1333333333vw, 17px);
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .main_visual .main_visual__logo p {
    font-size: 3.5897435897vw;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(1.15);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*news_section*/
.news_section {
  padding: 10rem 0 9rem 0;
}
@media (max-width: 768px) {
  .news_section {
    padding: 4rem 0 4rem 0;
  }
}

@media (max-width: 768px) {
  .container_news_area {
    padding: 0;
  }
}

.news_area {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
@media (max-width: 768px) {
  .news_area {
    flex-direction: column;
  }
}
.news_area__ttl {
  width: 22%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .news_area__ttl {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 0 2rem 0;
    padding: 0 20px;
  }
}
.news_area__ttl h2.common_h2 {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .news_area__ttl h2.common_h2 {
    margin-bottom: 0;
  }
}
.news_area__ttl a.common_link_btn {
  margin-top: auto;
}
@media (max-width: 768px) {
  .news_area__ttl a.common_link_btn {
    display: none;
  }
}
.news_area__content {
  width: 75%;
}
@media (max-width: 768px) {
  .news_area__content {
    width: 100%;
    overflow-x: scroll;
    padding: 0 1rem 1rem 0;
    margin: 0 0 1.5rem 0;
  }
}
@media (max-width: 768px) {
  .news_area__content ul.news_area__list {
    width: 100%;
    overflow: visible;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .news_area__content ul.news_area__list li {
    width: 66.6666666667vw;
    min-width: 66.6666666667vw;
  }
}
@media (max-width: 768px) {
  .news_area__content ul.news_area__list li:last-child {
    padding: 0 20px 0 0;
    width: calc(66.6666666667vw + 20px);
    min-width: calc(66.6666666667vw + 20px);
  }
}
.link_wrap__center.sp_content {
  display: none;
}
@media (max-width: 768px) {
  .link_wrap__center.sp_content {
    display: flex;
    padding: 0 20px;
  }
}

/*map_section*/
.map_section {
  padding: 0 0 0 0;
}
@media (max-width: 768px) {
  .map_section {
    padding: 0 0 3rem 0;
  }
}

.half-bleed-grid {
  display: grid;
  width: 100%;
  align-items: center;
  padding: 0 20px 0 0;
  grid-template-columns: 1fr minmax(0, 625px) minmax(0, 625px) 1fr;
}
@media (max-width: 768px) {
  .half-bleed-grid {
    display: block;
    padding: 0 20px 0 20px;
  }
}
.half-bleed-grid__image {
  grid-column: 1/3;
  position: relative;
  overflow: hidden;
}
.half-bleed-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
}
@media (max-width: 768px) {
  .half-bleed-grid__image img {
    border-radius: 5.1282051282vw;
    margin: 0 0 1rem 0;
  }
}
.half-bleed-grid__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.75s ease-in-out;
  pointer-events: none;
}
.half-bleed-grid.is-visible .half-bleed-grid__image::before {
  clip-path: inset(0 0 0 100%);
}
@media (min-width: 769px) {
  .half-bleed-grid.is-reverse.is-visible .half-bleed-grid__image::before {
    clip-path: inset(0 100% 0 0);
  }
}
.half-bleed-grid.is-no-animate .half-bleed-grid__image::before {
  clip-path: inset(0 0 0 0);
  display: none;
}
.half-bleed-grid__content {
  grid-column: 3/4;
  padding: 0 0 0 10%;
}
@media (max-width: 768px) {
  .half-bleed-grid__content {
    padding: 0 0 0 0;
  }
}
.half-bleed-grid__content h3 {
  font-size: min(2.2666666667vw, 34px);
  margin-bottom: 3rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .half-bleed-grid__content h3 {
    font-size: 5.641025641vw;
    white-space: wrap;
    margin-bottom: 2rem;
  }
}
.half-bleed-grid__content p {
  font-weight: bold;
}

.yellow_line {
  position: relative;
}
.yellow_line:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 9px;
  background: #CBE600;
  z-index: -1;
}
@media (max-width: 768px) {
  .yellow_line:after {
    height: 6px;
  }
}

.area_map {
  display: flex;
  justify-content: flex-end;
  margin-top: -1rem;
  position: relative;
}
@media (max-width: 768px) {
  .area_map {
    margin-top: 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.area_map img {
  width: 60%;
}
@media (max-width: 768px) {
  .area_map img {
    width: 100%;
  }
}
.area_map .area_map__info {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .area_map .area_map__info {
    position: static;
    align-items: flex-start;
    gap: 1rem;
  }
}
.area_map .area_map__info p {
  font-size: min(0.8vw, 12px);
  color: #413530;
  font-weight: bold;
}
@media (max-width: 768px) {
  .area_map .area_map__info p {
    font-size: 2.8205128205vw;
  }
}

/*enjoy_section*/
.enjoy_section {
  padding: 2rem 0 5rem 0;
}
@media (max-width: 768px) {
  .enjoy_section {
    padding: 2rem 0 2rem 0;
  }
}

h2.enjoy_h2 {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  h2.enjoy_h2 {
    margin-bottom: 2rem;
  }
}
h2.enjoy_h2 .en {
  font-size: min(6.1333333333vw, 92px);
  line-height: 1.2;
}
@media (max-width: 768px) {
  h2.enjoy_h2 .en {
    font-size: 15.3846153846vw;
  }
}
h2.enjoy_h2 .en small {
  font-size: min(2.4vw, 36px);
}
@media (max-width: 768px) {
  h2.enjoy_h2 .en small {
    display: block;
    font-size: 6.1538461538vw;
    margin: 0 0 1rem 0;
  }
}

.top_flex_area {
  display: flex;
  gap: 20px;
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .top_flex_area {
    margin-bottom: 1.5rem;
    gap: 10px;
    flex-wrap: wrap;
  }
}
.top_flex_area .top_flex_area__block {
  width: 33.333%;
}
@media (max-width: 768px) {
  .top_flex_area .top_flex_area__block {
    width: calc(50% - 5px);
    margin: 0 0 0.6rem 0;
  }
}
.top_flex_area .top_flex_area__block .flex_area__block__thumb {
  border-radius: 24px;
  display: block;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .top_flex_area .top_flex_area__block .flex_area__block__thumb {
    border-radius: 5.1282051282vw;
    margin-bottom: 1rem;
  }
}
.top_flex_area .top_flex_area__block .flex_area__block__thumb img {
  vertical-align: bottom;
}
.top_flex_area .top_flex_area__block .flex_area__block__thumb.fade-scale-in {
  opacity: 0;
  transform: scale(0.7);
  border-radius: 19.2px;
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), border-radius 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 768px) {
  .top_flex_area .top_flex_area__block .flex_area__block__thumb.fade-scale-in {
    border-radius: 4.1025641026vw;
  }
}
.top_flex_area .top_flex_area__block .flex_area__block__thumb.fade-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
  border-radius: 24px;
}
@media (max-width: 768px) {
  .top_flex_area .top_flex_area__block .flex_area__block__thumb.fade-scale-in.is-visible {
    border-radius: 5.1282051282vw;
  }
}
.top_flex_area .top_flex_area__block .flex_area__block__ttl__large {
  font-size: min(2.0666666667vw, 31px);
  display: block;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  color: #413530;
}
@media (max-width: 768px) {
  .top_flex_area .top_flex_area__block .flex_area__block__ttl__large {
    font-size: 5.641025641vw;
    margin-bottom: 0.4rem;
  }
}
.top_flex_area .top_flex_area__block .flex_area__block__ttl {
  font-size: min(2vw, 30px);
  display: block;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  color: #413530;
}
@media (max-width: 768px) {
  .top_flex_area .top_flex_area__block .flex_area__block__ttl {
    font-size: 5.1282051282vw;
    margin-bottom: 0.4rem;
  }
}
.top_flex_area.top_flex_area__2col .top_flex_area__block {
  width: 50%;
}
@media (max-width: 768px) {
  .top_flex_area.top_flex_area__2col .top_flex_area__block {
    width: calc(50% - 5px);
  }
}
@media (max-width: 768px) {
  .top_flex_area.top_flex_area__sp_1xol {
    gap: 2rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .top_flex_area.top_flex_area__sp_1xol .top_flex_area__block {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .top_flex_area .top_flex_area__block.top_flex_area__block__1col {
    width: 100%;
  }
}

/*facilities_section*/
.facilities_section {
  padding: 5rem 0 7rem 0;
}
@media (max-width: 768px) {
  .facilities_section {
    padding: 3rem 0 4rem 0;
  }
}

.facilities_bottom_section {
  padding: 0 0 8rem 0;
}
@media (max-width: 768px) {
  .facilities_bottom_section {
    padding: 0 0 4rem 0;
  }
}

/*fun_section*/
.fun_section {
  padding: 10rem 0 10rem 0;
}
@media (max-width: 768px) {
  .fun_section {
    padding: 4rem 0 4rem 0;
  }
}
.fun_section h2.common_h2 .en_fun {
  line-height: 1;
  margin: 0 0 0.3rem 0;
}

.half-bleed-grid__fun {
  align-items: flex-end;
  padding: 0 20px 0 0;
  grid-template-columns: 1fr minmax(0, 625px) minmax(0, 625px) 1fr;
}
.half-bleed-grid__fun .half-bleed-grid__image {
  grid-column: 1/3;
  width: 113%;
}
@media (max-width: 768px) {
  .half-bleed-grid__fun .half-bleed-grid__image {
    width: 100%;
  }
}
.half-bleed-grid__fun .half-bleed-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
}
@media (max-width: 768px) {
  .half-bleed-grid__fun .half-bleed-grid__image img {
    border-radius: 0 5.1282051282vw 5.1282051282vw 0;
  }
}
.half-bleed-grid__fun .half-bleed-grid__content {
  grid-column: 3/4;
  padding: 0 0 0 33%;
}
@media (max-width: 768px) {
  .half-bleed-grid__fun .half-bleed-grid__content {
    padding: 0 0 0 20px;
  }
}
.half-bleed-grid__fun.is-reverse {
  align-items: flex-start;
  margin: 8rem 0 8rem 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .half-bleed-grid__fun.is-reverse {
    margin: 3rem 0 3rem 0;
    overflow: visible;
  }
}
.half-bleed-grid__fun.is-reverse .half-bleed-grid__image {
  grid-row: 1;
  grid-column: 3/5;
  width: 113%;
  margin-left: -50px;
}
@media (max-width: 768px) {
  .half-bleed-grid__fun.is-reverse .half-bleed-grid__image {
    width: 100%;
    margin-left: 0;
  }
}
.half-bleed-grid__fun.is-reverse .half-bleed-grid__image img {
  border-radius: 24px 0 0 24px;
}
@media (max-width: 768px) {
  .half-bleed-grid__fun.is-reverse .half-bleed-grid__image img {
    border-radius: 0 5.1282051282vw 5.1282051282vw 0;
  }
}
.half-bleed-grid__fun.is-reverse .half-bleed-grid__content {
  grid-row: 1;
  grid-column: 2/3;
  padding: 0 30% 0 20px;
}
@media (max-width: 768px) {
  .half-bleed-grid__fun.is-reverse .half-bleed-grid__content {
    padding: 0 0 0 20px;
  }
}
.half-bleed-grid__fun.is-reverse .half-bleed-grid__content img {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .content__fun__tumb.sp_content {
    border-radius: 5.1282051282vw 0 0 5.1282051282vw;
    margin: 0 0 1.5rem 0;
    transform: translateX(20px);
  }
}

.half-bleed-grid__content__fun {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .half-bleed-grid__content__fun {
    gap: 1.5rem;
  }
}
.half-bleed-grid__content__fun img.content__fun__tumb {
  border-radius: 24px;
  margin-bottom: 0.7rem;
}
@media (max-width: 768px) {
  .half-bleed-grid__content__fun img.content__fun__tumb {
    border-radius: 5.1282051282vw 0 0 5.1282051282vw;
    width: calc(100% + 20px);
  }
}
.half-bleed-grid__content__fun img.content__fun__tumb.fade-scale-in {
  opacity: 0;
  transform: scale(0.7);
  border-radius: 19.2px;
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), border-radius 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 768px) {
  .half-bleed-grid__content__fun img.content__fun__tumb.fade-scale-in {
    border-radius: 4.1025641026vw;
  }
}
.half-bleed-grid__content__fun img.content__fun__tumb.fade-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
  border-radius: 24px;
}
@media (max-width: 768px) {
  .half-bleed-grid__content__fun img.content__fun__tumb.fade-scale-in.is-visible {
    border-radius: 5.1282051282vw 0 0 5.1282051282vw;
  }
}
.half-bleed-grid__content__fun h3 {
  font-size: min(2vw, 30px);
  line-height: 1.4;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .half-bleed-grid__content__fun h3 {
    font-size: 6.1538461538vw;
  }
}
.half-bleed-grid__content__fun p {
  margin-bottom: 0;
}
.half-bleed-grid__content__fun a.common_link_btn {
  max-width: 270px;
  padding: 17px 10px 18px 10px;
}
@media (max-width: 768px) {
  .half-bleed-grid__content__fun a.common_link_btn {
    padding: 10px 15px 9px 15px;
    max-width: 500px;
  }
}

.half-bleed-grid__fun__top {
  margin: 0 0 0 0;
}
@media (max-width: 1500px) {
  .half-bleed-grid__fun__top {
    margin: -4rem 0 0 0;
  }
}
@media (max-width: 768px) {
  .half-bleed-grid__fun__top {
    margin: 0 0 0 0;
  }
}

.flex_area__block__zone {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: min(1.3333333333vw, 20px);
  font-weight: bold;
  gap: 15px;
}
@media (max-width: 768px) {
  .flex_area__block__zone {
    font-size: 3.5897435897vw;
    gap: 8px;
    margin-bottom: 0.6rem;
  }
}
.flex_area__block__zone .zone_icon {
  background: #A3774F;
  color: #ffffff;
  border-radius: 20px;
  line-height: 1;
  padding: 6px 15px 5px 15px;
  font-size: min(1.0666666667vw, 16px);
}
@media (max-width: 768px) {
  .flex_area__block__zone .zone_icon {
    font-size: 3.3333333333vw;
    padding: 4px 10px 4px 10px;
  }
}

/*center_slide_area*/
.center_slide_area {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.center_slide_area .slide_center_logo__area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  width: 90%;
  max-width: 730px;
  gap: 2rem;
}

/*stay_section*/
.stay_section {
  padding: 8rem 0 6rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .stay_section {
    padding: 4rem 0 4rem 0;
  }
}
.stay_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F0F2E2;
  z-index: -1;
}
@media (max-width: 768px) {
  .stay_section:before {
    height: 100%;
  }
}

.stay_section__ttl_flex {
  display: flex;
  gap: 7%;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
@media (max-width: 768px) {
  .stay_section__ttl_flex {
    flex-direction: column;
  }
}
.stay_section__ttl_flex h2 {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .stay_section__ttl_flex h2 {
    white-space: wrap;
  }
}

@media (max-width: 768px) {
  p.stay_txt {
    margin: 0 0 2.5rem 0;
  }
}

/*event_section*/
.event_section {
  padding: 7rem 0 8rem 0;
}
@media (max-width: 768px) {
  .event_section {
    padding: 3rem 0 2rem 0;
  }
}

.top_flex_area__block__iframe {
  position: relative;
  width: 100%;
  padding-top: 75%;
}
@media (max-width: 768px) {
  .top_flex_area__block__iframe {
    margin-bottom: 20px;
  }
}
.top_flex_area__block__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/*access_section*/
.access_section {
  padding: 8rem 0 8rem 0;
  background: #C4C0AF;
}
@media (max-width: 768px) {
  .access_section {
    padding: 3rem 0 3rem 0;
  }
}
.access_section .access_section__ttl_flex {
  display: flex;
  gap: 7%;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .access_section .access_section__ttl_flex {
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    align-items: flex-start;
  }
}
.access_section h2 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .access_section h2 {
    margin-bottom: 1rem;
  }
}
.access_section a.common_link_btn:before {
  border: 2px solid #413530;
}

.gmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 4rem;
  border-radius: 24px;
}
@media (max-width: 768px) {
  .gmap {
    width: calc(100% + 40px);
    transform: translateX(-20px);
    margin-bottom: 1.5rem;
    padding-bottom: 75%;
    padding-top: 140px;
    border-radius: 0;
  }
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*instagram_section*/
.instagram_section {
  padding: 8rem 0 8rem 0;
}
@media (max-width: 768px) {
  .instagram_section {
    padding: 3rem 0 3rem 0;
  }
}

.section__ttl_flex__center {
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .section__ttl_flex__center {
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
}
.section__ttl_flex__center h2.instagram_h2 {
  margin-bottom: 0;
  font-size: min(1.8666666667vw, 28px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: helvetica-neue-lt-pro, "Yu Gothic", "YuGothic", sans-serif;
}
@media (max-width: 768px) {
  .section__ttl_flex__center h2.instagram_h2 {
    align-items: center;
    font-size: 5.1282051282vw;
    gap: 7px;
  }
}
.section__ttl_flex__center h2.instagram_h2 img.insta_icon {
  width: 25px;
}
@media (max-width: 768px) {
  .section__ttl_flex__center h2.instagram_h2 img.insta_icon {
    width: 5.1282051282vw;
  }
}
/*# sourceMappingURL=home.css.map */
