@charset "UTF-8";
/* ----------------------------------------------------------
   #GLOBAL
---------------------------------------------------------- */
/* TOP 共通
----- page/top-page/_common ----- */
.c-ttl-2 {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0 30px;
}
.c-ttl-2 .en {
  font-size: 6.4rem;
  line-height: 1.4;
  padding: 0;
}
.c-ttl-2 .en::before {
  display: none;
}
.c-ttl-2 .jp {
  font-size: 2rem;
  padding: 15px 0;
  line-height: 1.5;
  position: relative;
  min-width: 35px;
}
.c-ttl-2 .jp::before {
  content: "";
  background: url("../img/deco-ttl.svg") center/contain no-repeat;
  width: 35px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-ttl-2 + *:not(h1, h2, h3, h4, h5, h6) {
  margin-top: 40px;
}

.u-grid__02, .u-grid__02 .img {
  position: relative;
}
.u-grid__02 .img_sub {
  border: solid 5px #fff;
  position: relative;
  z-index: 1;
}
.u-grid__02 .deco {
  position: absolute;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .c-ttl-2 .en {
    font-size: 5rem;
  }
  .c-ttl-2 .jp {
    font-size: 1.8rem;
  }
  .c-ttl-2 + *:not(h1, h2, h3, h4, h5, h6) {
    margin-top: 20px;
  }
}
/* メインビジュアル 
----- page/top-page/_hero ----- */
.tp-hero {
  padding-top: 25px;
  display: grid;
  grid-template-columns: 290px 1fr;
  position: relative;
  z-index: 5;
}
.tp-hero > .l {
  padding: 35px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tp-hero > .l h1 {
  width: 100px;
}
.tp-hero .c-fade {
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}
.tp-hero .c-fade.__left {
  transform: translateX(-20px);
}
.tp-hero .c-fade.__right {
  transform: translateX(20px);
}
.tp-hero .c-fade.is-active {
  opacity: 1;
  transform: translate(0, 0);
}

.tp-hero_catch {
  font-size: 2.2rem;
  margin-top: 50px;
  font-weight: 500;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}

.tp-hero_l_img {
  margin-top: 45px;
  padding-right: 5px;
}

.tp-hero_slider {
  position: relative;
  padding-right: 25px;
}
.tp-hero_slider .inner {
  border-radius: 20px;
  overflow: hidden;
}
.tp-hero_slider .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.tp-hero_slider .grid figure {
  height: clamp(475px, 100vh - 200px, 645px);
}
.tp-hero_slider .grid img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-hero_news {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px 20px 20px 30px;
  border-radius: 20px 0 0 0;
  width: 60%;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #333;
}
.tp-hero_news:hover {
  background: #FFFDEE;
}
.tp-hero_news:hover > * {
  color: #96A53B;
}
.tp-hero_news h3 {
  font-size: 1.8rem;
  font-weight: bold;
}

.tp-hero_news_ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  padding-right: 35px;
}
.tp-hero_news_ttl::before {
  content: "";
  display: block;
  background: #96A53B url("../img/ico-arrow-w.svg") center/6px no-repeat;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 5px;
  translate: 0 -50%;
  transition: 0.3s;
}
.tp-hero_news_ttl:hover {
  color: #b0c43d;
}
.tp-hero_news_ttl:hover::before {
  background-color: #b0c43d;
  right: 0;
}

.tp-hero_bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.tp-hero_deco {
  width: 85%;
  margin: 20px 0 0 auto;
  text-align: center;
}
.tp-hero_deco img {
  max-width: 230px;
}

@media screen and (max-width: 768px) {
  .tp-hero {
    grid-template-columns: auto;
  }
  .tp-hero > .l {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 15px 0;
    border-radius: 20px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .tp-hero > .l h1 {
    width: 80px;
  }
  .tp-hero_catch {
    font-size: 2rem;
    margin-top: 30px;
  }
  .tp-hero_slider {
    padding: 0 15px;
  }
  .tp-hero_slider .grid {
    grid-template-columns: auto;
  }
  .tp-hero_slider .grid figure {
    height: clamp(250px, 50vh - 200px, 645px);
  }
  .tp-hero_news {
    gap: 15px;
    padding: 15px 0;
    border-radius: 0;
    width: calc(100% + 5px);
    position: relative;
  }
  .tp-hero_news:before {
    content: "";
    width: 50%;
    height: 1px;
    background: #ccc;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .tp-hero_news h3 {
    font-size: 1.6rem;
  }
  .tp-hero_news_ttl {
    padding-right: 30px;
  }
  .tp-hero_news_ttl::before {
    background-size: 5px;
    width: 20px;
    height: 20px;
  }
  .tp-hero_bottom {
    grid-template-columns: auto;
    gap: 0;
  }
  .tp-hero_deco {
    width: 60%;
    margin: -10px 0 10px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .tp-hero_deco img {
    max-width: 180px;
  }
  .tp-hero_cta {
    display: flex;
    justify-content: flex-end;
  }
}
/* コンセプト 
----- page/top-page/_concept ----- */
.tp-concept {
  margin-top: -85px;
  position: relative;
}
.tp-concept::before, .tp-concept::after {
  content: "";
  width: 100%;
  height: 160px;
  background: url("../img/tp-concept_deco.svg") center top/contain repeat-x;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.tp-concept::after {
  background-image: url("../img/dco_wave_01.svg");
  background-position: center bottom;
  height: 35px;
  top: auto;
  bottom: -1px;
}

.tp-concept_inner {
  padding: 170px 0 140px;
  overflow: hidden;
}

.tp-concept_text_wrap {
  max-width: 615px;
  margin: 0 auto;
  position: relative;
}

.tp-concept_text {
  padding: 25px 30px;
  border-radius: 20px;
  background: rgba(255, 253, 238, 0.9);
  max-width: 550px;
  position: relative;
  z-index: 2;
}
.tp-concept_text h3 {
  font-size: 2.2rem;
  font-weight: 600;
}
.tp-concept_text p {
  line-height: 2;
}
.tp-concept_text + .tp-concept_text {
  margin-top: 10px;
}

.tp-concept_img {
  width: 80%;
  position: absolute;
  will-change: transform;
}
.tp-concept_img.__1 {
  max-width: 370px;
  top: 50px;
  right: calc(100% + 35px);
  border-radius: 20px;
}
.tp-concept_img.__2 {
  max-width: 490px;
  top: 30px;
  left: 90%;
}
.tp-concept_img.__3 {
  max-width: 265px;
  top: 650px;
  right: 95%;
}
.tp-concept_img.__4 {
  max-width: 450px;
  top: 590px;
  left: 95%;
}
.tp-concept_img.__illust {
  z-index: 2;
  width: 180px;
  top: 57%;
  right: calc(95% - 15px);
}

.tp-concept_deco {
  width: min(30%, 275px);
  position: absolute;
  right: 20%;
  bottom: -55px;
  z-index: 4;
  transform: translateX(-100px);
}
.tp-concept_deco.is-active {
  transform: translate(0, 0);
}

@media screen and (max-width: 768px) {
  .tp-concept {
    margin-top: -15px;
  }
  .tp-concept::before {
    height: 80px;
  }
  .tp-concept::after {
    height: 20px;
  }
  .tp-concept_inner {
    padding: 100px 15px;
  }
  .tp-concept_text {
    padding: 20px 15px;
    border-radius: 20px 20px 0 0;
  }
  .tp-concept_text h3 {
    font-size: 2rem;
  }
  .tp-concept_text + .tp-concept_text {
    margin: 0;
    border-radius: 0 0 20px 20px;
    padding-top: 0;
  }
  .tp-concept_img.__1 {
    max-width: 50%;
    top: 200px;
    right: auto;
    left: -20%;
  }
  .tp-concept_img.__2 {
    top: 0;
    left: 40%;
    max-width: 350px;
  }
  .tp-concept_img.__3 {
    max-width: 55%;
    top: 90%;
    right: auto;
    left: -50px;
  }
  .tp-concept_img.__4 {
    z-index: 2;
    top: 55%;
    right: -20px;
    left: 45%;
    max-width: 350px;
  }
  .tp-concept_img.__illust {
    width: 140px;
    top: 45%;
    right: auto;
    left: -20px;
  }
  .tp-concept_deco {
    min-width: 50%;
    right: 20px;
    bottom: -45px;
  }
}
/* 施設案内 
----- page/top-page/_facilities ----- */
.tp-fac_lounge .img_sub {
  width: min(40%, 210px);
  margin: -60px 0 0 -50px;
}
.tp-fac_lounge .deco {
  width: min(50%, 255px);
  bottom: 25px;
  right: 55px;
}
.tp-fac_lounge .text {
  padding-bottom: 60px;
}

.tp-fac_hot_spring {
  margin: 0;
  padding-top: 100px;
}
.tp-fac_hot_spring .img_sub {
  position: absolute;
  width: min(25%, 250px);
  top: -50px;
  right: -30px;
}
.tp-fac_hot_spring .deco {
  width: 95px;
  bottom: -5px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .tp-facilities {
    overflow: hidden;
  }
  .tp-fac_hot_spring {
    padding-top: 80px;
  }
  .tp-fac_hot_spring .deco {
    max-width: 23%;
    bottom: calc(100% - 40px);
    left: 10px;
  }
  .tp-fac_hot_spring .img_sub {
    min-width: 40%;
    margin-top: -25px;
    position: relative;
    order: 1;
    top: auto;
    right: auto;
    left: calc(60% + 30px);
  }
}
/* お食事 
----- page/top-page/_meal ----- */
.tp-meal {
  margin-top: 130px;
  position: relative;
}

.tp-meal_hero img {
  aspect-ratio: 3/1;
  border-radius: 20% 20% 0 0/50% 50% 0 0;
  display: block;
  margin: 0 auto;
}

.tp-meal_inner {
  padding: 1px 0 100px;
  position: relative;
  overflow: hidden;
}
.tp-meal_inner::after {
  content: "";
  width: 100%;
  height: 35px;
  background: url("../img/dco_wave_01.svg") center bottom/contain repeat-x;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}

.tp-meal_contents {
  position: relative;
}

.tp-meal_text {
  width: 100%;
  max-width: min(80%, 740px);
  background: rgba(255, 253, 238, 0.7);
  margin: 60px auto 0;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.tp-meal_text h3 {
  margin-top: 40px;
  font-size: 2rem;
}

.tp-meal_deco {
  text-align: center;
  position: absolute;
  top: 0;
  width: max(100px, 50% - 360px);
  z-index: 1;
  will-change: transform;
}
.tp-meal_deco.__l {
  left: 10px;
}
.tp-meal_deco.__r {
  right: 10px;
}
.tp-meal_deco img {
  width: 100%;
  max-width: 120px;
}

@media screen and (max-width: 768px) {
  .tp-meal {
    margin-top: 80px;
  }
  .tp-meal_inner {
    padding-bottom: 60px;
  }
  .tp-meal_inner::after {
    height: 20px;
  }
  .tp-meal_hero img {
    border-radius: 120px 120px 0 0;
    aspect-ratio: 5/3;
    object-fit: cover;
  }
  .tp-meal_text {
    max-width: 90%;
    padding: 20px 15px;
    margin-top: 40px;
  }
  .tp-meal_text h3 {
    margin-top: 20px;
    font-size: 1.8rem;
  }
  .tp-meal_deco {
    width: 70px;
  }
  .tp-meal_deco img {
    width: 70px;
  }
  .tp-meal_deco.__l {
    left: auto;
    right: 85%;
  }
  .tp-meal_deco.__r {
    right: auto;
    left: 85%;
  }
}
/* お部屋
----- page/top-page/_room ----- */
.tp-room_grid .img figure {
  padding-left: 50px;
}
.tp-room_grid .img .img_sub {
  width: min(40%, 210px);
  margin-top: -25px;
}
.tp-room_grid .img .deco {
  width: min(40%, 210px);
  bottom: 70px;
  right: 45px;
}

/* 季節ごとの楽しみ方
----- page/top-page/_activity ----- */
.tp-activity {
  margin-top: 85px;
  padding-top: 45px;
  background: #FCFFEC;
  position: relative;
}
.tp-activity::before {
  z-index: -1;
}
.tp-activity .season {
  height: 50px;
}
.tp-activity .season + h4 {
  margin-top: 30px;
}
.tp-activity::before, .tp-activity_a::before, .tp-activity_w::before {
  content: "";
  mask: url("../img/deco_wave_02.svg") center bottom/contain no-repeat;
  background: #FCFFEC;
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
}

.tp-activity_s .img figure {
  padding-left: 50px;
}
.tp-activity_s .img .img_sub {
  border-color: #FCFFEC;
  width: min(40%, 210px);
  margin-top: -75px;
}
.tp-activity_s .img .deco {
  width: min(30%, 140px);
  bottom: 0;
  right: 60px;
}

.tp-activity_s {
  padding-bottom: 85px;
}

.tp-activity_a {
  padding: 30px 0 130px;
  background-color: #FFF7EB;
  position: relative;
}
.tp-activity_a::before {
  mask-size: 100% 65px;
  background: #FFF7EB;
  transform: scaleX(-1);
}
.tp-activity_a .img figure {
  padding-left: 45px;
  padding-bottom: 130px;
}
.tp-activity_a .img .deco {
  width: min(75%, 400px);
  bottom: 0;
  left: 40px;
}

.tp-activity_w {
  padding: 40px 0 100px;
  background-color: #F1FFFF;
  position: relative;
  position: relative;
}
.tp-activity_w::before {
  background: #F1FFFF;
  mask-size: 100% 80px;
}
.tp-activity_w .season {
  height: 55px;
}
.tp-activity_w .img .img_sub {
  border-color: #F1FFFF;
  width: min(30%, 155px);
  position: absolute;
  bottom: calc(100% - 20px);
  right: 80px;
}
.tp-activity_w .img .deco {
  width: min(40%, 200px);
  bottom: calc(100% - 25px);
  left: 40px;
}

@media screen and (max-width: 768px) {
  .tp-activity {
    padding-top: 1px;
    margin-top: 65px;
  }
  .tp-activity .season {
    height: 40px;
  }
  .tp-activity .season + h4 {
    margin-top: 15px;
  }
  .tp-activity::before, .tp-activity_a::before, .tp-activity_w::before {
    height: 40px;
  }
  .tp-activity_a {
    padding-bottom: 70px;
  }
  .tp-activity_a::before {
    mask-size: 100% 35px;
  }
  .tp-activity_a .img figure {
    padding-bottom: 110px;
  }
  .tp-activity_a .img .deco {
    left: 10px;
  }
  .tp-activity_w {
    padding-bottom: 80px;
  }
  .tp-activity_w::before {
    height: 50px;
    mask-size: 100% 50px;
  }
  .tp-activity_w .season {
    height: 45px;
  }
  .tp-activity_w .img {
    display: grid;
  }
  .tp-activity_w .img .img_sub {
    margin: -30px 0 0 auto;
    position: relative;
    bottom: auto;
    right: 40px;
    order: 1;
  }
  .tp-activity_w .img .deco {
    left: 0px;
    bottom: 20px;
    transform: scaleX(-1);
  }
}/*# sourceMappingURL=index.css.map */